| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .tags {
- display: flex;
- width: 100%;
- flex-direction: row;
- justify-content: flex-start;
- background: white;
- height: 40px;
- align-items: center;
- }
- .van-cell__value{
- color: #95A8CB !important;
- }
- .van-field__placeholder{
- color: #95A8CB !important;
- }
- .van-field__label{
- color: #95A8CB !important;
- }
- .van-icon van-icon-arrow{
- color: #95A8CB !important;
- }
-
- /**底部的样式*/
- .bottom-class{
- position: fixed;
- bottom: 20rpx;
- width: 100%;
- align-items: center;
- justify-content: center;
- border-top: 2rpx solid #efefef;
- z-index: 2;
- display: flex;
- }
-
- /**底部保存按钮的样式*/
- .save-button-class{
- width: 640rpx;
- background: #1B365D !important;
- border-radius: 15rpx !important;
- color:#fff !important;
- font-size: 16px !important;
- font-weight: 500 !important;
- }
|