brand-ross.scss 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  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. background: url(/img/about-bg.png) no-repeat top center;
  109. padding-top: 80px;
  110. .content {
  111. margin-top: 80px;
  112. height: 540px;
  113. background-color: #fff;
  114. .item {
  115. float: left;
  116. width: 180px;
  117. height: 100%;
  118. position: relative;
  119. overflow: hidden;
  120. transition: width 0.4s;
  121. &.hover {
  122. width: 480px;
  123. .cover {
  124. opacity: 0;
  125. }
  126. .active {
  127. opacity: 1;
  128. }
  129. }
  130. &:first-child {
  131. .cover {
  132. border-left: 0;
  133. }
  134. }
  135. .cover,
  136. .active {
  137. transition: opacity 0.4s;
  138. }
  139. .cover {
  140. position: absolute;
  141. left: 50%;
  142. top: 0;
  143. transform: translateX(-50%);
  144. width: 100%;
  145. height: 100%;
  146. box-sizing: border-box;
  147. border-left: 1px solid rgba(243, 146, 13, 0.2);
  148. background: linear-gradient(180deg, transparent 50%, rgba(243, 146, 13, 0.3) 100%);
  149. overflow: hidden;
  150. opacity: 1;
  151. .tip {
  152. font-size: 16px;
  153. text-align: center;
  154. margin-top: 57px;
  155. margin-bottom: 40px;
  156. font-weight: bold;
  157. }
  158. .line {
  159. width: 24px;
  160. height: 2px;
  161. background: #f3920d;
  162. margin: 0 auto;
  163. }
  164. img {
  165. position: absolute;
  166. width: 128px;
  167. height: 128px;
  168. bottom: 44px;
  169. left: 50%;
  170. transform: translateX(-50%);
  171. }
  172. }
  173. .active {
  174. position: absolute;
  175. left: 50%;
  176. top: 0;
  177. transform: translateX(-50%);
  178. opacity: 0;
  179. width: 480px;
  180. height: 100%;
  181. text-align: center;
  182. color: #fff;
  183. img {
  184. width: 100%;
  185. height: 100%;
  186. }
  187. .info {
  188. position: absolute;
  189. left: 0;
  190. top: 0;
  191. width: 100%;
  192. height: 100%;
  193. display: flex;
  194. flex-direction: column;
  195. justify-content: center;
  196. align-items: center;
  197. .tip {
  198. font-size: 24px;
  199. margin-bottom: 10px;
  200. }
  201. .subtip {
  202. font-size: 16px;
  203. margin-bottom: 60px;
  204. }
  205. .section {
  206. width: 160px;
  207. margin: 0 auto;
  208. border: 1px solid #fff;
  209. padding: 36px 0;
  210. dl {
  211. padding: 0;
  212. dt {
  213. margin-bottom: 24px;
  214. }
  215. dd {
  216. margin: 0;
  217. margin-top: 10px;
  218. }
  219. }
  220. }
  221. }
  222. }
  223. }
  224. }
  225. }
  226. .application {
  227. .content {
  228. .item {
  229. position: relative;
  230. float: left;
  231. width: 390px;
  232. height: 390px;
  233. margin-right: 15px;
  234. margin-top: 15px;
  235. overflow: hidden;
  236. img {
  237. display: block;
  238. width: 100%;
  239. height: 100%;
  240. transition: all 0.4s;
  241. }
  242. &:nth-child(-n + 3) {
  243. margin-top: 0;
  244. }
  245. &:nth-child(5),
  246. &:nth-child(6) {
  247. width: 795px;
  248. }
  249. &:nth-child(3),
  250. &:nth-child(5),
  251. &:nth-child(7) {
  252. margin-right: 0;
  253. }
  254. .active {
  255. opacity: 0;
  256. position: absolute;
  257. width: 100%;
  258. height: 100%;
  259. background: rgba(0, 0, 0, 0.39);
  260. z-index: 1;
  261. top: 0;
  262. left: 0;
  263. transition: all 0.4s;
  264. display: flex;
  265. justify-content: center;
  266. align-items: center;
  267. flex-direction: column;
  268. .info {
  269. .num {
  270. font-size: 50px;
  271. background: linear-gradient(to bottom, #fff, transparent);
  272. -webkit-background-clip: text;
  273. color: transparent;
  274. text-align: center;
  275. }
  276. .tip {
  277. font-size: 24px;
  278. color: #fff;
  279. text-align: center;
  280. }
  281. .line {
  282. width: 28px;
  283. height: 2px;
  284. background: #fff;
  285. margin: 24px auto;
  286. }
  287. .link {
  288. display: flex;
  289. justify-content: center;
  290. align-items: center;
  291. width: 160px;
  292. height: 48px;
  293. border: 1px solid #fff;
  294. font-size: 16px;
  295. color: #fff;
  296. margin-top: 52px;
  297. cursor: pointer;
  298. }
  299. }
  300. }
  301. &:hover {
  302. .active {
  303. opacity: 1;
  304. }
  305. img {
  306. transform: scale(1.06);
  307. }
  308. }
  309. }
  310. }
  311. }
  312. .distribution {
  313. .content {
  314. img {
  315. display: block;
  316. width: 100%;
  317. }
  318. .section {
  319. display: flex;
  320. justify-content: space-between;
  321. margin-top: 80px;
  322. .line {
  323. width: 1px;
  324. height: 12px;
  325. background: #b2b2b2;
  326. transform: translateY(52px);
  327. }
  328. .item {
  329. display: flex;
  330. justify-content: center;
  331. align-items: center;
  332. flex-direction: column;
  333. .row:first-child {
  334. padding-left: 36px;
  335. background: url(/img/icon-star.png) no-repeat left center;
  336. line-height: 37px;
  337. font-size: 28px;
  338. }
  339. .row.company {
  340. background-image: url(/img/icon-company.png);
  341. }
  342. .row.doctor {
  343. background-image: url(/img/icon-doctor.png);
  344. }
  345. .row.heart {
  346. background-image: url(/img/icon-heart.png);
  347. }
  348. .row:last-child {
  349. font-size: 14px;
  350. color: #999;
  351. margin-top: 12px;
  352. }
  353. }
  354. }
  355. }
  356. }
  357. .contact {
  358. .content {
  359. .cover {
  360. width: 626px;
  361. height: 418px;
  362. img {
  363. display: block;
  364. width: 100%;
  365. height: 100%;
  366. }
  367. }
  368. .form-container {
  369. box-sizing: border-box;
  370. textarea {
  371. display: block;
  372. width: 526px;
  373. height: 344px;
  374. box-sizing: border-box;
  375. padding: 12px;
  376. line-height: 26px;
  377. font-size: 16px;
  378. border-color: #dedede;
  379. }
  380. .submit {
  381. font-size: 16px;
  382. color: #fff;
  383. height: 48px;
  384. background: #f3920d;
  385. text-align: center;
  386. line-height: 48px;
  387. margin-top: 26px;
  388. cursor: pointer;
  389. transition: all 0.4s;
  390. &:hover {
  391. background: #e78d0d;
  392. }
  393. }
  394. }
  395. }
  396. }
  397. }