movie-detail.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. @import "../stars/stars-template.wxss";
  2. .container{
  3. display:flex;
  4. flex-direction: column;
  5. }
  6. .head-img{
  7. width:100%;
  8. height: 320rpx;
  9. -webkit-filter:blur(20px);
  10. }
  11. .head-img-hover{
  12. width: 100%;
  13. height: 320rpx;
  14. position:absolute;
  15. top:0;
  16. left:0;
  17. display:flex;
  18. flex-direction: column;
  19. }
  20. .main-title{
  21. font-size: 19px;
  22. color:#fff;
  23. font-weight:bold;
  24. margin-top: 50rpx;
  25. margin-left: 40rpx;
  26. letter-spacing: 2px;
  27. }
  28. .sub-title{
  29. font-size: 28rpx;
  30. color:#fff;
  31. margin-left: 40rpx;
  32. margin-top: 30rpx;
  33. }
  34. .like{
  35. display:flex;
  36. flex-direction: row;
  37. margin-top: 30rpx;
  38. margin-left: 40rpx;
  39. }
  40. .highlight-font{
  41. color: #f21146;
  42. font-size:22rpx;
  43. margin-right: 10rpx;
  44. }
  45. .plain-font{
  46. color: #666;
  47. font-size:22rpx;
  48. margin-right: 30rpx;
  49. }
  50. .movie-img{
  51. height:238rpx;
  52. width: 175rpx;
  53. position: absolute;
  54. top:160rpx;
  55. right: 30rpx;
  56. }
  57. .summary{
  58. margin-left:40rpx;
  59. margin-top: 40rpx;
  60. color: #777777;
  61. }
  62. .original-title{
  63. color: #1f3463;
  64. font-size: 24rpx;
  65. font-weight: bold;
  66. margin-bottom: 40rpx;
  67. }
  68. .flex-row{
  69. display:flex;
  70. flex-direction: row;
  71. margin-bottom: 10rpx;
  72. }
  73. .mark{
  74. margin-right: 30rpx;
  75. white-space:nowrap;
  76. color: #999999;
  77. }
  78. .hr{
  79. margin-top:45rpx;
  80. height:1px;
  81. width: 100%;
  82. background-color: #d9d9d9;
  83. }
  84. .synopsis{
  85. margin-left:40rpx;
  86. display:flex;
  87. flex-direction: column;
  88. margin-top: 50rpx;
  89. }
  90. .synopsis-font{
  91. color:#999;
  92. }
  93. .summary-content{
  94. margin-top: 20rpx;
  95. margin-right: 40rpx;
  96. line-height:40rpx;
  97. letter-spacing: 1px;
  98. }
  99. .cast{
  100. margin-left:40rpx;
  101. display:flex;
  102. flex-direction: column;
  103. margin-top:50rpx;
  104. }
  105. .cast-font{
  106. color: #999;
  107. margin-bottom: 40rpx;
  108. }
  109. .cast-container{
  110. display:inline-flex;
  111. flex-direction: column;
  112. margin-bottom: 50rpx;
  113. margin-right: 40rpx;
  114. width: 170rpx;
  115. text-align:center;
  116. white-space: normal;
  117. }
  118. .cast-imgs{
  119. white-space: nowrap;
  120. }
  121. .cast-img{
  122. width: 170rpx;
  123. height: 210rpx;
  124. }
  125. .cast-name{
  126. margin: 10rpx auto 0;
  127. }
  128. .hidden{
  129. opacity: 0;
  130. }
  131. .visible{
  132. opacity: 1;
  133. transition: opacity 1s ease-in-out;
  134. }