| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923 |
- <template>
- <footer class="index_foot">
- <!-- 友情链接 -->
- <div class="tbd">
- <div class="foot_title">
- <div class="foot_title_text">友情链接</div>
- </div>
- </div>
- <!-- 图片列表 -->
- <div class="foot_img_box">
- <a :href="item.url" v-for="(item, index) in bottomLink" :title="item.title" target="_blank">
- <img src="public/index/link.jpg" :alt="item.title">
- </a>
- </div>
- <!-- 底部导航 -->
- <div class="foot_frind_box">
- <div>
- <a :href="item.url" v-for="(item, index) in bottomText" :key="index" :title="item.title"
- target="_blank">{{ item.title }}</a>
- </div>
- </div>
- <!-- 联系我们 -->
- <div class="call_us_box">
- <span v-for="(item, index) in bottomMenu" :key="index">
- <NuxtLink :to="{ path: `/about/${item.name_pinyin}/list-1.html` }" v-if="item.type == 1"
- :title="item.name">
- {{ item.name }}
- </NuxtLink>
- <NuxtLink :to="{ path: `/about/${item.name_pinyin}/index.html` }" v-if="item.type == 0"
- :title="item.name">
- {{ item.name }}
- </NuxtLink>
- </span>
- </div>
- <!-- 底部文字 -->
- <div class="foot_text_box" v-if="bottomBase">
- <!-- 左右图片 -->
- <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"/>
- <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"/>
- <p v-html="bottomBase.statement" class="foot_text_html_css"></p>
- <p v-html="bottomBase.organizer" class="foot_text_html_css foot_color_red"></p>
- <p v-html="bottomBase.copyright_information" class="foot_text_html_css"></p>
- <p>
- <span v-html="bottomBase.icp_number" class="foot_text_html_css"></span>
- <!-- <span v-html="bottomBase.record_number" class="foot_text_html_css"></span> -->
- <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"/>
-
- </p>
- <p v-html="bottomBase.contact_number" class="foot_text_html_css numberblue"></p>
- <p v-html="bottomBase.company_address" class="foot_text_html_css"></p>
- <p v-html="bottomBase.email" class="foot_text_html_css "></p>
- </div>
- <!-- 底部图片 -->
- <div class="foot_last_img_box">
- <a :href="item.url" v-for="(item, index) in bottomphoto" :title="item.title">
- <!-- <img :src="item.logo_url" :alt="item.title"> -->
- <img src="public/index/link2.png" :alt="item.title">
- </a>
- </div>
- <!-- 在线客服 -->
- <div class="kefu">
- <div class="kefu_itemKf">
- <a href="http://kf.znxyw.org.cn/?m=front&a=chat&key=ii08zncpb5" target="_blank">
- <img src="public/index/kefu.png">
- <p>在线客服</p>
- </a>
- </div>
- </div>
- <!--右侧悬浮-->
- <div class="foot_right_float">
- <NuxtLink target="_blank" href="http://fazhidy.org.cn">政讯通•全国法制调研中心</NuxtLink>
- <NuxtLink target="_blank" href="http://fazyqjczx.org.cn">政讯通•全国法制舆情监测中心</NuxtLink>
- <NuxtLink target="_blank" href="http://fzfzcj.org.cn">政讯通•全国法制发展促进中心 </NuxtLink>
- </div>
- <!--你问我答-->
- <div :class="wenda ? 'wenda wenda_style' : 'wenda'">
- <div class="wenda_tlt">
- <h3><a href="/">你问我答</a></h3>
- <span @click="toggleWenda"></span>
- </div>
- <ul class="wenda_view">
- <li>
- <div>
- <span class="new_wen">问</span>
- <a class="wenda_view_text" href="#">政讯通•全国法制项目官网有几个,承担的职能是什么</a>
- </div>
- <div>
- <span class="new_da">答</span>
- <b>
- 4个官网,分别是:
- 政讯通•全国法制资讯发布中心官网,提供资讯信息化服务,以资讯发布为主;
- 政讯通•全国法制调研中心官网,承担调研、法律服务等功能;
- 政讯通•全国法制舆情监测中心官网,承担舆情监测、处理、公关等功能;
- 政讯通•全国法制发展促进中心官网,承担行业发展促进、服务功能。
- </b>
- </div>
- </li>
- <li>
- <div>
- <span class="new_wen">问</span>
- <a class="wenda_view_text" href="#">我在网上看你们有聘兼职法制监督员,我想申请有什么要求?需要费用吗?</a>
- </div>
- <div>
- <span class="new_da">答</span>
- <b>合法中国公民,热爱和关注公益事业;五年内无违法犯罪记录;会电脑基本操作、有过媒体或公检法相关工作经验者均可申请。收取网络平台使用费,法制监督员分全国、省级、地市级三个级,地市级1200元/年,省级2400元/年,全国级4800元/年,配套办公用品费300元。运费到付或者顺付50元。</b>
- </div>
- </li>
- <li>
- <div>
- <span class="new_wen">问</span>
- <span><a href="/">申请地市中心条件?</a></span>
- </div>
- <div>
- <span class="new_da">答</span>
- <b>
- (1)从事过公检法相关工作或者媒体/法制工作的公民或法人单位均可申请;(前提条件)
- (2)熟悉我国相关政策和调研工作;
- (3)遵守国家法律法规,积极为发展做贡献;
- (4)遵守内参各项规章制度,严格执行工作纪律;
- (5)熟悉基本网络操作,遵守互联网应用规则;
- </b>
- </div>
- </li>
- <li>
- <div>
- <span class="new_wen">问</span>
- <span><a href="/">我想申请法制调研员有什么条件?</a></span>
- </div>
- <div>
- <span class="new_da">答</span>
- <b>有意从事法制公益性工作,熟悉国家法律法规、司法政策,五年内无违法犯罪记录;熟悉调研工作,熟悉网络基本操作,年龄在25-65之间的中国公民均可申请,有过执法或者公检法行业相关从业者优先考虑。</b>
- </div>
- </li>
- </ul>
- </div>
- </footer>
- </template>
- <script setup>
- //0.添加网站客服 start---------------------------------------->
- //添加网站客服
- function addQQFriend(qqNumber) {
- // 使用tencent协议唤起QQ客户端并添加好友
- window.location.href = `tencent://message/?uin=${qqNumber}&Site=&Menu=yes`;
- }
- //0.添加网站客服 end---------------------------------------->
- //获得底部基本信息 start---------------------------------------->
- //1.获得全部友情链接与底部图片
- const bottomLink = ref([])
- const bottomText = ref([])
- const bottomphoto = ref([])
- const bottomMenu = ref([])
- const bottomBase = ref({})
- const qq1 = ref("")
- const qq2 = ref("")
- async function getModelDataAll() {
- const mkdata = await requestDataPromise('/web/getWebsiteFootAll', {
- method: 'GET',
- query: {
- 'link_textnum': 24,
- 'link_imgnum': 18,
- 'link_footnum': 4
- },
- });
- if (mkdata.code == 200) {
- bottomLink.value = mkdata.data.link_img;
- bottomText.value = mkdata.data.link_text;
- bottomphoto.value = mkdata.data.link_foot;
- bottomMenu.value = mkdata.data.foot_cate;
- bottomBase.value = mkdata.data.foot_info;
- //获取qq号数字部分
- qq1.value = bottomBase.value.customer_service_qq.match(/\d+/g);
- qq2.value = bottomBase.value.communications.match(/\d+/g);
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:获取友情链接图片")
- console.log("后端错误反馈:", mkdata.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- }
- getModelDataAll();
- //获得底部基本信息 end---------------------------------------->
- //你问我答 start---------------------------------------->
- const wenda = ref(false)
- function toggleWenda() {
- wenda.value = !wenda.value
- }
- //你问我答 end---------------------------------------->
- </script>
- <style lang="less" scoped>
- //自适应 start ---------------------------------------->
- @media screen and (min-width: 1401px) {
- .foot_title {
- width: 1401PX;
- overflow: hidden;
- background: #fff;
- border-bottom: 2PX solid #9e9e9e;
- margin: auto;
- .foot_title_text{
- display: block;
- width: 100PX;
- height: 40PX;
- line-height: 40PX;
- text-align: center;
- font-size: 20PX;
- margin-top: 2.8PX;
- padding: 2PX 10PX;
- color: #15792f;
- font-weight: bold;
- }
- }
- .index_foot {
- box-sizing: border-box;
- // background: #fff;
- margin: 0 auto;
- overflow: visible;
- }
- .index_foot_name_box {
- margin: 10PX auto 0PX;
- text-align: center;
- font-size: 0PX;
- background: red;
- }
- .index_foot_name {
- display: inline-block;
- height: 67PX;
- line-height: 67PX;
- color: #f2f9f4;
- font-size: 51PX;
- font-weight: bold;
- overflow: hidden;
- }
- .index_foot_name:nth-of-type(even) {
- color: #333;
- font-size: 32PX;
- }
- .foot_img_box {
- width:1401PX;
- overflow: hidden;
- display: block;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: flex-start;
- // background: RED;
- margin: 0 auto;
- padding-top: 5PX;
- // padding-bottom: 10PX;
-
- }
- .foot_img_box a {
- width: 14.2%;
- height: 60PX;
- display: block;
- padding: 0 4PX;
- box-sizing: border-box;
- margin-top: 10PX;
- // background: blue;
- }
- .foot_img_box img {
- float: left;
- width: 100%;
- height: 60PX;
- overflow: hidden;
- box-sizing: border-box;
- display: block;
- margin: 0 auto;
- background: #fff;
- }
- .foot_img_box>* * {
- display: block;
- width: 100%;
- height: 100%;
- }
- .foot_img_box>*:nth-of-type(7n) {
- margin-right: 0PX;
- }
- .foot_frind_box {
- width: 1401PX;
- height: auto;
- display: block;
- overflow: hidden;
- display: flex;
- font-size: 18PX;
- margin: 15PX auto 25PX;
- padding-top: 6px;
- border-top: 1px solid #ccc;
- a {
- font-size: 18PX;
- color: #333;
- }
- }
- .foot_frind_box div {
- width: 100%;
- overflow: hidden;
- }
- .foot_frind_box div * {
- float: left;
- line-height: 22PX;
- height: 22PX;
- color: #333;
- font-size: 18PX;
- margin: 0 10PX;
- }
- .call_us_box {
- display: block;
- width: 100%;
- margin: 42PX auto 0;
- overflow: hidden;
- text-align: center;
- font-size: 0PX;
- text-align: center;
- // background: #ccc;
- border-top: 4PX solid #15792f;
- a {
- font-size: 18PX;
- color: #333;
- font-weight: bold;
- }
- }
- .call_us_box>* {
- height: 14PX;
- line-height: 14PX;
- color: #fff;
- font-size: 14PX;
- display: inline-block;
- box-sizing: border-box;
- padding: 0 24PX;
- font-weight: bold;
- border-left: solid 1PX #000;
- margin: 18PX 0;
- }
- .call_us_box>*:nth-of-type(1) {
- border-left: 0PX;
- }
- .foot_text_box {
- width: 1401PX;
- margin: 15PX auto 0PX;
- text-align: center;
- color: #333;
- font-size: 14PX;
- line-height: 20PX;
- a {
- color: #333;
- font-size: 14PX;
- }
- }
- .xtb{
- margin-left: -10px;
-
- }
- .dtb_left{
- display: block;
- float: left;
- margin-top: 50px;
- margin-left: 28px;
- transform: scale(6);
- }
- .dtb_right{
- display: block;
- float: right;
- margin-top: 50px;
- margin-right: 28px;
- transform: scale(6);
- }
- .foot_text_box_green {
- color: #40663B;
- }
- .foot_text_box img {
- display: inline-block;
- height: 20PX;
- vertical-align: middle;
- }
- .foot_logo_out {
- position: relative;
- margin: 0PX auto;
- width: 100%;
- height: 0PX;
- }
- .foot_logo_out * {
- width: 120PX;
- display: block;
- }
- .foot_logo_out>* {
- position: absolute;
- top: -166PX;
- }
- .foot_logo_out>*:nth-of-type(1) {
- left: 0PX;
- }
- .foot_logo_out>*:nth-of-type(2) {
- right: 0PX;
- }
- .foot_last_img_box {
- width: 1401PX;
- margin: 10PX auto 10PX;
- text-align: center;
- overflow: hidden;
- width: 100%;
- font-size: 0PX;
- padding-bottom: 10PX;
- }
- .foot_last_img_box>* {
- height: 50PX;
- width: 120PX;
- display: inline-block;
- overflow: hidden;
- margin-right: 5PX;
- }
- .foot_last_img_box img {
- width: 120PX;
- height: 50PX;
- background: #fff;
- }
- .foot_text_html_css {
- line-height: 40PX;
- font-size: 14PX;
- }
- .foot_text_html_css :deep(a) {
- color: #333;
- }
- .numberblue{
- color: #0680cb;
- }
- .foot_color_red {
- color: red;
- }
- .foot_color_red :deep(a) {
- color: red;
- }
- .foot_text_html_css :deep(img) {
- margin: 0 5PX;
- }
- //添加在线客服
- .kefu {
- position: fixed;
- bottom: 100PX;
- top: 40%;
- right: 11PX;
- width: 64PX !important;
- z-index: 9999;
- .kefu_itemKf {
- background-color: #0099cc;
- border-radius: 10PX !important;
- box-shadow: 0 4PX 16PX #0000001a;
- width: 64PX !important;
- height: 64PX !important;
- padding: 8PX !important;
- text-align: center;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- a {
- >p {
- color: #fff;
- font-size: 12PX !important;
- }
- >img {
- width: 30PX !important;
- height: 30PX !important;
- margin-bottom: 5PX !important;
- display: block;
- margin: 0 auto;
- }
- }
- }
- .kefu_itemQQ {
- background-color: #fff;
- border-radius: 10PX;
- box-shadow: 0 4PX 16PX #0000001a;
- height: 100PX;
- margin-bottom: 15PX;
- text-align: center;
- width: 100PX;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- >p {
- color: #666;
- font-size: 14PX;
- font-weight: 500;
- line-height: 16PX;
- }
- >img {
- margin-top: 10PX;
- width: 60PX;
- height: 60PX;
- }
- &:hover {
- .kefu_item_content_QQ {
- display: block;
- }
- }
- }
- .kefu_itemPhone {
- background-color: #fff;
- border-radius: 10PX;
- box-shadow: 0 4PX 16PX #0000001a;
- height: 100PX;
- margin-bottom: 15PX;
- text-align: center;
- width: 100PX;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- >p {
- color: #666;
- font-size: 14PX;
- font-weight: 500;
- line-height: 16PX;
- }
- >img {
- margin-top: 10PX;
- width: 60PX;
- height: 60PX;
- }
- &:hover {
- .kefu_item_content_phone {
- display: block;
- }
- }
- }
- .kefu_item_content_QQ {
- position: absolute;
- top: -100PX;
- right: 100PX;
- background: #fff;
- border-radius: 10PX;
- display: none;
- width: 190PX;
- height: 330PX;
- background: #fff;
- box-shadow: 0 4PX 16PX #0000001a;
- z-index: 99;
- box-sizing: border-box;
- padding: 20PX;
- img {
- margin-bottom: 10PX;
- }
- .qqfs {
- margin-bottom: 20PX;
- font-size: 14PX;
- color: #333;
- }
- .arrow {
- width: 0;
- height: 0;
- width: 0;
- border-top: 20PX solid transparent;
- border-bottom: 20PX solid transparent;
- border-left: 20PX solid #fff;
- position: absolute;
- top: 120PX;
- right: -20PX;
- transform: translateX(-50%);
- z-index: 100;
- }
- }
- .kefu_item_content_phone {
- position: absolute;
- top: 0;
- right: 100PX;
- background: #fff;
- border-radius: 10PX;
- display: none;
- width: 190PX;
- height: 80PX;
- background: #fff;
- box-shadow: 0 4PX 16PX #0000001a;
- z-index: 99;
- box-sizing: border-box;
- padding: 20PX;
- text-align: left;
- color: #333;
- .kefu_item_content_phone_title {
- margin-bottom: 5PX;
- font-weight: bold;
- }
- .arrow {
- width: 0;
- height: 0;
- width: 0;
- border-top: 20PX solid transparent;
- border-bottom: 20PX solid transparent;
- border-left: 20PX solid #fff;
- position: absolute;
- top: 20PX;
- right: -20PX;
- transform: translateX(-50%);
- z-index: 100;
- }
- }
- }
- .foot_right_float {
- position: fixed;
- z-index: 200;
- left: 2%;
- bottom: 10PX;
- a {
- display: block;
- margin-bottom: 4PX;
- border: 1PX solid #dee3eb;
- width: 220PX;
- height: 30PX;
- font-size: 14PX;
- line-height: 30PX;
- color: #EE6363;
- cursor: pointer;
- background: #fff;
- text-align: center;
- }
- }
- //在线问答
- .wenda {
- width: 300PX !important;
- height: auto;
- overflow: hidden;
- position: fixed;
- bottom: 0;
- right: 0;
- background: #fff;
- border: 1PX solid #7ab9dd;
- padding: 10PX !important;
- box-shadow: 0PX 1PX 8PX #888 !important;
- z-index: 99999999;
- box-sizing: border-box;
- .wenda_tlt {
- width: 100%;
- height: 40PX !important;
- line-height: 40PX !important;
- overflow: hidden;
- border-bottom: 2PX solid #ccc !important;
- }
- .wenda_tlt h3 {
- float: left;
- height: 40PX !important;
- line-height: 40PX !important;
- font-size: 22PX !important;
- // color: #0a78d7;
- a {
- color: #337ab7;
- // color: #333;
- font-weight: normal;
- text-decoration: none;
- }
- }
- .wenda_tlt span {
- float: right;
- width: 40PX !important;
- height: 40PX !important;
- background: url('public/index/jt.png') no-repeat center center;
- transform: rotateZ(180deg);
- font-size: 40PX !important;
- color: #000;
- cursor: pointer;
- }
- .wenda_view li {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 10PX 0 !important;
- padding: 10PX 0 !important;
- border-bottom: 1PX solid #222 !important;
- background: #f1f1f1;
- border-radius: 10PX !important;
- }
- .wenda_view li div span.new_wen {
- text-align: center;
- line-height: 22PX !important;
- float: left;
- width: 22PX !important;
- height: 22PX !important;
- font-size: 20PX !important;
- color: #fff;
- background: #fb4;
- border-radius: 5PX !important;
- margin: 3PX 5PX 3PX 0 !important;
- padding: 0 !important;
- }
- .wenda_view li div a.wenda_view_text {
- font-size: 16PX !important;
- line-height: 16PX !important;
- line-height: 30PX !important;
- color: #333 !important;
- display: block !important;
- }
- .wenda_view li div span.new_da {
- text-align: center;
- line-height: 22PX !important;
- float: left;
- width: 22PX !important;
- height: 22PX !important;
- font-size: 20PX !important;
- color: #fff;
- background: #8ac03b;
- border-radius: 5PX !important;
- margin: 3PX 5PX 3PX 0;
- padding: 0 !important;
- }
- .wenda_view li div {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 10PX !important;
- box-sizing: border-box;
- }
- .wenda_view li div span a {
- color: #222;
- }
- .wenda_view li div span {
- height: auto;
- overflow: hidden;
- line-height: 30PX !important;
- font-size: 16PX !important;
- color: #222;
- border-radius: 10PX !important;
- padding: 0 10PX !important;
- }
- .wenda_view li div {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 10PX !important;
- }
- .wenda_view li b {
- display: block;
- font-size: 14PX !important;
- color: #7b838a;
- line-height: 30PX !important;
- border-radius: 10PX !important;
- font-weight: 100;
- max-height: 90PX !important;
- }
- .wenda_view {
- width: 100%;
- min-height: 0PX !important;
- max-height: 38VH !important;
- overflow: auto;
- margin: 0px auto 0;
- padding-right: 10PX !important;
- }
- }
- .wenda_style {
- height: 40PX !important;
- overflow: hidden;
- padding: 0 10PX !important;
- span {
- transform: rotateZ(0deg) !important;
- }
- }
- }
- @media screen and (min-width: 801px) and (max-width: 1400px) {
- .foot_title {
- width: 100%;
- overflow: hidden;
- background: #fff;
- border-bottom: 1PX solid #0680cb;
- .foot_title_text{
- display: block;
- width: 100PX;
- height: 40PX;
- line-height: 40PX;
- text-align: center;
- font-size: 22PX;
- border-bottom: 2PX solid #0680cb;
- margin-top: 2.8px;
- padding: 2PX 20PX;
- color: #0680cb;
- }
- }
- .index_foot {
- box-sizing: border-box;
- // width: 1400PX;
- // width: ;
- margin: 0 auto;
- overflow: visible;
- }
- .foot_title{
- min-width: 801PX;
- max-width: 1400PX;
- // background: red;
- margin: auto;
- }
- .index_foot_name_box {
- margin: 10PX auto 0PX;
- text-align: center;
- font-size: 0PX;
- background: red;
- }
- .index_foot_name {
- display: inline-block;
- height: 67PX;
- line-height: 67PX;
- color: #f2f9f4;
- font-size: 51PX;
- font-weight: bold;
- overflow: hidden;
- }
- .index_foot_name:nth-of-type(even) {
- color: #333;
- font-size: 32PX;
- }
- .foot_img_box {
- min-width: 801PX;
- max-width: 1400PX;
- overflow: hidden;
- display: block;
- display: flex;
- flex-wrap: wrap;
- // align-items: center;
- // justify-content: space-between;
- // background: RED;
- margin: 0 auto;
- padding-top: 5PX;
- // padding-bottom: 10PX;
-
- }
- .foot_img_box a {
- width: 14.2%;
- height: 60PX;
- display: block;
- padding: 0 4PX;
- box-sizing: border-box;
- margin-top: 10PX;
- // background: blue;
- }
- .foot_img_box img {
- float: left;
- width: 100%;
- height: 100%;
- overflow: hidden;
- box-sizing: border-box;
- display: block;
- margin: 0 auto;
- background: #fff;
- // vertical-align: middle;
- }
- .foot_img_box>* * {
- display: block;
- width: 100%;
- height: 100%;
- }
- .foot_img_box>*:nth-of-type(7n) {
- margin-right: 0PX;
- }
- .foot_frind_box {
- min-width: 801PX;
- max-width: 1400PX;
- height: auto;
- display: block;
- overflow: hidden;
- display: flex;
- font-size: 18PX;
- margin: 15PX auto 25PX;
- padding-top: 6px;
- border-top: 1px solid #ccc;
- a {
- font-size: 18PX;
- color: #333;
- }
- }
- .foot_frind_box div {
- width: 100%;
- overflow: hidden;
- }
- .foot_frind_box div * {
- float: left;
- line-height: 22PX;
- height: 22PX;
- color: #333;
- font-size: 18PX;
- margin: 0 10PX;
- }
- .call_us_box {
- display: block;
- width: 100%;
- margin: 42PX auto 0;
- overflow: hidden;
- text-align: center;
- font-size: 0PX;
- text-align: center;
- // background: #ccc;
- border-top: 4PX solid #15792f;
- a {
- font-size: 18PX;
- color: #333;
- font-weight: bold;
- }
- }
- .call_us_box>* {
- height: 14PX;
- line-height: 14PX;
- color: #fff;
- font-size: 14PX;
- display: inline-block;
- box-sizing: border-box;
- padding: 0 24PX;
- font-weight: bold;
- border-left: solid 1PX #000;
- margin: 18PX 0;
- }
- .call_us_box>*:nth-of-type(1) {
- border-left: 0PX;
- }
- .foot_text_box {
- min-width: 801PX;
- max-width: 1400PX;
- margin: 15PX auto 0PX;
- text-align: center;
- color: #333;
- font-size: 14PX;
- line-height: 20PX;
- a {
- color: #333;
- font-size: 14PX;
- }
- }
- .xtb{
- margin-left: -10px;
- }
- .dtb_left{
- display: block;
- float: left;
- // z-index: 1000;
- margin-top: 80px;
- margin-left: 28px;
- transform: scale(6);
- }
- .dtb_right{
- display: block;
- float: right;
- margin-top: 80px;
- margin-right: 28px;
- transform: scale(6);
- }
- .foot_text_box_green {
- color: #40663B;
- }
- .foot_text_box img {
- display: inline-block;
- height: 20PX;
- vertical-align: middle;
- }
- .foot_logo_out {
- position: relative;
- margin: 0PX auto;
- width: 100%;
- height: 0PX;
- }
- .foot_logo_out * {
- width: 120PX;
- display: block;
- }
- .foot_logo_out>* {
- position: absolute;
- top: -166PX;
- }
- .foot_logo_out>*:nth-of-type(1) {
- left: 0PX;
- }
- .foot_logo_out>*:nth-of-type(2) {
- right: 0PX;
- }
- .foot_last_img_box {
- min-width: 801PX;
- max-width: 1400PX;
- margin: 10PX auto 10PX;
- text-align: center;
- overflow: hidden;
- width: 100%;
- font-size: 0PX;
- padding-bottom: 10PX;
- }
- .foot_last_img_box>* {
- height: 50PX;
- width: 120PX;
- display: inline-block;
- overflow: hidden;
- margin-right: 5PX;
- }
- .foot_last_img_box img {
- width: 120PX;
- height: 50PX;
- background: #fff;
- }
- .foot_text_html_css {
- line-height: 40PX;
- font-size: 14PX;
- }
- .foot_text_html_css :deep(a) {
- color: #333;
- }
- .numberblue{
- color: #0680cb;
- }
- .foot_color_red {
- color: red;
- }
- .foot_color_red :deep(a) {
- color: red;
- }
- .foot_text_html_css :deep(img) {
- margin: 0 5PX;
- }
- //添加在线客服
- .kefu {
- position: fixed;
- bottom: 100PX;
- top: 40%;
- right: 11PX;
- width: 64PX !important;
- z-index: 9999;
- .kefu_itemKf {
- background-color: #0099cc;
- border-radius: 10PX !important;
- box-shadow: 0 4PX 16PX #0000001a;
- width: 64PX !important;
- height: 64PX !important;
- padding: 8PX !important;
- text-align: center;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- a {
- >p {
- color: #fff;
- font-size: 12PX !important;
- }
- >img {
- width: 30PX !important;
- height: 30PX !important;
- margin-bottom: 5PX !important;
- display: block;
- margin: 0 auto;
- }
- }
- }
- .kefu_itemQQ {
- background-color: #fff;
- border-radius: 10PX;
- box-shadow: 0 4PX 16PX #0000001a;
- height: 100PX;
- margin-bottom: 15PX;
- text-align: center;
- width: 100PX;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- >p {
- color: #666;
- font-size: 14PX;
- font-weight: 500;
- line-height: 16PX;
- }
- >img {
- margin-top: 10PX;
- width: 60PX;
- height: 60PX;
- }
- &:hover {
- .kefu_item_content_QQ {
- display: block;
- }
- }
- }
- .kefu_itemPhone {
- background-color: #fff;
- border-radius: 10PX;
- box-shadow: 0 4PX 16PX #0000001a;
- height: 100PX;
- margin-bottom: 15PX;
- text-align: center;
- width: 100PX;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- >p {
- color: #666;
- font-size: 14PX;
- font-weight: 500;
- line-height: 16PX;
- }
- >img {
- margin-top: 10PX;
- width: 60PX;
- height: 60PX;
- }
- &:hover {
- .kefu_item_content_phone {
- display: block;
- }
- }
- }
- .kefu_item_content_QQ {
- position: absolute;
- top: -100PX;
- right: 100PX;
- background: #fff;
- border-radius: 10PX;
- display: none;
- width: 190PX;
- height: 330PX;
- background: #fff;
- box-shadow: 0 4PX 16PX #0000001a;
- z-index: 99;
- box-sizing: border-box;
- padding: 20PX;
- img {
- margin-bottom: 10PX;
- }
- .qqfs {
- margin-bottom: 20PX;
- font-size: 14PX;
- color: #333;
- }
- .arrow {
- width: 0;
- height: 0;
- width: 0;
- border-top: 20PX solid transparent;
- border-bottom: 20PX solid transparent;
- border-left: 20PX solid #fff;
- position: absolute;
- top: 120PX;
- right: -20PX;
- transform: translateX(-50%);
- z-index: 100;
- }
- }
- .kefu_item_content_phone {
- position: absolute;
- top: 0;
- right: 100PX;
- background: #fff;
- border-radius: 10PX;
- display: none;
- width: 190PX;
- height: 80PX;
- background: #fff;
- box-shadow: 0 4PX 16PX #0000001a;
- z-index: 99;
- box-sizing: border-box;
- padding: 20PX;
- text-align: left;
- color: #333;
- .kefu_item_content_phone_title {
- margin-bottom: 5PX;
- font-weight: bold;
- }
- .arrow {
- width: 0;
- height: 0;
- width: 0;
- border-top: 20PX solid transparent;
- border-bottom: 20PX solid transparent;
- border-left: 20PX solid #fff;
- position: absolute;
- top: 20PX;
- right: -20PX;
- transform: translateX(-50%);
- z-index: 100;
- }
- }
- }
- .foot_right_float {
- position: fixed;
- z-index: 200;
- left: 2%;
- bottom: 10PX;
- a {
- display: block;
- margin-bottom: 4PX;
- border: 1PX solid #dee3eb;
- width: 220PX;
- height: 30PX;
- font-size: 14PX;
- line-height: 30PX;
- color: #EE6363;
- cursor: pointer;
- background: #fff;
- text-align: center;
- }
- }
- //在线问答
- .wenda {
- width: 300PX !important;
- height: auto;
- overflow: hidden;
- position: fixed;
- bottom: 0;
- right: 0;
- background: #fff;
- border: 1PX solid #7ab9dd;
- padding: 10PX !important;
- box-shadow: 0PX 1PX 8PX #888 !important;
- z-index: 99999999;
- box-sizing: border-box;
- .wenda_tlt {
- width: 100%;
- height: 40PX !important;
- line-height: 40PX !important;
- overflow: hidden;
- border-bottom: 2PX solid #ccc !important;
- }
- .wenda_tlt h3 {
- float: left;
- height: 40PX !important;
- line-height: 40PX !important;
- font-size: 22PX !important;
- // color: #0a78d7;
- a {
- // color: #337ab7;
- color: #333;
- font-weight: normal;
- text-decoration: none;
- }
- }
- .wenda_tlt span {
- float: right;
- width: 40PX !important;
- height: 40PX !important;
- background: url('public/index/jt.png') no-repeat center center;
- transform: rotateZ(180deg);
- font-size: 40PX !important;
- color: #000;
- cursor: pointer;
- }
- .wenda_view li {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 10PX 0 !important;
- padding: 10PX 0 !important;
- border-bottom: 1PX solid #222 !important;
- background: #f1f1f1;
- border-radius: 10PX !important;
- }
- .wenda_view li div span.new_wen {
- text-align: center;
- line-height: 22PX !important;
- float: left;
- width: 22PX !important;
- height: 22PX !important;
- font-size: 20PX !important;
- color: #fff;
- background: #fb4;
- border-radius: 5PX !important;
- margin: 3PX 5PX 3PX 0 !important;
- padding: 0 !important;
- }
- .wenda_view li div a.wenda_view_text {
- font-size: 16PX !important;
- line-height: 16PX !important;
- line-height: 30PX !important;
- color: #333 !important;
- display: block !important;
- }
- .wenda_view li div span.new_da {
- text-align: center;
- line-height: 22PX !important;
- float: left;
- width: 22PX !important;
- height: 22PX !important;
- font-size: 20PX !important;
- color: #fff;
- background: #8ac03b;
- border-radius: 5PX !important;
- margin: 3PX 5PX 3PX 0;
- padding: 0 !important;
- }
- .wenda_view li div {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 10PX !important;
- box-sizing: border-box;
- }
- .wenda_view li div span a {
- color: #222;
- }
- .wenda_view li div span {
- height: auto;
- overflow: hidden;
- line-height: 30PX !important;
- font-size: 16PX !important;
- color: #222;
- border-radius: 10PX !important;
- padding: 0 10PX !important;
- }
- .wenda_view li div {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 10PX !important;
- }
- .wenda_view li b {
- display: block;
- font-size: 14PX !important;
- color: #7b838a;
- line-height: 30PX !important;
- border-radius: 10PX !important;
- font-weight: 100;
- max-height: 90PX !important;
- }
- .wenda_view {
- width: 100%;
- min-height: 0PX !important;
- max-height: 38VH !important;
- overflow: auto;
- margin: 0px auto 0;
- padding-right: 10PX !important;
- }
- }
- .wenda_style {
- height: 40PX !important;
- overflow: hidden;
- padding: 0 10PX !important;
- span {
- transform: rotateZ(0deg) !important;
- }
- }
-
- }
- @media screen and (max-width: 800px) {
- .tbd{
- max-width:800PX;
- background: #f1f1f1;
- padding: 0 10PX;
- .foot_title {
- max-width:100%;
- overflow: hidden;
- margin: auto;
- height: 40PX;
- line-height: 40PX;
- text-align: center;
- background: #3CB302;
- padding: 0 10PX;
- .foot_title_text{
- display: block;
- width: 90PX;
- height: 31PX;
- line-height: 31PX;
- text-align: center;
- font-size: 17PX;
- padding: 2PX 5PX;
- font-weight: bold;
- float: left;
- background: #fff;
- color: #3CB302;
- border-top-left-radius: 5PX;
- border-top-right-radius: 5PX;
- margin: 9PX -5PX 0;
- }
- }
-
- }
-
- .index_foot {
- box-sizing: border-box;
- background: #fff;
- margin: 0 auto;
- overflow: visible;
- padding: 0 10PX;
- }
- .index_foot_name_box {
- margin: 10PX auto 0PX;
- text-align: center;
- font-size: 0PX;
- background: red;
- }
- .index_foot_name {
- display: inline-block;
- height: 67PX;
- line-height: 67PX;
- color: #f2f9f4;
- font-size: 51PX;
- font-weight: bold;
- overflow: hidden;
- }
- .index_foot_name:nth-of-type(even) {
- color: #333;
- font-size: 32PX;
- }
- .foot_img_box {
- max-width: 800PX;
- overflow: hidden;
- // display: block;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- margin: 0 auto;
- padding: 0 20PX;
- background: #f1f1f1;
- padding-top: 20PX;
- box-sizing: border-box;
- }
- .foot_img_box a {
- width: 47%;
- // min-width: 48%;
- // max-width: 48%;
- // height: auto;
- display: block;
- padding: 10PX 0;
- box-sizing: border-box;
- box-sizing: border-box;
- // background: blue;
- }
- .foot_img_box img {
- float: left;
- width: 100%;
- height: 60PX;
- overflow: hidden;
- box-sizing: border-box;
- display: block;
-
- background: #fff;
- }
- .foot_img_box>* * {
- display: block;
- width: 100%;
- height: 100%;
- }
- .foot_img_box>*:nth-of-type(7n) {
- margin-right: 0PX;
- }
- .foot_frind_box {
- max-width: 800PX;
- height: auto;
- display: block;
- overflow: hidden;
- display: flex;
- font-size: 18PX;
- margin: 15PX auto 25PX;
- padding-top: 6px;
- border-top: 1px solid #ccc;
- a {
- font-size: 18PX;
- color: #333;
- }
- display: none;
- }
- .foot_frind_box div {
- width: 100%;
- overflow: hidden;
- }
- .foot_frind_box div * {
- float: left;
- line-height: 22PX;
- height: 22PX;
- color: #333;
- font-size: 18PX;
- margin: 0 10PX;
- }
- .call_us_box {
- display: block;
- width: 100%;
-
- // margin: 42PX auto 0;
- overflow: hidden;
- text-align: center;
- font-size: 0PX;
- text-align: center;
- // background: #ccc;
- border-bottom: 1px dashed #ccc;
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- a {
- display: block;
- // width: 33.33%;
- font-size: 15PX;
- color: #337ab7;
- // font-weight: bold;
- }
- }
- .call_us_box>* {
- height: auto;
- // line-height: 30PX;
- width: 33.33%;
- color: #fff;
- font-size: 15PX;
- display: inline-block;
- box-sizing: border-box;
- padding: 0 24PX;
- font-weight: normal;
- // border-left: solid 1PX #000;
- margin: 10PX 0;
- }
- .call_us_box>*:nth-of-type(1) {
- border-left: 0PX;
- }
- .foot_text_box {
- max-width: 800PX;
- margin: 15PX auto 0PX;
- text-align: center;
- color: #333;
- font-size: 14PX;
- line-height: 20PX;
- a {
- color: #333;
- font-size: 14PX;
- }
- }
- .xtb{
-
- margin-left: -10px;
-
- }
- .dtb_left{
- display: none !important;
- float: left;
- margin-top: 50px;
- margin-left: 28px;
- transform: scale(6);
- // display: none;
- }
- .dtb_right{
- display: none !important;
- float: right;
- margin-top: 50px;
- margin-right: 28px;
- transform: scale(6);
- // display: none;
- }
- .foot_text_box_green {
- color: #40663B;
- }
- .foot_text_box img {
- display: inline-block;
- height: 20PX;
- vertical-align: middle;
- }
- .foot_logo_out {
- position: relative;
- margin: 0PX auto;
- width: 100%;
- height: 0PX;
- }
- .foot_logo_out * {
- width: 120PX;
- display: block;
- }
- .foot_logo_out>* {
- position: absolute;
- top: -166PX;
- }
- .foot_logo_out>*:nth-of-type(1) {
- left: 0PX;
- }
- .foot_logo_out>*:nth-of-type(2) {
- right: 0PX;
- }
- .foot_last_img_box {
- max-width: 800PX;
- margin: 10PX auto 10PX;
- text-align: center;
- overflow: hidden;
- width: 100%;
- font-size: 0PX;
- padding-bottom: 10PX;
- // padding-bottom: 30%PX;
- }
- .foot_last_img_box>* {
- height: 50PX;
- width: 120PX;
- display: inline-block;
- overflow: hidden;
- margin-right: 5PX;
- }
- .foot_last_img_box img {
- width: 120PX;
- height: 50PX;
- background: #fff;
- }
- .foot_text_html_css {
- line-height: 40PX;
- font-size: 14PX;
- }
- .foot_text_html_css :deep(a) {
- color: #333;
- }
- .numberblue{
- color: #0680cb;
- }
- .foot_color_red {
- color: red;
- }
- .foot_color_red :deep(a) {
- color: red;
- }
- .foot_text_html_css :deep(img) {
- margin: 0 5PX;
- }
- //添加在线客服
- .kefu {
- position: fixed;
- bottom: 100PX;
- top: 40%;
- right: 11PX;
- width: 64PX !important;
- z-index: 9999;
- .kefu_itemKf {
- background-color: #0099cc;
- border-radius: 10PX !important;
- box-shadow: 0 4PX 16PX #0000001a;
- width: 64PX !important;
- height: 64PX !important;
- padding: 8PX !important;
- text-align: center;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- a {
- >p {
- color: #fff;
- font-size: 12PX !important;
- }
- >img {
- width: 30PX !important;
- height: 30PX !important;
- margin-bottom: 5PX !important;
- display: block;
- margin: 0 auto;
- }
- }
- }
- .kefu_itemQQ {
- background-color: #fff;
- border-radius: 10PX;
- box-shadow: 0 4PX 16PX #0000001a;
- height: 100PX;
- margin-bottom: 15PX;
- text-align: center;
- width: 100PX;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- >p {
- color: #666;
- font-size: 14PX;
- font-weight: 500;
- line-height: 16PX;
- }
- >img {
- margin-top: 10PX;
- width: 60PX;
- height: 60PX;
- }
- &:hover {
- .kefu_item_content_QQ {
- display: block;
- }
- }
- }
- .kefu_itemPhone {
- background-color: #fff;
- border-radius: 10PX;
- box-shadow: 0 4PX 16PX #0000001a;
- height: 100PX;
- margin-bottom: 15PX;
- text-align: center;
- width: 100PX;
- box-sizing: border-box;
- position: relative;
- cursor: pointer;
- >p {
- color: #666;
- font-size: 14PX;
- font-weight: 500;
- line-height: 16PX;
- }
- >img {
- margin-top: 10PX;
- width: 60PX;
- height: 60PX;
- }
- &:hover {
- .kefu_item_content_phone {
- display: block;
- }
- }
- }
- .kefu_item_content_QQ {
- position: absolute;
- top: -100PX;
- right: 100PX;
- background: #fff;
- border-radius: 10PX;
- display: none;
- width: 190PX;
- height: 330PX;
- background: #fff;
- box-shadow: 0 4PX 16PX #0000001a;
- z-index: 99;
- box-sizing: border-box;
- padding: 20PX;
- img {
- margin-bottom: 10PX;
- }
- .qqfs {
- margin-bottom: 20PX;
- font-size: 14PX;
- color: #333;
- }
- .arrow {
- width: 0;
- height: 0;
- width: 0;
- border-top: 20PX solid transparent;
- border-bottom: 20PX solid transparent;
- border-left: 20PX solid #fff;
- position: absolute;
- top: 120PX;
- right: -20PX;
- transform: translateX(-50%);
- z-index: 100;
- }
- }
- .kefu_item_content_phone {
- position: absolute;
- top: 0;
- right: 100PX;
- background: #fff;
- border-radius: 10PX;
- display: none;
- width: 190PX;
- height: 80PX;
- background: #fff;
- box-shadow: 0 4PX 16PX #0000001a;
- z-index: 99;
- box-sizing: border-box;
- padding: 20PX;
- text-align: left;
- color: #333;
- .kefu_item_content_phone_title {
- margin-bottom: 5PX;
- font-weight: bold;
- }
- .arrow {
- width: 0;
- height: 0;
- width: 0;
- border-top: 20PX solid transparent;
- border-bottom: 20PX solid transparent;
- border-left: 20PX solid #fff;
- position: absolute;
- top: 20PX;
- right: -20PX;
- transform: translateX(-50%);
- z-index: 100;
- }
- }
- }
- .foot_right_float {
- position: fixed;
- z-index: 200;
- left: 2%;
- bottom: 10PX;
- a {
- display: block;
- margin-bottom: 4PX;
- border: 1PX solid #dee3eb;
- width: 220PX;
- height: 30PX;
- font-size: 14PX;
- line-height: 30PX;
- color: #EE6363;
- cursor: pointer;
- background: #fff;
- text-align: center;
- }
- }
- //在线问答
- .wenda {
- display: none;
- width: 300PX !important;
- height: auto;
- overflow: hidden;
- position: fixed;
- bottom: 0;
- right: 0;
- background: #fff;
- border: 1PX solid #7ab9dd;
- padding: 10PX !important;
- box-shadow: 0PX 1PX 8PX #888 !important;
- z-index: 99999999;
- box-sizing: border-box;
- .wenda_tlt {
- width: 100%;
- height: 40PX !important;
- line-height: 40PX !important;
- overflow: hidden;
- border-bottom: 2PX solid #ccc !important;
- }
- .wenda_tlt h3 {
- float: left;
- height: 40PX !important;
- line-height: 40PX !important;
- font-size: 22PX !important;
- // color: #0a78d7;
- a {
- color: #337ab7;
- // color: #333;
- font-weight: normal;
- text-decoration: none;
- }
- }
- .wenda_tlt span {
- float: right;
- width: 40PX !important;
- height: 40PX !important;
- background: url('public/index/jt.png') no-repeat center center;
- transform: rotateZ(180deg);
- font-size: 40PX !important;
- color: #000;
- cursor: pointer;
- }
- .wenda_view li {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 10PX 0 !important;
- padding: 10PX 0 !important;
- border-bottom: 1PX solid #222 !important;
- background: #f1f1f1;
- border-radius: 10PX !important;
- }
- .wenda_view li div span.new_wen {
- text-align: center;
- line-height: 22PX !important;
- float: left;
- width: 22PX !important;
- height: 22PX !important;
- font-size: 20PX !important;
- color: #fff;
- background: #fb4;
- border-radius: 5PX !important;
- margin: 3PX 5PX 3PX 0 !important;
- padding: 0 !important;
- }
- .wenda_view li div a.wenda_view_text {
- font-size: 16PX !important;
- line-height: 16PX !important;
- line-height: 30PX !important;
- color: #333 !important;
- display: block !important;
- }
- .wenda_view li div span.new_da {
- text-align: center;
- line-height: 22PX !important;
- float: left;
- width: 22PX !important;
- height: 22PX !important;
- font-size: 20PX !important;
- color: #fff;
- background: #8ac03b;
- border-radius: 5PX !important;
- margin: 3PX 5PX 3PX 0;
- padding: 0 !important;
- }
- .wenda_view li div {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 10PX !important;
- box-sizing: border-box;
- }
- .wenda_view li div span a {
- color: #222;
- }
- .wenda_view li div span {
- height: auto;
- overflow: hidden;
- line-height: 30PX !important;
- font-size: 16PX !important;
- color: #222;
- border-radius: 10PX !important;
- padding: 0 10PX !important;
- }
- .wenda_view li div {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 10PX !important;
- }
- .wenda_view li b {
- display: block;
- font-size: 14PX !important;
- color: #7b838a;
- line-height: 30PX !important;
- border-radius: 10PX !important;
- font-weight: 100;
- max-height: 90PX !important;
- }
- .wenda_view {
- width: 100%;
- min-height: 0PX !important;
- max-height: 38VH !important;
- overflow: auto;
- margin: 0px auto 0;
- padding-right: 10PX !important;
- }
- }
- .wenda_style {
- height: 40PX !important;
- overflow: hidden;
- padding: 0 10PX !important;
- span {
- transform: rotateZ(0deg) !important;
- }
- }
- }
- //自适应 end ---------------------------------------->
- </style>
|