| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /* greenland/pages/inspection/inspection.wxss */
- page {
- color: #000;
- font-size: 32rpx;
- background-color: #f4f4f4;
- padding-top: 100rpx;
- }
- .inspection {
- padding: 20rpx;
- height: 100vh;
- }
- .xuncha_list {
- background-color: #ffff;
- border: 1rpx solid #ccc;
- border-radius: 15rpx;
- padding: 15rpx;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- font-size: 30rpx;
- }
- .person {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 10rpx;
- border-bottom: 1rpx solid #c4c4c4;
- }
- .per_left,
- .per_right {
- width: auto;
- }
- .per_right {
- color: red;
- }
- .te {
- border: none;
- padding: 0;
- }
- .trajectory {
- position: absolute;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 150rpx;
- height: 65rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #33a3dc;
- color: #ffffff;
- border-radius: 10rpx;
- font-size: 32rpx;
- }
- .weizhi {
- width: 85rpx;
- height: 60rpx;
- background-color: rgba(123, 104, 238, 0.65);
- position: fixed;
- top: 88rpx;
- left: 0rpx;
- border-radius: 0 20rpx 20rpx 0;
- color: #fff;
- display: flex;
- align-items: center;
- z-index: 999;
- }
- /* 展开 筛选框 */
- .scaling {
- width: 85rpx;
- /* height: 60rpx; */
- background-color: rgba(123, 104, 238, 0.65);
- position: fixed;
- top: 80rpx;
- left: 0rpx;
- border-radius: 0 20rpx 20rpx 0;
- color: #fff;
- display: flex;
- align-items: center;
- }
- .scalingBox {
- width: 100%;
- background-color: #fff;
- border-radius: 0 0 30rpx 30rpx;
- }
- .scaling_fooder {
- width: 100%;
- height: 80rpx;
- display: flex;
- }
- .scaling_fooder_left {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #333;
- background-color: #c4c4c4;
- border-radius: 0 0 0 10rpx;
- }
- .scaling_fooder_right {
- flex: 1;
- display: flex;
- justify-content: center;
- color: #333;
- align-items: center;
- background-color: #0099ff;
- border-radius: 0 0 10rpx 0;
- color: #fff;
- }
- .scaling_itme {
- color: #333;
- height: 100rpx;
- display: flex;
- align-items: center;
- padding: 0 20rpx;
- }
- .scaling_itme_left {
- flex: 2;
- display: flex;
- }
- .scaling_itme_right {
- flex: 3;
- display: flex;
- }
- .closeImg {
- width: 50rpx;
- height: 50rpx;
- position: absolute;
- right: 10rpx;
- top: 10rpx;
- }
- .closeImg > image {
- width: 50rpx;
- height: 50rpx;
- }
- .dailogBox {
- width: 100%;
- height: 100vh;
- background: rgba(0, 0, 0, 0.5);
- z-index: 99;
- position: fixed;
- left: 0;
- top: 0;
- z-index: 9999
- }
- .nodata {
- height: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .top {
- height: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- position: fixed;
- top: 0;
- z-index: 99;
- background-color: #fff;
- font-weight: 500;
- font-size: 36rpx;
- }
|