| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @import '/app.wxss';
- .WriteOff {
- width: 560rpx;
- height: 800rpx;
- background-color: #fff;
- border-radius: 20rpx;
- position: fixed;
- top: 50%;
- left: 50%;
- margin-top: -400rpx;
- margin-left: -280rpx;
- z-index: 99;
- padding-top: 55rpx;
- }
- .WriteOff .pictrue {
- width: 340rpx;
- height: 340rpx;
- margin: 0 auto;
- }
- .WriteOff .pictrue image {
- width: 100%;
- height: 100%;
- display: block;
- border-radius: 10rpx;
- }
- .WriteOff .num {
- font-size: 30rpx;
- color: #666;
- margin: 28rpx 0 30rpx 0;
- }
- .WriteOff .num .see {
- font-size: 16rpx;
- color: #fff;
- border-radius: 4rpx;
- background-color: #c68937;
- padding-left: 5rpx;
- margin-left: 12rpx;
- }
- .WriteOff .num .see .iconfont {
- font-size: 15rpx;
- }
- .WriteOff .tip {
- font-size: 36rpx;
- color: #282828;
- text-align: center;
- border-top: 1px dashed #ccc;
- padding-top: 40rpx;
- position: relative;
- }
- .WriteOff .tip:after {
- content: '';
- position: absolute;
- width: 25rpx;
- height: 25rpx;
- border-radius: 50%;
- background-color: #7f7f7f;
- right: -12.5rpx;
- top: -12.5rpx;
- }
- .WriteOff .tip:before {
- content: '';
- position: absolute;
- width: 25rpx;
- height: 25rpx;
- border-radius: 50%;
- background-color: #7f7f7f;
- left: -12.5rpx;
- top: -12.5rpx;
- }
- .WriteOff .sure {
- font-size: 32rpx;
- color: #fff;
- text-align: center;
- line-height: 82rpx;
- height: 82rpx;
- width: 460rpx;
- border-radius: 41rpx;
- margin: 40rpx auto 0 auto;
- background-image: linear-gradient(to right, #f67a38 0%, #f11b09 100%);
- }
- .WriteOff .sure.cancel {
- background-image: none;
- color: #999;
- margin-top: 10rpx;
- }
|