123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* templates/service/service.wxss */
- .model-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0,0,0,0.50);
- z-index: 9;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .model-wrapper {
- margin: auto 30rpx;
- max-height: 900rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- padding: 30rpx;
- position: relative;
- }
- .model-cancel {
- position: absolute;
- top: -66rpx;
- right: 0;
- width: 40rpx;
- height: 40rpx;
- border: solid 4rpx #fff;
- border-radius: 100rpx;
- cursor: pointer;
- }
- .model-scroll {
- height: 900rpx;
- overflow: hidden;
- }
- .model-cancel::before {
- content: '';
- position: absolute;
- width: 30rpx;
- height: 4rpx;
- top: 5rpx;
- left: 5rpx;
- background: #fff;
- transform: translate(0rpx, 15rpx) rotate(45deg);
- }
- .model-cancel::after {
- content: '';
- position: absolute;
- width: 30rpx;
- height: 4rpx;
- top: 5rpx;
- left: 5rpx;
- background: #fff;
- transform: translate(0rpx, 15rpx) rotate(-45deg);
- }
- .model-title {
- font-size: 40rpx;
- color: #000000;
- }
- .model-title-center {
- font-size: 40rpx;
- color: #000000;
- text-align: center;
- }
- .model-section {
- font-size: 32rpx;
- color: #333333;
- margin-top: 20rpx;
- }
- .model-text {
- margin-top: 10rpx;
- }
|