brand-ross.scss 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. .advertising {
  2. width: 100%;
  3. height: 1055px;
  4. box-sizing: border-box;
  5. background: #f2f2f2;
  6. overflow: hidden;
  7. background: url(/img/brand-ross-ad.jpg) no-repeat center;
  8. background-size: cover;
  9. .video-container {
  10. position: relative;
  11. width: 1200px;
  12. height: 570px;
  13. margin: 0 auto;
  14. margin-top: 485px;
  15. background: pink;
  16. .play {
  17. position: absolute;
  18. width: 64px;
  19. height: 64px;
  20. border-radius: 50%;
  21. z-index: 2;
  22. bottom: 155px;
  23. left: 50%;
  24. transform: translateX(-50%);
  25. cursor: pointer;
  26. }
  27. video {
  28. display: block;
  29. width: 100%;
  30. height: 100%;
  31. }
  32. }
  33. }
  34. .main {
  35. .wrapper {
  36. margin-top: 120px;
  37. .title {
  38. font-size: 34px;
  39. text-align: center;
  40. }
  41. .content {
  42. margin-top: 80px;
  43. }
  44. }
  45. .about {
  46. .content {
  47. height: 540px;
  48. .swiper {
  49. width: 720px;
  50. height: 100%;
  51. position: relative;
  52. .swiper-prev,
  53. .swiper-next {
  54. position: absolute;
  55. left: 0;
  56. top: 50%;
  57. transform: translateY(-50%);
  58. width: 48px;
  59. height: 72px;
  60. background-color: rgba(55, 55, 55, 0.3) !important;
  61. z-index: 5;
  62. cursor: pointer;
  63. background: url(/img/icon-arrow-left.png) no-repeat center;
  64. }
  65. .swiper-next {
  66. left: unset;
  67. right: 0;
  68. background: url(/img/icon-arrow-right.png) no-repeat center;
  69. }
  70. img {
  71. width: 100%;
  72. height: 540px;
  73. }
  74. }
  75. .section {
  76. width: 480px;
  77. height: 540px;
  78. background: url(/img/icon-comma-01.png), url(/img/icon-comma-02.png);
  79. background-color: #f3920d;
  80. background-repeat: no-repeat;
  81. background-position: 48px 48px, 341px 410px;
  82. .item {
  83. width: 390px;
  84. margin: 0 auto;
  85. margin-top: 73px;
  86. display: none;
  87. .num {
  88. font-size: 32px;
  89. color: #fff;
  90. text-align: center;
  91. }
  92. .line {
  93. width: 1px;
  94. height: 24px;
  95. margin: 25px auto 40px;
  96. background: #fff;
  97. }
  98. .desc {
  99. font-size: 16px;
  100. color: #fff;
  101. line-height: 40px;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. .therapy {
  108. .content {
  109. margin-top: 80px;
  110. height: 540px;
  111. .item {
  112. float: left;
  113. width: 180px;
  114. height: 100%;
  115. position: relative;
  116. overflow: hidden;
  117. transition: width 0.4s;
  118. &.hover {
  119. width: 480px;
  120. .cover {
  121. opacity: 0;
  122. }
  123. .active {
  124. opacity: 1;
  125. }
  126. }
  127. &:first-child {
  128. .cover {
  129. border-left: 0;
  130. }
  131. }
  132. .cover,
  133. .active {
  134. transition: opacity 0.4s;
  135. }
  136. .cover {
  137. position: absolute;
  138. left: 50%;
  139. top: 0;
  140. transform: translateX(-50%);
  141. width: 100%;
  142. height: 100%;
  143. box-sizing: border-box;
  144. border-left: 1px solid rgba(243, 146, 13, 0.2);
  145. background: linear-gradient(180deg, transparent 50%, rgba(243, 146, 13, 0.3) 100%);
  146. overflow: hidden;
  147. opacity: 1;
  148. .tip {
  149. font-size: 16px;
  150. text-align: center;
  151. margin-top: 57px;
  152. margin-bottom: 40px;
  153. font-weight: bold;
  154. }
  155. .line {
  156. width: 24px;
  157. height: 2px;
  158. background: #f3920d;
  159. margin: 0 auto;
  160. }
  161. img {
  162. position: absolute;
  163. width: 128px;
  164. height: 128px;
  165. bottom: 44px;
  166. left: 50%;
  167. transform: translateX(-50%);
  168. }
  169. }
  170. .active {
  171. position: absolute;
  172. left: 50%;
  173. top: 0;
  174. transform: translateX(-50%);
  175. opacity: 0;
  176. width: 480px;
  177. height: 100%;
  178. text-align: center;
  179. color: #fff;
  180. img {
  181. width: 100%;
  182. height: 100%;
  183. }
  184. .info {
  185. position: absolute;
  186. left: 0;
  187. top: 0;
  188. width: 100%;
  189. height: 100%;
  190. display: flex;
  191. flex-direction: column;
  192. justify-content: center;
  193. align-items: center;
  194. .tip {
  195. font-size: 24px;
  196. margin-bottom: 10px;
  197. }
  198. .subtip {
  199. font-size: 16px;
  200. margin-bottom: 60px;
  201. }
  202. .section {
  203. width: 160px;
  204. margin: 0 auto;
  205. border: 1px solid #fff;
  206. padding: 36px 0;
  207. dl {
  208. padding: 0;
  209. dt {
  210. margin-bottom: 24px;
  211. }
  212. dd {
  213. margin: 0;
  214. margin-top: 10px;
  215. }
  216. }
  217. }
  218. }
  219. }
  220. }
  221. }
  222. }
  223. .application {
  224. .content {
  225. .item {
  226. position: relative;
  227. float: left;
  228. width: 390px;
  229. height: 390px;
  230. margin-right: 15px;
  231. margin-top: 15px;
  232. overflow: hidden;
  233. img {
  234. display: block;
  235. width: 100%;
  236. height: 100%;
  237. transition: all 0.4s;
  238. }
  239. &:nth-child(-n + 3) {
  240. margin-top: 0;
  241. }
  242. &:nth-child(5),
  243. &:nth-child(6) {
  244. width: 795px;
  245. }
  246. &:nth-child(3),
  247. &:nth-child(5),
  248. &:nth-child(7) {
  249. margin-right: 0;
  250. }
  251. .active {
  252. opacity: 0;
  253. position: absolute;
  254. width: 100%;
  255. height: 100%;
  256. background: rgba(0, 0, 0, 0.39);
  257. z-index: 1;
  258. top: 0;
  259. left: 0;
  260. transition: all 0.4s;
  261. display: flex;
  262. justify-content: center;
  263. align-items: center;
  264. flex-direction: column;
  265. .info {
  266. .num {
  267. font-size: 50px;
  268. background: linear-gradient(to bottom, #fff, transparent);
  269. -webkit-background-clip: text;
  270. color: transparent;
  271. text-align: center;
  272. }
  273. .tip {
  274. font-size: 24px;
  275. color: #fff;
  276. text-align: center;
  277. }
  278. .line {
  279. width: 28px;
  280. height: 2px;
  281. background: #fff;
  282. margin: 24px auto;
  283. }
  284. .link {
  285. display: flex;
  286. justify-content: center;
  287. align-items: center;
  288. width: 160px;
  289. height: 48px;
  290. border: 1px solid #fff;
  291. font-size: 16px;
  292. color: #fff;
  293. margin-top: 52px;
  294. cursor: pointer;
  295. }
  296. }
  297. }
  298. &:hover {
  299. .active {
  300. opacity: 1;
  301. }
  302. img {
  303. transform: scale(1.06);
  304. }
  305. }
  306. }
  307. }
  308. }
  309. .distribution {
  310. .content {
  311. img {
  312. display: block;
  313. width: 100%;
  314. }
  315. .section {
  316. display: flex;
  317. justify-content: space-between;
  318. margin-top: 80px;
  319. .line {
  320. width: 1px;
  321. height: 12px;
  322. background: #b2b2b2;
  323. transform: translateY(52px);
  324. }
  325. .item {
  326. display: flex;
  327. justify-content: center;
  328. align-items: center;
  329. flex-direction: column;
  330. .row:first-child {
  331. padding-left: 36px;
  332. background: url(/img/icon-star.png) no-repeat left center;
  333. line-height: 37px;
  334. font-size: 28px;
  335. }
  336. .row.company {
  337. background-image: url(/img/icon-company.png);
  338. }
  339. .row.doctor {
  340. background-image: url(/img/icon-doctor.png);
  341. }
  342. .row.heart {
  343. background-image: url(/img/icon-heart.png);
  344. }
  345. .row:last-child {
  346. font-size: 14px;
  347. color: #999;
  348. margin-top: 12px;
  349. }
  350. }
  351. }
  352. }
  353. }
  354. .contact {
  355. .content {
  356. .cover {
  357. width: 626px;
  358. height: 418px;
  359. img {
  360. display: block;
  361. width: 100%;
  362. height: 100%;
  363. }
  364. }
  365. .form-container {
  366. box-sizing: border-box;
  367. textarea {
  368. display: block;
  369. width: 526px;
  370. height: 344px;
  371. box-sizing: border-box;
  372. padding: 12px;
  373. line-height: 26px;
  374. font-size: 16px;
  375. border-color: #dedede;
  376. }
  377. .submit {
  378. font-size: 16px;
  379. color: #fff;
  380. height: 48px;
  381. background: #f3920d;
  382. text-align: center;
  383. line-height: 48px;
  384. margin-top: 26px;
  385. cursor: pointer;
  386. transition: all 0.4s;
  387. &:hover {
  388. background: #e78d0d;
  389. }
  390. }
  391. }
  392. }
  393. }
  394. }