charging-station.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. /* 在根元素上定义变量 */
  2. :root {
  3. --primary-color: #2a79ff;
  4. }
  5. body {
  6. max-width: 100vw;
  7. }
  8. .web_title {
  9. width: 0;
  10. height: 0;
  11. overflow: hidden;
  12. }
  13. .box {
  14. width: 122.5rem;
  15. max-width: 100%;
  16. overflow: hidden;
  17. position: relative;
  18. left: 50%;
  19. transform: translate(-50%, 0);
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. }
  24. .head_box {
  25. width: 100%;
  26. color: #2B2D33;
  27. overflow: hidden;
  28. position: relative;
  29. }
  30. .head_tab {
  31. width: 70rem;
  32. height: 5.5rem;
  33. margin: 0 auto;
  34. display: flex;
  35. align-items: center;
  36. }
  37. .head_tab_items{
  38. display: flex;
  39. align-items: center;
  40. }
  41. .head_tab_item {
  42. width: 7.75rem;
  43. height: 3rem;
  44. line-height: 3rem;
  45. font-size: 1rem;
  46. font-weight: 500;
  47. text-align: center;
  48. }
  49. .head_tab_item a {
  50. color: #000;
  51. }
  52. .head_tab_logo {
  53. width: 8.6875rem;
  54. height: 3rem;
  55. margin-right: auto;
  56. }
  57. .head_tab_menu {
  58. width: 1.5rem;
  59. height: 1.5rem;
  60. margin-right: 1.25rem;
  61. }
  62. .contact_btn {
  63. width: 6.5625rem;
  64. height: 3rem;
  65. margin-left: auto;
  66. background-color: var(--primary-color);
  67. border-radius: 0.125rem;
  68. font-size: 1rem;
  69. color: #fff;
  70. }
  71. .contact_btn a {
  72. width: 100%;
  73. height: 100%;
  74. }
  75. .contact_btn:hover{
  76. transition: all 0.5s;
  77. }
  78. .carousel_box {
  79. width: 100%;
  80. margin-bottom: 2rem;
  81. display: flex;
  82. align-items: center;
  83. flex-direction: column;
  84. position: relative;
  85. gap: 6rem;
  86. left: 50%;
  87. transform: translate(-50%, 0);
  88. }
  89. .carousel_box_text {
  90. display: flex;
  91. flex-direction: column;
  92. text-align: center;
  93. gap: 2.5rem;
  94. }
  95. .carousel_box_title {
  96. text-align: center;
  97. font-size: 4rem;
  98. font-weight: bold;
  99. }
  100. .carousel_box_content {
  101. font-size: 1.25rem
  102. }
  103. .carousel_box_btn a {
  104. width: 8rem;
  105. height: 3.5rem;
  106. background-color: var(--primary-color);
  107. font-size: 1rem;
  108. color: #fff;
  109. gap: 0.75rem;
  110. margin: 0 auto;
  111. border-radius: 0.75rem;
  112. }
  113. .carousel_box_btn img {
  114. width: 1.5rem;
  115. height: 1.5rem;
  116. }
  117. .carousel_box_img {
  118. width: 100%;
  119. /* height: 42.625rem; */
  120. position: relative;
  121. background-color: #f7f8fa;
  122. border-radius: 0.625rem;
  123. overflow: hidden;
  124. }
  125. .carousel_box_img img {
  126. width: 100%;
  127. height: 100%;
  128. }
  129. .body_box {
  130. width: 100%;
  131. display: flex;
  132. flex-direction: column;
  133. align-items: center;
  134. background-color: #f7f8fa;
  135. }
  136. .body_box_white {
  137. width: 100%;
  138. display: flex;
  139. flex-direction: column;
  140. align-items: center;
  141. background-color: #fff;
  142. }
  143. .body_box_bottom {
  144. width: 100%;
  145. display: flex;
  146. flex-direction: column;
  147. align-items: center;
  148. background-color: #232634;
  149. }
  150. .body_box_bottom .body_box_item {
  151. padding: 0;
  152. padding-top: 6.25rem;
  153. }
  154. .body_box_item {
  155. width: 70rem;
  156. padding: 6.25rem 0;
  157. margin: 0 auto;
  158. }
  159. .web_information {
  160. width: 100%;
  161. height: 4rem;
  162. border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
  163. }
  164. .body_box_title {
  165. font-size: 3rem;
  166. font-weight: 600;
  167. line-height: 3.75rem;
  168. text-align: center;
  169. }
  170. .body_box_subtitle {
  171. color: var(--primary-color);
  172. font-size: 1.5rem;
  173. }
  174. .body_box_introduce {
  175. line-height: 3rem;
  176. margin-top: 2rem;
  177. font-size: 1.25rem;
  178. text-align: center;
  179. margin-bottom: 4rem;
  180. }
  181. /* 产品功能服务 */
  182. .service_box {
  183. display: flex;
  184. flex-wrap: wrap;
  185. gap: 1.25rem;
  186. }
  187. .service_box_item {
  188. width: 34.375rem;
  189. padding: 1.875rem 0;
  190. border-radius: 0.625rem;
  191. display: flex;
  192. flex-direction: column;
  193. align-items: center;
  194. gap: 1.5rem;
  195. box-shadow: 0 0.125rem 0.125rem rgba(71, 74, 89, 0.08), 0 0.125rem 0.5rem rgba(71, 74, 89, 0.15);
  196. font-size: 1rem;
  197. background-color: #fff;
  198. }
  199. .service_box_item_title {
  200. color: #2B2D33;
  201. font-size: 1.5rem;
  202. font-weight: 600;
  203. }
  204. .body_box_introduce_two {
  205. color: #555A65;
  206. font-size: 1rem;
  207. margin-top: 2.5rem;
  208. margin-bottom: 4rem;
  209. text-align: center;
  210. }
  211. .service_box_item_text {
  212. color: #555A65;
  213. text-align: center;
  214. max-width: 20.875rem;
  215. line-height: 1.5rem;
  216. }
  217. .service_box_item_img {
  218. width: 7.25rem;
  219. height: 7.25rem;
  220. }
  221. .service_box_item_img img {
  222. width: 3rem;
  223. height: 3rem;
  224. }
  225. /* 可视化展示 */
  226. .exhibition_box {
  227. width: 100%;
  228. display: flex;
  229. align-items: center;
  230. gap: 1.25rem;
  231. overflow: hidden;
  232. }
  233. .exhibition_box_item {
  234. width: 34.375rem;
  235. min-width: 34.375rem;
  236. background-color: #fff;
  237. border-radius: 0.625rem;
  238. padding: 1.875rem 1.5625rem;
  239. box-sizing: border-box;
  240. display: flex;
  241. flex-direction: column;
  242. align-items: center;
  243. gap: 1.5rem;
  244. }
  245. .exhibition_box_icon {
  246. width: 3.75rem;
  247. height: 3.75rem;
  248. }
  249. .exhibition_box_title {
  250. font-size: 1.5rem;
  251. line-height: 1.875rem;
  252. }
  253. .exhibition_box_text {
  254. color: #555A65;
  255. text-align: center;
  256. max-width: 20.875rem;
  257. line-height: 1.5rem;
  258. font-size: 1rem;
  259. }
  260. .exhibition_box_img {
  261. height: 18.75rem;
  262. border-radius: 0.5rem;
  263. }
  264. /* 应用领域 */
  265. .scene_box {
  266. display: flex;
  267. flex-direction: column;
  268. gap: 2.5rem;
  269. }
  270. .scene_box_item {
  271. display: flex;
  272. gap: 2.75rem;
  273. font-size: 1rem;
  274. text-align: center;
  275. }
  276. .scene_box_item_img {
  277. width: 36.875rem;
  278. /* height: 31rem; */
  279. border-radius: 0.625rem;
  280. background-color: #f7f8fa;
  281. overflow: hidden;
  282. }
  283. .scene_box_item_img img {
  284. width: 100%;
  285. }
  286. .scene_box_item_box {
  287. display: flex;
  288. justify-content: center;
  289. flex-direction: column;
  290. gap: 1.75rem;
  291. text-align: left;
  292. }
  293. .scene_box_tow {
  294. justify-content: center;
  295. }
  296. .scene_box_tow .scene_box_item {
  297. width: 33.75rem;
  298. }
  299. .scene_box_tow .scene_box_item_img {
  300. height: 26.875rem;
  301. }
  302. .scene_box_item_title {
  303. color: #2B2D33;
  304. font-size: 1.875rem;
  305. /* font-weight: 600; */
  306. }
  307. .scene_box_item_text {
  308. color: #555A65;
  309. }
  310. /* 关于我们 */
  311. .aboutMy_box {
  312. padding: 3.75rem;
  313. box-sizing: border-box;
  314. border-radius: 1.5rem;
  315. background-color: #F7F8FA;
  316. display: flex;
  317. align-items: center;
  318. gap: 1.25rem;
  319. }
  320. .aboutMy_box_content{
  321. flex: 1;
  322. display: flex;
  323. flex-direction: column;
  324. gap: 2.5rem;
  325. }
  326. .aboutMy_box_title {
  327. color: #2B2D33;
  328. font-size: 4rem;
  329. font-weight: 600;
  330. }
  331. .aboutMy_box_text {
  332. color: #555A65;
  333. font-size: 1rem;
  334. line-height: 1.5rem;
  335. display: flex;
  336. flex-direction: column;
  337. gap: 1.25rem;
  338. }
  339. .aboutMy_box_btn a {
  340. color: #fff;
  341. width: 9.25rem;
  342. height: 3.5rem;
  343. background-color: var(--primary-color);
  344. font-size: 1rem;
  345. display: flex;
  346. align-items: center;
  347. gap: 0.75rem;
  348. }
  349. .aboutMy_box_btn img {
  350. width: 1.5rem;
  351. height: 1.5rem;
  352. }
  353. .aboutMy_box_img {
  354. width: 30.625rem;
  355. height: 33.125rem;
  356. }
  357. /* 合作伙伴 */
  358. .cooperation_box {
  359. display: flex;
  360. align-items: center;
  361. overflow: hidden;
  362. margin-top: 3.75rem;
  363. }
  364. .cooperation_box_scroll {
  365. width: 63.75rem;
  366. display: flex;
  367. align-items: center;
  368. animation: scroll 20s linear;
  369. animation-iteration-count: infinite;
  370. }
  371. @keyframes scroll {
  372. 0% {
  373. transform: translateX(0%);
  374. }
  375. 100% {
  376. transform: translateX(-200%);
  377. }
  378. }
  379. .cooperation_box_item {
  380. width: 20%;
  381. min-width: 20%;
  382. display: flex;
  383. flex-direction: column;
  384. align-items: center;
  385. gap: 1.5rem;
  386. }
  387. .cooperation_box_img {
  388. width: 4rem;
  389. height: 4rem;
  390. background-color: #f7f8fa;
  391. border-radius: 50%;
  392. overflow: hidden;
  393. }
  394. .cooperation_box_img img {
  395. width: 2.5rem;
  396. height: 2.5rem;
  397. }
  398. .cooperation_box_text {
  399. color: #2B2D33;
  400. font-size: 1.5rem;
  401. text-align: center;
  402. }
  403. /* 常见问题解答 */
  404. .problem {
  405. display: flex;
  406. flex-direction: row;
  407. justify-content: space-between;
  408. }
  409. .problem .body_box_subtitle {
  410. text-align: left;
  411. }
  412. .problem_box {
  413. width: 36.875rem;
  414. }
  415. .problem_box_item {
  416. color: #2B2D33;
  417. height: 6rem;
  418. border-bottom: 0.0625rem solid #D7DAE2;
  419. overflow: hidden;
  420. transition: all 0.5s;
  421. }
  422. .problem_box_item_title {
  423. height: 6rem;
  424. font-size: 1.5rem;
  425. display: flex;
  426. align-items: center;
  427. }
  428. .problem_box_item_text {
  429. color: #555A65;
  430. font-size: 1rem;
  431. padding-bottom: 2rem;
  432. }
  433. .fold_img {
  434. margin-left: auto;
  435. filter: grayscale(100%);
  436. transform: rotate(180deg);
  437. transition: all 0.5s;
  438. }
  439. .problem_box_item_sele {
  440. height: auto;
  441. }
  442. .problem_box_item_sele .fold_img {
  443. filter: grayscale(0%);
  444. transform: rotate(0deg);
  445. transition: all 0.5s;
  446. }
  447. /* 联系我们 */
  448. .contact_box {
  449. background-color: #fff;
  450. border-radius: 1.5rem;
  451. padding: 3.75rem;
  452. box-sizing: border-box;
  453. display: flex;
  454. align-items: center;
  455. justify-content: space-between;
  456. }
  457. .contact_box .body_box_subtitle {
  458. text-align: left;
  459. }
  460. .my_information {
  461. color: #555A65;
  462. margin-top: 2.5rem;
  463. font-size: 0.875rem;
  464. display: flex;
  465. flex-direction: column;
  466. gap: 1.25rem;
  467. }
  468. .my_information_item {
  469. display: flex;
  470. align-items: center;
  471. height: 1.5rem;
  472. font-weight: normal;
  473. gap: 0.75rem;
  474. }
  475. .my_information_item img {
  476. width: 1.5rem;
  477. height: 1.5rem;
  478. }
  479. .body_box_code {
  480. color: #555A65;
  481. font-size: 1rem;
  482. text-align: center;
  483. }
  484. .body_box_code img {
  485. width: 12.5rem;
  486. height: 12.5rem;
  487. margin-bottom: 1.0625rem;
  488. }
  489. /* 底部导航 */
  490. .box_bottom_class {
  491. color: #fff;
  492. display: flex;
  493. align-items: center;
  494. padding-bottom: 3.125rem !important;
  495. }
  496. .bottom_logo {
  497. display: flex;
  498. align-items: center;
  499. flex-direction: column;
  500. text-align: center;
  501. font-size: 0.875rem;
  502. width: 19.3125rem;
  503. padding: 1.25rem;
  504. box-sizing: border-box;
  505. }
  506. .bottom_logo img {
  507. width: 5rem;
  508. height: 4.9375rem;
  509. margin-bottom: 1.25rem;
  510. }
  511. .bottom_logo_title {
  512. font-size: 2.5rem;
  513. margin-bottom: 2rem;
  514. }
  515. .bottom_menu {
  516. flex: 1;
  517. padding-left: 5.8125rem;
  518. display: flex;
  519. }
  520. .bottom_menu_item {
  521. flex: 1;
  522. display: flex;
  523. flex-direction: column;
  524. gap: 1.5rem;
  525. }
  526. .bottom_menu_title {
  527. font-size: 1.25rem;
  528. }
  529. .bottom_menu_li {
  530. font-size: 0.875rem;
  531. cursor: pointer;
  532. }
  533. .bottom_menu_li a {
  534. color: #fff;
  535. font-size: 0.875rem;
  536. }
  537. .bottom_wx_code {
  538. width: 12.5rem;
  539. display: flex;
  540. flex-direction: column;
  541. gap: 1.125rem;
  542. font-size: 1rem;
  543. text-align: center;
  544. }
  545. .bottom_wx_code_img {
  546. width: 100%;
  547. height: 12.5rem;
  548. background-color: #fff;
  549. overflow: hidden;
  550. }
  551. .bottom_wx_code_img img {
  552. width: 100%;
  553. height: 100%;
  554. padding: 10px;
  555. box-sizing: border-box;
  556. }
  557. .web_information_content {
  558. color: #fff;
  559. height: 100%;
  560. padding: 0 !important;
  561. font-size: 1rem;
  562. display: flex;
  563. align-items: center;
  564. flex-wrap: wrap;
  565. gap: 2.5rem;
  566. }
  567. .field_title {
  568. display: flex;
  569. align-items: flex-end;
  570. gap: 2.5rem;
  571. margin-bottom: 4rem;
  572. }
  573. .field_title_main {
  574. min-width: 30.5rem;
  575. display: flex;
  576. flex-direction: column;
  577. gap: 3.75rem;
  578. }
  579. .field_title_main_top {
  580. font-size: 4rem;
  581. font-weight: 600;
  582. }
  583. .field_title_main_bottom {
  584. color: #555A65;
  585. font-size: 1.25rem;
  586. }
  587. .field_title_secondary {
  588. color: #555A65;
  589. font-size: 1rem;
  590. }
  591. .three_box {
  592. display: flex;
  593. align-items: center;
  594. justify-content: space-between;
  595. gap: 1.25rem;
  596. }
  597. .three_box_item {
  598. color: #555A65;
  599. width: 22.5rem;
  600. display: flex;
  601. flex-direction: column;
  602. gap: 1rem;
  603. font-size: 1rem;
  604. }
  605. .three_box_img {
  606. width: 100%;
  607. /* height: 26.875rem; */
  608. overflow: hidden;
  609. border-radius: 0.625rem;
  610. background-color: #f7f8fa;
  611. }
  612. .three_box_img img {
  613. width: 100%;
  614. /* height: 100%; */
  615. }
  616. .three_box_title {
  617. color: #2B2D33;
  618. }
  619. .introduce_box {
  620. display: flex;
  621. align-items: flex-start;
  622. gap: 2.5rem;
  623. border-radius: 1.5rem;
  624. background-color: #f7f8fa;
  625. padding: 3.75rem;
  626. box-sizing: border-box;
  627. }
  628. .introduce_box_title {
  629. color: #2B2D33;
  630. min-width: 30rem;
  631. font-size: 4rem;
  632. font-weight: 600;
  633. line-height: 4rem;
  634. }
  635. .introduce_box_right {
  636. display: flex;
  637. flex-direction: column;
  638. justify-content: space-between;
  639. height: 11.125rem;
  640. margin-top: 0.625rem;
  641. }
  642. .introduce_box_text {
  643. color: #555A65;
  644. font-size: 1rem;
  645. }
  646. .introduce_box_btn {
  647. color: #fff;
  648. width: 4.75rem;
  649. height: 2.75rem;
  650. font-size: 0.875rem;
  651. background-color: #2055e4;
  652. border-radius: 0.5rem;
  653. cursor: pointer;
  654. }
  655. .user_title {
  656. display: flex;
  657. flex-direction: column;
  658. align-items: center;
  659. gap: 2.5rem;
  660. font-size: 4rem;
  661. font-weight: 600;
  662. margin-bottom: 4rem;
  663. }
  664. .user_title_son {
  665. color: #555A65;
  666. font-size: 1rem;
  667. font-weight: normal;
  668. text-align: center;
  669. }
  670. .user_box {
  671. display: flex;
  672. align-items: center;
  673. }
  674. .user_box_scroll_btn {
  675. width: 2rem;
  676. height: 2rem;
  677. cursor: pointer;
  678. }
  679. .user_box_scroll_btn img {
  680. width: 2rem;
  681. height: 2rem;
  682. }
  683. .user_box_scroll {
  684. flex: 1;
  685. display: flex;
  686. align-items: center;
  687. overflow: hidden;
  688. padding: 0.3125rem 0.25rem;
  689. margin: 0 1rem;
  690. box-sizing: border-box;
  691. }
  692. .user_box_scroll_center {
  693. display: flex;
  694. align-items: center;
  695. gap: 1.25rem;
  696. transition: all 0.5s;
  697. width: 100%;
  698. /* width: 64rem; */
  699. /* transform: translate(-64.75rem, 0); */
  700. /* transform: translate(calc(-64.75rem), 0); */
  701. }
  702. .user_box_item {
  703. color: #555A65;
  704. width: calc(50% - 0.625rem);
  705. min-width: calc(50% - 0.625rem);
  706. max-width: calc(50% - 0.625rem);
  707. /* width: 50%;
  708. min-width: 50%;
  709. max-width: 50%; */
  710. min-height: 16.5rem;
  711. background-color: #fff;
  712. box-shadow: 0 2px 0.625rem rgba(0, 0, 0, 0.08);
  713. border-radius: 0.625rem;
  714. display: flex;
  715. flex-direction: column;
  716. gap: 1.5rem;
  717. padding: 1.875rem;
  718. box-sizing: border-box;
  719. font-size: 1rem;
  720. }
  721. .user_box_item img {
  722. width: 3.75rem;
  723. height: 3.75rem;
  724. border-radius: 3.75rem;
  725. }
  726. .user_box_item_top {
  727. display: flex;
  728. align-items: center;
  729. gap: 1rem;
  730. }
  731. .user_box_item_title {
  732. font-size: 1.125rem;
  733. line-height: 1.75rem;
  734. margin-bottom: 0.125rem;
  735. }