index.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .container {
  2. background-color: #f5f5f5;
  3. min-height: 100vh;
  4. .text-red {
  5. color: #ff0000;
  6. }
  7. .text-green {
  8. color: #52C41A;
  9. }
  10. .item {
  11. background-color: #fff;
  12. border-radius: 12rpx;
  13. padding: 24rpx;
  14. margin-bottom: 20rpx;
  15. display: block;
  16. .top {
  17. display: flex;
  18. justify-content: space-between;
  19. align-items: center;
  20. margin-bottom: 16rpx;
  21. .name {
  22. font-size: 32rpx;
  23. font-weight: bold;
  24. }
  25. .statu {
  26. font-size: 24rpx;
  27. padding: 4rpx 12rpx;
  28. border-radius: 8rpx;
  29. background-color: #fff;
  30. border: 2rpx solid;
  31. }
  32. }
  33. .content {
  34. .row {
  35. display: flex;
  36. flex-wrap: wrap;
  37. margin-bottom: 12rpx;
  38. .exp {
  39. flex: 1;
  40. font-size: 26rpx;
  41. color: #666;
  42. line-height: 1.5;
  43. &.full-width {
  44. width: 100%;
  45. }
  46. }
  47. }
  48. }
  49. }
  50. .header {
  51. background-color: #f5f5f5;
  52. }
  53. .loading {
  54. text-align: center;
  55. color: #999;
  56. padding: 20rpx 0;
  57. font-size: 24rpx;
  58. }
  59. .no-more {
  60. text-align: center;
  61. color: #999;
  62. padding: 20rpx 0;
  63. font-size: 24rpx;
  64. }
  65. }
  66. /* 开单按钮样式 */
  67. .create-order-button {
  68. position: fixed;
  69. bottom: 0;
  70. left: 0;
  71. right: 0;
  72. padding: 10rpx 30rpx 20rpx;
  73. background-color: #fff;
  74. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  75. display: flex;
  76. justify-content: center;
  77. z-index: 999;
  78. }
  79. .create-btn {
  80. width: 355px;
  81. height: 80rpx;
  82. line-height: 80rpx;
  83. border-radius: 8rpx !important;
  84. font-size: 32rpx;
  85. background-color: #3874F6;
  86. color: #fff;
  87. }
  88. /* 链接样式 */
  89. .link {
  90. color: #1890FF;
  91. text-decoration: underline;
  92. cursor: pointer;
  93. }
  94. .link:active {
  95. color: #096dd9;
  96. }