index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. width: 48%;
  31. margin: 0 10px 10px 0;
  32. }
  33. .content .two .two_1 .list .image {
  34. width: 100%;
  35. height: 100px;
  36. overflow: hidden;
  37. border-radius: 5px;
  38. box-shadow: 0 0 5px var(--rgbf1f);
  39. margin: 0 0 5px 0;
  40. }
  41. .content .two .two_1 .list .name {
  42. font-size: 14px;
  43. color: var(--rgbfff);
  44. margin: 0 0 5px 0;
  45. }
  46. .content .two .two_1 .list .other {
  47. display: flex;
  48. color: var(--rgbfff);
  49. font-size: 12px;
  50. justify-content: space-between;
  51. }
  52. .content .two .two_1 .list:nth-child(2n) {
  53. margin: 0 0 10px 0;
  54. }
  55. .scroll-view {
  56. position: absolute;
  57. top: 0;
  58. left: 0;
  59. right: 0;
  60. bottom: 0;
  61. }
  62. .scroll-view .list-scroll-view {
  63. display: flex;
  64. flex-direction: column;
  65. padding: 0 2vw;
  66. }
  67. .is_bottom {
  68. text-align: center;
  69. }
  70. .is_bottom text {
  71. padding: 2vw 0;
  72. display: inline-block;
  73. color: #858585;
  74. font-size: 14px;
  75. }