123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- @import '@css/mixin.scss';
- @import '@css/modal.scss';
- .scoped-box {
- width: 660px;
- text-align: center;
- position: relative;
- .close {
- width: 60px;
- height: 60px;
- }
- .sb-main {
- text-align: left;
- background-color: #fff;
- padding: 30rpx;
- max-height: 800rpx;
- overflow-y: auto;
- .title {
- height: 60rpx;
- line-height: 60rpx;
- text-align: center;
- font-size: 30rpx;
- font-weight: bold;
- color: #333;
- }
- .op {
- border-bottom: 1PX solid #dcdcdc;
- padding: 10rpx 0;
- color: #333;
- font-size: 30rpx;
- &:last-child {
- border-bottom: 0;
- }
- .p3 {
- color: #999;
- font-size: 28rpx;
- }
- .p1 {
- .text {
- display: inline-block;
- margin-right: 50rpx;
- }
- .img {
- display: inline-block;
- height: 50rpx;
- width: 50rpx;
- }
- }
- .p2 {
- display: flex;
- width: 100%;
- justify-content: space-around;
- padding: 10rpx 0;
- }
- .t {
- color: $mainColor;
- font-weight: bold;
- &.t2 {
- color: $dangerColor;
- }
- }
- }
- }
- }
|