123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* pages/weighingRecord/info.wxss */
- .part {
- border-radius: 16rpx;
- /* padding: 20rpx 00rpx; */
- background: #fff;
- }
- .topCarInfo{
- margin-top: -30rpx;
- padding: 24rpx 36rpx;
- border-radius: 20rpx 20rpx 0rpx 0rpx;
- z-index: 1;
- position: relative;
- }
- .title{
- position: relative;
- }
- .title-left{
- display: flex;
- align-items: center;
- }
- .title-right{
- position: absolute;
- top: 0rpx;
- right: 0;
- line-height: 54rpx;
- font-size: 20rpx;
- color: rgba(0,0,0,0.65);
- /* z-index: 1; */
- }
- .title-right>view:last-child{
- margin-top: -14rpx;
- }
- .licensePlate{
- margin-left: 16rpx;
- }
- .codeType{
- margin-top: 10rpx;
- }
- .codeType text{
- display: inline-block;
- height: 44rpx;
- line-height: 44rpx;
- margin-right: 12rpx;
- padding: 0 8rpx;
- font-size: 20rpx;
- color: #2C6CEC;
- background: rgba(44,108,236,0.1);
- border-radius: 4rpx;
- }
- .weightNum{
- display: flex;
- padding: 20rpx 0;
- background: #F4F5F8;
- margin: 16rpx 0 0;
- border-radius: 4rpx;
- overflow: hidden;
- }
- .weightNum > view{
- flex: 1;
- overflow: hidden;
- text-align: center;
- }
- .weightNum > view text{
- display: block;
- }
- .weightNum > view text:first-child{
- font-size: 20rpx;
- color: rgba(0,0,0,0.45);
- margin-bottom: 6rpx;
- }
- .weightNum > view text:last-child{
- font-size: 28rpx;
- font-weight: bold;
- color: rgba(0,0,0,0.85);
- }
- .weightLeft{
- position: relative;
- }
- .weightLeft::after{
- height: 58rpx;
- border-right: 1rpx solid rgba(0,0,0,0.08);
- bottom: 0;
- box-sizing: border-box;
- content: " ";
- pointer-events: none;
- position: absolute;
- right: 0;
- }
- .topImgBox{
- position: relative;
- }
- .topImgBox image{
- width: 100%;
- }
- .imgTitle{
- font-size: 20rpx;
- color: #FFFFFF;
- position: absolute;
- right: 20rpx;
- bottom: 60rpx;
- }
- .imgTitle text{
- padding: 8rpx 10rpx;
- }
- /* 轮播图 */
- .banner {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 500rpx;
- background-color: #8d8d8d;
- }
- .slide-image{
- width: 100%;
- height: 100%;
- }
- .showNumber{
- position: absolute;
- top: 400rpx;
- right: 30rpx;
- z-index: 9999;
- color: #f5f5f5;
- font-size: 14px;
- }
- /* 图片上传时高度自适应 */
- .checkbox {
- height: auto;
- }
- .checkboxView .van-cell__value,
- .checkbox .van-field__control--custom {
- height: auto;
- }
|