123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /* pages/repairs/repairs.wxss */
- .page {
- display: block;
- min-height: 100%;
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 9999;
- }
- page {
- height: 100%;
- width: 100%;
- background: #efefef;
- }
- .menus {
- width: 100%;
- position: fixed;
- left: 0;
- top: 0;
- background-color: #fff;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- z-index: 99999;
- }
- .menu .van-dropdown-menu {
- width: 100%;
- position: fixed;
- left: 70rpx;
- top: 0rpx;
- z-index: 888;
- align-items: center;
- height: 129rpx !important;
- padding-top: 18rpx;
- z-index: 99999;
- }
- .fffBg .van-dropdown-menu {
- background-color: #fff;
- }
- .efBg .van-dropdown-menu {
- background-color: #efefef;
- }
- .menu1 .van-dropdown-menu {
- width: 100%;
- position: fixed;
- left: 70rpx;
- top: 0rpx;
- z-index: 888;
- align-items: center;
- height: 100rpx !important;
- padding-top: 75rpx;
- z-index: 99999;
- }
- .van-dropdown-menu__item {
- flex: 0.25 !important;
- z-index: 99999;
- }
- .menus text {
- margin-left: 20rpx;
- font-size: 35rpx;
- }
- .feed {
- width: 100%;
- height: 100%;
- background: #efefef;
- position: relative;
- }
- .feed .cut {
- width: 100%;
- display: flex;
- justify-content: center;
- margin-bottom: 30rpx;
- position: fixed;
- background: #fff;
- padding: 15rpx 0;
- z-index: 999;
- }
- .list {
- background: #fff;
- margin-bottom: 20rpx;
- }
- .list view {
- font-size: 26rpx;
- }
- .title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #efefef;
- }
- .title .right {
- color: #FE5C28;
- }
- .body {
- display: flex;
- align-items: center;
- }
- .title,
- .body,
- .time {
- padding: 15rpx 20rpx;
- }
- /*
- .box {
- background-color: #fff;
- } */
- .body .left {
- width: 20%;
- text-align: center;
- }
- .body .right {
- width: 80%;
- padding-left: 30rpx;
- }
- .body .right .describe {
- line-height: 1.8;
- }
- .time {
- color: #999;
- /* padding: 0 20rpx; */
- font-size: 26rpx;
- border-top: 1rpx solid #efefef;
- }
|