list.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .main {
  2. height: var(--twoHeight);
  3. }
  4. .main .one {
  5. width: 96vw;
  6. padding: 2vw;
  7. }
  8. .main .one input {
  9. padding: 2vw;
  10. background-color: var(--f1Color);
  11. border-radius: 5px;
  12. }
  13. .main .two {
  14. flex-grow: 1;
  15. position: relative;
  16. width: 96vw;
  17. margin: 0 2vw 2vw 2vw;
  18. }
  19. .main .two .list {
  20. display: flex;
  21. flex-direction: column;
  22. padding: 2vw;
  23. margin: 0 0 2vw 0;
  24. background-color: var(--mainColor);
  25. }
  26. .main .two .list .list_1 .name {
  27. font-size: var(--font16Size);
  28. font-weight: bold;
  29. margin: 0 0 1vw 0;
  30. text-align: center;
  31. }
  32. .main .two .list .list_1 .other {
  33. display: flex;
  34. flex-direction: column;
  35. width: 90vw;
  36. justify-content: space-between;
  37. border-top: 1px dashed var(--f1Color);
  38. border-bottom: 1px dashed var(--f1Color);
  39. padding: 1vw;
  40. font-size: var(--font14Size);
  41. margin: 0 0 1vw 0;
  42. }
  43. .main .two .list .list_1 .other .other_1 {
  44. padding: 0 0 1vw 0;
  45. }
  46. .main .two .list .list_1 .other .other_1 text:nth-child(1) {
  47. color: #666;
  48. }
  49. .main .two .list .btn {
  50. width: 92vw;
  51. text-align: center;
  52. margin: 2vw 0 0 0;
  53. }
  54. .main .two .list .btn button {
  55. font-size: var(--font14Size);
  56. background: -webkit-linear-gradient(right, lightblue, #53C9F8);
  57. }
  58. .scroll-view {
  59. position: absolute;
  60. top: 0;
  61. left: 0;
  62. right: 0;
  63. bottom: 0;
  64. }
  65. .scroll-view .list-scroll-view {
  66. display: flex;
  67. flex-direction: column;
  68. }