detail_about.html 9.1 KB

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