index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .content {
  9. background-color: var(--rgb111);
  10. }
  11. .content .one {
  12. padding: 2vw;
  13. }
  14. .content .one input {
  15. border: 1px solid var(--rgbf1f);
  16. border-radius: 5px;
  17. padding: 5px;
  18. font-size: 14px;
  19. color: var(--rgbfff);
  20. }
  21. .content .two {
  22. flex-grow: 1;
  23. position: relative;
  24. }
  25. .content .two .two_1 {
  26. display: flex;
  27. flex-wrap: wrap;
  28. }
  29. .content .two .two_1 .list {
  30. position: relative;
  31. width: 48%;
  32. margin: 0 10px 10px 0;
  33. }
  34. .content .two .two_1 .list .image {
  35. width: 100%;
  36. height: 100px;
  37. overflow: hidden;
  38. border-radius: 5px;
  39. box-shadow: 0 0 5px var(--rgbf1f);
  40. margin: 0 0 5px 0;
  41. }
  42. .content .two .two_1 .list .name {
  43. font-size: 14px;
  44. color: var(--rgbfff);
  45. margin: 0 0 5px 0;
  46. }
  47. .content .two .two_1 .list .other {
  48. display: flex;
  49. color: var(--rgbfff);
  50. font-size: 12px;
  51. justify-content: space-between;
  52. }
  53. .content .two .two_1 .list .vip {
  54. position: absolute;
  55. top: 0;
  56. left: 1vw;
  57. }
  58. .content .two .two_1 .list .vip ._span {
  59. font-size: 14px;
  60. font-weight: bold;
  61. color: var(--rgbffd);
  62. }
  63. .content .two .two_1 .list:nth-child(2n) {
  64. margin: 0 0 10px 0;
  65. }
  66. .scroll-view {
  67. position: absolute;
  68. top: 0;
  69. left: 0;
  70. right: 0;
  71. bottom: 0;
  72. }
  73. .scroll-view .list-scroll-view {
  74. display: flex;
  75. flex-direction: column;
  76. padding: 0 2vw;
  77. }
  78. .is_bottom {
  79. text-align: center;
  80. }
  81. .is_bottom text {
  82. padding: 2vw 0;
  83. display: inline-block;
  84. color: #858585;
  85. font-size: 14px;
  86. }