You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 12KB

1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
1 개월 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. <html lang="en">
  2. <head>
  3. <meta charset="utf-8" />
  4. <base href="/" />
  5. <title ss-id="index_title">常客云 - 企业工具服务</title>
  6. <meta name="Description" content="常客云APP, 企业服务" />
  7. <meta name="keywords" content="常客云" />
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  9. <meta name="viewport" content="width=device-width,initial-scale=1" />
  10. <style type="text/css">
  11. html,
  12. body {
  13. font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC', 'Microsoft YaHei', 'WenQuanYi Micro Hei',
  14. sans-serif;
  15. font-size: 12px;
  16. }
  17. .clean::after {
  18. content: '';
  19. height: 1px;
  20. display: block;
  21. clear: both;
  22. }
  23. ul,
  24. li {
  25. list-style: none;
  26. }
  27. .flex-h,
  28. .flex-v,
  29. .flex {
  30. display: flex;
  31. flex-direction: row;
  32. align-items: center;
  33. }
  34. .flex-h,
  35. .flex-v,
  36. .flex {
  37. /* display: box; */
  38. display: -webkit-box;
  39. display: -webkit-flex;
  40. display: -moz-box;
  41. display: -ms-flexbox;
  42. display: flex;
  43. /* 横向 */
  44. -webkit-box-orient: horizontal;
  45. -webkit-flex-direction: row;
  46. -ms-flex-direction: row;
  47. flex-direction: row;
  48. /* 默认垂直居中 */
  49. -webkit-box-align: center;
  50. -webkit-align-items: center;
  51. -ms-flex-align: center;
  52. align-items: center;
  53. }
  54. .flex-v {
  55. /* 横向 */
  56. -webkit-box-orient: vertical;
  57. -webkit-flex-direction: column;
  58. -ms-flex-direction: column;
  59. flex-direction: column;
  60. }
  61. .flex-1,
  62. .flex-grow {
  63. -prefix-box-flex: 1;
  64. -webkit-box-flex: 1;
  65. -webkit-flex: 1;
  66. -moz-box-flex: 1;
  67. -ms-flex: 1;
  68. flex: 1;
  69. }
  70. .flex-2 {
  71. -prefix-box-flex: 2;
  72. -webkit-box-flex: 2;
  73. -webkit-flex: 2;
  74. -moz-box-flex: 2;
  75. -ms-flex: 2;
  76. flex: 2;
  77. }
  78. .flex-3 {
  79. -prefix-box-flex: 3;
  80. -webkit-box-flex: 3;
  81. -webkit-flex: 3;
  82. -moz-box-flex: 3;
  83. -ms-flex: 3;
  84. flex: 3;
  85. }
  86. .flex-4 {
  87. -prefix-box-flex: 4;
  88. -webkit-box-flex: 4;
  89. -webkit-flex: 4;
  90. -moz-box-flex: 4;
  91. -ms-flex: 4;
  92. flex: 4;
  93. }
  94. .flex-5 {
  95. -prefix-box-flex: 5;
  96. -webkit-box-flex: 5;
  97. -webkit-flex: 5;
  98. -moz-box-flex: 5;
  99. -ms-flex: 5;
  100. flex: 5;
  101. }
  102. .flex-start {
  103. -webkit-box-align: start;
  104. -webkit-align-items: start;
  105. -ms-flex-align: start;
  106. align-items: start;
  107. }
  108. .flex-center {
  109. -webkit-box-align: center;
  110. -webkit-align-items: center;
  111. -ms-flex-align: center;
  112. align-items: center;
  113. }
  114. .selectable {
  115. -webkit-user-select: text;
  116. -moz-user-select: text;
  117. -ms-user-select: text;
  118. user-select: text;
  119. }
  120. .selectall {
  121. -webkit-user-select: all;
  122. -moz-user-select: all;
  123. -ms-user-select: all;
  124. user-select: all;
  125. }
  126. .h1 {
  127. margin-top: 48px;
  128. margin-left: 20px;
  129. width: 142px;
  130. height: 25px;
  131. font-size: 1.6rem;
  132. font-family: PingFangSC-Medium, PingFang SC;
  133. font-weight: 500;
  134. color: #353535;
  135. line-height: 25px;
  136. }
  137. .kaihuguanli-font {
  138. width: 54px;
  139. height: 17px;
  140. font-size: 1.2rem;
  141. font-family: PingFangSC-Regular, PingFang SC;
  142. font-weight: 400;
  143. color: #353535;
  144. line-height: 17px;
  145. }
  146. .input-css {
  147. position: absolute;
  148. left: 650px;
  149. padding-left: 11px;
  150. width: 300px;
  151. height: 30px;
  152. background: #ffffff;
  153. border: 1px solid #e7e7e7;
  154. }
  155. html,
  156. html body,
  157. #main,
  158. #app {
  159. padding: 0;
  160. margin: 0;
  161. }
  162. .header-wrapper {
  163. height: 80px;
  164. }
  165. .header {
  166. width: 1200px;
  167. margin: 0 auto;
  168. }
  169. .header .logo {
  170. width: 128px;
  171. height: 40px;
  172. font-size: 30px;
  173. color: #014ad4;
  174. margin-top: 27px;
  175. margin-left: 25px;
  176. line-height: 80px;
  177. font-weight: bold;
  178. }
  179. .header .tel {
  180. width: 168px;
  181. height: 24px;
  182. font-size: 20px;
  183. color: #014ad4;
  184. margin-top: 20px;
  185. margin-right: 65px;
  186. line-height: 80px;
  187. font-weight: bold;
  188. }
  189. .dl-wrapper {
  190. /* width: 1920px; */
  191. height: 468px;
  192. background-image: url('/images/主图-banner.png');
  193. overflow: hidden;
  194. }
  195. .dl {
  196. width: 1200px;
  197. margin: 0 auto;
  198. color: white;
  199. }
  200. .dl .dl-img {
  201. padding-top: 131px;
  202. }
  203. .dl .dl-img img {
  204. display: block;
  205. width: 384px;
  206. }
  207. .dl-desc .tl {
  208. margin: 128px 0 0 25px;
  209. font-family: PingFang SC;
  210. font-weight: 500;
  211. font-size: 24px;
  212. color: #FFFFFF;
  213. line-height: 53px;
  214. }
  215. .dl-desc .desc {
  216. width: 365px;
  217. height: 56px;
  218. margin: 15px 65px 0 25px;
  219. font-family: PingFang SC;
  220. font-weight: 400;
  221. font-size: 12px;
  222. color: #FFFFFF;
  223. line-height: 22px;
  224. }
  225. .dl-desc .dl-logo {
  226. width: 40px;
  227. height: 40px;
  228. margin: 30px 65px 0 25px;
  229. }
  230. .dl-desc .dl-btn {
  231. width: 40px;
  232. height: 40px;
  233. margin: -40px 65px 0 66px;
  234. }
  235. .product_hz {
  236. width: 1200px;
  237. height: 532px;
  238. margin: 0 auto;
  239. }
  240. .hzhb_img {
  241. width: 369px;
  242. height: 69px;
  243. margin: 74 auto;
  244. }
  245. .hzf_img {
  246. height: 220px;
  247. margin: 35px 560px 47px -200px;
  248. }
  249. .product {
  250. width: 1200px;
  251. margin: 0 auto;
  252. }
  253. .product .title {
  254. font-size: 24px;
  255. font-weight: bold;
  256. text-align: center;
  257. margin: 63px 0;
  258. }
  259. .product .row {
  260. margin-bottom: 200px;
  261. }
  262. .product .row1 img {
  263. display: block;
  264. height: 142px;
  265. margin: 20px auto;
  266. }
  267. .product .row2 img {
  268. display: block;
  269. width: 500px;
  270. margin: 20px auto;
  271. }
  272. .product .row2 .col2 {
  273. margin-right: 35px;
  274. }
  275. .product .row .r0 {
  276. font-weight: bold;
  277. font-size: 20px;
  278. }
  279. .product .row .r1 {
  280. max-width: 300px;
  281. margin: 10px 20px;
  282. color: gray;
  283. font-size: 16px;
  284. }
  285. .footer {
  286. margin-bottom: 83px;
  287. text-align: center;
  288. color: gray;
  289. font-size: 16px;
  290. }
  291. </style>
  292. </head>
  293. <body>
  294. <div id="app">
  295. <div class="header-wrapper">
  296. <div class="header flex">
  297. <div class="logo flex-1"><img src="/images/常客云logo-icon.png" /></div>
  298. <div class="tel"><img src="/images/客服- icon.png" /></div>
  299. </div>
  300. </div>
  301. <div class="dl-wrapper">
  302. <div class="dl flex flex-start">
  303. <div class="dl-desc flex-1">
  304. <div class="tl">常客云App</div>
  305. <div class="desc">
  306. 基于AI、大数据平台,为企业客户提供用户运营,设备托管等服务。<br />致力于为企业客户提供安全可靠,稳定运行,可持续创新发展的线<br />上线下云端服务产品。
  307. </div>
  308. <div class="dl-logo">
  309. <img src="/images/云-icon.png" alt="云" />
  310. <img src="/images/下载-icon.png" alt="下载" class="dl-btn" onclick="location.href='/m'" />
  311. </div>
  312. </div>
  313. </div>
  314. </div>
  315. <div class="product_hz">
  316. <div class="hzhb_img">
  317. <img src="/images/合作伙伴-icon.png" alt="合作伙伴" />
  318. </div>
  319. <div class="hzf_img">
  320. <img src="/images/合作方图标.png" alt="合作方图标" />
  321. </div>
  322. </div>
  323. <div class="product">
  324. <div class="title">产品介绍</div>
  325. <div class="row row1 flex">
  326. <div class="flex-1 col col1">
  327. <img src="/images/2.png" alt="产品介绍" />
  328. <div class="r0">会话</div>
  329. <div class="r1">企业及时与用户沟通,保证沟通时效,快速部署活动运营</div>
  330. </div>
  331. <div class="flex-1 col col1">
  332. <img src="/images/3.png" alt="产品介绍" />
  333. <div class="r0">工作台</div>
  334. <div class="r1">企业、门店主管理工具平台,包括卡券管理、短信管理、物联网卡管理、收银台等</div>
  335. </div>
  336. <div class="flex-1 col col1">
  337. <img src="/images/4.png" alt="产品介绍" />
  338. <div class="r0">服务</div>
  339. <div class="r1">常客云为企业提供权益商品卡券、物联网卡等服务</div>
  340. </div>
  341. </div>
  342. <div class="row row2 flex flex-start">
  343. <div class="flex-1 col col1">
  344. <div class="r0">会话</div>
  345. <div class="r1">企业员工之间沟通、企业和用户沟通。企业共享用户好友,提高企业营销效率</div>
  346. </div>
  347. <div class="col col2">
  348. <img src="/images/5.png" alt="会话" />
  349. </div>
  350. </div>
  351. <div class="row row2 flex flex-start">
  352. <div class="col col2">
  353. <img src="/images/6.png" alt="工作台-卡券管理" />
  354. </div>
  355. <div class="flex-1 col col1">
  356. <div class="r0">工作台-卡券管理</div>
  357. <div class="r1">企业在常客云购买话费、油卡、洗车券等权益商品,作为活动奖品,反馈给用户,提高企业和用户的亲密度</div>
  358. </div>
  359. </div>
  360. <div class="row row2 flex flex-start">
  361. <div class="flex-1 col col1">
  362. <div class="r0">扫码下载</div>
  363. <img src="/images/QRCode.png" alt="扫码下载" style="width:200px;height:200px;margin-top:100px" />
  364. <div class="r0" style="text-align: center;">常客云</div>
  365. </div>
  366. </div>
  367. </div>
  368. <div class="footer">辽宁常客云数字科技有限公司 <a href="https://beian.miit.gov.cn/" target="_blank">辽ICP备2021003130号</a>
  369. </div>
  370. </div>
  371. </body>
  372. </html>