index.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .list {
  2. width: 100%;
  3. }
  4. .list-item {
  5. position: relative;
  6. min-height: 400px;
  7. width: calc((100% - 120px) / 5);
  8. min-width: calc((100% - 120px) / 5);
  9. max-width: calc((100% - 120px) / 5);
  10. padding: 30px 20px;
  11. border-radius: 14px;
  12. margin-right: 30px;
  13. color: #774e20;
  14. background-color: #fafafa;
  15. }
  16. .list-item:nth-child(5n) {
  17. margin-right: 0;
  18. }
  19. .list-item .item-btn {
  20. position: absolute;
  21. bottom: 30px;
  22. left: 50%;
  23. transform: translateX(-50%);
  24. }
  25. ul li {
  26. list-style: none;
  27. font-size: 15px;
  28. margin: 10px 0;
  29. font-weight: 500;
  30. }
  31. .active {
  32. background-color: #fffbf8;
  33. border: 1px solid #f1b17a;
  34. box-shadow: 0px 6px 12px 0px rgba(216, 160, 82, 0.36);
  35. }
  36. :deep(.v-btn) {
  37. border: 1px solid #bc8b55;
  38. color: #c30f0f !important;
  39. font-weight: 700;
  40. }
  41. .tips {
  42. background-color: #fffbf8;
  43. border: 1px solid #f1b17a;
  44. border-radius: 4px;
  45. text-align: center;
  46. font-size: 15px;
  47. }
  48. .recommend {
  49. position: absolute;
  50. top: 0;
  51. left: 0;
  52. width: 55px;
  53. height: 26px;
  54. line-height: 26px;
  55. background-color: #ff8a04;
  56. border-radius: 12px 0 18px 0;
  57. font-weight: 600;
  58. font-size: 14px;
  59. color: #fff;
  60. text-align: center;
  61. }
  62. .scanCode {
  63. border: 1px dashed #ccc;
  64. border-radius: 10px;
  65. padding: 30px;
  66. }
  67. .scanCode .code-left {
  68. border: 1px solid #f1b17a;
  69. border-radius: 6px;
  70. padding: 5px;
  71. }
  72. .scanCode .price {
  73. font-size: 30px;
  74. font-weight: 700;
  75. color: #ff9012;
  76. }
  77. :deep(.v-slide-group__content) {
  78. background: none !important;
  79. }
  80. .package-title {
  81. height: 60px;
  82. line-height: 60px;
  83. color: #fff;
  84. background: linear-gradient(45deg, #ff8a04, transparent);
  85. font-weight: 700;
  86. font-size: 20px;
  87. text-align: center;
  88. border-radius: 4px;
  89. }