index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .main {
  2. height: 88vh;
  3. }
  4. .main .one {
  5. width: 100%;
  6. }
  7. .main .two {
  8. flex-grow: 1;
  9. position: relative;
  10. width: 96vw;
  11. }
  12. .main .two .scroll-view {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. right: 0;
  17. bottom: 0;
  18. }
  19. .main .two .scroll-view .list-scroll-view {
  20. display: flex;
  21. flex-wrap: wrap;
  22. align-content: flex-start;
  23. justify-content: space-between;
  24. }
  25. .main .two .scroll-view .list-scroll-view .list {
  26. display: flex;
  27. flex-direction: column;
  28. width: 96vw;
  29. padding: 10px;
  30. background-color: #ffffff;
  31. margin: 2px 0 0 0;
  32. }
  33. .main .two .scroll-view .list-scroll-view .list .name {
  34. font-size: 14px;
  35. font-weight: bold;
  36. margin: 0 0 5px 0;
  37. }
  38. .main .two .scroll-view .list-scroll-view .list .other {
  39. font-size: 12px;
  40. margin: 0 0 5px 0;
  41. }
  42. .main .two .scroll-view .list-scroll-view .list .other .other_1 {
  43. padding: 2px 0;
  44. }
  45. .main .two .scroll-view .list-scroll-view .list .other .other_1 text:nth-child(1) {
  46. color: #666;
  47. }
  48. .main .two .scroll-view .list-scroll-view .list .btn {
  49. text-align: center;
  50. }
  51. .main .two .scroll-view .list-scroll-view .list .btn button {
  52. color: #216EC7;
  53. }
  54. .dialog_one {
  55. margin: 10px 0 0 0;
  56. }
  57. .dialog_one .one_1 {
  58. display: flex;
  59. flex-direction: row;
  60. justify-content: space-between;
  61. border: 1px solid #ccc;
  62. border-radius: 5px;
  63. margin: 0 0 10px 0;
  64. padding: 10px;
  65. }
  66. .dialog_one .one_1 .text {
  67. width: 20vw;
  68. color: #666;
  69. font-size: 14px;
  70. }
  71. .dialog_one .one_1 .text1 {
  72. font-size: 14px;
  73. color: #000;
  74. }
  75. .dialog_one .one_1 .image {
  76. width: 15vw;
  77. height: 15vw;
  78. }