templatelist.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. .list {
  2. padding: 20px;
  3. &__item {
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: space-between;
  7. background: #FFFFFF;
  8. padding: 20px;
  9. font-size: 28px;
  10. border-radius: 10px;
  11. margin-bottom: 17px;
  12. &__left {
  13. width: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. overflow: hidden;
  17. &-one {
  18. font-size: 32px;
  19. margin-bottom: 10px;
  20. }
  21. &-two {
  22. color: #9A9A9A;
  23. white-space: nowrap;
  24. overflow: hidden;
  25. text-overflow: ellipsis;
  26. }
  27. &-bottom {
  28. width: 100%;
  29. display: flex;
  30. flex-direction: row;
  31. align-items: center;
  32. justify-content: space-between;
  33. margin-top: 10px;
  34. color: #FFFFFF;
  35. &_g {
  36. width: 49%;
  37. background: #1AAD19;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. padding: 10px;
  42. border-radius: 10px;
  43. }
  44. &_d {
  45. width: 49%;
  46. background: #E64340;
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. padding: 10px;
  51. border-radius: 10px;
  52. }
  53. }
  54. }
  55. }
  56. }
  57. .spec {
  58. height: 100%;
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: space-between;
  62. &-title {
  63. text-align: center;
  64. font-size: 30px;
  65. padding: 20px;
  66. }
  67. &-info {
  68. padding: 0 30px;
  69. text-align: center;
  70. font-size: 34px;
  71. }
  72. &-bottom {}
  73. }
  74. /* 遮罩层样式 */
  75. .mask {
  76. position: fixed;
  77. top: 0;
  78. right: 0;
  79. bottom: 0;
  80. left: 0;
  81. background: rgba(0, 0, 0, 0.5);
  82. z-index: 998;
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. .count {
  87. width: 70%;
  88. background: #fff;
  89. border-radius: 15px;
  90. .title {
  91. font-size: 36px;
  92. display: flex;
  93. flex-direction: row;
  94. align-items: center;
  95. justify-content: center;
  96. margin-top: 20px;
  97. }
  98. &_top {
  99. padding: 30px;
  100. margin: 40px 0;
  101. &_input {
  102. border-bottom: 1px solid #d9d9d9;
  103. font-size: 32px;
  104. }
  105. &_date {
  106. border-bottom: 1px solid #d9d9d9;
  107. font-size: 32px;
  108. margin-top: 30px;
  109. }
  110. &_dates {
  111. border-bottom: 1px solid #d9d9d9;
  112. font-size: 32px;
  113. margin-top: 30px;
  114. color: #757575;
  115. }
  116. }
  117. &_foot {
  118. display: flex;
  119. flex-direction: row;
  120. }
  121. }
  122. }