index.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .container {
  2. background-color: #f5f5f5;
  3. min-height: 100vh;
  4. .item {
  5. background-color: #fff;
  6. border-radius: 16rpx;
  7. padding: 24rpx;
  8. margin-bottom: 20rpx;
  9. display: block;
  10. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06);
  11. .top {
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. margin-bottom: 16rpx;
  16. .name {
  17. font-size: 34rpx;
  18. font-weight: 600;
  19. color: #1a1a1a;
  20. flex: 1;
  21. }
  22. .statu {
  23. font-size: 24rpx;
  24. padding: 6rpx 20rpx;
  25. border-radius: 8rpx;
  26. font-weight: 500;
  27. background-color: #fff;
  28. border: 2rpx solid;
  29. flex-shrink: 0;
  30. }
  31. }
  32. .content {
  33. .row {
  34. display: flex;
  35. flex-wrap: wrap;
  36. margin-bottom: 12rpx;
  37. .exp {
  38. flex: 1;
  39. font-size: 26rpx;
  40. color: #666;
  41. line-height: 1.5;
  42. &.full-width {
  43. width: 100%;
  44. }
  45. }
  46. }
  47. }
  48. }
  49. .header {
  50. background-color: #f5f5f5;
  51. }
  52. }
  53. /* 新建按钮样式 */
  54. .create-order-button {
  55. position: fixed;
  56. bottom: 0;
  57. left: 0;
  58. right: 0;
  59. padding: 10rpx 30rpx 20rpx;
  60. background-color: #fff;
  61. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  62. display: flex;
  63. justify-content: center;
  64. z-index: 999;
  65. }
  66. .create-btn {
  67. width: 355px;
  68. height: 80rpx;
  69. line-height: 80rpx;
  70. border-radius: 8rpx !important;
  71. font-size: 32rpx;
  72. background-color: #3874F6;
  73. color: #fff;
  74. }