detail_about.html 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport"
  7. content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no" />
  8. <meta name="renderer" content="webkit">
  9. <meta name="keywords" content="{:__lm($navCur,'keywords')}" />
  10. <meta name="description" content="{:__lm($navCur,'description')}" />
  11. <title>{:__lm($navCur,'seotitle')} - {$site.site_name}</title>
  12. <link rel="shortcut icon" href="{$site.logo|cdnurl}">
  13. <link rel="stylesheet" type="text/css" href="__CDN__/assets/addons/material/css/reset.css">
  14. <link rel="stylesheet" type="text/css" href="__CDN__/assets/addons/material/css/style.css">
  15. <link rel="stylesheet" type="text/css" href="__CDN__/assets/addons/material/css/swiper.min.css">
  16. <link rel="stylesheet" type="text/css" href="__CDN__/assets/addons/material/css/animate.min.css">
  17. <link rel="stylesheet" type="text/css" href="__CDN__/assets/addons/material/css/media.css">
  18. <script type="text/javascript" src="__CDN__/assets/addons/material/js/jquery.min.js"></script>
  19. <script type="text/javascript" src="__CDN__/assets/addons/material/js/swiper.min.js"></script>
  20. <script type="text/javascript" src="__CDN__/assets/addons/material/js/swiper.animate1.0.3.min.js"></script>
  21. <script type="text/javascript" src="__CDN__/assets/addons/material/js/wow.js"></script>
  22. <script type="text/javascript" src="__CDN__/assets/addons/material/js/jquery.counterup.min.js"></script>
  23. <script type="text/javascript" src="__CDN__/assets/addons/material/js/jquery.waypoints.min.js"></script>
  24. <script type="text/javascript" src="__CDN__/assets/addons/material/js/javascript.js"></script>
  25. <style>
  26. /* 公司简介样式 */
  27. .company-profile {
  28. max-width: 1200px;
  29. margin: 80px auto 0;
  30. }
  31. .profile-header {
  32. margin-bottom: 40px;
  33. }
  34. .en-title {
  35. font-weight: 400;
  36. font-size: 30px;
  37. color: #737980;
  38. line-height: 44px;
  39. letter-spacing: 1px;
  40. margin-bottom: 5px;
  41. }
  42. .cn-title {
  43. font-size: 32px;
  44. color: #333;
  45. font-weight: 500;
  46. margin-top: 0;
  47. }
  48. .profile-content {
  49. position: relative;
  50. /* 添加这一行 */
  51. display: flex;
  52. align-items: stretch;
  53. margin-bottom: 80px;
  54. }
  55. .profile-left {
  56. flex: 1;
  57. display: flex;
  58. flex-direction: column;
  59. justify-content: flex-start;
  60. }
  61. .profile-text {
  62. flex: 1;
  63. padding-right: 40px;
  64. }
  65. .profile-text p {
  66. font-size: 16px;
  67. line-height: 1.8;
  68. color: #333;
  69. margin-bottom: 20px;
  70. text-align: justify;
  71. }
  72. .profile-image {
  73. position: relative;
  74. cursor: pointer;
  75. }
  76. .profile-image img {
  77. width: 100%;
  78. height: 100%;
  79. object-fit: cover;
  80. display: block;
  81. }
  82. .play-btn {
  83. display: block;
  84. position: absolute;
  85. width: 66px;
  86. height: 66px;
  87. left: 50%;
  88. top: 50%;
  89. margin: -27px 0 0 -27px;
  90. z-index: 20;
  91. }
  92. .play-btn i {
  93. position: relative;
  94. display: block;
  95. width: 66px;
  96. height: 66px;
  97. background: #DF0100 url("__CDN__/assets/addons/material/images/play.svg") center no-repeat;
  98. background-size: 35%;
  99. border-radius: 100%;
  100. z-index: 2;
  101. }
  102. .play-btn i:hover {
  103. background: #404040 url("__CDN__/assets/addons/material/images/play.svg") center no-repeat;
  104. background-size: 35%;
  105. }
  106. .profile-image:hover .play-button img {
  107. opacity: 1;
  108. }
  109. /* 公司数据样式 */
  110. .company-data {
  111. width: 890px;
  112. height: 110px;
  113. background-color: #fff;
  114. box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  115. position: absolute;
  116. bottom: 40px;
  117. }
  118. .data-box {
  119. display: flex;
  120. justify-content: space-between;
  121. align-items: stretch;
  122. height: 100%;
  123. }
  124. .data-item {
  125. flex: 1 1 0;
  126. display: flex;
  127. flex-direction: column;
  128. align-items: center;
  129. justify-content: center;
  130. position: relative;
  131. height: 110px;
  132. }
  133. .data-item:not(:last-child)::after {
  134. content: '';
  135. position: absolute;
  136. right: 0;
  137. top: 25%;
  138. height: 50%;
  139. width: 1px;
  140. background-color: #cfd2d6;
  141. }
  142. .data-number-unit {
  143. display: flex;
  144. align-items: flex-end;
  145. justify-content: center;
  146. }
  147. .data-item h3 {
  148. font-weight: 500;
  149. font-size: 40px;
  150. color: #DF0100;
  151. margin: 0;
  152. line-height: 1;
  153. }
  154. .data-unit {
  155. font-weight: 400;
  156. font-size: 12px;
  157. color: #8A9199;
  158. margin-left: 4px;
  159. margin-bottom: 2px;
  160. }
  161. .data-title {
  162. font-weight: 400;
  163. font-size: 12px;
  164. color: #737980;
  165. /* margin-top: 8px; */
  166. }
  167. .company-intro-section {
  168. max-width: 1200px;
  169. margin: 60px auto 0;
  170. padding: 0 20px;
  171. }
  172. .intro-paragraph {
  173. font-size: 16px;
  174. color: #333;
  175. line-height: 2;
  176. text-align: justify;
  177. margin-bottom: 40px;
  178. }
  179. .intro-images-row {
  180. display: flex;
  181. justify-content: space-between;
  182. gap: 40px;
  183. margin-bottom: 40px;
  184. }
  185. .intro-images-row img {
  186. width: 48%;
  187. height: 260px;
  188. object-fit: cover;
  189. border-radius: 6px;
  190. box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  191. }
  192. /* .video-modal {
  193. position: fixed;
  194. left: 0; top: 0; right: 0; bottom: 0;
  195. z-index: 9999;
  196. display: flex;
  197. align-items: center;
  198. justify-content: center;
  199. }
  200. .video-modal-mask {
  201. position: absolute;
  202. left: 0; top: 0; right: 0; bottom: 0;
  203. background: rgba(0,0,0,0.7);
  204. }
  205. .video-modal-content {
  206. position: relative;
  207. z-index: 2;
  208. background: #000;
  209. border-radius: 8px;
  210. padding: 20px;
  211. box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  212. }
  213. .video-modal-close {
  214. position: absolute;
  215. right: 16px;
  216. top: 8px;
  217. color: #fff;
  218. font-size: 32px;
  219. cursor: pointer;
  220. z-index: 10;
  221. }
  222. .video-modal video {
  223. display: block;
  224. background: #000;
  225. border-radius: 8px;
  226. } */
  227. </style>
  228. </head>
  229. <body>
  230. <!--头部-->
  231. {include file="header" /}
  232. <!-- 栏目Banner -->
  233. <div class="col-banner">
  234. <div class="section-banner">
  235. <img src="{$site.banner5|cdnurl}" alt="">
  236. </div>
  237. </div>
  238. <div class="container">
  239. <!-- 公司简介 -->
  240. <div class="company-profile">
  241. <div class="profile-content">
  242. <div class="profile-left">
  243. <div class="profile-header wow fadeInUp" data-wow-delay="0.5s">
  244. <h2 class="en-title">COMPANY PROFILE</h2>
  245. <h2 class="cn-title">{$site.ban5_t1}</h2>
  246. </div>
  247. <div class="profile-text wow fadeInUp" data-wow-delay="0.5s">
  248. {$about.about_content|default=''}
  249. </div>
  250. </div>
  251. <div class="profile-image" data-video="file/dance.mp4">
  252. <img src="{$about.about_image|cdnurl}" alt="公司大楼">
  253. {if condition="empty($about.about_video) neq true"}
  254. <a href="javascript:;" class="play-btn m-video" data-src="{$about.about_video|cdnurl}"><i></i></a>
  255. {/if}
  256. </div>
  257. </div>
  258. <!-- 公司简介补充内容 -->
  259. <div class="company-intro-section wow fadeInUp" data-wow-delay="0.5s">
  260. {$about.about_bottom_content|default=''}
  261. </div>
  262. </div>
  263. </div>
  264. <!--底部-->
  265. {include file="footer" /}
  266. <link rel="stylesheet" type="text/css" href="__CDN__/assets/addons/material/css/video.css">
  267. <script type='text/javascript' src="__CDN__/assets/addons/material/js/video.js"></script>
  268. <!-- <script type="text/javascript">
  269. var swiper = new Swiper('.swiper-container', {
  270. // autoplay: true, //自动滑动
  271. speed: 500,
  272. slidesPerView: 'auto',
  273. // centeredSlides: true,
  274. pagination: {
  275. el: '.swiper-pagination',
  276. type: 'progressbar',
  277. },
  278. navigation: {
  279. nextEl: '.develop-next',
  280. prevEl: '.develop-prev',
  281. },
  282. });
  283. </script> -->
  284. </body>
  285. </html>