foot.vue 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923
  1. <template>
  2. <footer class="index_foot">
  3. <!-- 友情链接 -->
  4. <div class="tbd">
  5. <div class="foot_title">
  6. <div class="foot_title_text">友情链接</div>
  7. </div>
  8. </div>
  9. <!-- 图片列表 -->
  10. <div class="foot_img_box">
  11. <a :href="item.url" v-for="(item, index) in bottomLink" :title="item.title" target="_blank">
  12. <img src="public/index/link.jpg" :alt="item.title">
  13. </a>
  14. </div>
  15. <!-- 底部导航 -->
  16. <div class="foot_frind_box">
  17. <div>
  18. <a :href="item.url" v-for="(item, index) in bottomText" :key="index" :title="item.title"
  19. target="_blank">{{ item.title }}</a>
  20. </div>
  21. </div>
  22. <!-- 联系我们 -->
  23. <div class="call_us_box">
  24. <span v-for="(item, index) in bottomMenu" :key="index">
  25. <NuxtLink :to="{ path: `/about/${item.name_pinyin}/list-1.html` }" v-if="item.type == 1"
  26. :title="item.name">
  27. {{ item.name }}
  28. </NuxtLink>
  29. <NuxtLink :to="{ path: `/about/${item.name_pinyin}/index.html` }" v-if="item.type == 0"
  30. :title="item.name">
  31. {{ item.name }}
  32. </NuxtLink>
  33. </span>
  34. </div>
  35. <!-- 底部文字 -->
  36. <div class="foot_text_box" v-if="bottomBase">
  37. <!-- 左右图片 -->
  38. <img class="dtb_left" src="http://dy.qgsnfzzx.org.cn/uploadfile/202306/02e5608847339bd.png" data-src="http://dy.qgsnfzzx.org.cn/uploadfile/202306/02e5608847339bd.png" title="全国政务信息一体化应用平台" alt="全国政务信息一体化应用平台" data-isloaded="1"/>
  39. <img class="dtb_right" src="http://hbfzdy.org.cn/uploadfile/202503/6b074e721ead7d0.jpg" data-src=" http://hbfzdy.org.cn/uploadfile/202503/6b074e721ead7d0.jpg" title="北京政讯通新媒体技术研究院" alt="北京政讯通新媒体技术研究院" data-isloaded="1"/>
  40. <p v-html="bottomBase.statement" class="foot_text_html_css"></p>
  41. <p v-html="bottomBase.organizer" class="foot_text_html_css foot_color_red"></p>
  42. <p v-html="bottomBase.copyright_information" class="foot_text_html_css"></p>
  43. <p>
  44. <span v-html="bottomBase.icp_number" class="foot_text_html_css"></span>
  45. <!-- <span v-html="bottomBase.record_number" class="foot_text_html_css"></span> -->
  46. <img class="xtb" src="http://dy.qgsnfzzx.org.cn/static/default/jing.jpg" data-src="http://dy.qgsnfzzx.org.cn/static/default/jing.jpg" data-isloaded="1"/>
  47. </p>
  48. <p v-html="bottomBase.contact_number" class="foot_text_html_css numberblue"></p>
  49. <p v-html="bottomBase.company_address" class="foot_text_html_css"></p>
  50. <p v-html="bottomBase.email" class="foot_text_html_css "></p>
  51. </div>
  52. <!-- 底部图片 -->
  53. <div class="foot_last_img_box">
  54. <a :href="item.url" v-for="(item, index) in bottomphoto" :title="item.title">
  55. <!-- <img :src="item.logo_url" :alt="item.title"> -->
  56. <img src="public/index/link2.png" :alt="item.title">
  57. </a>
  58. </div>
  59. <!-- 在线客服 -->
  60. <div class="kefu">
  61. <div class="kefu_itemKf">
  62. <a href="http://kf.znxyw.org.cn/?m=front&a=chat&key=ii08zncpb5" target="_blank">
  63. <img src="public/index/kefu.png">
  64. <p>在线客服</p>
  65. </a>
  66. </div>
  67. </div>
  68. <!--右侧悬浮-->
  69. <div class="foot_right_float">
  70. <NuxtLink target="_blank" href="http://fazhidy.org.cn">政讯通•全国法制调研中心</NuxtLink>
  71. <NuxtLink target="_blank" href="http://fazyqjczx.org.cn">政讯通•全国法制舆情监测中心</NuxtLink>
  72. <NuxtLink target="_blank" href="http://fzfzcj.org.cn">政讯通•全国法制发展促进中心 </NuxtLink>
  73. </div>
  74. <!--你问我答-->
  75. <div :class="wenda ? 'wenda wenda_style' : 'wenda'">
  76. <div class="wenda_tlt">
  77. <h3><a href="/">你问我答</a></h3>
  78. <span @click="toggleWenda"></span>
  79. </div>
  80. <ul class="wenda_view">
  81. <li>
  82. <div>
  83. <span class="new_wen">问</span>
  84. <a class="wenda_view_text" href="#">政讯通•全国法制项目官网有几个,承担的职能是什么</a>
  85. </div>
  86. <div>
  87. <span class="new_da">答</span>
  88. <b>
  89. 4个官网,分别是:
  90. 政讯通•全国法制资讯发布中心官网,提供资讯信息化服务,以资讯发布为主;
  91. 政讯通•全国法制调研中心官网,承担调研、法律服务等功能;
  92. 政讯通•全国法制舆情监测中心官网,承担舆情监测、处理、公关等功能;
  93. 政讯通•全国法制发展促进中心官网,承担行业发展促进、服务功能。
  94. </b>
  95. </div>
  96. </li>
  97. <li>
  98. <div>
  99. <span class="new_wen">问</span>
  100. <a class="wenda_view_text" href="#">我在网上看你们有聘兼职法制监督员,我想申请有什么要求?需要费用吗?</a>
  101. </div>
  102. <div>
  103. <span class="new_da">答</span>
  104. <b>合法中国公民,热爱和关注公益事业;五年内无违法犯罪记录;会电脑基本操作、有过媒体或公检法相关工作经验者均可申请。收取网络平台使用费,法制监督员分全国、省级、地市级三个级,地市级1200元/年,省级2400元/年,全国级4800元/年,配套办公用品费300元。运费到付或者顺付50元。</b>
  105. </div>
  106. </li>
  107. <li>
  108. <div>
  109. <span class="new_wen">问</span>
  110. <span><a href="/">申请地市中心条件?</a></span>
  111. </div>
  112. <div>
  113. <span class="new_da">答</span>
  114. <b>
  115. (1)从事过公检法相关工作或者媒体/法制工作的公民或法人单位均可申请;(前提条件)
  116. (2)熟悉我国相关政策和调研工作;
  117. (3)遵守国家法律法规,积极为发展做贡献;
  118. (4)遵守内参各项规章制度,严格执行工作纪律;
  119. (5)熟悉基本网络操作,遵守互联网应用规则;
  120. </b>
  121. </div>
  122. </li>
  123. <li>
  124. <div>
  125. <span class="new_wen">问</span>
  126. <span><a href="/">我想申请法制调研员有什么条件?</a></span>
  127. </div>
  128. <div>
  129. <span class="new_da">答</span>
  130. <b>有意从事法制公益性工作,熟悉国家法律法规、司法政策,五年内无违法犯罪记录;熟悉调研工作,熟悉网络基本操作,年龄在25-65之间的中国公民均可申请,有过执法或者公检法行业相关从业者优先考虑。</b>
  131. </div>
  132. </li>
  133. </ul>
  134. </div>
  135. </footer>
  136. </template>
  137. <script setup>
  138. //0.添加网站客服 start---------------------------------------->
  139. //添加网站客服
  140. function addQQFriend(qqNumber) {
  141. // 使用tencent协议唤起QQ客户端并添加好友
  142. window.location.href = `tencent://message/?uin=${qqNumber}&Site=&Menu=yes`;
  143. }
  144. //0.添加网站客服 end---------------------------------------->
  145. //获得底部基本信息 start---------------------------------------->
  146. //1.获得全部友情链接与底部图片
  147. const bottomLink = ref([])
  148. const bottomText = ref([])
  149. const bottomphoto = ref([])
  150. const bottomMenu = ref([])
  151. const bottomBase = ref({})
  152. const qq1 = ref("")
  153. const qq2 = ref("")
  154. async function getModelDataAll() {
  155. const mkdata = await requestDataPromise('/web/getWebsiteFootAll', {
  156. method: 'GET',
  157. query: {
  158. 'link_textnum': 24,
  159. 'link_imgnum': 18,
  160. 'link_footnum': 4
  161. },
  162. });
  163. if (mkdata.code == 200) {
  164. bottomLink.value = mkdata.data.link_img;
  165. bottomText.value = mkdata.data.link_text;
  166. bottomphoto.value = mkdata.data.link_foot;
  167. bottomMenu.value = mkdata.data.foot_cate;
  168. bottomBase.value = mkdata.data.foot_info;
  169. //获取qq号数字部分
  170. qq1.value = bottomBase.value.customer_service_qq.match(/\d+/g);
  171. qq2.value = bottomBase.value.communications.match(/\d+/g);
  172. } else {
  173. console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
  174. console.log("错误位置:获取友情链接图片")
  175. console.log("后端错误反馈:", mkdata.message)
  176. console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
  177. }
  178. }
  179. getModelDataAll();
  180. //获得底部基本信息 end---------------------------------------->
  181. //你问我答 start---------------------------------------->
  182. const wenda = ref(false)
  183. function toggleWenda() {
  184. wenda.value = !wenda.value
  185. }
  186. //你问我答 end---------------------------------------->
  187. </script>
  188. <style lang="less" scoped>
  189. //自适应 start ---------------------------------------->
  190. @media screen and (min-width: 1401px) {
  191. .foot_title {
  192. width: 1401PX;
  193. overflow: hidden;
  194. background: #fff;
  195. border-bottom: 2PX solid #9e9e9e;
  196. margin: auto;
  197. .foot_title_text{
  198. display: block;
  199. width: 100PX;
  200. height: 40PX;
  201. line-height: 40PX;
  202. text-align: center;
  203. font-size: 20PX;
  204. margin-top: 2.8PX;
  205. padding: 2PX 10PX;
  206. color: #15792f;
  207. font-weight: bold;
  208. }
  209. }
  210. .index_foot {
  211. box-sizing: border-box;
  212. // background: #fff;
  213. margin: 0 auto;
  214. overflow: visible;
  215. }
  216. .index_foot_name_box {
  217. margin: 10PX auto 0PX;
  218. text-align: center;
  219. font-size: 0PX;
  220. background: red;
  221. }
  222. .index_foot_name {
  223. display: inline-block;
  224. height: 67PX;
  225. line-height: 67PX;
  226. color: #f2f9f4;
  227. font-size: 51PX;
  228. font-weight: bold;
  229. overflow: hidden;
  230. }
  231. .index_foot_name:nth-of-type(even) {
  232. color: #333;
  233. font-size: 32PX;
  234. }
  235. .foot_img_box {
  236. width:1401PX;
  237. overflow: hidden;
  238. display: block;
  239. display: flex;
  240. flex-wrap: wrap;
  241. align-items: center;
  242. justify-content: flex-start;
  243. // background: RED;
  244. margin: 0 auto;
  245. padding-top: 5PX;
  246. // padding-bottom: 10PX;
  247. }
  248. .foot_img_box a {
  249. width: 14.2%;
  250. height: 60PX;
  251. display: block;
  252. padding: 0 4PX;
  253. box-sizing: border-box;
  254. margin-top: 10PX;
  255. // background: blue;
  256. }
  257. .foot_img_box img {
  258. float: left;
  259. width: 100%;
  260. height: 60PX;
  261. overflow: hidden;
  262. box-sizing: border-box;
  263. display: block;
  264. margin: 0 auto;
  265. background: #fff;
  266. }
  267. .foot_img_box>* * {
  268. display: block;
  269. width: 100%;
  270. height: 100%;
  271. }
  272. .foot_img_box>*:nth-of-type(7n) {
  273. margin-right: 0PX;
  274. }
  275. .foot_frind_box {
  276. width: 1401PX;
  277. height: auto;
  278. display: block;
  279. overflow: hidden;
  280. display: flex;
  281. font-size: 18PX;
  282. margin: 15PX auto 25PX;
  283. padding-top: 6px;
  284. border-top: 1px solid #ccc;
  285. a {
  286. font-size: 18PX;
  287. color: #333;
  288. }
  289. }
  290. .foot_frind_box div {
  291. width: 100%;
  292. overflow: hidden;
  293. }
  294. .foot_frind_box div * {
  295. float: left;
  296. line-height: 22PX;
  297. height: 22PX;
  298. color: #333;
  299. font-size: 18PX;
  300. margin: 0 10PX;
  301. }
  302. .call_us_box {
  303. display: block;
  304. width: 100%;
  305. margin: 42PX auto 0;
  306. overflow: hidden;
  307. text-align: center;
  308. font-size: 0PX;
  309. text-align: center;
  310. // background: #ccc;
  311. border-top: 4PX solid #15792f;
  312. a {
  313. font-size: 18PX;
  314. color: #333;
  315. font-weight: bold;
  316. }
  317. }
  318. .call_us_box>* {
  319. height: 14PX;
  320. line-height: 14PX;
  321. color: #fff;
  322. font-size: 14PX;
  323. display: inline-block;
  324. box-sizing: border-box;
  325. padding: 0 24PX;
  326. font-weight: bold;
  327. border-left: solid 1PX #000;
  328. margin: 18PX 0;
  329. }
  330. .call_us_box>*:nth-of-type(1) {
  331. border-left: 0PX;
  332. }
  333. .foot_text_box {
  334. width: 1401PX;
  335. margin: 15PX auto 0PX;
  336. text-align: center;
  337. color: #333;
  338. font-size: 14PX;
  339. line-height: 20PX;
  340. a {
  341. color: #333;
  342. font-size: 14PX;
  343. }
  344. }
  345. .xtb{
  346. margin-left: -10px;
  347. }
  348. .dtb_left{
  349. display: block;
  350. float: left;
  351. margin-top: 50px;
  352. margin-left: 28px;
  353. transform: scale(6);
  354. }
  355. .dtb_right{
  356. display: block;
  357. float: right;
  358. margin-top: 50px;
  359. margin-right: 28px;
  360. transform: scale(6);
  361. }
  362. .foot_text_box_green {
  363. color: #40663B;
  364. }
  365. .foot_text_box img {
  366. display: inline-block;
  367. height: 20PX;
  368. vertical-align: middle;
  369. }
  370. .foot_logo_out {
  371. position: relative;
  372. margin: 0PX auto;
  373. width: 100%;
  374. height: 0PX;
  375. }
  376. .foot_logo_out * {
  377. width: 120PX;
  378. display: block;
  379. }
  380. .foot_logo_out>* {
  381. position: absolute;
  382. top: -166PX;
  383. }
  384. .foot_logo_out>*:nth-of-type(1) {
  385. left: 0PX;
  386. }
  387. .foot_logo_out>*:nth-of-type(2) {
  388. right: 0PX;
  389. }
  390. .foot_last_img_box {
  391. width: 1401PX;
  392. margin: 10PX auto 10PX;
  393. text-align: center;
  394. overflow: hidden;
  395. width: 100%;
  396. font-size: 0PX;
  397. padding-bottom: 10PX;
  398. }
  399. .foot_last_img_box>* {
  400. height: 50PX;
  401. width: 120PX;
  402. display: inline-block;
  403. overflow: hidden;
  404. margin-right: 5PX;
  405. }
  406. .foot_last_img_box img {
  407. width: 120PX;
  408. height: 50PX;
  409. background: #fff;
  410. }
  411. .foot_text_html_css {
  412. line-height: 40PX;
  413. font-size: 14PX;
  414. }
  415. .foot_text_html_css :deep(a) {
  416. color: #333;
  417. }
  418. .numberblue{
  419. color: #0680cb;
  420. }
  421. .foot_color_red {
  422. color: red;
  423. }
  424. .foot_color_red :deep(a) {
  425. color: red;
  426. }
  427. .foot_text_html_css :deep(img) {
  428. margin: 0 5PX;
  429. }
  430. //添加在线客服
  431. .kefu {
  432. position: fixed;
  433. bottom: 100PX;
  434. top: 40%;
  435. right: 11PX;
  436. width: 64PX !important;
  437. z-index: 9999;
  438. .kefu_itemKf {
  439. background-color: #0099cc;
  440. border-radius: 10PX !important;
  441. box-shadow: 0 4PX 16PX #0000001a;
  442. width: 64PX !important;
  443. height: 64PX !important;
  444. padding: 8PX !important;
  445. text-align: center;
  446. box-sizing: border-box;
  447. position: relative;
  448. cursor: pointer;
  449. a {
  450. >p {
  451. color: #fff;
  452. font-size: 12PX !important;
  453. }
  454. >img {
  455. width: 30PX !important;
  456. height: 30PX !important;
  457. margin-bottom: 5PX !important;
  458. display: block;
  459. margin: 0 auto;
  460. }
  461. }
  462. }
  463. .kefu_itemQQ {
  464. background-color: #fff;
  465. border-radius: 10PX;
  466. box-shadow: 0 4PX 16PX #0000001a;
  467. height: 100PX;
  468. margin-bottom: 15PX;
  469. text-align: center;
  470. width: 100PX;
  471. box-sizing: border-box;
  472. position: relative;
  473. cursor: pointer;
  474. >p {
  475. color: #666;
  476. font-size: 14PX;
  477. font-weight: 500;
  478. line-height: 16PX;
  479. }
  480. >img {
  481. margin-top: 10PX;
  482. width: 60PX;
  483. height: 60PX;
  484. }
  485. &:hover {
  486. .kefu_item_content_QQ {
  487. display: block;
  488. }
  489. }
  490. }
  491. .kefu_itemPhone {
  492. background-color: #fff;
  493. border-radius: 10PX;
  494. box-shadow: 0 4PX 16PX #0000001a;
  495. height: 100PX;
  496. margin-bottom: 15PX;
  497. text-align: center;
  498. width: 100PX;
  499. box-sizing: border-box;
  500. position: relative;
  501. cursor: pointer;
  502. >p {
  503. color: #666;
  504. font-size: 14PX;
  505. font-weight: 500;
  506. line-height: 16PX;
  507. }
  508. >img {
  509. margin-top: 10PX;
  510. width: 60PX;
  511. height: 60PX;
  512. }
  513. &:hover {
  514. .kefu_item_content_phone {
  515. display: block;
  516. }
  517. }
  518. }
  519. .kefu_item_content_QQ {
  520. position: absolute;
  521. top: -100PX;
  522. right: 100PX;
  523. background: #fff;
  524. border-radius: 10PX;
  525. display: none;
  526. width: 190PX;
  527. height: 330PX;
  528. background: #fff;
  529. box-shadow: 0 4PX 16PX #0000001a;
  530. z-index: 99;
  531. box-sizing: border-box;
  532. padding: 20PX;
  533. img {
  534. margin-bottom: 10PX;
  535. }
  536. .qqfs {
  537. margin-bottom: 20PX;
  538. font-size: 14PX;
  539. color: #333;
  540. }
  541. .arrow {
  542. width: 0;
  543. height: 0;
  544. width: 0;
  545. border-top: 20PX solid transparent;
  546. border-bottom: 20PX solid transparent;
  547. border-left: 20PX solid #fff;
  548. position: absolute;
  549. top: 120PX;
  550. right: -20PX;
  551. transform: translateX(-50%);
  552. z-index: 100;
  553. }
  554. }
  555. .kefu_item_content_phone {
  556. position: absolute;
  557. top: 0;
  558. right: 100PX;
  559. background: #fff;
  560. border-radius: 10PX;
  561. display: none;
  562. width: 190PX;
  563. height: 80PX;
  564. background: #fff;
  565. box-shadow: 0 4PX 16PX #0000001a;
  566. z-index: 99;
  567. box-sizing: border-box;
  568. padding: 20PX;
  569. text-align: left;
  570. color: #333;
  571. .kefu_item_content_phone_title {
  572. margin-bottom: 5PX;
  573. font-weight: bold;
  574. }
  575. .arrow {
  576. width: 0;
  577. height: 0;
  578. width: 0;
  579. border-top: 20PX solid transparent;
  580. border-bottom: 20PX solid transparent;
  581. border-left: 20PX solid #fff;
  582. position: absolute;
  583. top: 20PX;
  584. right: -20PX;
  585. transform: translateX(-50%);
  586. z-index: 100;
  587. }
  588. }
  589. }
  590. .foot_right_float {
  591. position: fixed;
  592. z-index: 200;
  593. left: 2%;
  594. bottom: 10PX;
  595. a {
  596. display: block;
  597. margin-bottom: 4PX;
  598. border: 1PX solid #dee3eb;
  599. width: 220PX;
  600. height: 30PX;
  601. font-size: 14PX;
  602. line-height: 30PX;
  603. color: #EE6363;
  604. cursor: pointer;
  605. background: #fff;
  606. text-align: center;
  607. }
  608. }
  609. //在线问答
  610. .wenda {
  611. width: 300PX !important;
  612. height: auto;
  613. overflow: hidden;
  614. position: fixed;
  615. bottom: 0;
  616. right: 0;
  617. background: #fff;
  618. border: 1PX solid #7ab9dd;
  619. padding: 10PX !important;
  620. box-shadow: 0PX 1PX 8PX #888 !important;
  621. z-index: 99999999;
  622. box-sizing: border-box;
  623. .wenda_tlt {
  624. width: 100%;
  625. height: 40PX !important;
  626. line-height: 40PX !important;
  627. overflow: hidden;
  628. border-bottom: 2PX solid #ccc !important;
  629. }
  630. .wenda_tlt h3 {
  631. float: left;
  632. height: 40PX !important;
  633. line-height: 40PX !important;
  634. font-size: 22PX !important;
  635. // color: #0a78d7;
  636. a {
  637. color: #337ab7;
  638. // color: #333;
  639. font-weight: normal;
  640. text-decoration: none;
  641. }
  642. }
  643. .wenda_tlt span {
  644. float: right;
  645. width: 40PX !important;
  646. height: 40PX !important;
  647. background: url('public/index/jt.png') no-repeat center center;
  648. transform: rotateZ(180deg);
  649. font-size: 40PX !important;
  650. color: #000;
  651. cursor: pointer;
  652. }
  653. .wenda_view li {
  654. width: 100%;
  655. height: auto;
  656. overflow: hidden;
  657. margin: 10PX 0 !important;
  658. padding: 10PX 0 !important;
  659. border-bottom: 1PX solid #222 !important;
  660. background: #f1f1f1;
  661. border-radius: 10PX !important;
  662. }
  663. .wenda_view li div span.new_wen {
  664. text-align: center;
  665. line-height: 22PX !important;
  666. float: left;
  667. width: 22PX !important;
  668. height: 22PX !important;
  669. font-size: 20PX !important;
  670. color: #fff;
  671. background: #fb4;
  672. border-radius: 5PX !important;
  673. margin: 3PX 5PX 3PX 0 !important;
  674. padding: 0 !important;
  675. }
  676. .wenda_view li div a.wenda_view_text {
  677. font-size: 16PX !important;
  678. line-height: 16PX !important;
  679. line-height: 30PX !important;
  680. color: #333 !important;
  681. display: block !important;
  682. }
  683. .wenda_view li div span.new_da {
  684. text-align: center;
  685. line-height: 22PX !important;
  686. float: left;
  687. width: 22PX !important;
  688. height: 22PX !important;
  689. font-size: 20PX !important;
  690. color: #fff;
  691. background: #8ac03b;
  692. border-radius: 5PX !important;
  693. margin: 3PX 5PX 3PX 0;
  694. padding: 0 !important;
  695. }
  696. .wenda_view li div {
  697. width: 100%;
  698. height: auto;
  699. overflow: hidden;
  700. padding: 0 10PX !important;
  701. box-sizing: border-box;
  702. }
  703. .wenda_view li div span a {
  704. color: #222;
  705. }
  706. .wenda_view li div span {
  707. height: auto;
  708. overflow: hidden;
  709. line-height: 30PX !important;
  710. font-size: 16PX !important;
  711. color: #222;
  712. border-radius: 10PX !important;
  713. padding: 0 10PX !important;
  714. }
  715. .wenda_view li div {
  716. width: 100%;
  717. height: auto;
  718. overflow: hidden;
  719. padding: 0 10PX !important;
  720. }
  721. .wenda_view li b {
  722. display: block;
  723. font-size: 14PX !important;
  724. color: #7b838a;
  725. line-height: 30PX !important;
  726. border-radius: 10PX !important;
  727. font-weight: 100;
  728. max-height: 90PX !important;
  729. }
  730. .wenda_view {
  731. width: 100%;
  732. min-height: 0PX !important;
  733. max-height: 38VH !important;
  734. overflow: auto;
  735. margin: 0px auto 0;
  736. padding-right: 10PX !important;
  737. }
  738. }
  739. .wenda_style {
  740. height: 40PX !important;
  741. overflow: hidden;
  742. padding: 0 10PX !important;
  743. span {
  744. transform: rotateZ(0deg) !important;
  745. }
  746. }
  747. }
  748. @media screen and (min-width: 801px) and (max-width: 1400px) {
  749. .foot_title {
  750. width: 100%;
  751. overflow: hidden;
  752. background: #fff;
  753. border-bottom: 1PX solid #0680cb;
  754. .foot_title_text{
  755. display: block;
  756. width: 100PX;
  757. height: 40PX;
  758. line-height: 40PX;
  759. text-align: center;
  760. font-size: 22PX;
  761. border-bottom: 2PX solid #0680cb;
  762. margin-top: 2.8px;
  763. padding: 2PX 20PX;
  764. color: #0680cb;
  765. }
  766. }
  767. .index_foot {
  768. box-sizing: border-box;
  769. // width: 1400PX;
  770. // width: ;
  771. margin: 0 auto;
  772. overflow: visible;
  773. }
  774. .foot_title{
  775. min-width: 801PX;
  776. max-width: 1400PX;
  777. // background: red;
  778. margin: auto;
  779. }
  780. .index_foot_name_box {
  781. margin: 10PX auto 0PX;
  782. text-align: center;
  783. font-size: 0PX;
  784. background: red;
  785. }
  786. .index_foot_name {
  787. display: inline-block;
  788. height: 67PX;
  789. line-height: 67PX;
  790. color: #f2f9f4;
  791. font-size: 51PX;
  792. font-weight: bold;
  793. overflow: hidden;
  794. }
  795. .index_foot_name:nth-of-type(even) {
  796. color: #333;
  797. font-size: 32PX;
  798. }
  799. .foot_img_box {
  800. min-width: 801PX;
  801. max-width: 1400PX;
  802. overflow: hidden;
  803. display: block;
  804. display: flex;
  805. flex-wrap: wrap;
  806. // align-items: center;
  807. // justify-content: space-between;
  808. // background: RED;
  809. margin: 0 auto;
  810. padding-top: 5PX;
  811. // padding-bottom: 10PX;
  812. }
  813. .foot_img_box a {
  814. width: 14.2%;
  815. height: 60PX;
  816. display: block;
  817. padding: 0 4PX;
  818. box-sizing: border-box;
  819. margin-top: 10PX;
  820. // background: blue;
  821. }
  822. .foot_img_box img {
  823. float: left;
  824. width: 100%;
  825. height: 100%;
  826. overflow: hidden;
  827. box-sizing: border-box;
  828. display: block;
  829. margin: 0 auto;
  830. background: #fff;
  831. // vertical-align: middle;
  832. }
  833. .foot_img_box>* * {
  834. display: block;
  835. width: 100%;
  836. height: 100%;
  837. }
  838. .foot_img_box>*:nth-of-type(7n) {
  839. margin-right: 0PX;
  840. }
  841. .foot_frind_box {
  842. min-width: 801PX;
  843. max-width: 1400PX;
  844. height: auto;
  845. display: block;
  846. overflow: hidden;
  847. display: flex;
  848. font-size: 18PX;
  849. margin: 15PX auto 25PX;
  850. padding-top: 6px;
  851. border-top: 1px solid #ccc;
  852. a {
  853. font-size: 18PX;
  854. color: #333;
  855. }
  856. }
  857. .foot_frind_box div {
  858. width: 100%;
  859. overflow: hidden;
  860. }
  861. .foot_frind_box div * {
  862. float: left;
  863. line-height: 22PX;
  864. height: 22PX;
  865. color: #333;
  866. font-size: 18PX;
  867. margin: 0 10PX;
  868. }
  869. .call_us_box {
  870. display: block;
  871. width: 100%;
  872. margin: 42PX auto 0;
  873. overflow: hidden;
  874. text-align: center;
  875. font-size: 0PX;
  876. text-align: center;
  877. // background: #ccc;
  878. border-top: 4PX solid #15792f;
  879. a {
  880. font-size: 18PX;
  881. color: #333;
  882. font-weight: bold;
  883. }
  884. }
  885. .call_us_box>* {
  886. height: 14PX;
  887. line-height: 14PX;
  888. color: #fff;
  889. font-size: 14PX;
  890. display: inline-block;
  891. box-sizing: border-box;
  892. padding: 0 24PX;
  893. font-weight: bold;
  894. border-left: solid 1PX #000;
  895. margin: 18PX 0;
  896. }
  897. .call_us_box>*:nth-of-type(1) {
  898. border-left: 0PX;
  899. }
  900. .foot_text_box {
  901. min-width: 801PX;
  902. max-width: 1400PX;
  903. margin: 15PX auto 0PX;
  904. text-align: center;
  905. color: #333;
  906. font-size: 14PX;
  907. line-height: 20PX;
  908. a {
  909. color: #333;
  910. font-size: 14PX;
  911. }
  912. }
  913. .xtb{
  914. margin-left: -10px;
  915. }
  916. .dtb_left{
  917. display: block;
  918. float: left;
  919. // z-index: 1000;
  920. margin-top: 80px;
  921. margin-left: 28px;
  922. transform: scale(6);
  923. }
  924. .dtb_right{
  925. display: block;
  926. float: right;
  927. margin-top: 80px;
  928. margin-right: 28px;
  929. transform: scale(6);
  930. }
  931. .foot_text_box_green {
  932. color: #40663B;
  933. }
  934. .foot_text_box img {
  935. display: inline-block;
  936. height: 20PX;
  937. vertical-align: middle;
  938. }
  939. .foot_logo_out {
  940. position: relative;
  941. margin: 0PX auto;
  942. width: 100%;
  943. height: 0PX;
  944. }
  945. .foot_logo_out * {
  946. width: 120PX;
  947. display: block;
  948. }
  949. .foot_logo_out>* {
  950. position: absolute;
  951. top: -166PX;
  952. }
  953. .foot_logo_out>*:nth-of-type(1) {
  954. left: 0PX;
  955. }
  956. .foot_logo_out>*:nth-of-type(2) {
  957. right: 0PX;
  958. }
  959. .foot_last_img_box {
  960. min-width: 801PX;
  961. max-width: 1400PX;
  962. margin: 10PX auto 10PX;
  963. text-align: center;
  964. overflow: hidden;
  965. width: 100%;
  966. font-size: 0PX;
  967. padding-bottom: 10PX;
  968. }
  969. .foot_last_img_box>* {
  970. height: 50PX;
  971. width: 120PX;
  972. display: inline-block;
  973. overflow: hidden;
  974. margin-right: 5PX;
  975. }
  976. .foot_last_img_box img {
  977. width: 120PX;
  978. height: 50PX;
  979. background: #fff;
  980. }
  981. .foot_text_html_css {
  982. line-height: 40PX;
  983. font-size: 14PX;
  984. }
  985. .foot_text_html_css :deep(a) {
  986. color: #333;
  987. }
  988. .numberblue{
  989. color: #0680cb;
  990. }
  991. .foot_color_red {
  992. color: red;
  993. }
  994. .foot_color_red :deep(a) {
  995. color: red;
  996. }
  997. .foot_text_html_css :deep(img) {
  998. margin: 0 5PX;
  999. }
  1000. //添加在线客服
  1001. .kefu {
  1002. position: fixed;
  1003. bottom: 100PX;
  1004. top: 40%;
  1005. right: 11PX;
  1006. width: 64PX !important;
  1007. z-index: 9999;
  1008. .kefu_itemKf {
  1009. background-color: #0099cc;
  1010. border-radius: 10PX !important;
  1011. box-shadow: 0 4PX 16PX #0000001a;
  1012. width: 64PX !important;
  1013. height: 64PX !important;
  1014. padding: 8PX !important;
  1015. text-align: center;
  1016. box-sizing: border-box;
  1017. position: relative;
  1018. cursor: pointer;
  1019. a {
  1020. >p {
  1021. color: #fff;
  1022. font-size: 12PX !important;
  1023. }
  1024. >img {
  1025. width: 30PX !important;
  1026. height: 30PX !important;
  1027. margin-bottom: 5PX !important;
  1028. display: block;
  1029. margin: 0 auto;
  1030. }
  1031. }
  1032. }
  1033. .kefu_itemQQ {
  1034. background-color: #fff;
  1035. border-radius: 10PX;
  1036. box-shadow: 0 4PX 16PX #0000001a;
  1037. height: 100PX;
  1038. margin-bottom: 15PX;
  1039. text-align: center;
  1040. width: 100PX;
  1041. box-sizing: border-box;
  1042. position: relative;
  1043. cursor: pointer;
  1044. >p {
  1045. color: #666;
  1046. font-size: 14PX;
  1047. font-weight: 500;
  1048. line-height: 16PX;
  1049. }
  1050. >img {
  1051. margin-top: 10PX;
  1052. width: 60PX;
  1053. height: 60PX;
  1054. }
  1055. &:hover {
  1056. .kefu_item_content_QQ {
  1057. display: block;
  1058. }
  1059. }
  1060. }
  1061. .kefu_itemPhone {
  1062. background-color: #fff;
  1063. border-radius: 10PX;
  1064. box-shadow: 0 4PX 16PX #0000001a;
  1065. height: 100PX;
  1066. margin-bottom: 15PX;
  1067. text-align: center;
  1068. width: 100PX;
  1069. box-sizing: border-box;
  1070. position: relative;
  1071. cursor: pointer;
  1072. >p {
  1073. color: #666;
  1074. font-size: 14PX;
  1075. font-weight: 500;
  1076. line-height: 16PX;
  1077. }
  1078. >img {
  1079. margin-top: 10PX;
  1080. width: 60PX;
  1081. height: 60PX;
  1082. }
  1083. &:hover {
  1084. .kefu_item_content_phone {
  1085. display: block;
  1086. }
  1087. }
  1088. }
  1089. .kefu_item_content_QQ {
  1090. position: absolute;
  1091. top: -100PX;
  1092. right: 100PX;
  1093. background: #fff;
  1094. border-radius: 10PX;
  1095. display: none;
  1096. width: 190PX;
  1097. height: 330PX;
  1098. background: #fff;
  1099. box-shadow: 0 4PX 16PX #0000001a;
  1100. z-index: 99;
  1101. box-sizing: border-box;
  1102. padding: 20PX;
  1103. img {
  1104. margin-bottom: 10PX;
  1105. }
  1106. .qqfs {
  1107. margin-bottom: 20PX;
  1108. font-size: 14PX;
  1109. color: #333;
  1110. }
  1111. .arrow {
  1112. width: 0;
  1113. height: 0;
  1114. width: 0;
  1115. border-top: 20PX solid transparent;
  1116. border-bottom: 20PX solid transparent;
  1117. border-left: 20PX solid #fff;
  1118. position: absolute;
  1119. top: 120PX;
  1120. right: -20PX;
  1121. transform: translateX(-50%);
  1122. z-index: 100;
  1123. }
  1124. }
  1125. .kefu_item_content_phone {
  1126. position: absolute;
  1127. top: 0;
  1128. right: 100PX;
  1129. background: #fff;
  1130. border-radius: 10PX;
  1131. display: none;
  1132. width: 190PX;
  1133. height: 80PX;
  1134. background: #fff;
  1135. box-shadow: 0 4PX 16PX #0000001a;
  1136. z-index: 99;
  1137. box-sizing: border-box;
  1138. padding: 20PX;
  1139. text-align: left;
  1140. color: #333;
  1141. .kefu_item_content_phone_title {
  1142. margin-bottom: 5PX;
  1143. font-weight: bold;
  1144. }
  1145. .arrow {
  1146. width: 0;
  1147. height: 0;
  1148. width: 0;
  1149. border-top: 20PX solid transparent;
  1150. border-bottom: 20PX solid transparent;
  1151. border-left: 20PX solid #fff;
  1152. position: absolute;
  1153. top: 20PX;
  1154. right: -20PX;
  1155. transform: translateX(-50%);
  1156. z-index: 100;
  1157. }
  1158. }
  1159. }
  1160. .foot_right_float {
  1161. position: fixed;
  1162. z-index: 200;
  1163. left: 2%;
  1164. bottom: 10PX;
  1165. a {
  1166. display: block;
  1167. margin-bottom: 4PX;
  1168. border: 1PX solid #dee3eb;
  1169. width: 220PX;
  1170. height: 30PX;
  1171. font-size: 14PX;
  1172. line-height: 30PX;
  1173. color: #EE6363;
  1174. cursor: pointer;
  1175. background: #fff;
  1176. text-align: center;
  1177. }
  1178. }
  1179. //在线问答
  1180. .wenda {
  1181. width: 300PX !important;
  1182. height: auto;
  1183. overflow: hidden;
  1184. position: fixed;
  1185. bottom: 0;
  1186. right: 0;
  1187. background: #fff;
  1188. border: 1PX solid #7ab9dd;
  1189. padding: 10PX !important;
  1190. box-shadow: 0PX 1PX 8PX #888 !important;
  1191. z-index: 99999999;
  1192. box-sizing: border-box;
  1193. .wenda_tlt {
  1194. width: 100%;
  1195. height: 40PX !important;
  1196. line-height: 40PX !important;
  1197. overflow: hidden;
  1198. border-bottom: 2PX solid #ccc !important;
  1199. }
  1200. .wenda_tlt h3 {
  1201. float: left;
  1202. height: 40PX !important;
  1203. line-height: 40PX !important;
  1204. font-size: 22PX !important;
  1205. // color: #0a78d7;
  1206. a {
  1207. // color: #337ab7;
  1208. color: #333;
  1209. font-weight: normal;
  1210. text-decoration: none;
  1211. }
  1212. }
  1213. .wenda_tlt span {
  1214. float: right;
  1215. width: 40PX !important;
  1216. height: 40PX !important;
  1217. background: url('public/index/jt.png') no-repeat center center;
  1218. transform: rotateZ(180deg);
  1219. font-size: 40PX !important;
  1220. color: #000;
  1221. cursor: pointer;
  1222. }
  1223. .wenda_view li {
  1224. width: 100%;
  1225. height: auto;
  1226. overflow: hidden;
  1227. margin: 10PX 0 !important;
  1228. padding: 10PX 0 !important;
  1229. border-bottom: 1PX solid #222 !important;
  1230. background: #f1f1f1;
  1231. border-radius: 10PX !important;
  1232. }
  1233. .wenda_view li div span.new_wen {
  1234. text-align: center;
  1235. line-height: 22PX !important;
  1236. float: left;
  1237. width: 22PX !important;
  1238. height: 22PX !important;
  1239. font-size: 20PX !important;
  1240. color: #fff;
  1241. background: #fb4;
  1242. border-radius: 5PX !important;
  1243. margin: 3PX 5PX 3PX 0 !important;
  1244. padding: 0 !important;
  1245. }
  1246. .wenda_view li div a.wenda_view_text {
  1247. font-size: 16PX !important;
  1248. line-height: 16PX !important;
  1249. line-height: 30PX !important;
  1250. color: #333 !important;
  1251. display: block !important;
  1252. }
  1253. .wenda_view li div span.new_da {
  1254. text-align: center;
  1255. line-height: 22PX !important;
  1256. float: left;
  1257. width: 22PX !important;
  1258. height: 22PX !important;
  1259. font-size: 20PX !important;
  1260. color: #fff;
  1261. background: #8ac03b;
  1262. border-radius: 5PX !important;
  1263. margin: 3PX 5PX 3PX 0;
  1264. padding: 0 !important;
  1265. }
  1266. .wenda_view li div {
  1267. width: 100%;
  1268. height: auto;
  1269. overflow: hidden;
  1270. padding: 0 10PX !important;
  1271. box-sizing: border-box;
  1272. }
  1273. .wenda_view li div span a {
  1274. color: #222;
  1275. }
  1276. .wenda_view li div span {
  1277. height: auto;
  1278. overflow: hidden;
  1279. line-height: 30PX !important;
  1280. font-size: 16PX !important;
  1281. color: #222;
  1282. border-radius: 10PX !important;
  1283. padding: 0 10PX !important;
  1284. }
  1285. .wenda_view li div {
  1286. width: 100%;
  1287. height: auto;
  1288. overflow: hidden;
  1289. padding: 0 10PX !important;
  1290. }
  1291. .wenda_view li b {
  1292. display: block;
  1293. font-size: 14PX !important;
  1294. color: #7b838a;
  1295. line-height: 30PX !important;
  1296. border-radius: 10PX !important;
  1297. font-weight: 100;
  1298. max-height: 90PX !important;
  1299. }
  1300. .wenda_view {
  1301. width: 100%;
  1302. min-height: 0PX !important;
  1303. max-height: 38VH !important;
  1304. overflow: auto;
  1305. margin: 0px auto 0;
  1306. padding-right: 10PX !important;
  1307. }
  1308. }
  1309. .wenda_style {
  1310. height: 40PX !important;
  1311. overflow: hidden;
  1312. padding: 0 10PX !important;
  1313. span {
  1314. transform: rotateZ(0deg) !important;
  1315. }
  1316. }
  1317. }
  1318. @media screen and (max-width: 800px) {
  1319. .tbd{
  1320. max-width:800PX;
  1321. background: #f1f1f1;
  1322. padding: 0 10PX;
  1323. .foot_title {
  1324. max-width:100%;
  1325. overflow: hidden;
  1326. margin: auto;
  1327. height: 40PX;
  1328. line-height: 40PX;
  1329. text-align: center;
  1330. background: #3CB302;
  1331. padding: 0 10PX;
  1332. .foot_title_text{
  1333. display: block;
  1334. width: 90PX;
  1335. height: 31PX;
  1336. line-height: 31PX;
  1337. text-align: center;
  1338. font-size: 17PX;
  1339. padding: 2PX 5PX;
  1340. font-weight: bold;
  1341. float: left;
  1342. background: #fff;
  1343. color: #3CB302;
  1344. border-top-left-radius: 5PX;
  1345. border-top-right-radius: 5PX;
  1346. margin: 9PX -5PX 0;
  1347. }
  1348. }
  1349. }
  1350. .index_foot {
  1351. box-sizing: border-box;
  1352. background: #fff;
  1353. margin: 0 auto;
  1354. overflow: visible;
  1355. padding: 0 10PX;
  1356. }
  1357. .index_foot_name_box {
  1358. margin: 10PX auto 0PX;
  1359. text-align: center;
  1360. font-size: 0PX;
  1361. background: red;
  1362. }
  1363. .index_foot_name {
  1364. display: inline-block;
  1365. height: 67PX;
  1366. line-height: 67PX;
  1367. color: #f2f9f4;
  1368. font-size: 51PX;
  1369. font-weight: bold;
  1370. overflow: hidden;
  1371. }
  1372. .index_foot_name:nth-of-type(even) {
  1373. color: #333;
  1374. font-size: 32PX;
  1375. }
  1376. .foot_img_box {
  1377. max-width: 800PX;
  1378. overflow: hidden;
  1379. // display: block;
  1380. display: flex;
  1381. flex-wrap: wrap;
  1382. justify-content: space-between;
  1383. margin: 0 auto;
  1384. padding: 0 20PX;
  1385. background: #f1f1f1;
  1386. padding-top: 20PX;
  1387. box-sizing: border-box;
  1388. }
  1389. .foot_img_box a {
  1390. width: 47%;
  1391. // min-width: 48%;
  1392. // max-width: 48%;
  1393. // height: auto;
  1394. display: block;
  1395. padding: 10PX 0;
  1396. box-sizing: border-box;
  1397. box-sizing: border-box;
  1398. // background: blue;
  1399. }
  1400. .foot_img_box img {
  1401. float: left;
  1402. width: 100%;
  1403. height: 60PX;
  1404. overflow: hidden;
  1405. box-sizing: border-box;
  1406. display: block;
  1407. background: #fff;
  1408. }
  1409. .foot_img_box>* * {
  1410. display: block;
  1411. width: 100%;
  1412. height: 100%;
  1413. }
  1414. .foot_img_box>*:nth-of-type(7n) {
  1415. margin-right: 0PX;
  1416. }
  1417. .foot_frind_box {
  1418. max-width: 800PX;
  1419. height: auto;
  1420. display: block;
  1421. overflow: hidden;
  1422. display: flex;
  1423. font-size: 18PX;
  1424. margin: 15PX auto 25PX;
  1425. padding-top: 6px;
  1426. border-top: 1px solid #ccc;
  1427. a {
  1428. font-size: 18PX;
  1429. color: #333;
  1430. }
  1431. display: none;
  1432. }
  1433. .foot_frind_box div {
  1434. width: 100%;
  1435. overflow: hidden;
  1436. }
  1437. .foot_frind_box div * {
  1438. float: left;
  1439. line-height: 22PX;
  1440. height: 22PX;
  1441. color: #333;
  1442. font-size: 18PX;
  1443. margin: 0 10PX;
  1444. }
  1445. .call_us_box {
  1446. display: block;
  1447. width: 100%;
  1448. // margin: 42PX auto 0;
  1449. overflow: hidden;
  1450. text-align: center;
  1451. font-size: 0PX;
  1452. text-align: center;
  1453. // background: #ccc;
  1454. border-bottom: 1px dashed #ccc;
  1455. display: flex;
  1456. flex-wrap: wrap;
  1457. justify-content: flex-start;
  1458. a {
  1459. display: block;
  1460. // width: 33.33%;
  1461. font-size: 15PX;
  1462. color: #337ab7;
  1463. // font-weight: bold;
  1464. }
  1465. }
  1466. .call_us_box>* {
  1467. height: auto;
  1468. // line-height: 30PX;
  1469. width: 33.33%;
  1470. color: #fff;
  1471. font-size: 15PX;
  1472. display: inline-block;
  1473. box-sizing: border-box;
  1474. padding: 0 24PX;
  1475. font-weight: normal;
  1476. // border-left: solid 1PX #000;
  1477. margin: 10PX 0;
  1478. }
  1479. .call_us_box>*:nth-of-type(1) {
  1480. border-left: 0PX;
  1481. }
  1482. .foot_text_box {
  1483. max-width: 800PX;
  1484. margin: 15PX auto 0PX;
  1485. text-align: center;
  1486. color: #333;
  1487. font-size: 14PX;
  1488. line-height: 20PX;
  1489. a {
  1490. color: #333;
  1491. font-size: 14PX;
  1492. }
  1493. }
  1494. .xtb{
  1495. margin-left: -10px;
  1496. }
  1497. .dtb_left{
  1498. display: none !important;
  1499. float: left;
  1500. margin-top: 50px;
  1501. margin-left: 28px;
  1502. transform: scale(6);
  1503. // display: none;
  1504. }
  1505. .dtb_right{
  1506. display: none !important;
  1507. float: right;
  1508. margin-top: 50px;
  1509. margin-right: 28px;
  1510. transform: scale(6);
  1511. // display: none;
  1512. }
  1513. .foot_text_box_green {
  1514. color: #40663B;
  1515. }
  1516. .foot_text_box img {
  1517. display: inline-block;
  1518. height: 20PX;
  1519. vertical-align: middle;
  1520. }
  1521. .foot_logo_out {
  1522. position: relative;
  1523. margin: 0PX auto;
  1524. width: 100%;
  1525. height: 0PX;
  1526. }
  1527. .foot_logo_out * {
  1528. width: 120PX;
  1529. display: block;
  1530. }
  1531. .foot_logo_out>* {
  1532. position: absolute;
  1533. top: -166PX;
  1534. }
  1535. .foot_logo_out>*:nth-of-type(1) {
  1536. left: 0PX;
  1537. }
  1538. .foot_logo_out>*:nth-of-type(2) {
  1539. right: 0PX;
  1540. }
  1541. .foot_last_img_box {
  1542. max-width: 800PX;
  1543. margin: 10PX auto 10PX;
  1544. text-align: center;
  1545. overflow: hidden;
  1546. width: 100%;
  1547. font-size: 0PX;
  1548. padding-bottom: 10PX;
  1549. // padding-bottom: 30%PX;
  1550. }
  1551. .foot_last_img_box>* {
  1552. height: 50PX;
  1553. width: 120PX;
  1554. display: inline-block;
  1555. overflow: hidden;
  1556. margin-right: 5PX;
  1557. }
  1558. .foot_last_img_box img {
  1559. width: 120PX;
  1560. height: 50PX;
  1561. background: #fff;
  1562. }
  1563. .foot_text_html_css {
  1564. line-height: 40PX;
  1565. font-size: 14PX;
  1566. }
  1567. .foot_text_html_css :deep(a) {
  1568. color: #333;
  1569. }
  1570. .numberblue{
  1571. color: #0680cb;
  1572. }
  1573. .foot_color_red {
  1574. color: red;
  1575. }
  1576. .foot_color_red :deep(a) {
  1577. color: red;
  1578. }
  1579. .foot_text_html_css :deep(img) {
  1580. margin: 0 5PX;
  1581. }
  1582. //添加在线客服
  1583. .kefu {
  1584. position: fixed;
  1585. bottom: 100PX;
  1586. top: 40%;
  1587. right: 11PX;
  1588. width: 64PX !important;
  1589. z-index: 9999;
  1590. .kefu_itemKf {
  1591. background-color: #0099cc;
  1592. border-radius: 10PX !important;
  1593. box-shadow: 0 4PX 16PX #0000001a;
  1594. width: 64PX !important;
  1595. height: 64PX !important;
  1596. padding: 8PX !important;
  1597. text-align: center;
  1598. box-sizing: border-box;
  1599. position: relative;
  1600. cursor: pointer;
  1601. a {
  1602. >p {
  1603. color: #fff;
  1604. font-size: 12PX !important;
  1605. }
  1606. >img {
  1607. width: 30PX !important;
  1608. height: 30PX !important;
  1609. margin-bottom: 5PX !important;
  1610. display: block;
  1611. margin: 0 auto;
  1612. }
  1613. }
  1614. }
  1615. .kefu_itemQQ {
  1616. background-color: #fff;
  1617. border-radius: 10PX;
  1618. box-shadow: 0 4PX 16PX #0000001a;
  1619. height: 100PX;
  1620. margin-bottom: 15PX;
  1621. text-align: center;
  1622. width: 100PX;
  1623. box-sizing: border-box;
  1624. position: relative;
  1625. cursor: pointer;
  1626. >p {
  1627. color: #666;
  1628. font-size: 14PX;
  1629. font-weight: 500;
  1630. line-height: 16PX;
  1631. }
  1632. >img {
  1633. margin-top: 10PX;
  1634. width: 60PX;
  1635. height: 60PX;
  1636. }
  1637. &:hover {
  1638. .kefu_item_content_QQ {
  1639. display: block;
  1640. }
  1641. }
  1642. }
  1643. .kefu_itemPhone {
  1644. background-color: #fff;
  1645. border-radius: 10PX;
  1646. box-shadow: 0 4PX 16PX #0000001a;
  1647. height: 100PX;
  1648. margin-bottom: 15PX;
  1649. text-align: center;
  1650. width: 100PX;
  1651. box-sizing: border-box;
  1652. position: relative;
  1653. cursor: pointer;
  1654. >p {
  1655. color: #666;
  1656. font-size: 14PX;
  1657. font-weight: 500;
  1658. line-height: 16PX;
  1659. }
  1660. >img {
  1661. margin-top: 10PX;
  1662. width: 60PX;
  1663. height: 60PX;
  1664. }
  1665. &:hover {
  1666. .kefu_item_content_phone {
  1667. display: block;
  1668. }
  1669. }
  1670. }
  1671. .kefu_item_content_QQ {
  1672. position: absolute;
  1673. top: -100PX;
  1674. right: 100PX;
  1675. background: #fff;
  1676. border-radius: 10PX;
  1677. display: none;
  1678. width: 190PX;
  1679. height: 330PX;
  1680. background: #fff;
  1681. box-shadow: 0 4PX 16PX #0000001a;
  1682. z-index: 99;
  1683. box-sizing: border-box;
  1684. padding: 20PX;
  1685. img {
  1686. margin-bottom: 10PX;
  1687. }
  1688. .qqfs {
  1689. margin-bottom: 20PX;
  1690. font-size: 14PX;
  1691. color: #333;
  1692. }
  1693. .arrow {
  1694. width: 0;
  1695. height: 0;
  1696. width: 0;
  1697. border-top: 20PX solid transparent;
  1698. border-bottom: 20PX solid transparent;
  1699. border-left: 20PX solid #fff;
  1700. position: absolute;
  1701. top: 120PX;
  1702. right: -20PX;
  1703. transform: translateX(-50%);
  1704. z-index: 100;
  1705. }
  1706. }
  1707. .kefu_item_content_phone {
  1708. position: absolute;
  1709. top: 0;
  1710. right: 100PX;
  1711. background: #fff;
  1712. border-radius: 10PX;
  1713. display: none;
  1714. width: 190PX;
  1715. height: 80PX;
  1716. background: #fff;
  1717. box-shadow: 0 4PX 16PX #0000001a;
  1718. z-index: 99;
  1719. box-sizing: border-box;
  1720. padding: 20PX;
  1721. text-align: left;
  1722. color: #333;
  1723. .kefu_item_content_phone_title {
  1724. margin-bottom: 5PX;
  1725. font-weight: bold;
  1726. }
  1727. .arrow {
  1728. width: 0;
  1729. height: 0;
  1730. width: 0;
  1731. border-top: 20PX solid transparent;
  1732. border-bottom: 20PX solid transparent;
  1733. border-left: 20PX solid #fff;
  1734. position: absolute;
  1735. top: 20PX;
  1736. right: -20PX;
  1737. transform: translateX(-50%);
  1738. z-index: 100;
  1739. }
  1740. }
  1741. }
  1742. .foot_right_float {
  1743. position: fixed;
  1744. z-index: 200;
  1745. left: 2%;
  1746. bottom: 10PX;
  1747. a {
  1748. display: block;
  1749. margin-bottom: 4PX;
  1750. border: 1PX solid #dee3eb;
  1751. width: 220PX;
  1752. height: 30PX;
  1753. font-size: 14PX;
  1754. line-height: 30PX;
  1755. color: #EE6363;
  1756. cursor: pointer;
  1757. background: #fff;
  1758. text-align: center;
  1759. }
  1760. }
  1761. //在线问答
  1762. .wenda {
  1763. display: none;
  1764. width: 300PX !important;
  1765. height: auto;
  1766. overflow: hidden;
  1767. position: fixed;
  1768. bottom: 0;
  1769. right: 0;
  1770. background: #fff;
  1771. border: 1PX solid #7ab9dd;
  1772. padding: 10PX !important;
  1773. box-shadow: 0PX 1PX 8PX #888 !important;
  1774. z-index: 99999999;
  1775. box-sizing: border-box;
  1776. .wenda_tlt {
  1777. width: 100%;
  1778. height: 40PX !important;
  1779. line-height: 40PX !important;
  1780. overflow: hidden;
  1781. border-bottom: 2PX solid #ccc !important;
  1782. }
  1783. .wenda_tlt h3 {
  1784. float: left;
  1785. height: 40PX !important;
  1786. line-height: 40PX !important;
  1787. font-size: 22PX !important;
  1788. // color: #0a78d7;
  1789. a {
  1790. color: #337ab7;
  1791. // color: #333;
  1792. font-weight: normal;
  1793. text-decoration: none;
  1794. }
  1795. }
  1796. .wenda_tlt span {
  1797. float: right;
  1798. width: 40PX !important;
  1799. height: 40PX !important;
  1800. background: url('public/index/jt.png') no-repeat center center;
  1801. transform: rotateZ(180deg);
  1802. font-size: 40PX !important;
  1803. color: #000;
  1804. cursor: pointer;
  1805. }
  1806. .wenda_view li {
  1807. width: 100%;
  1808. height: auto;
  1809. overflow: hidden;
  1810. margin: 10PX 0 !important;
  1811. padding: 10PX 0 !important;
  1812. border-bottom: 1PX solid #222 !important;
  1813. background: #f1f1f1;
  1814. border-radius: 10PX !important;
  1815. }
  1816. .wenda_view li div span.new_wen {
  1817. text-align: center;
  1818. line-height: 22PX !important;
  1819. float: left;
  1820. width: 22PX !important;
  1821. height: 22PX !important;
  1822. font-size: 20PX !important;
  1823. color: #fff;
  1824. background: #fb4;
  1825. border-radius: 5PX !important;
  1826. margin: 3PX 5PX 3PX 0 !important;
  1827. padding: 0 !important;
  1828. }
  1829. .wenda_view li div a.wenda_view_text {
  1830. font-size: 16PX !important;
  1831. line-height: 16PX !important;
  1832. line-height: 30PX !important;
  1833. color: #333 !important;
  1834. display: block !important;
  1835. }
  1836. .wenda_view li div span.new_da {
  1837. text-align: center;
  1838. line-height: 22PX !important;
  1839. float: left;
  1840. width: 22PX !important;
  1841. height: 22PX !important;
  1842. font-size: 20PX !important;
  1843. color: #fff;
  1844. background: #8ac03b;
  1845. border-radius: 5PX !important;
  1846. margin: 3PX 5PX 3PX 0;
  1847. padding: 0 !important;
  1848. }
  1849. .wenda_view li div {
  1850. width: 100%;
  1851. height: auto;
  1852. overflow: hidden;
  1853. padding: 0 10PX !important;
  1854. box-sizing: border-box;
  1855. }
  1856. .wenda_view li div span a {
  1857. color: #222;
  1858. }
  1859. .wenda_view li div span {
  1860. height: auto;
  1861. overflow: hidden;
  1862. line-height: 30PX !important;
  1863. font-size: 16PX !important;
  1864. color: #222;
  1865. border-radius: 10PX !important;
  1866. padding: 0 10PX !important;
  1867. }
  1868. .wenda_view li div {
  1869. width: 100%;
  1870. height: auto;
  1871. overflow: hidden;
  1872. padding: 0 10PX !important;
  1873. }
  1874. .wenda_view li b {
  1875. display: block;
  1876. font-size: 14PX !important;
  1877. color: #7b838a;
  1878. line-height: 30PX !important;
  1879. border-radius: 10PX !important;
  1880. font-weight: 100;
  1881. max-height: 90PX !important;
  1882. }
  1883. .wenda_view {
  1884. width: 100%;
  1885. min-height: 0PX !important;
  1886. max-height: 38VH !important;
  1887. overflow: auto;
  1888. margin: 0px auto 0;
  1889. padding-right: 10PX !important;
  1890. }
  1891. }
  1892. .wenda_style {
  1893. height: 40PX !important;
  1894. overflow: hidden;
  1895. padding: 0 10PX !important;
  1896. span {
  1897. transform: rotateZ(0deg) !important;
  1898. }
  1899. }
  1900. }
  1901. //自适应 end ---------------------------------------->
  1902. </style>