index.wxss 854 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**
  2. ** 全局样式
  3. **/
  4. /* 卡片样式 */
  5. .card {
  6. margin: 32rpx 28rpx 0 28rpx;
  7. background-color: white;
  8. border-radius: 8rpx;
  9. box-shadow: 0px 0px 6px 0px #DFE4EC;
  10. }
  11. .over-hidden {
  12. overflow: hidden;
  13. }
  14. /* 左右居中 */
  15. .align-center {
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-around;
  19. }
  20. /* 字体颜色 */
  21. .text-black {
  22. color: #1A324E !important;
  23. }
  24. .text-gray {
  25. color: #7786A5 !important;
  26. }
  27. .text-grey {
  28. color: #E0E0E0 !important;
  29. }
  30. .text-blue {
  31. color: #5C8DD8 !important;
  32. }
  33. /* van-cell的label长度减少 */
  34. .label-sm .van-cell__value {
  35. flex: 2 !important;
  36. }
  37. /* margin外边距 */
  38. .margin-left-sm {
  39. margin-left: 20rpx;
  40. }
  41. /* 分割线 */
  42. .cut-line-dash {
  43. margin: 40rpx 26rpx 40rpx 26rpx;
  44. height: 1px;
  45. background: linear-gradient(to right, #D1DAF1 50%, transparent 50%);
  46. background-size: 10px 1px;
  47. }