blueray.scss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. @import "../../../sass/base/mixins";
  2. $borderColor : #dcdcdc;
  3. $orange : #ff6b1a;
  4. .page-zt-blueray{
  5. background: #ffffff;
  6. min-height: 100%;
  7. padding-top: px2rem(100);
  8. .blueray-hd{
  9. // position: relative;
  10. position: fixed;
  11. top: 0;
  12. z-index: 2;
  13. background: #ffffff;
  14. overflow: hidden;
  15. width: 100%;
  16. &.active{
  17. overflow: inherit;
  18. .hd-row1{
  19. &:after{
  20. top: px2rem(0);
  21. transform: rotate(-45deg);
  22. }
  23. }
  24. .hd-row2{
  25. transform: translateY(0);
  26. }
  27. }
  28. &.is-fixed{
  29. position: fixed;
  30. top: 0;
  31. .hd-row3{
  32. display: block;
  33. }
  34. }
  35. }
  36. .hd-row1{
  37. text-align: center;
  38. line-height: px2rem(100);
  39. position: relative;
  40. z-index: 2;
  41. background: #FFFFFF;
  42. font-size: px2rem(28);
  43. color: #181818;
  44. span{
  45. color: $orange;
  46. margin: 0 px2rem(12);
  47. }
  48. &:after{
  49. content: '';
  50. position: relative;
  51. top: px2rem(-8);
  52. display: inline-block;
  53. width: px2rem(12);
  54. height: px2rem(12);
  55. border-top: 1px solid $orange;
  56. border-right: 1px solid $orange;
  57. transform: rotate(135deg);
  58. }
  59. }
  60. .hd-row2{
  61. position: absolute;
  62. width: 100%;
  63. z-index: 1;
  64. background: #ffffff;
  65. transform: translateY(-100%);
  66. transition: all .2s;
  67. text-align: center;
  68. padding-bottom: px2rem(26);
  69. border-bottom: 1px solid $borderColor;
  70. font-size: px2rem(24);
  71. }
  72. .hd-row3{
  73. display: none;
  74. }
  75. .calendar-hd{
  76. @include webkitbox();
  77. line-height: px2rem(60);
  78. background: #f2f2f2;
  79. .col-fl,.col-fr{
  80. width: px2rem(60);
  81. &:before{
  82. content: '';
  83. display: inline-block;
  84. width: px2rem(12);
  85. height: px2rem(12);
  86. border-top: 1px solid #ababab;
  87. border-left: 1px solid #ababab;
  88. }
  89. &:active{
  90. background: #eaeaea;
  91. }
  92. }
  93. .col-fl{
  94. &:before{
  95. @include rotate(-45deg);
  96. }
  97. }
  98. .col-fr{
  99. &:before{
  100. @include rotate(135deg);
  101. }
  102. }
  103. .col-fm{
  104. @include flex(1);
  105. color: #666666;
  106. }
  107. }
  108. .calendar-bd{
  109. ul{
  110. @include clearfix();
  111. }
  112. li{
  113. float: left;
  114. width: px2rem(154);
  115. height: px2rem(109);
  116. border-radius: px2rem(5);
  117. border: 1px solid $borderColor;
  118. color: $orange;
  119. padding-top: px2rem(10);
  120. margin: px2rem(26) 0 0 px2rem(26);
  121. p{
  122. font-size: px2rem(32);
  123. color: #181818;
  124. line-height: px2rem(53);
  125. }
  126. &.active{
  127. background: $orange;
  128. color: #FFFFFF;
  129. p{
  130. color: #FFFFFF;
  131. }
  132. }
  133. }
  134. }
  135. .blueray-bd{
  136. position: relative;
  137. z-index: 1;
  138. .zt-list-film{
  139. .item-film{
  140. padding: px2rem(20) px2rem(24) px2rem(20) px2rem(30);
  141. border: none;
  142. }
  143. }
  144. }
  145. .list-date{
  146. }
  147. .item-date{
  148. }
  149. .title-date{
  150. padding-left: px2rem(20);
  151. position: relative;
  152. font-size: px2rem(24);
  153. color: #888888;
  154. line-height: px2rem(60);
  155. border-top: 1px solid #dcdcdc;
  156. padding-top: px2rem(10);
  157. background: #FFFFFF;
  158. i{
  159. display: inline-block;
  160. width: px2rem(20);
  161. height: px2rem(20);
  162. border-radius: 50%;
  163. background: rgba(255,111,0,0.2);
  164. padding: px2rem(5) 0 0 px2rem(5);
  165. margin-right: px2rem(10);
  166. &:before{
  167. content: '';
  168. display: block;
  169. width: px2rem(10);
  170. height: px2rem(10);
  171. border-radius: 50%;
  172. background: $orange;
  173. }
  174. }
  175. }
  176. .no-blueray{
  177. background: url(../../img/bg-no-blueray.png) center px2rem(200) no-repeat;
  178. background-size: auto px2rem(164);
  179. font-size: px2rem(28);
  180. color: #888888;
  181. text-align: center;
  182. padding-top: px2rem(400);
  183. border-top: 1px solid $borderColor;
  184. }
  185. }