index.module.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. .D1BuildM {
  2. position: relative;
  3. z-index: 40;
  4. background-size: 100% 100%;
  5. background-color: #fff;
  6. padding-top: 15px;
  7. :global {
  8. .D1top {
  9. width: 100%;
  10. height: 40px;
  11. padding: 0 15px;
  12. display: flex;
  13. .D1back {
  14. width: 40px;
  15. height: 40px;
  16. }
  17. }
  18. .D1topTab {
  19. width: calc(100% - 60px);
  20. margin-left: 20px;
  21. height: 40px;
  22. overflow-x: auto;
  23. &::-webkit-scrollbar {
  24. width: 0px;
  25. height: 0px;
  26. }
  27. .D1topTabMain {
  28. white-space: nowrap;
  29. display: inline-block;
  30. &>div {
  31. display: inline-block;
  32. height: 100%;
  33. line-height: 40px;
  34. margin-right: 15px;
  35. padding: 0 15px;
  36. color: var(--themeColor);
  37. font-size: 16px;
  38. border-radius: 20px;
  39. }
  40. .D1topRow {
  41. background-color: var(--themeColor2);
  42. font-weight: 700;
  43. }
  44. }
  45. }
  46. .D1list {
  47. width: 100%;
  48. height: calc(100% - 50px);
  49. margin-top: 10px;
  50. overflow-y: auto;
  51. padding-top: 40px;
  52. .D1row {
  53. width: 100%;
  54. height: 120px;
  55. padding: 0 5% 0 14%;
  56. max-width: 450px;
  57. margin: 0 auto 60px;
  58. position: relative;
  59. min-width: 340px;
  60. .D1row1 {
  61. width: 100%;
  62. height: 100%;
  63. background-size: 100% 100%;
  64. padding-left: 130px;
  65. display: flex;
  66. justify-content: center;
  67. flex-direction: column;
  68. color: var(--themeColor);
  69. &>div {
  70. font-size: 16px;
  71. font-weight: 700;
  72. margin-bottom: 6px;
  73. }
  74. &>p {
  75. opacity: .6;
  76. }
  77. }
  78. .D1row2 {
  79. width: 160px;
  80. height: 160px;
  81. height: calc(100% + 40px);
  82. position: absolute;
  83. z-index: 10;
  84. left: 15px;
  85. top: -20px;
  86. text-align: center;
  87. &>img {
  88. width: 100%;
  89. height: 100%;
  90. object-fit: contain;
  91. }
  92. }
  93. }
  94. }
  95. }
  96. }