| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- page {
- background-color: var(--td-bg-color-container);
- /* background-color: #f9f9f9; */
- background: linear-gradient(to bottom, #F0F5F5 -40%, #F0F5F5 40%,#F0F5F5 100%);
- padding: 10rpx 20rpx 20rpx 20rpx;
- box-sizing: border-box;
- }
- .body{
- background-color: #ffffff;
- border-radius: 10rpx;
- padding: 0rpx 0rpx;
- box-sizing: border-box;
- }
- .car{
- margin-top: 20rpx;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- }
- .car_right{
- width: 240rpx;
- display: flex;
- justify-content: space-between;
- }
- .cartbuy{
- padding: 8rpx 26rpx;
- border-radius: 10rpx;
- border: 1rpx solid #cccccc;
- }
- .carsell{
- padding: 8rpx 26rpx;
- border-radius: 10rpx;
- border: 1rpx solid red;
- }
- .model_right{
- display: flex;
- justify-content: space-between;
- }
- .picker{
- display: flex;
- }
- .call-btn {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- margin-bottom: 64rpx;
- background-color: #00C775;
- color: white;
- width: 90%;
- height: 96rpx;
- line-height: 96rpx;
- font-size: 34rpx;
- border-radius: 48rpx;
- box-sizing: border-box;
- display: flex;
- justify-content:space-around;
- }
- .call-btn_left_electricity{
- width: 50%;
- height: 100%;
- }
- .call-btn_right_electricity{
- width: 50%;
- height: 100%;
- border-left: 4rpx solid #ffffff;
- }
- .powerlevel{
- border-radius: 6rpx;
- text-align: right;
- padding-right: 40rpx;
- }
- /* */
- radio-group{
- display: flex;
- align-items: center;
- }
- .weui-cell{
- display: flex;
- align-items: center;
-
- }
- .weui-cell__hd{
- margin-left: 20rpx;
- }
|