123456789101112131415161718192021222324 |
- /* 弹窗 */
- .popup {
- .header {
- position: relative;
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- border-bottom: 1px solid #EEEEEE;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- .close {
- position: absolute;
- width: 100rpx;
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- top: 0;
- right: 0;
- }
- }
- }
|