index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .main {
  2. height: 80.8vh;
  3. }
  4. .main .one {
  5. width: 100%;
  6. }
  7. .main .two {
  8. width: 100%;
  9. margin: 2px;
  10. }
  11. .main .thr {
  12. width: 96vw;
  13. flex-grow: 1;
  14. position: relative;
  15. background-color: #ffffff;
  16. }
  17. .main .thr .scroll-view {
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. bottom: 0;
  23. }
  24. .main .thr .scroll-view .list-scroll-view {
  25. display: flex;
  26. flex-wrap: wrap;
  27. align-content: flex-start;
  28. justify-content: space-between;
  29. }
  30. .main .thr .scroll-view .list-scroll-view .list {
  31. display: flex;
  32. width: 96vw;
  33. margin: 10px 0;
  34. border-bottom: 0.1px solid #D1CFCF;
  35. }
  36. .main .thr .scroll-view .list-scroll-view .list .image {
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. width: 30vw;
  41. }
  42. .main .thr .scroll-view .list-scroll-view .list .image image {
  43. width: 20vw;
  44. height: 20vw;
  45. border-radius: 5px;
  46. }
  47. .main .thr .scroll-view .list-scroll-view .list .content {
  48. padding: 5px;
  49. }
  50. .main .thr .scroll-view .list-scroll-view .list .content .name {
  51. font-size: 14px;
  52. font-weight: bold;
  53. padding: 2px 0;
  54. list-style: disc;
  55. }
  56. .main .thr .scroll-view .list-scroll-view .list .content .title {
  57. font-size: 12px;
  58. color: #666;
  59. padding: 2px 0;
  60. display: -webkit-box;
  61. overflow: hidden;
  62. -webkit-line-clamp: 3;
  63. -webkit-box-orient: vertical;
  64. }
  65. .main .thr .scroll-view .list-scroll-view .list .content .title text {
  66. padding: 0 10px;
  67. }