12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* pages/my/cleanReport/cleanReport.wxss */
- page {
- width: 750rpx;
- min-height: 100vh;
- background: #F6F6F6;
- }
- .itemBox {
- margin: 25rpx auto;
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 12rpx;
- padding: 24rpx;
- position: relative;
- padding-top: 95rpx;
- }
- .itemBox .tips {
- width: 178rpx;
- height: 46rpx;
- border-radius: 0px 23rpx 23rpx 0px;
- position: absolute;
- left: 0rpx;
- top: 25rpx;
- text-align: center;
- font-size: 26rpx;
- color: #FFFFFF;
- line-height: 46rpx;
- }
- .itemBox .tips.orage {
- background: #FF663D;
- }
- .itemBox .item {
- padding-bottom: 30rpx;
- }
- .itemBox .item .topBox .icon {
- width: 70rpx;
- height: 70rpx;
- margin-right: 35rpx;
- }
- .item .topBox .message .tit {
- font-size: 30rpx;
- font-weight: 500;
- color: #191C27;
- }
- .item .topBox .message .col {
- font-size: 26rpx;
- color: #999999;
- }
- .item .scroll {
- white-space: nowrap;
- width: 650rpx;
- height: 130rpx;
- margin-top: 35rpx;
- }
- .item .scroll scroll-view {
- width: 100%;
- height: 100%;
- }
- .item .scroll .icon {
- width: 120rpx;
- height: 120rpx;
- margin-right: 25rpx;
- }
- .item .reason .tit {
- font-size: 30rpx;
- font-weight: 500;
- color: #191C27;
- margin-bottom: 25rpx;
- }
- .item .reason .cont {
- font-size: 26rpx;
- color: #666666;
- }
|