index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. overflow: hidden;
  11. }
  12. .content .one {
  13. padding: 0 2vw;
  14. margin: 0 0 2vw 0;
  15. }
  16. .content .one video {
  17. width: 100%;
  18. height: 210px;
  19. overflow: hidden;
  20. border: 1px solid var(--rgbf1f);
  21. }
  22. .content .two {
  23. position: relative;
  24. flex-grow: 1;
  25. padding: 0 2vw;
  26. }
  27. .content .two .two_1 {
  28. display: flex;
  29. justify-content: space-around;
  30. margin: 0 0 2vw 0;
  31. }
  32. .content .two .two_1 .list ._span {
  33. background-color: var(--rgbfff);
  34. color: var(--rgb000);
  35. padding: 1vw 4vw;
  36. font-size: 14px;
  37. border-radius: 5px;
  38. }
  39. .content .two .two_1 .active ._span {
  40. background-color: var(--rgbfa4);
  41. color: var(--rgbfff);
  42. }
  43. .content .two .two_2 .tab_1 {
  44. display: flex;
  45. flex-direction: column;
  46. width: 96vw;
  47. height: 58vh;
  48. overflow-y: auto;
  49. }
  50. .content .two .two_2 .tab_1 .title {
  51. font-size: 15px;
  52. color: var(--rgbfff);
  53. margin: 0 0 2vw 0;
  54. }
  55. .content .two .two_2 .tab_1 .actor {
  56. margin: 0 0 2vw 0;
  57. }
  58. .content .two .two_2 .tab_1 .brief {
  59. font-size: 15px;
  60. color: var(--rgbfff);
  61. margin: 0 0 2vw 0;
  62. }
  63. .content .two .two_2 .tab_1 .other {
  64. margin: 0 0 2vw 0;
  65. }
  66. .content .two .two_2 .tab_1 .other .other_1 {
  67. font-size: 15px;
  68. color: var(--rgbfff);
  69. margin: 0 0 2vw 0;
  70. }
  71. .content .two .two_2 .tab_1 .other .other_2 {
  72. display: flex;
  73. flex-wrap: wrap;
  74. }
  75. .content .two .two_2 .tab_1 .other .other_2 .firmvideoList {
  76. width: 48%;
  77. margin: 0 10px 5px 0;
  78. }
  79. .content .two .two_2 .tab_1 .other .other_2 .firmvideoList .image {
  80. width: 100%;
  81. height: 100px;
  82. overflow: hidden;
  83. border-radius: 5px;
  84. box-shadow: 0 0 5px var(--rgbf1f);
  85. margin: 0 0 5px 0;
  86. }
  87. .content .two .two_2 .tab_1 .other .other_2 .firmvideoList .name {
  88. font-size: 14px;
  89. color: var(--rgbfff);
  90. margin: 0 0 5px 0;
  91. }
  92. .content .two .two_2 .tab_1 .other .other_2 .firmvideoList .other {
  93. display: flex;
  94. color: var(--rgbfff);
  95. font-size: 12px;
  96. justify-content: space-between;
  97. }
  98. .content .two .two_2 .tab_1 .other .other_2 .firmvideoList:nth-child(2n) {
  99. margin: 0 0 5px 0;
  100. }