123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* 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: 65rpx;
- }
- .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-top: 30rpx;
- padding-bottom: 30rpx;
- }
- .itemBox .item .topBox .icon {
- width: 70rpx;
- height: 70rpx;
- margin-right: 35rpx;
- }
- .item .topBox .message .tit {
- font-size: 30rpx;
- font-weight: bold;
- margin-bottom: 4rpx;
- 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: bold;
- color: #191C27;
- margin-top: 20rpx;
- margin-bottom: 20rpx;
- }
- .item .reason .cont {
- font-size: 26rpx;
- line-height: 38rpx;
- color: #666666;
- }
- .itemBox>.b-bottom:nth-last-child(1){
- border-bottom: 0rpx solid #ededed !important;
- }
- .bot_text{
- margin: 20rpx 0 0;
- font-size: 26rpx;
- color: #555;
- }
|