add.wxss 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .tags {
  2. display: flex;
  3. width: 100%;
  4. flex-direction: row;
  5. justify-content: flex-start;
  6. background: white;
  7. height: 40px;
  8. align-items: center;
  9. }
  10. .van-cell__value{
  11. color: #95A8CB !important;
  12. }
  13. .van-field__placeholder{
  14. color: #95A8CB !important;
  15. }
  16. .van-field__label{
  17. color: #95A8CB !important;
  18. }
  19. .van-icon van-icon-arrow{
  20. color: #95A8CB !important;
  21. }
  22. /**底部的样式*/
  23. .bottom-class{
  24. position: fixed;
  25. bottom: 20rpx;
  26. width: 100%;
  27. align-items: center;
  28. justify-content: center;
  29. border-top: 2rpx solid #efefef;
  30. z-index: 2;
  31. display: flex;
  32. }
  33. /**底部保存按钮的样式*/
  34. .save-button-class{
  35. width: 640rpx;
  36. background: #1B365D !important;
  37. border-radius: 15rpx !important;
  38. color:#fff !important;
  39. font-size: 16px !important;
  40. font-weight: 500 !important;
  41. }