123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- .header {
- height: 296rpx;
- overflow: hidden;
- background: url(../../static/img/myCars-header-bg.png) no-repeat;
- background-size: contain;
- color: $my-main-color;
- }
- .header .header-title {
- margin-top: 80rpx;
- color: #fff;
- font-size: 50rpx;
- text-align: center;
- }
- .statistics {
- margin: -78rpx 0 59rpx;
- background-color: #fff;
- box-shadow: 0px 6rpx 10px 0px rgba(0, 0, 0, 0.06);
- border-radius: 15rpx;
- height: 182rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #323232;
- }
- .statistics-title {
- font-size: 60rpx;
- letter-spacing: 2rpx;
- }
- .statistics-center {
- width: 4rpx;
- height: 106rpx;
- margin: 0 103rpx;
- box-shadow: 0px 6rpx 10rpx 0rx rgba(0, 0, 0, 0.06);
- opacity: 0.5;
- border: 1px solid #979797;
- }
- .statistics-number-wrap {
- font-size: 28rpx;
- }
- .statistics-number-wrap .number {
- margin-right: 4rpx;
- font-size: 72rpx;
- }
- .add-car-btn {
- height: 100rpx;
- line-height: 100rpx;
- background: #008cff;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- box-shadow: 0px 7rpx 13rpx 0px rgba(16, 153, 250, 0.31);
- border-radius: 10rpx;
- margin-bottom: 50rpx;
- }
- .new-plate-number {
- margin-bottom: 70rpx;
- }
- .message-input-wrap {
- margin: 0 -40rpx;
- }
- .message-input-wrap /deep/ .u-input ~ uni-view:last-of-type .u-char-item {
- background-color: #e8ffe8;
- }
- .mycars {
- padding-bottom: 30rpx;
- }
- .mycars-item {
- display: flex;
- align-items: center;
- height: 111rpx;
- border-bottom: 1px solid #eaeaea;
- }
- .mycars-item:nth-last-child(2) {
- margin-bottom: 30rpx;
- }
- .mycars-item-name {
- // margin-right: 43rpx;
- width: 258rpx;
- font-size: 36rpx;
- color: #4b4b4b;
- }
- .mycars-item-type {
- font-size: 26rpx;
- color: #959595;
- }
- .mycars-item-sign {
- line-height: 40rpx;
- text-align: center;
- border-radius: 5rpx;
- color: #fff;
- font-size: 22rpx;
- padding: 0 15rpx;
- border: solid 1px #ff6d6d;
- background-color: #ff6d6d;
- margin-left: 40rpx;
- }
- .mycars-item-sign1 {
- line-height: 40rpx;
- text-align: center;
- border-radius: 5rpx;
- color: #fff;
- font-size: 22rpx;
- padding: 0 15rpx;
- border: solid 1px #d8d8d8;
- background-color: #d8d8d8;
- margin-left: 40rpx;
- }
- .mycars-item-tool {
- flex: 1;
- font-size: 22rpx;
- color: #c9c9c9;
- text-align: right;
- }
- .mycars-item-tool .default {
- display: inline-block;
- box-sizing: border-box;
- // width: 75rpx;
- height: 38rpx;
- line-height: 34rpx;
- border-radius: 5rpx;
- border: 1px solid #e3e3e3;
- text-align: center;
- margin-right: 17rpx;
- font-size: 18rpx;
- color: #cdcdcd;
- }
- .mycars-item-tool .default.isDefault {
- background-color: #ffeee3;
- border-color: #ffeee3;
- color: #fa6400;
- }
|