index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .container {
  2. background-color: #f5f5f5;
  3. min-height: 100vh;
  4. }
  5. .text-red {
  6. color: #FF4D4F;
  7. }
  8. .footer {
  9. position: fixed;
  10. bottom: 0;
  11. left: 0;
  12. right: 0;
  13. padding-top: 10rpx;
  14. padding-bottom: 30rpx;
  15. padding-left: 20rpx;
  16. padding-right: 20rpx;
  17. background-color: #fff;
  18. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  19. z-index: 999;
  20. }
  21. .van-button.but {
  22. width: 100%;
  23. height: 80rpx;
  24. line-height: 80rpx;
  25. font-size: 32rpx;
  26. border-radius: 10rpx;
  27. background-color: #3874F6 !important;
  28. color: #fff !important;
  29. border: none !important;
  30. }
  31. .header {
  32. width: 100%;
  33. }
  34. .item {
  35. display: flex;
  36. flex-direction: column;
  37. padding: 24rpx;
  38. background-color: #fff;
  39. margin-bottom: 20rpx;
  40. border-radius: 12rpx;
  41. .top {
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. margin-bottom: 16rpx;
  46. .name {
  47. font-size: 34rpx;
  48. font-weight: 600;
  49. color: #1a1a1a;
  50. flex: 1;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. white-space: nowrap;
  54. margin-right: 16rpx;
  55. }
  56. .statu {
  57. font-size: 22rpx;
  58. padding: 6rpx 16rpx;
  59. border-radius: 8rpx;
  60. font-weight: 500;
  61. flex-shrink: 0;
  62. background-color: #fff;
  63. border: 2rpx solid;
  64. }
  65. }
  66. .content {
  67. width: 100%;
  68. .row {
  69. display: flex;
  70. margin-top: 12rpx;
  71. &:first-child {
  72. margin-top: 0;
  73. }
  74. }
  75. .exp {
  76. flex: 1;
  77. font-size: 26rpx;
  78. color: #666;
  79. line-height: 1.5;
  80. &.full-width {
  81. flex: none;
  82. width: 100%;
  83. }
  84. }
  85. }
  86. }