12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .showmodel-bg {
- position: fixed;
- width: 100vw;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.6);
- top: 0;
- left: 0;
- z-index: 9999999;
- }
- .showmodel-box {
- position: absolute;
- width: 558rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- z-index: 999999999;
- left: 50%;
- transform: translate(-50%, -50%);
- padding: 0 30rpx;
- box-sizing: border-box;
- text-align: center;
- }
- .model-title {
- font-family: PingFangSC-Medium, PingFang SC;
- height: 50rpx;
- line-height: 50rpx;
- font-size: 36rpx;
- font-weight: 550;
- color: #000000;
- margin-top: 50rpx;
- }
- .model-content {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-wrap: wrap;
- line-height: 40rpx;
- min-height: 90rpx;
- font-size: 28rpx;
- color: rgba(0, 0, 0, .4);
- margin-top: 20rpx;
- }
- .model-but {
- width: 95%;
- display: flex;
- justify-content: space-around;
- height: 56rpx;
- margin: 30rpx auto 40rpx;
- }
- .custom-class-but {
- font-size: 24rpx !important;
- font-family: PingFangSC-Regular, PingFang SC !important;
- width: 180rpx !important;
- height: 56rpx !important;
- background: #F3F3F3;
- }
- .cancel {
- color: #888888 !important;
- }
|