LArea.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. .gearArea {
  2. font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  3. font-size: 10px;
  4. background-color: rgba(0, 0, 0, 0.2);
  5. display: block;
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 100%;
  11. z-index: 9900;
  12. overflow: hidden;
  13. -webkit-animation-fill-mode: both;
  14. animation-fill-mode: both
  15. }
  16. .area_ctrl {
  17. vertical-align: middle;
  18. background-color: #ffffff;
  19. color: #000;
  20. margin: 0;
  21. height: 273px;
  22. width: 100%;
  23. position: absolute;
  24. left: 0;
  25. bottom: 0;
  26. z-index: 9901;
  27. overflow: hidden;
  28. -webkit-transform: translate3d(0, 0, 0);
  29. transform: translate3d(0, 0, 0)
  30. }
  31. .slideInUp {
  32. -webkit-animation: slideInUp .3s;
  33. animation: slideInUp .3s;
  34. }
  35. @-webkit-keyframes slideInUp {
  36. from {
  37. -webkit-transform: translate3d(0, 100%, 0);
  38. transform: translate3d(0, 100%, 0)
  39. }
  40. to {
  41. -webkit-transform: translate3d(0, 0, 0);
  42. transform: translate3d(0, 0, 0)
  43. }
  44. }
  45. @keyframes slideInUp {
  46. from {
  47. -webkit-transform: translate3d(0, 100%, 0);
  48. transform: translate3d(0, 100%, 0)
  49. }
  50. to {
  51. -webkit-transform: translate3d(0, 0, 0);
  52. transform: translate3d(0, 0, 0)
  53. }
  54. }
  55. .area_roll {
  56. display: -webkit-box;
  57. display: -webkit-flex;
  58. display: -ms-flexbox;
  59. display: flex;
  60. width: 100%;
  61. height: auto;
  62. overflow: hidden;
  63. background-color: transparent;
  64. -webkit-mask: -webkit-gradient(linear, 0% 50%, 0% 100%, from(#debb47), to(rgba(36, 142, 36, 0)));
  65. -webkit-mask: -webkit-linear-gradient(top, #debb47 50%, rgba(36, 142, 36, 0))
  66. }
  67. .area_roll>div {
  68. font-size: 1.6em;
  69. height: 14em;
  70. float: left;
  71. background-color: transparent;
  72. position: relative;
  73. overflow: hidden;
  74. -webkit-box-flex: 1;
  75. -webkit-flex: 1;
  76. -ms-flex: 1;
  77. flex: 1
  78. }
  79. .area_roll>div .gear {
  80. width: 100%;
  81. float: left;
  82. position: absolute;
  83. z-index: 9902;
  84. margin-top: 4em
  85. }
  86. .area_roll_mask {
  87. -webkit-mask: -webkit-gradient(linear, 0% 40%, 0% 0%, from(#debb47), to(rgba(36, 142, 36, 0)));
  88. -webkit-mask: -webkit-linear-gradient(bottom, #debb47 50%, rgba(36, 142, 36, 0));
  89. padding: 0
  90. }
  91. .area_grid {
  92. position: relative;
  93. top: 4em;
  94. width: 100%;
  95. height: 2em;
  96. margin: 0;
  97. box-sizing: border-box;
  98. z-index: 0;
  99. border-top: 1px solid #abaeb5;
  100. border-bottom: 1px solid #abaeb5
  101. }
  102. .area_roll>div:nth-child(3) .area_grid>div {
  103. left: 42%
  104. }
  105. .area_btn {
  106. color: #1AAD19;
  107. font-size: 1.6em;
  108. line-height: 1em;
  109. text-align: center;
  110. padding: .8em 1em
  111. }
  112. .area_btn_box:before,
  113. .area_btn_box:after {
  114. content: '';
  115. position: absolute;
  116. height: 1px;
  117. width: 100%;
  118. display: block;
  119. background-color: #fff;
  120. z-index: 15;
  121. -webkit-transform: scaleY(0.33);
  122. transform: scaleY(0.33)
  123. }
  124. .area_btn_box {
  125. display: -webkit-box;
  126. display: -webkit-flex;
  127. display: -ms-flexbox;
  128. display: flex;
  129. -webkit-box-pack:justify;
  130. -webkit-justify-content:space-between;
  131. -ms-flex-pack:justify;
  132. justify-content:space-between;
  133. -webkit-box-align: stretch;
  134. -webkit-align-items: stretch;
  135. -ms-flex-align: stretch;
  136. align-items: stretch;
  137. background-color: #fff;
  138. position: relative
  139. }
  140. .area_btn_box:before {
  141. left: 0;
  142. top: 0;
  143. -webkit-transform-origin: 50% 20%;
  144. transform-origin: 50% 20%
  145. }
  146. .area_btn_box:after {
  147. left: 0;
  148. bottom: 0;
  149. -webkit-transform-origin: 50% 70%;
  150. transform-origin: 50% 70%
  151. }
  152. .tooth {
  153. height: 2em;
  154. line-height: 2em;
  155. text-align: center;
  156. display: -webkit-box;
  157. display: -webkit-flex;
  158. display: -ms-flexbox;
  159. display: flex;
  160. line-clamp: 1;
  161. -webkit-box-orient:vertical;
  162. -webkit-box-direction:normal;
  163. -webkit-flex-direction:column;
  164. -ms-flex-direction:column;
  165. flex-direction:column;
  166. overflow: hidden
  167. }