| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/station/index.wxss */
- .custom-tabs{
- width: 100%;
- height: 100vh;
- padding: 0rpx 20rpx 20rpx 20rpx;
- background-color: rgb(245, 245, 245);
- overflow: auto;
-
- box-sizing: border-box;
- }
- .custom_box{
- width:100%;
- padding: 1rpx 20rpx 20rpx 20rpx;
- border-radius: 20rpx;
- background-color: #ffffff;
- box-sizing: border-box;
- /* overflow: auto; */
- }
- .custom_title{
- width: 100%;
- display: flex;
- justify-content: space-between;
- padding: 20rpx 0rpx;
- border-bottom:1rpx solid #E1E0F4;
- box-sizing: border-box;
- }
- .custom_title_gl{
- font-size: 26rpx;
- color: #222222;
- }
- .custom_div{
- width: 100%;
- display: flex;
- justify-content: space-between;
- margin-top: 20rpx;
- }
- .custom_div1{
- font-size: 26rpx;
- color: #222222;
- }
- .battery{
- font-size: 24rpx;
- color: #222222;
-
- }
- .batteryccc{
- font-size: 26rpx;
- color: #999999;
-
- }
- .tag_type1 {
- font-size: 28rpx;
- color: #F0A26C;
- font-weight: 500;
- }
-
- .tag_type2 {
- font-size: 28rpx;
- color: #15DB9B;
- font-weight: 500;
- }
-
- .tag_type3 {
- font-size: 28rpx;
- color: #b0c4de;
- font-weight: 500;
- /* 蓝 */
- }
- .tag_type2red {
- font-size: 28rpx;
- color: red;
- font-weight: 500;
- /* 蓝 */
- }
- .custom_box{
- margin-top: 20rpx;
- }
- .tag_typetext{
- width: 100%;
- display: flex;
- font-size: 26rpx;
- justify-content: center;
- color: #b0c4de;
- margin-top: 20rpx;
- }
|