123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .tipSection {
- position: relative;
- background: #FFFFFF;
- border-radius: 6px;
- margin-bottom: 12px;
- .iconCross {
- position: absolute;
- top: 15px;
- right: 13px;
- font-size: 16px;
- color: #CCCCCC;
- cursor: pointer;
- }
- .tipTitle {
- padding: 12px 12px 10px;
- font-weight: 500;
- font-size: 15px;
- color: #333333;
- line-height: 18px;
- img {
- width: 18px;
- height: 18px;
- margin-right: 6px;
- vertical-align: text-bottom;
- }
- }
- .tipContent {
- padding: 0 12px 10px;
- font-size: 13px;
- color: #777777;
- line-height: 22px;
- text-align: justify;
- }
- .tipFooter {
- margin: 0 12px;
- padding: 10px 0;
- text-align: center;
- border-top: 1px solid #F2F2F2;
- font-size: 13px;
- color: #2DC7AA;
- line-height: 18px;
- }
- }
|