main.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. @import "../../../../public/scss/reset.scss";
  2. @import "../../../../public/scss/unicom.scss";
  3. html,
  4. body {
  5. margin: 0;
  6. padding: 0;
  7. width: 100%;
  8. height: 22rem;
  9. background-image: url("../images/bg.png");
  10. background-repeat: no-repeat;
  11. background-size: contain;
  12. & > .banner-bg {
  13. margin-top: 1.29rem;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: flex-start;
  17. align-items: center;
  18. & > .title {
  19. width: 6.47rem;
  20. height: 3.69rem;
  21. display: block;
  22. margin-bottom: 0.21rem;
  23. }
  24. & > .main {
  25. width: 6.44rem;
  26. height: 6.64rem;
  27. display: block;
  28. }
  29. & > .btn {
  30. width: 6.01rem;
  31. height: 1.07rem;
  32. display: block;
  33. margin-top: 0.21rem;
  34. }
  35. }
  36. .border-text {
  37. // width: 100%;
  38. margin: 0 auto;
  39. margin-top: 0.44rem;
  40. display: flex;
  41. flex-direction: column;
  42. justify-content: flex-start;
  43. align-items: center;
  44. // background-image: url("../images/bg-border.png");
  45. background-color:rgba(226, 244, 255,.5);
  46. border: 4px solid #3b7cff;
  47. background-repeat: no-repeat;
  48. background-size: contain;
  49. width: 6.68rem;
  50. height: 7.5rem;
  51. border-radius: .4rem;
  52. padding: .47rem 0 .6rem .53rem;
  53. box-sizing: border-box;
  54. font-size: 0.2708rem;
  55. padding-right: 2px;
  56. }
  57. .content-text {
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: flex-start;
  61. align-items: center;
  62. // width: 100%;
  63. // height: 100%;
  64. padding-right: calc(.53rem - 2px);
  65. overflow-y: scroll;
  66. .title {
  67. font-size: 0.375rem;
  68. margin-top: .47rem;
  69. position: relative;
  70. z-index: 2;
  71. margin-bottom: .32rem;
  72. }
  73. .title-1-cell {
  74. margin-top: 0;
  75. }
  76. .title::after {
  77. content: "";
  78. display: block;
  79. width: 2rem;
  80. height: .18rem;
  81. background-color: #81abff;
  82. position: absolute;
  83. bottom: -.02rem;
  84. z-index: -1;
  85. left: -.25rem;
  86. }
  87. .text {
  88. .text-cell {
  89. margin-bottom: .6rem;
  90. .b-text {
  91. font-weight: 700;
  92. color: #000;
  93. font-style: normal;
  94. }
  95. }
  96. & :last-child {
  97. margin-bottom: 0;
  98. }
  99. }
  100. }
  101. .content-text::-webkit-scrollbar {
  102. width: 0.08rem;
  103. }
  104. .content-text::-webkit-scrollbar-thumb {
  105. background-color: #d9d9d9 !important;
  106. // width: 0.13rem;
  107. height: 1.82rem;
  108. border-radius: 0.065rem;
  109. }
  110. .content-text::-webkit-scrollbar-track {
  111. padding-right: 2px;
  112. }
  113. }