index.wxss 1.6 KB

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