53 lines
825 B
SCSS
53 lines
825 B
SCSS
@import '../../../../assets/styles/common';
|
|
@import './color';
|
|
@import './web';
|
|
@import './h5';
|
|
|
|
.icon-close {
|
|
display: inline-block;
|
|
width: 24px;
|
|
height: 24px;
|
|
position: relative;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.icon-close::before,
|
|
.icon-close::after {
|
|
content: '';
|
|
position: absolute;
|
|
background-color: #8f959e;
|
|
height: 16px;
|
|
width: 2px;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -8px;
|
|
margin-left: -1px;
|
|
}
|
|
|
|
.icon-close::before {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.icon-close::after {
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
.tab-icon {
|
|
position: absolute;
|
|
left: 20px;
|
|
}
|
|
|
|
.main {
|
|
background: #f4f4f4;
|
|
.main-box {
|
|
padding: 32rpx 24rpx;
|
|
.space-top {
|
|
border-top: 0 !important;
|
|
background: #ffffff;
|
|
border-radius: 16rpx !important;
|
|
margin-top: 20rpx;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
}
|