12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /* pagesPublic/pages/work-order-detail/work-order-detail.wxss */
- /* .pageBox {
- width: 100%;
- background-size: 100% 100%;
- position: relative;
- color: #fff;
- background-image: url('/pages/images/work-order-detail-bg.png');
- } */
- page {
- background: #F5F5F5;
- }
- .navigation {
- margin-top: 20rpx;
- height: 136rpx;
- width: 100%;
- color: #FFFFFF;
- text-align: center;
- line-height: 136rpx;
- font-size: 36rpx;
- border-bottom: 2rpx solid #FFFFFF30;
- }
- .nav-back {
- width: 18rpx;
- height: 33rpx;
- transform: scaleX(-1);
- position: absolute;
- left: 35rpx;
- top: 71rpx;
- }
- .bgimage {
- position: absolute;
- left: -31%;
- top: 0;
- display: block;
- width: 160%;
- z-index: -999;
- }
- .detail {
- margin-top: 39rpx;
- margin-left: 35rpx;
- margin-right: 35rpx;
- }
- .item-row {
- margin-top: 20rpx;
- color: #FFFFFF;
- font-size: 28rpx;
- display: inline-flex;
- flex-direction: row;
- align-items: center;
- width: 100%;
- }
- .item-label {
- width: 210rpx;
- text-align: right;
- color: #FFFFFF;
- opacity: 0.7;
- }
- .item-value {
- margin-left: 20rpx;
- font-size: 28rpx;
- }
- .item-image-box image {
- height: 98rpx;
- width: 98rpx;
- margin-left: 10rpx;
- }
- .progressBox {
- background: #FFFFFF;
- border-radius: 10rpx;
- margin-left: 35rpx;
- margin-right: 35rpx;
- height: 900rpx;
- }
|