/* 未能缩小。正在返回未缩小的内容。 (749,32): run-time error CSS1031: Expected selector, found '-->' (749,32): run-time error CSS1025: Expected comma or open brace, found '-->' (782,46): run-time error CSS1062: Expected semicolon or closing curly-brace, found '!important' (1153,144): run-time error CSS1062: Expected semicolon or closing curly-brace, found '!important' (1326,66): run-time error CSS1062: Expected semicolon or closing curly-brace, found '!important' */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; } html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 { -webkit-text-size-adjust: none; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; clear: both; } html { font-family: PingFangSC-Regular, 'PingFang SC', Microsoft Yahei, arial, verdana, helvetica, 'HanHei SC', STHeitiSC-Light, sans-serif !important; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { font-size: 14px; overflow-x: hidden; min-width: 320px; /*-webkit-overflow-scrolling: touch;*/ color: #1a1a1a; background: #f9f9f9; } a { background: transparent; text-decoration: none; -webkit-tap-highlight-color: transparent; color: #1a1a1a; } a:active { outline: 0; } a:active { color: #3990e6; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } svg:not(:root) { overflow: hidden; } hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } pre { overflow: auto; white-space: pre-wrap; word-wrap: break-word; } code, kbd, pre, samp { font-family: PingFangSC-Regular, 'PingFang SC', Microsoft Yahei, arial, verdana, helvetica, 'HanHei SC', STHeitiSC-Light, sans-serif !important; font-size: 1rem; } mark { background: #ff0; color: #1a1a1a; } dfn { font-style: italic; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } ul, ol { list-style: none outside none; } h1, h2, h3, strong { font-weight: 600; } img { vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } textarea { overflow: auto; resize: vertical; } button, input, select, textarea { font-family: PingFangSC-Regular, 'PingFang SC', Microsoft Yahei, arial, verdana, helvetica, 'HanHei SC', STHeitiSC-Light, sans-serif !important; } input::-moz-placeholder, textarea::-moz-placeholder { color: #cccccc; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #cccccc; } input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #cccccc; } i, u, s { font-style: initial; } input, button { outline: none; } ::-webkit-scrollbar { width: 6px; height: 4px; } ::-webkit-scrollbar-thumb { display: block; border-radius: 20px; background-color: #d6d6d6; } /*commos*/ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fl { float: left; } .fr { float: right; } .hide { display: none!important; } .show { display: block!important; } .ellipsis { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .break { word-break: break-all; word-wrap: break-word; } .clearfix:before, .clearfix:after { content: '\0020'; display: table; height: 0; clear: both; } .clearfix { *zoom: 1; } /* flex弹性盒布局兼容性写法样式文件 * 常用类 * display__flex * flex_direction__column * flex_wrap__wrap * justify_content__center * justify_content__space_between * justify_content__space_around * align_items__center * flex_grow__1 * flex_shrink__0 */ /* 设置在弹性容器上的属性 */ .display__flex { display: -webkit-box; display: -ms-flexbox; display: flex; } /*flex-direction属性决定主轴的方向(即项目的排列方向)。*/ .flex_direction__row_reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .flex_direction__column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .flex_direction__column_reverse { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } /*默认情况下,项目都排在一条线(又称"轴线")上。flex-wrap属性定义,如果一条轴线排不下,如何换行。*/ .flex_wrap__nowrap { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .flex_wrap__wrap { -ms-flex-wrap: wrap; flex-wrap: wrap; } .flex_wrap__wrap_reverse { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } /*justify-content属性定义了项目在主轴上的对齐方式。*/ .justify_content__flex_start { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .justify_content__flex_end { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } .justify_content__center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .justify_content__space_between { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .justify_content__space_around { -ms-flex-pack: distribute; justify-content: space-around; } /*align-items属性定义项目在交叉轴上如何对齐。*/ .align_items__flex_start { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; } .align_items__flex_end { -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; } .align_items__center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .align_items__baseline { -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline; } /*align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。*/ .align_content__flex_start { -ms-flex-line-pack: start; align-content: flex-start; } .align_content__flex_end { -ms-flex-line-pack: end; align-content: flex-end; } .align_content__center { -ms-flex-line-pack: center; align-content: center; } .align_content__space_between { -ms-flex-line-pack: justify; align-content: space-between; } .align_content__space_around { -ms-flex-line-pack: distribute; align-content: space-around; } /* 设置在弹性项目上的属性 */ /* flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。 以下是兼容样式写法示例,可根据需要修改属性值。 */ .flex_basis__100px { -ms-flex-preferred-size: 100px; flex-basis: 100px; } /*align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。*/ .align_self__flex_start { -ms-flex-item-align: start; align-self: flex-start; } .align_self__flex_end { -ms-flex-item-align: end; align-self: flex-end; } .align_self__center { -ms-flex-item-align: center; align-self: center; } .align_self__baseline { -ms-flex-item-align: baseline; align-self: baseline; } /*noScript*/ .noScript { margin: 10px; text-align: center; background: #adb9c4; color: #fff; display: block; height: 40px; line-height: 40px; } @charset "utf-8";body,html{padding:0;margin:0} blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0} body,button,input,select,textarea{font:12px/1.5 "Microsoft YaHei",΢ź,\9ed1\4f53,\5b8b\4f53,"Microsoft JhengHei",ϸ,STHeiti,MingLiu;color:#666} h1,h2,h3,h4,h5,h6{font-size:100%} address,cite,dfn,em,var{font-style:normal} dl,ol,ul{list-style:none} a{text-decoration:none!important;outline:0;font-family:"Microsoft YaHei",΢ź,\9ed1\4f53,\5b8b\4f53,"Microsoft JhengHei",ϸ,STHeiti,MingLiu} img{border:0} button,input,select,textarea{font-size:100%;font-family:"Microsoft YaHei",΢ź,\9ed1\4f53,\5b8b\4f53,"Microsoft JhengHei",ϸ,STHeiti,MingLiu} table{border-spacing:0} .clear:after{display:block;clear:both;content:"\0020";visibility:hidden;height:0} .cl:before{content:'';display:table} .cl:after{content:'';display:table;clear:both} .wrap{position:relative;min-height:100%;clear:both;content:""} .ielt7 .wrap{height:100%} #LR_Flash,#clsIframe{position:absolute} .col_l{float:left} .col_r{float:right} .w1200{width:1220px;margin:0 auto} .container{width:1220px;margin:0 auto} .header{position:relative;background:#fff;z-index:998;min-width:1220px} .header_top{position:relative;height:35px;background:#ededed;border-bottom:1px solid #eee;z-index:3000;width:100%} .header_top_center{width:1220px;margin:0 auto;height:35px} .search_float{position:fixed;background:#fff none repeat scroll 0 0;top:0;width:100%;z-index:9999;box-shadow:0 0 5px #666} .header_top_left{height:35px;color:#999;width:320px;position:absolute;float:left} .header_top_left em{display:inline-block;height:35px;position:relative;line-height:35px;font-weight:400;color:#666} .header_top_right ul li{width:100%;height:36px;position:relative;line-height:35px} .header_top_left h1 a{color:#666;font-weight:400;padding:0 5px} .header_top_right{float:right;height:35px;display:inline;width:auto} .header_top_right ul li em,.header_top_right ul li span{float:left;display:inline;color:#666} .header_top_right ul li .head_kefrx{ color:#ff4400;font-size:16px;font-weight:bold;} .header_top_right ul li .head_kefrx img{ vertical-align:middle;} .header_top_right ul li .htr_line{overflow:hidden;width:1px;height:12px;margin-top:11px;background-color:#ddd} .header_top_right ul li a.nav_fzlink{color:#f25618} .right_img{padding-top:25px;padding-left:45px;width:264px;height:87px;float:left;padding-left:0} .header_top_right ul li #regist em{background:url(/images/dh1.png) no-repeat left;background-size:15px 15px;font-size:12px;padding-left:18px;color:#5e5c5b} .header_top_right ul li #regist em span{font-size:19px;float:none;color:#666;font-family:Tahoma} .header_top_right ul li a{text-decoration:none;color:#666;float:left} .header_top_right ul li a:hover{color:#f40;text-decoration:underline} .header_search{width:585px;margin-left:50px} .header_search .header_search_input{width:490px;outline:0;line-height:35px;padding-left:0;text-indent:.5em;height:33px;border:1px solid #fff;float:left;color:#666;border:0;margin-top:1px;display:inline} .header_search .header_search_submit{width:90px;right:-2px;border:0;background:#f40;height:36px;text-align:center;font-size:16px;color:#fff;position:absolute;top:0;cursor:pointer} .header_top_left strong a{color:#5e5c5b} .header_center{display:block;width:1220px;margin:0 auto} .header_center_container{width:1220px;float:left} .header_center_container .logo{float:left;width:216px;display:inline} .header_search{height:36px;border:2px solid #f40;float:left;margin-top:35px;display:inline;position:relative;width:585px} .header_search .header_select{position:relative;z-index:9999;float:left} .header_search .header_select a.header_select_sort{height:36px;border-right:1px solid #eee;width:auto;background:#f9f9f9;text-decoration:none;position:relative;z-index:120;display:inline-block;color:#666;padding-right:15px} .header_search .header_search_input{width:490px;height:33px;border:1px solid #fff;float:left;padding-left:9px;line-height:33px;color:#666;border:0;margin-top:1px;display:inline} .header_search .header_search_input:focus{border-color:none} .header_search .header_search_input_text{position:absolute;width:321px;padding-left:9px;height:34px;line-height:34px;color:#bcbcbc;top:1px;right:70px;cursor:text;left:0} .header_search .header_search_submit{border:0;background:#f40;width:90px;height:36px;text-align:center;font-size:16px;color:#fff;position:absolute;right:0;top:0;cursor:pointer} .hcc_zxb{width:151px;height:58px;background-position:0 -1px;position:absolute;right:0;top:20px} .index_banner_s,.index_banner_s .banner_slider li{width:230px;height:70px;float:right;margin-top:20px;margin-right:40px} .header_bottom{border-bottom:2px solid #f40;display:table;height:0;position:relative;width:100%;z-index:999} .p{width:151px} .p span{background:#e30 none repeat scroll 0 0;display:none;font-size:14px;height:80px;padding-top:10px;width:151px} .p span a{height:32px;line-height:32px;width:151px} .p .nav{height:40px;width:151px} .p .nav i{background:rgba(0,0,0,0) url(../images/xtb.png) no-repeat scroll left center;float:left;height:40px;width:32px} .p .nav .a{display:block;float:left;height:40px;line-height:40px;margin-right:10px;text-align:right;width:109px} .p .nav .a:hover{color:#fff} .header_bottom .header_menu ul li:hover .p .nav{background:#f30 none repeat scroll 0 0} .header_bottom .header_menu ul li .p .nav:hover{background-color:#f40} .header_bottom .header_menu ul li:hover .p .nav .a{color:#fff} .header_bottom .header_menu ul li:hover .p .nav i{background:rgba(0,0,0,0) url(../images/xtbb.png) no-repeat scroll 0 18px} .header_bottom .header_menu ul li:hover .p span{display:block} .header_bottom .header_menu ul li.menu_hover,.header_bottom .header_menu ul li.on{background:#f40 none repeat scroll 0 0} .header_bottom .header_menu ul li.menu_hover a,.header_bottom .header_menu ul li.on a{color:#fff} .header_bottom .header_menu ul li.menu_hover a:hover,.header_bottom .header_menu ul li.on a:hover{background:#f40 none repeat scroll 0 0;color:#fff} .header_bottom .header_menu ul li b{background:#ddd none repeat scroll 0 0;height:16px;overflow:hidden;position:absolute;right:0;top:13px;width:1px} .header_bottom .header_menu h2{padding:0 20px;float:left;height:40px;line-height:40px;font-size:18px;font-weight:400} .header_bottom .header_menu h2 a{color:#333;text-decoration:none;display:block;padding:0 20px} .header_bottom .header_menu h2 a:hover{color:#f25618} .header_bottom .header_menu h2.on,.header_bottom .header_menu ul li.menu_hover{background:#f40} .header_bottom .header_menu h2.on a,.header_bottom .header_menu ul li.menu_hover a{color:#fff} .header_bottom .header_menu h2.on a:hover,.header_bottom .header_menu ul li.menu_hover a:hover{background:#f40} .header_bottom .header_menu h2 b{width:1px;position:absolute;right:0;top:13px;height:16px;background:#ddd;overflow:hidden} .header_bottom .header_menu h2 a:hover,.header_bottom .header_menu ul li.menu_hover a:hover{background:#f40;color:#fff} .index_footer{width:100%;border-top:2px #f40 solid;background:#fff;margin-top:30px} .index_footer .w1200{padding:20px 0 28px} .index_footer_l{width:630px;float:left} .index_footer_r{width:290px;float:right;position:relative} .index_footer_l p{padding-top:14px;color:#8e8e8e} .index_footer_l p a{float:left;color:#8e8e8e} .index_footer_l p a:hover{text-decoration:underline;color:#F30} .index_footer_l p.clearfix span{float:left;margin:0 8px} .index_footer_r dl dd{width:72px;height:72px;float:left;margin-right:23px} .index_footer_r dl dd a{width:72px;height:72px;display:block;background:url(../images/wx.gif) no-repeat} .index_footer_r dl dd.wb a{background-position:0 -2px} .index_footer_r dl dd.wb a:hover{background-position:-169px -2px} .index_footer_r dl dd.wx a{background-position:-84px -2px} .index_footer_r dl dd.wx a:hover{background-position:-252px -2px} .disab{display:none} .container .cont a{color:#2668C0!important;text-decoration:none;outline:0} .container .cont a:hover{color:red!important} .container .cont a:hover{color:red!important} .zsbase-b .zsbase-l{width:230px!important} .zsbase-b .zsbase-l ol{width:auto!important} .details-con #SOHUCS, #SOHUCS #SOHU_MAIN {width:95%!important;} .details-con #SOHUCS #SOHU_MAIN .module-cmt-box .post-wrap-w .post-wrap-main{background-image:none!important} .details-con #SOHUCS #SOHU_MAIN .module-cmt-footer .section-service-w .service-wrap-w a{display:none!important} .header_top_right ul a.index_he_login{padding-left:15px;position:relative;top:8px} .header_top_right ul a.index_he_login span{height:18px;line-height:18px;padding-right:18px;border-right:1px solid #666} .header_top_right a.index_he_login span:hover{color:#f40} .nav_down{position:absolute;top:100%;left:0;z-index:999;display:none;width:100%;padding:15px 0;margin-top:-1px;text-align:center;background:#fff;border-top:1px solid #ddd;box-shadow: 0px 15px 10px -15px #ccc;} .nav_down .zzwk i{width:31px;height:32px;display:inline-block;background:url(/Images/head/nav_zzwk.png)} .nav_down .zzxw i{width:32px;height:32px;display:inline-block;background:url(/Images/head/nav_zzxw.png)} .nav_down .hyxw i{width:31px;height:32px;display:inline-block;background:url(/Images/head/nav_hyxw.png)} .nav_down .zcdt i{width:31px;height:32px;display:inline-block;background:url(/Images/head/nav_zcdt.png)} .nav_down .zzbk i{width:23px;height:32px;display:inline-block;background:url(/Images/head/nav_zzbk.png)} .nav_down .fwxx{width:40px;height:40px;display:inline-block;background:url(/Images/head/fwxx.png)} .hyzx_index_ico{margin-left: 0;width:18px;height:25px;display:inline-block;background:url(../../images/zzmm_img/zzmm_ico.png);background-position:-123px -235px;} .nav_down a{display:inline-block;width:100px;font-size:14px;text-align:center;padding:0;margin:0 10px;color:#333;border:0} .nav_down a p{padding-top:5px;} .w_1220{width:1220px;margin:0 auto} blockquote,body,button,caption,code,dd,del,dfn,dl,dt,em,fieldset,form,h1,h2,h3,h4,h5,h6,img,input,label,li,menu,ol,p,pre,strong,table,tbody,td,tfoot,th,thead,tr,ul{margin:0;padding:0} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block} audio,canvas,video{display:inline-block} audio:not([controls]){display:none} table{border-collapse:collapse;border-spacing:0;empty-cells:show} menu,ol,ul{list-style:none} img{border:0} a:focus{outline:0} em,i{font-style:normal} button,input,select,textarea{font-size:100%;margin:0;vertical-align:-3px;outline:0} button,input{border:1px solid #a0a0a0;outline:0;line-height:normal} button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0} button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button} input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box} input[type=search]::-webkit-search-decoration{-webkit-appearance:none} textarea{overflow:auto;vertical-align:top} ::selection{background:#72d0eb;color:#fff;text-shadow:none} ::-moz-selection{background:#72d0eb;color:#fff;text-shadow:none} [hidden]{display:none} a{color:#0088DB;text-decoration:none;cursor:pointer} a:hover{color:#2A5E8E} .base-tit:after,.central:after,.clearfix:after,.pagenav:after,.paging:after,.widget ul:after{content:".";display:block;height:0;clear:both;visibility:hidden} body,button,code,input,select,textarea{font-size:12px;font-family:microsoft yahei;color:#444} .ipt{font-size:16px;border-radius:3px;background-color:#fff;padding:4px 6px;height:40px;line-height:21px;color:#555;width:300px;border:1px solid #a0a0a0} .ipt-mini{width:140px;padding:1px 3px} .ipt:focus{border-color:#95C8F1;box-shadow:0 0 4px #95C8F1} .btn{position:relative;cursor:pointer;display:inline-block;vertical-align:middle;font-size:12px;font-weight:700;height:27px;line-height:27px;min-width:52px;padding:0 12px;text-align:center;text-decoration:none;border-radius:2px;border:1px solid #ddd;color:#666;background-color:#f5f5f5} input.btn{height:40px;font-size:16px;font-family:"微软雅黑","黑体",Arial;font-weight:100;border:none} .btn.btn-active,.btn:active{box-shadow:#ddd 0 1px 2px 0 inset;border-color:#c6c6c6} .btn:focus{border-color:#4d90fe;outline:0} .btn-primary{color:#F3F7FC;background-color:#f40;background:-webkit-linear-gradient(top,#f40,#f40);background:-moz-linear-gradient(top,#f40,#f40);background:linear-gradient(top,#f40,#f40);border-radius:3px;width:190px} .btn-primary:hover{color:#fff} .btn-primary:focus{border-color:#4d90fe;outline:0} .theme-buy{margin-top:10%;text-align:center} .theme-gobuy,.theme-signin{font-size:15px} .theme-price{position:relative;bottom:-6px;font-family:microsoft yahei,Arial,Helvetica,sans-serif;margin-right:20px;font-weight:700;color:#f60;line-height:32px;font-size:24px;display:inline-block} .theme-price dfn{font-style:normal;font-size:18px;margin-right:2px} .theme-desc{padding:30px} .theme-version{padding:30px} .theme-popover-mask{z-index:9998;position:fixed;top:0;left:0;width:100%;height:100%;background:#000;opacity:.3;filter:alpha(opacity=40);display:none} .theme-popover{z-index:9999;position:fixed;top:40%;left:50%;width:545px;height:490px;margin:-235px 0 0 -260px;background:url(/Images/tankuang.png) no-repeat center;display:none} .theme-popbod{padding:60px 15px;color:#444;height:148px} .theme-popbom{padding:15px;background-color:#f6f6f6;border-top:1px solid #ddd;border-radius:0 0 5px 5px;color:#666} .theme-popbom a{margin-left:8px} .theme-poptit .close{float:right;color:#999;position:relative;bottom:25px;left:25px;font:700 14px/14px simsun;text-shadow:0 1px 0 #ddd;top:50px} .theme-poptit .close:hover{color:#444} .btn.theme-reg{position:absolute;top:8px;left:43%;display:none} .feed-mail-inp,.inp-gray{border:1px solid #ccc;background-color:#fdfdfd;width:220px;height:16px;padding:4px;color:#444;margin-right:6px} .dform{padding:190px 65px 40px;text-align:center} .dform .ipt_error{background-color:#FFC;border-color:#FC6} .dform-tip{display:none;background-color:#080;color:#fff;line-height:42px;margin-top:10px;font-size:14px} .dform-tip-errer{background-color:#CF301A} .dform-tip a{display:inline-block;padding:0 20px;margin-left:10px;background-color:#FFE924;color:#CF301A} .dform-login{padding:0;height:270px;overflow:hidden} .dform-login iframe{height:470px;margin-top:-180px} .theme-signin{text-align:left;font-size:14px} .theme-signin h4{color:#999;font-weight:100;margin-bottom:20px;font-size:12px} .theme-signin li{font-family:"微软雅黑","黑体",Arial;font-size:16px;color:#666;letter-spacing:1px;border:none;height:65px} .theme-signin p{font-size:12px;color:#999;line-height:25px} .theme-desc,.theme-version{padding-top:0} .error_baojia{padding:0 15px;background:url(/Images/global.png) -253px 6px no-repeat scroll;margin-left:90px;color:#f66!important;display:none} .popover-gerzx{background:url(/Images/tk_bg.png) no-repeat center} .theme-popover{background:url(/Images/contact-bg.png) no-repeat center!important} .tank_wenz2{margin-top:20px;text-align:center} .tank_wenz2 p{font-size:16px!important;color:#666;margin-bottom:25px} .tank_wenz2 p span{font-size:14px} .tank_wenz2 .striking{font-size:20px;color:#f40} .tank_wenz2 .error{float:left;margin-left:20px;color:red;display:none} .tk_btn{text-align:center} .tk_btn input{color:#fff;background:#f40;border:none;padding:8px 15px;border-radius:3px;font-size:16px;margin-right:30px} .tk_btn input:nth-child(2n+2){margin-right:0} * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } html, body { margin: 0; padding: 0; } body { color: #222; font: 16px/1.5 Helvetica, Arial, sans-serif; } h1, h2, h3, p, pre, ul { margin: 0; padding: 0; } p, pre, ul { margin-bottom: 0; } pre { background: #fefefe; border: 1px solid #dedede; overflow-x: auto; padding: 2em; } /* ��Ҫ���벿�� */ #nav {list-style: none; background:url(/images/zzdb_left_nav.png) no-repeat; float:left;} #nav a {color: #666;font-size: 18px;text-decoration: none; text-align:center; height:30px; line-height:30px; padding:3px 10px 3px 40px; } #nav li{ margin-bottom:30px;} #nav a:hover { border-radius:13px; background-image:url(/images/left_nav_yuan.png); background-repeat:no-repeat; } #nav .current a {background-image:url(/images/left_nav_yuan.png); background-repeat:no-repeat;color: #ff4400; border-radius:13px; padding-left:40px; } .section {border-bottom: 5px solid #ccc;padding: 50px 20px;} .section p:last-child { margin-bottom: 0;} .zzdb_tiaojcg_leftnav{ letter-spacing:25px;} /*#zhizgj_left{ float:left; width:300px; height:336px; box-shadow:0 0 10px rgba(255, 68,0, 0.3);} .mfhqbj{ font-size:18px; font-family:"微软雅黑", "黑体", Arial; color:#ff4400; height:40px; line-height:40px !important; border-bottom:1px solid #ff4400; text-align:center;} .huoqbj_title{ position:relative; bottom:10px; margin-left:5px; } .huoqbj_title a{ color:#ff4400;} .huoqbj_title a:hover{ color:#ff4400;} .huoqlxfs{ width:260px; margin:0 auto;} .huoqlxfs ul{ margin-top:13px;} .huoqlxfs ul li{ height:30px; text-align:center; margin-bottom:15px;} .huoqlxfs ul li p{ font-size:12px; color:#F00; height:20px; line-height:28px;} .zzgj_index_btn{ width:100%; border:1px solid #999999; height:30px; line-height:30px; border-radius:3px; padding-left:5px; font-size:14px;} .zzgj_suozdq{ width:49%; border:1px solid #999999; height:30px; line-height:30px; border-radius:3px;} .zzgj_index_ljsqbtn{ width:257px; height:30px; background:#ff4400; line-height:30px; border:none; border-radius:3px; color:#FFF; font-size:14px; margin-top:15px; } */ .zzgj_index_btn{ width:100%; border:1px solid #999999; height:35px; line-height:30px; border-radius:3px; padding-left:5px; font-size:14px;} .pt21{margin:20px 0 20px 100px;} .kuang1{width:1150px; margin:0 auto; margin-top:30px; display:block;} .kuanger{width:1090px; padding:20px 30px 16px; border:1px solid #e7e7e7; position:relative; padding-bottom:30px;} .kuanger h2{border-bottom:2px solid #f40; font-family:"Microsoft YaHei"; font-size:18px; font-weight:bold; padding-bottom:10px;} .kuanger ul{width:940px; height:55px; padding-left:150px; border-bottom:1px solid #eee; font-size:12px;} .kuanger ul li{text-align:center; height:55px; line-height:55px; color:#333; float:left;} .kuanger ul.ul1 li{color:#999;; height:45px; line-height:60px; font-size:14px;} .kuanger ul li a{color:#f00;} .kuanger i{width:53px; height:53px; background:url(/Images/lf.gif); position:absolute; left:50px; top:70px;} .kuanger .money{width:1090px; height:35px;} .kuanger .money p{width:220px; height:35px; line-height:35px; text-align:center; float:right; font-size:16px;} .kuanger .money p label{width:auto; padding-top:2px;} .kuanger .money p span{font-size:18px; color:#f00;} #zhizgj_indexstyle_w1000{ width:1220px; margin:0 auto; } .zhizgj_top{ width:1220px; margin:0 auto; margin-top:30px;} #zhizgj_right{ float:right; width:900px; height:336px; box-shadow:0 0 10px rgba(255, 68,0, 0.3);} .index_gengd{ font-size:14px; color:#666; float:right; padding-right:5px;} .index_gengd a{ color:#666;} .index_gengd a:hover{ color:#ff4400;} .woyhqbj_wenz{ font-size:14px; font-family:"微软雅黑", "黑体", Arial; color:#666666;} .zhizgj_right_left{ float:left; width:529px; border-right:1px solid #CCC;} .zhizgj_right_right{ float:right; width:370px;} .zzgj_zuixzcdt_list{ margin-top:5px;} .zzgj_zuixzcdt_list li{ list-style:none; width:370px; height:40px; line-height:40px; font-size:12px; font-family:"微软雅黑", "黑体", Arial; border-bottom:1px solid #ccc; cursor:pointer;background: url(/Images/dot.jpg) no-repeat; background-position-x: 17px; background-position-y: 18px;} .zzgj_zuixzcdt_list li:hover{ color:#ff4400; border-bottom:1px solid #ff4400; } .zzgj_zuixzcdt_list li a{ font-size:12px; font-family:"微软雅黑", "黑体", Arial; text-decoration:none; color:#666666; width:290px;padding-left:35px; text-overflow:ellipsis; overflow:hidden; white-space:nowrap;} .zzgj_zuixzcdt_list li a:hover{ color:#ff4400;} .zzgj_main{ width:1220px; margin:0 auto;} .fuwlc{ width:1220px; margin:25px auto; margin-bottom:0px;} .modulat-title a,.modulat-title a:hover{ color:#ff4400;} .zzgj_jianzzzbj{width:1220px; box-shadow:0 0 10px rgba(255, 68,0, 0.3); margin-top:15px; padding:20px;} .zzgj_jianzzzbj_left{ float:left; height:120px;width:560px; border-right:1px solid #cccccc;} .zzgj_jianzzzbj_right{ float:right; height:120px; width:605px; padding-left:15px;} .zongcbzz_indexstyle{ text-align:center !important; height:120px !important; width:130px !important; font-size:18px; color:#666666; font-family:"微软雅黑", "黑体", Arial; float:left;} .zongcbzz_indexstyle a{ color:#ff4400} .zongcbzz_indexstyle a:hover{ color:#ff4400;} .zongcbzz_indexstyle img{ margin-bottom:5px; !important;} .zongcbzzgc_list{ padding:10px 0px; width:auto;} .zongcbzzgc_list ul li{ float:left; font-size:14px; margin-left:15px; margin-bottom:20px; width:85px; text-align:center; font-family:"微软雅黑", "黑体", Arial;} .zongcbzzgc_list ul li a{ color:#666666;} .zongcbzzgc_list ul li a:hover{ color:#ff4400;} .zhuanycbzz_liststyle ul{ padding:10px 0px;} .zhuanycbzz_liststyle ul li{ float:left; font-size:14px; width:140px; text-align:center; margin-bottom:21px; font-family:"微软雅黑", "黑体", Arial; margin-left:5px;} .zhuanycbzz_liststyle ul li a{ color:#666666;} .zhuanycbzz_liststyle ul li a:hover{ color:#ff4400;} .zzgj_jianzhyzx{ padding:15px;} .zzgj_jianzhyzx_left{ width:395px; border-right:2px solid #cccccc; height:130px; float:left;} .zhengcdt{ width:60px; font-size:14px; font-family:"微软雅黑", "黑体", Arial; color:#666666; height:140px; padding-top:38px; float:left; margin-right:10px;} .zhengcdt a{ color:#666666;} .zhengcdt img{ margin-bottom:6px; color:#666666;} .zhengcdt img a{ color:#666666;} .zhengcdt img a:hover{ color:#ff4400;} .zhengcdt_list{ position:relative; bottom:8px; width:310px; float:right;} .zhengcdt_list ul li{ float:left; width:303px; padding:0px 3px; font-family:"微软雅黑", "黑体", Arial; font-size:12px; color:#666666; border-bottom:1px solid #cccccc; height:40px; line-height:40px;} .zhengcdt_list ul li:hover{ border-bottom:1px solid #ff4400; color:#ff4400;} .zhengcdt_list ul li a{ width:248px; text-overflow:ellipsis; overflow:hidden; white-space:nowrap; color:#666666;} .zhengcdt_list ul li a:hover{ color:#ff4400;} .zzgj_jianzhyzx_zhong{ float:left; width:390px; margin-left:12px; border-right:2px solid #cccccc; height:130px;} .zzgj_jianzhyzx_right{ float:right; width:390px; padding-left:9px;} .womdkf{ width:1220px; margin:10px auto;} .womdkf ul li{ float:left; width:180px; height:40px; margin-left:23px; margin-bottom:20px; text-align:center; } .erj_nav{ background:#DDD; border:1px solid #CCC;} .zhengcdt_list .jianzhy_news_list_gengd{ border:none; height:20px; line-height:27px;} .zhengcdt_list .jianzhy_news_list_gengd:hover{ border:none;} .zhengcdt_list .jianzhy_news_list_gengd span{ position:relative; } .zhengcdt_list .zhengcdt_list_item {background: url(/Images/dot.jpg) no-repeat;background-position-x: 15px;background-position-y: 18px;} .zhengcdt_list .zhengcdt_list_item a {padding-left:30px;} .footer_bg{padding-top:50px;border-bottom: 1px solid #474747;} .foot_youqlj_nav{ width:720px; float:left;margin-top:10px;} .foot_youqlj_nav ul li{ display: inline-block; width: 90px; height: 30px; margin-right:10px; font-size: 14px; color: #7c7c7c; line-height: 30px; text-align: center; background: #1e1e1e; } .foot_youqlj_nav ul li:hover{ color:#d0d0d0; background-color: #515151; cursor:pointer;} .foot_youqlj_nav ul li a{ color:#666666;} .foot_youqlj_nav ul li a:hover{ color:#ff4400;} #tab_con{display: inline-block; width:1200px; padding-left:10px; margin-top:20px; padding-right:10px;} .footer_youqlj a{ color:#868787; margin-right:20px; margin-bottom: 10px; float:left;display:block;white-space:nowrap;} .footer_youqlj a:hover{ color:#ff4400;} .foot_youqlj_nav ul li.foot_youqlj_nav_on{ color:#d0d0d0; background-color: #515151;} .footer_guanzwm{ float:left; color:#666666; font-size:14px; padding:34px 0 0 20px; } /*.footer_guanzwm h3{ font-size:14px; color:#333333; height:35px; line-height:35px; margin-bottom:15px;} */.footer_guanzwm li{ color: #939393;} .footer_guanzwm li a{ color:#939393; font-size: 12px; padding:0px;} .footer_guanzwm li a:hover{ color:#ff4400;} /*资质管家 首页头部+nav2016-06-24*/ .xian{ border-bottom:1px solid #ff4400;} .zzgj_herd_nav{ height:58px; width:740x; float:left; padding-left:29px;} .zzgj_herd_nav li{ font-size:18px; float:left; height:66px; line-height:66px; text-align:center; color:#666666; width:150px;} .zzgj_herd_nav li#li_zzdbgs{ width:165px !important; } .zzgj_herd_nav li:hover{ border-bottom:4px solid #ff4400;} .zzgj_herd_nav li a{ color:#666666; height:20px; } .zzgj_herd_nav li a:hover{ color:#ff4400;} .dianhhm{ font-size:18px; color:#ff4400; float:right; padding-right:10px; position:relative; top:13px;} .zzgj_lianxdh{ float:right; width:125px; } .nav_xian{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px; right:15px;} .nav_xian2{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px;} .nav_xian3{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px;} .nav_xian4{ float:right; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px; right:5px;} .nav_xian5{ float:left; height:17px; line-height:17px; border:1px solid #cccccc; position:relative; top:30px; left:5px;} /*资质管家nav二级导航样式——201606-28-郭雅南*/ a,img{border:0;text-decoration:none;} body{ font: 12px/180% "微软雅黑", "黑体", Arial; } .clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden} .clearfix{display:inline-table} *html .clearfix{height:1%} .clearfix{display:block} *+html .clearfix{min-height:1%} .zzgj_erj_nav{position:absolute;background:#FFF;overflow:hidden;height:0; border:1px solid #e4e3e3;border-bottom:2px solid #ff5b20; border-top:none;background-size:100% auto;filter:alpha(opacity=0);opacity:0; top:67px; left:245px;} .zzgj_erj_nav .cont{position:relative;padding:0px; margin-left:3px !important; padding-right:20px;} .index-sublist li{width:100%} .index-sublist li h3.mcate-item-hd{font-size:16px;line-height:22px;padding:20px 10px 0 10px;float:left;font-family:"微软雅黑", "黑体", Arial; width:150px; text-align:center;} .index-sublist li h3.mcate-item-hd a{ color:#ff4400; font-family:"微软雅黑", "黑体", Arial;font-weight:normal;} .index-sublist li p.mcate-item-bd{float:left;border-bottom:1px solid #e8e9eb;padding:15px 0;width:780px; } .index-sublist li p.mcate-item-bd a{padding:4px 0;margin-right:22px;font-size:14px;color:#999;display:inline-block; font-family:"微软雅黑", "黑体", Arial;} .index-sublist li p.mcate-item-bd a:hover{color:#ff4400} .index_tis{ font-size:16px; color:#999; letter-spacing:2px; padding-top:21px !important;} /*第二版样式*/ .chaxybj_right_nav{ height:50px; line-height:50px; border-bottom:1px solid #FD9D64; background:#fef5f2;} .chaxybj_right_nav ul li{ float:left;font-size:16px; font-family:"微软雅黑", "黑体", Arial; letter-spacing:2px;} .chaxybj_right_nav ul li a{ color:#333; float:left; padding:0 25px; font-size:16px; font-family:"微软雅黑", "黑体", Arial; letter-spacing:2px;} .chaxybj_right_nav ul li a:hover{ color:#ff4400 !important;} .head_hover{ cursor:pointer;border-bottom:4px solid #ff4400; background:#fff; height:50px; line-height:48px;} .head_hover a{ color:#ff4400 !important} .head_check{ cursor:pointer;border-bottom:4px solid #ff4400; background:#fff; height:50px; line-height:48px;} .head_check a{ color:#ff4400 !important} .chaxybj_right_nav ul li:hover{ cursor:pointer;border-bottom:3px solid #ff4400; background:#fff; height:50px; line-height:48px;} #zizhixuzhi{ width:970px; border-top:none;} #yongxinfuwu{ padding-bottom:30px;} #wenxintishi{ width:970px; float:right;} .chaxybj_right_nav .clickstyle{ color:#ff4400 !important; cursor:pointer;border-bottom:3px solid #ff4400; background:#fff; height:50px; line-height:48px;} .weishenmyblzz{ min-height:420px; background:url(/Images/zizigh.jpg) center no-repeat;} .weishenmyblzz ul li div{ font-size:16px; color:#ff4400; font-family:"微软雅黑", "黑体", Arial;} .weishenmyblzz ul li{ float:left; width:206px; margin-left:94px; font-size:13px; color:#333; line-height:2.8em;} .weishenmyblzz ul li p{ line-height:1.8em; font-family:"微软雅黑", "黑体", Arial;} .weishenmyblzz ul{ padding-top:140px;} .biaojb_zongj{ color:#ff4400; font-family:"微软雅黑", "黑体", Arial; font-size:14px;} #yongxinfuwu{ box-shadow:0 0 10px rgba(251, 94,36, 0.3); margin-top:30px; } #shilizhanshi{ box-shadow:0 0 10px rgba(251, 94,36, 0.3); margin-top:30px; } .zizhixuzhi{ padding:20px 0px;} /* 资质页面样式(郭雅楠) */ .zzdb_k{ width:1220px; margin:0 auto; padding-bottom: 70px;} .zzdb_top{ width:1220px; margin:0 auto;margin-top:50px;} .zzdb_left{ float:left; width:610px; } .zzdb_right{ float:right; width:580px;} .zzdb_right_diz{ width:75px; font-size:16px; font-family:"微软雅黑", "黑体", Arial; height:30px; line-height:30px;} .zzdb_top_right_leix{ float:left; width:75px; } .zzdb_top_right_leix li{ font-size:14px; font-family:"微软雅黑", "黑体", Arial; height:30px; line-height:30px; margin-bottom:20px; } .zzdb_zzmc_an{ height:30px; line-height:30px; text-align:center; width:170px;} .zzdb_xiangqy{ width:1220px; margin:0 auto; margin-top:50px;} .zzdb_xiangq_left{ float:left; width:230px;} .zzdb_xiangq_right{ float:right; width:970px; height:auto; border-radius:2px;font-size:14px;} .zzdb_z{ font-size:18px; color:#ff713e; letter-spacing:3px; background:url(/Images/tijcg_wenz_bg.png) no-repeat; height:32px; line-height:32px; padding-left:15px; font-family:"微软雅黑", "黑体", Arial;} .zzdb_xiangqjs{ margin:15px 0; margin-bottom:50px;} .zzdb_xiangqjs p{ font-size:14px; font-family:"微软雅黑", "黑体"; line-height:1.8em; color:#666666; text-align:left;} .zzdb_xiangqzt{ color:#ff713e;} .zzdb_bllc{ width:640px; margin:0 auto; margin-top:50px; } .zzdb_bllc li{ width:640px;} .zzdb_xianslc_list{ background:url(/images/zzdb_lc1.png) no-repeat center; height:108px; margin-top:30px; padding-left:5px;} .zzdb_xianslc_list li{ font-size:16px; height:40px; line-height:38px; float:left; width:118px; text-align:center; margin-right:40px; margin-bottom:28px; font-family:"微软雅黑", "黑体"; } .zzdb_xianslc_list .xiansbllc_wenz_style{margin-left:8px; width:110px;} .zzdb_banllcbt{ font-size:24px; color:#ff713e; text-align:center; letter-spacing:3px; font-family:"微软雅黑", "黑体";} .zzdb_banllcbt2{ font-size:24px; text-align:center; letter-spacing:3px; color:#666666;} .zzdb_xianslc_list2{ background:url(/images/zzdb_lc2.png) no-repeat center; height:108px;} .zzdb_xianslc_list2 li{ font-size:12px; height:40px; line-height:15px; float:left; width:118px; text-align:center; margin-right:40px; margin-bottom:23px; font-family:"微软雅黑", "黑体"; margin-top:5px;} .zzdb_kuanj{ width:690px; height:500px;} .zzdb_xuanzly{ width:640px; margin:0 auto; margin-top:50px; margin-bottom:50px;} .zzdb_xuanzly table tr td{border:1px solid #ff713e; padding:10px;text-align:center; font-size:15px; font-family:"微软雅黑", "黑体"; color:#666666;} .zzdb_xuanzly table .zzdb_biaoglt{ border-top:2px solid #ff713e; border-left:2px solid #ff713e;} .zzdb_xuanzly table .zzdb_biaogrt{ border-top:2px solid #ff713e; border-right:2px solid #ff713e;} .zzdb_xuanzly table .zzdb_biaogl{ border-left:2px solid #ff713e;} .zzdb_xuanzly table .zzdb_biaogr{ border-right:2px solid #ff713e;} .zzdb_xuanzly table .zzdv_biaoglbr{ border-bottom:2px solid #ff713e; border-right:2px solid #ff713e; border-left:2px solid #ff713e;} .zzdgj_diansms1{ background:url(/images/zzgj_dians1.png) no-repeat center; height:235px; margin-top:50px;} .zzdb_dians_huij{ width:300px; height: auto; text-align:right; padding-top:45px; padding-left:30px; margin-left:100px;} .zzgj_diansbt{ font-size:48px; font-family:"微软雅黑", "黑体", Arial; color:#ff7e50; letter-spacing:5px;height:50px;margin-bottom:25px;} .zzgj_diansdbgs{ font-family:"微软雅黑", "黑体", Arial; font-size:24px; color:#666666;} .zzgj_diansdbyw{ font-size:12px; font-family:Arial, Helvetica, sans-serif; color:#666666;} .zzdgj_diansms2{ background:url(/images/zzgj_dians2.png) no-repeat center; height:250px; margin-top:10px;} .zzdb_dians_zhuany{ width:800px; height:120px; padding-top:50px; padding-left:560px;} .zzdgj_diansms3{ background:url(/images/zzgj_dians3.png) no-repeat center; height:222px; margin-top:10px;} .zzdgj_diansms4{ background:url(/images/zzgj_dians4.png) no-repeat center; height:225px;} #con4{ background:url(/images/zzgj_wenxtx.png) no-repeat center; height:232px;} .wenxts{ padding-top:90px; padding-left:30px;} .wenxts p{ font-size:14px; font-family:"微软雅黑", "黑体", Arial; color:#666666; line-height:1.8em; text-align:left;} .zzlx li{ width:220px; height:36px; line-height:32px; font-size:12px; font-family:"微软雅黑", "黑体", Arial; border:1px solid #999999; border-radius:3px; float:left; margin-right:10px; text-align:center; letter-spacing:1px;} .szdq_kuang{ margin-right:10px;} .zzdb_zhizlx{ width:125px; height:30px; line-height:30px; text-align:center; font-size:16px; font-family:"微软雅黑", "黑体", Arial;} .zzdb_zhizzy{ width:505px; float:right; } .zzdb_zhizzy li{ margin-bottom:10px;} .zhinengbaoj{ height:42px; line-height:42px;} .zhinengbaoj_lable{float:left; position:relative; background-color:#ffa100;text-align:center;width:160px;height:35px;color:white;line-height:35px;border-radius:5px;cursor:pointer} .zhinengbaoj_style{ height:35px; line-height:35px; margin-top:20px; font-family:'微软雅黑', '黑体', Arial;background-color:#fff3dd;border-radius:5px;} .mianfcxybj{ padding-top:20px;height:35px;} .zhinengbj_wenz{ font-size:13px; color:#a0a0a0; text-align:left; position:relative; font-family:"微软雅黑", "黑体", Arial; border-radius:5px; height:35px; line-height:35px; padding-left:5px; width:420px;} .baijia_wenz{ font-size:16px; color:#999999;} .baijia_wenz lable{ font-size:18px; color:#ff4400;} .mianfcxybj input{ width:200px; height:30px !important; color:#FFF; font-size:16px; font-family:"微软雅黑", "黑体", Arial; border:0px; background:#ff4400; border-radius:3px; margin-left:175px; line-height:30px !important;} .mianfcxybj_wenz{ float:left; color:#a0a0a0; font-size:12px; line-height:16px; font-family:"微软雅黑", "黑体", Arial; margin-left:10px;} .mianfcxybj_wenz2{ float:left; color:#a0a0a0; font-size:12px; line-height:16px; paddint-top:1px;} .clearfix li.li_cur{border:1px solid red;} .box_close2{ width:70px; height:67px; position:relative; bottom:30px; left:515px;} .box_head2{ background:none;} #tank_wenz{ font-size:18px; font-family:"微软雅黑", "黑体", Arial; color:#ff4400; text-align:center; position:relative; bottom:18px;} .mianfeisq_ann{ width:450px; margin:0 auto; padding-left:10px;} .mfsq_an{ width:190px; height:40px; background:#ff4400; border-radius:3px; border:none; font-size:16px; color:#FFF; text-align:center; font-family:"微软雅黑", "黑体", Arial; margin-right:15px;} .pingtckj{ background:url(/images/biaoj_01.jpg) no-repeat center; width:740px; height:230px;} .pingtckj_wenz{ font-size:24px; font-family:"微软雅黑", "黑体", Arial; color:#FFF; text-align:center; padding-top:43px;} .pingtckj_wenz span{ color:#ff4400;} .chakbjmx{ width:300px; height:50px; border:#337984 1px solid; border-radius:25px; font-size:24px; color:#337984; line-height:50px; font-family:"微软雅黑", "黑体", Arial; text-align:center; margin-left:220px; margin-top:45px;} .chakbjmx a{ color:#337984;} #baojb_xiangxb{ background:url(/images/zzdb_txz2.jpg) no-repeat center; width:740px; height:490px;} .baojmxb{ margin-left:190px;} .baojmxb tr td{ font-size:12px; color:#666666; border-left:1px solid #97cb5f; border-top:1px solid #97cb5f;} .baojmxb1{ font-size:14px !important; color:#ff4400 !important;} .baojmxb2{ font-size:14px !important; color:#ff4400 !important; text-align:center; border-right:1px solid #97cb5f; } .baojmxb3{ border-right:1px solid #97cb5f;} .baojmxb4{ border-bottom:1px solid #97cb5f;} .zizhiguanjia_txz{ background:url(/images/zzdb_txz.jpg) no-repeat center; width:740px; height:320px; margin-bottom:10px;} #options2{ background:url(/images/zzgj_wenxtx.png) no-repeat center; height:240px; padding-top:30px; margin-top:20px;} .baojbjz{ font-family:"微软雅黑", "黑体", Arial; font-size:24px;} /*资质报价*/ .baojia_zhuanydj{ float: left; width: 500px; font-size: 16px; } .baojia_zhuanydj span{ width: 160px; border:1px solid #999999; line-height: 26px; height: 30px; border-radius: 3px; display: inline-block; /*text-align: center;*/ background:url(/Images/down_baoj.png) no-repeat; background-position:95% 50%; cursor:pointer; font-size:14px; padding-left:12px; } .baojia_zhuanydj select{ display: inline-block; width: 160px; line-height: 32px; height: 30px; border-radius: 3px; appearance:none; -moz-appearance:none; -webkit-appearance:none; -webkit-text-align:center; padding-left: 20px; border:1px solid #999999; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity: 0; opacity: 0; } .baojia_zhuanydj option{ padding-left: 20px;; padding-top: 3px; padding-bottom: 3px; } .baojia_zhuanydj .baojia_zizzy{ width: 160px; overflow: hidden; float: left; margin-right: 6px; position: relative; display: inline-block; } .baojia_zhuanydj .baojia_zizzy select,.baojia_zhuanydj .baojia_zizdj select{ position: absolute; left:0; top:0; filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity: 0; opacity: 0; z-index: 999; } .baojia_zizdj{ position: relative; float: left; } .baojia_gongsdz{ border:1px solid #999999; border-radius: 3px; font-size: 14px; } .zzdb_right #baojia_text { font-size: 14px; color: #999999; margin-bottom: 10px; position: relative; top: -5px; } .zzdb_right .zzdb_tj { float: left; width: 80px; height: 30px; color: #ffffff; text-align: center; line-height: 30px; background: #ffa100; border-radius: 5px; cursor:pointer; font-size:14px; } /*.zzdb_right .zzdb_tj div { line-height: 30px; text-align: center; width: 80px; }*/ .zzdb_right .zzdb_tj i { position: relative; top: -2px; display: inline-block; width: 16px; height: 16px; margin-right: 8px; vertical-align: middle; background-position: -127px 0; } .zzdb_right .zzdb_content { width: 580px; height: 75px; border: 1px solid #999999; margin-top: 20px; overflow-y: scroll; border-radius: 3px; } .zzdb_right .zzdb_content .zzdb_content_div { width: 270px; height: 30px; margin: 2.5px 0 0 5px; float: left } .zzdb_right .zzdb_content .zzdb_content_div .zzdb_content_info { width: 240px; height: 30px; margin: 5px 0 0 5px; float: left; font-size:14px; line-height:30px; color:#ff4400; } .zzdb_right .zzdb_content .zzdb_content_div .zzdb_content_del { /*background-color: black; float: right; width: 20px; height: 30px; margin: 5px 0 0 5px;*/ position: relative; top: 10px; float: left; width: 16px; height: 16px; background-position: -148px 0; } .baojia_tis { padding-left: 115px; /*padding: 6px 0 6px 75px;*/ color: #FF4400; font-size: 14px; margin-top:30px; } .zzdb_tj_ico { display: inline-block; background: url(../../Images/bjq_ico.png) no-repeat; } .zzdb_del_ico { display: inline-block; background: url(../../Images/bjq_ico.png) no-repeat; } /* 资质提交成功(郭雅楠) */ .tijcg_wenz{ font-size:30px; font-family:"微软雅黑", "黑体", Arial; text-align:center; height:37px; line-height:37px; color:#ff4400;} .tijcg_wenz img{ margin-right:18px;} .zzdb_cg_wz{ font-size:16px; font-family:"微软雅黑", "黑体", Arial; width:720px; margin:0 auto; margin-top:30px; margin-bottom:20px; color:#666666;} .zzdb_gengdxx li{ float:left !important; text-align:left!important; margin-right:15px;} .zzdb_gengdxx li a{border-bottom-width:1px !important; padding:0 0 6 0 !important; border-bottom-style:solid !important; border-color:#ff4400; !important; color:#ff4400; } .zzdb_qiyzc{ font-size:18px; color:#ff4400;} .y_class label{ border: 1px solid #d84a4a !important; color:#d84a4a; cursor: pointer; background:url(/Images/bj.jpg) no-repeat right 0 bottom 0; } .business_list {width: auto;} .divSpace{height:25px} .tijcg_title2{ font-size:18px; margin-top:15px; color:#666666; font-family:"微软雅黑", "黑体", Arial; } .biaojiab{ font-family:"微软雅黑", "黑体", Arial; width:910px; margin:0 auto; margin-bottom:55px; } .biaojiab tr td{ border:0px solid #cacaca; font-size:12px; color:#666666; border-left:2px solid #cacaca; border-top:2px solid #cacaca;} #biaoj_title1{color:#ff4400; font-size:14px;} #biaoj_title2{color:#ff4400; font-size:14px;} #biaoj_title3{color:#ff4400; font-size:14px;} #biaoj_title4{color:#ff4400; font-size:14px;} #biaoj_title5{color:#ff4400; font-size:14px;} #biaoj_title6{color:#ff4400; font-size:14px; border-right:2px solid #cacaca;} #baojiabiao_biaogx{ border-right:2px solid #cacaca;} #baojiabiao_biaogx2{ border-bottom:2px solid #cacaca;} .biaojiab_feiyong{ width:190px; height:100px; float:right; padding-top:15px;} /*资质管家首页加入定位——郭雅南2016-09-05*/ .dingw_title{ display:inline-block; padding-left:10px;} .dingw_title .dingw_img{ position:relative; top:3px;} .dingw_title a{ color:#666;} .dingw_title .dingw_xial{ padding-left:5px;} #city{ width:470px; border:1px solid #ccc; padding:5px 10px; border-top:none; box-shadow:1px 1px 2px #ccc; background:#FFF; z-index:1000; display:none; position:absolute; top:36px; left:7px;} #city .city_list{ color:#666; width:460px;} #city .city_list a{ float:left; color:#666; width:57px !important; text-align:left; padding:4px 8px; font-size:12px;} #city .city_list a:hover{ color:#ff4400;} /*资质管家详情页修改——2016-09-12郭雅南*/ .xiangqy_jsq{width:850px; border:1px solid #ff4400; background:#FFF; padding:0 24px; padding-bottom:15px;} .xiangqy_jsq h3{ color:#ff6600 !important; font-size:25px !important; font-style:italic; letter-spacing:7px; margin:0px !important; line-height:0px !important; margin-top:10px !important; border:none !important; text-align:center; } .xiangqy_jsq h3 .biaot_xian{ padding-right:15px; font-size:14px; font-weight:400; line-height:40px; position:relative; top:-3px;letter-spacing:-5px; color:#ff4400;} .xiangqy_jsq h3 .biaot_xian:last-child{ padding-left:15px !important; padding-right:0px;} .xinq_jisq_biand{ border:none; background:url(../../Images/jisq_icon.jpg) right no-repeat;} .xiangqy_xuanzz{ width:800px; margin:0 auto;} .xiangqy_xuanzz ul{ width:520px; margin:0 auto; margin-top:10px;} .xiangqy_xuanzz ul li{ width:160px; height:35px; border:1px solid #878585; float:left; margin-right:20px;} .xiangqy_xuanzz ul li:last-child{ margin-right:0px;} .xiangqy_xuanzz ul li select{ height:33px; width:158px; border:none; padding-left:5px; font-size:14px; color:#333; line-height:33px;} .xiangqy_jis{ text-align:center; margin-top:20px; } .xiangqy_jis_ann{ height:35px; line-height:35px; background:#ff6600; color:#FFF; border:none; border-radius:3px; width:300px; font-size:16px;} .jisq_baoj{ width:799px; margin:0 auto; padding-left:175px; margin-top:10px; font-size:14px !important; } .jisq_baoj .xiangqy_baoj_wenz{ font-size:18px; color:#595757; letter-spacing:3px; margin-bottom:10px !important; height:24px !important; line-height:24px !important;} .jisq_baoj .xiangqy_baoj_wenz .jisq_yusbj{ color:#ff4400; font-size:16px; padding-right:3px;} .jisq_baoj .xianqy_jisqbj_tix{ color:#9fa0a0; font-size:14px; height:20px; line-height:20px;} .xiangqy_jisq_qitlj{ height:24px; margin-bottom:0px !important; padding-top:3px;margin-left:-120px;} .xiangqy_jisq_qitlj a{ height:24px;color:#ff4400 !important; line-height:15px;margin-right:25px; padding-bottom:0px !important; } .xiangqy_jisq_qitlj a:hover {border-bottom: 1px solid #ff4400 !important;} .xiangqy_zhongjru{ background:#fff6f1;margin-top:20px;margin-bottom:10px;margin-left:auto;margin-right:auto; color:#ff4400; padding-left:30px; padding-top:6px; padding-bottom:10px; font-family:"微软雅黑", "黑体", Arial; } .xiangqy_zhongjru .xiangqy_zhongjru_list{ font-size:16px !important; margin-bottom:5px;} .xiangqy_zhongjru .xiangqy_zhongjru_list div{ float:left; width:150px; margin-right:15px; line-height:1.8em;} .xiangqy_zhongjru .xiangqy_zhongjru_list a{ color:#ff4400; text-align:left; height:24px !important; line-height:24px !important;} .xiangqy_zhongjru .xiangqy_zhongjru_list a:hover{border-bottom:1px solid #ff4400;} /*根据滚动位置显示我要获取报价样式(公司列表页,咨询详情页使用)*/ .scroll{position:relative;z-index:1;} /*资质管家首页改版2016-10-14郭雅南*/ .banner-menu{ height:98px;} .banner-menu ul{padding:5px 0;} .banner-menu ul li{ width:176px; padding-left:10px; border-right:1px solid #d5d4d4; height:84px; float:left; } .jingzbj{ background:url(/images/jingzbj.gif) no-repeat right; background-position:123px 25px; } .duojcy{ background:url(/images/guojcy.gif) no-repeat right; background-position:98px 28px;} .yuanmjj{ background:url(/images/yuanmjj.png) no-repeat right; background-position:105px 28px; border:none !important; } .banner-menu ul li h2{ font-size:16px; color:#333; margin-bottom:8px; font-weight:400; padding-top:5px;} .banner-menu ul li span{ color:#666; font-size:13px; line-height:1.6em; letter-spacing:2px;} .special-text{ color:#ff4400 !important;} /*首页资质和资质热门城市模块*/ .zzgj-index-modular{ width:1220px; margin:0 auto;} .modulat-title{ font-size:20px; color:#ff4400; margin-bottom:15px; padding-left:5px;} .modulat-daibgs{ width:800px; margin-top: 40px; float:left;} .service-gongs{ width:283px; border-right:1px solid #d5d4d4; height:150px; position:relative; float:left;} .service-gongs:nth-child(3n+3){ border:none; width:284px;} .service-tuig-icon{ width:49px; height:47px; z-index:-2; background:url(/images/service-icon.png) no-repeat; text-indent:-9999px; position:absolute; top:0; right:0;} .service-gongsxx{ padding:10px; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; width:280px; margin:0 auto; position:absolute; top:15%;} .service-gongsxq-logo{ float:left; margin-right:10px;} .service-gongsxq{ float:left;} .service-gongsxq h2{ float:left; width:192px; overflow: hidden;text-overflow: ellipsis;white-space: nowrap;} .service-gongsxq h2 a{ font-size:16px; color:#333333; font-weight:400;} .service-gongsxq h2 a:hover{ color:#0088DB;} .service-gongsxq p{ font-size:13px; color:#666666; margin-top:5px; clear:both;} .zzgj_index_dabgs{ width:110px; line-height:30px; margin-top:10px;} .modulat-index-city{float:right; } .modulat-index-city-list{ font-size:13px; color:#666;} .modulat-index-city-list ul li{ color:#666; width:123px; margin:0 auto; height:37px; line-height:37.5px; float:left; text-align:center;} .modulat-index-city-list ul li a{ color:#666;} .modulat-index-city-list ul li a:hover{ color:#ff4400;} /*首页资质订单和客户评价*/ .modulat-order-list{ padding-bottom:5px;} .modulat-order-list table{border:none;} .modulat-order-list table tr th{ border:none; border-bottom:1px solid #fec7b6; height:43px; line-height:43px; color:#ff5e23; font-size:14px; font-weight:400;} .modulat-order-list table tr{ border:none; height:36px; text-align:center; font-size:14px;} .modulat-order-list table tr td{ border:none;} .modulat-order-list table tr td:nth-child(3n+3),.modulat-order-list table tr td:nth-child(5n+5){ font-size:14px;} .modulat-order-list table tr:last-child{ border:none; padding-bottom:5px;} /*.modulat-evaluate-list ul li{ height:88px; border-bottom:1px solid #d5d4d4;font-size:14px; width:370px; margin:0 auto; padding-left:20px; padding-top:18px; padding-right:13px;} .modulat-evaluate-list ul li .modulat-evaluate-icon{ float:left; margin-right:13px; position:relative; top:6px;} .modulat-evaluate-list ul li p{ line-height:1.8em;}*/ /*首页专业报道*/ .modulat-report-list ul li{ width:610px; text-align:center; font-size:16px; color:#666; float:left; margin-bottom:20px; height:100px;} .modulat-report-list ul li p{position:relative; top:7px;} .modulat-report-list ul li a{color:#666;} /*首页标题*/ .moudular-index-title{ width:1220px; margin:0 auto; margin-top:20px;} .moudular-index-border{ box-shadow:0 0 10px rgba(255, 68,0, 0.3);} .moudular-index-title .modular-index-title-left{ float:left; width:850px; margin-top:25px;} .moudular-index-title .modular-index-title-right{ float:left; width:370px; margin-top:25px;} /*客户评价滚动*/ @-webkit-keyframes scrollText1{ 0%{transform:translateY(0)} 10%{transform:translateY(-100px)} 20%{transform:translateY(-200px)} 30%{transform:translateY(-300px)} 40%{transform:translateY(-400px)} 50%{transform:translateY(-500px)} 60%{transform:translateY(-600px)} 70%{transform:translateY(-700px)} 80%{transform:translateY(-800px)} 90%{transform:translateY(-900px)} 100%{transform:translateY(-1000px)} } @keyframes scrollText1{ 0%{transform:translateY(0)} 10%{transform:translateY(-100px)} 20%{transform:translateY(-200px)} 30%{transform:translateY(-300px)} 40%{transform:translateY(-400px)} 50%{transform:translateY(-500px)} 60%{transform:translateY(-600px)} 70%{transform:translateY(-700px)} 80%{transform:translateY(-800px)} 90%{transform:translateY(-900px)} 100%{transform:translateY(-1000px)} } .modulat-evaluate-list{position: relative; margin-top: 74px; width: 380px; height:183px;} /*.modulat-evaluate-list ul{-webkit-animation:scrollText1 20s infinite cubic-bezier(1,0,.5,0);animation:scrollText1 20s infinite cubic-bezier(1,0,.5,0)} .modulat-evaluate-list ul:hover{animation-play-state:paused;-webkit-animation-play-state:paused} *//*企业寻证页面2016-10-25郭雅南*/ .qiyxz-content{ padding:40px 50px; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; background:#FFF; margin-bottom:20px; } .qiyxz-content .qiyxz-hs{ height:40px; font-size:16px; color:#ff4400; background:url(../../Images/qiyxz-hs.gif) no-repeat; width:215px; text-align:center; line-height:30px;} .qiyxz-porcess{ padding:20px 0px; border-bottom:2px solid #f3f3f3; padding-bottom:40px; } .qiyxz-porcess ul li{ float:left; height:30px; color:#666; font-size:14px; width:200px; padding-left:5px;} .qiyxz-porcess ul li img{ vertical-align:middle; margin-right:6px;} .porcess1{ padding:35px 0; font-size:16px; color:#666;} .porcess1 span{ font-size:14px; color:#999; margin-left:20px;} .qiyxz-demandfill{ padding-left:25px;} .qiyxz-demandfill ul li{ color:#666666; font-size:14px; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; clear:both; position:relative;} .qiyxz-demandfill ul li .regtlx{ margin-right:10px; float:left; width:75px; text-align:right;} .required{ font-size:14px; color:#F00; font-weight:bold; line-height:36px; position:relative; top:2px; padding-right:8px;} .qiyxz-btn{ height:36px !important; line-height:36px !important; float:left; width:300px; border:1px solid #dddddd !important; margin-bottom:15px;} span#error_place{display:inline-block;height:18px;line-height:35px;color:red;margin-left:85px;} /*li.li_special_need span#error_place {margin-left:85px;}*/ .qiyxz-drop-down{ width:146px; margin-right:10px;} .qiyxz-drop-down option{ padding-left:10px;} .smsId2{ width:110px; float:left; position:absolute; height:32px;!important; border:none; border-radius:5px; font-size:13px; padding:0 1px; top:2px; left:273px;} .smsId2:hover {background-color:#ff4400;color:white;} .qiyxz-btn-submit{ height:40px; border:none !important; font-size:16px; text-align:center;} /*弹幕*/ .popover-qiyxz{ background:#FFF; border-radius:5px; height:305px; position:fixed; top:50%;} .qiyxz-close{ position:relative; top:20px !important; left:-20px !important; } .qiyxz-xuqfbcg{ font-family:"微软雅黑", "Arial Unicode MS", "黑体"; font-size:32px; letter-spacing:2px;} .qiyxz-tank_wenz{ margin-top:10px;} .qiyxz-tank_wenz p{ font-size:18px !important; height:auto !important; line-height:2em !important; text-align:center; color:#666;} .qiyxz_tk_btn input{ padding:10px 120px !important; margin-right:0px !important; font-family:"微软雅黑", "Arial Unicode MS", "黑体"; font-size:22px; letter-spacing:1px;} /*/*2016-11-07资质管家首页改动样式*/ .mfhqbj2{ font-size:18px; font-family:"微软雅黑", "黑体", Arial; color:#ff4400; height:40px; line-height:40px !important; border-bottom:1px solid #ff4400; text-align:left; padding-left:23px; position:relative;} .mfhqbj2 img{ vertical-align:text-bottom; float:left;} .mfhqbj2 .huoqbj_title2{ float:left; padding-left:10px;} .mfhqbj2 .index-woyxz{ float:right; padding-right:10px; font-size:14px;} .mfhqbj2 .index-woyxz a{ color:#ff4400;} .mfhqbj2 .index-woyxz a:hover{ color:#ff4400;} .zzgj_jianzzzbj .index-more-ziz{ padding-top:15px;} .zzgj_jianzzzbj .index-more-ziz a{ font-size:15px; color:#ff4400; padding:0 19px;} .zzgj_jianzzzbj .index-more-ziz a:first-child{ font-size:16px; color:#666;} .index-head-ziz{ padding-top:15px;} .index-head-ziz a{ font-size:15px; color:#ff4400; padding:0 10px;} .index-zizlx{width:1220px; overflow:hidden;} .index-zizlx ul li{width:280px;height:330px;float:left;margin:0 33px 0px 0;position:relative;overflow:hidden;cursor:pointer;} .index-zizlx ul li:nth-child(4n+4){ margin-right:0px;} .index-zizlx .txt{width:280px;height:40px; background:rgba(255,68,0,0.85);position:absolute;left:0;bottom:0;color:#fff;font-family:"微软雅黑", "Arial Unicode MS", "黑体";} .index-zizlx .slide-title a{font-size:16px;font-weight:100;height:40px;text-align:center;line-height:40px; margin-bottom:25px; float:none; text-align:center;border:none} .txt a{ width:123px; text-align:center; text-decoration:none; height:30px; line-height:30px; font-size:14px; border:1px solid #ffffff; border-radius:3px; color:#FFF; display:inline-block; margin-left:10px; margin-bottom:10px; float:left; text-align:center;} .index-gongcsj a{ float:none; margin:0px; padding:0px;margin-bottom:20px;} .index-gongcsj { text-align:center !important;} .index-fangwgl a{ float:none; margin:0px; padding:0px; margin-bottom:20px;} .index-fangwgl{ text-align:center;} .index-chengsgh a{ float:none; margin:0px; padding:0px; margin-bottom:20px;} .index-chengsgh{ text-align:center;} /*20161114资质百科*/ .zizbk-content{padding:40px 30px;font-family:"微软雅黑","Arial Unicode MS","黑体";background:#FFF;} .zizbk_zizfl{margin-bottom:30px} .zizbk_zizfl .zizfl_title{font-size:18px;color:#f40;border-bottom:1px solid #f40;padding-bottom:5px;padding-left:10px;margin-bottom:10px} .zizbk_zizfl .zizfl_title img{vertical-align:text-bottom;padding-right:10px} .zizfl-list li{float:left;font-size:15px;color:#666;width:193px;float:left;padding:0px 16px 0 18px;line-height:2.6em;position:relative} .zizfl-list li a{color:#666} .zizfl-list li a:hover{color:#f40} .zizbk_zizfl_xiangq{margin-bottom:30px} .zizbk_zizfl_xiangq .zizfl_xiangq_title{border-bottom:1px solid #f40;padding-left:15px;margin-bottom:10px} .zizbk_zizfl_xiangq .zizfl_xiangq_title span{background:url(/images/baik_zy-bh.png) no-repeat;color:#FFF;padding:5px 0;font-size:14px;display:inline-block;width:150px;text-align:center} .zizfl_xiangq_list li{font-size:15px;color:#666;width:193px;float:left;padding:0px 16px 0 18px;} .zizfl_xiangq_list li a{ display:block; padding-top:18px; width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;} .zizbk_rmbq{border:1px solid #f40} .zizbk_rmbq .zizbk_rmbq_title{padding:8px 0;border-bottom:1px solid #f40;padding-left:15px;margin-bottom:10px;font-size:16px} .zizbk_rmbq .zizbk_rmbq_title img{vertical-align:text-bottom;padding-left:10px} .zizbk_rmbq .zizbk_rmbq_list{padding-left:15px} .zizbk_rmbq .zizbk_rmbq_list li{float:left;padding:10px 25px 10px 0;display:block;font-size:14px} .zzbk_hot{background:url(/images/zzbk-hot.png) no-repeat;display:inline-block;width:30px;height:20px;vertical-align:middle;position:absolute;top:-2px} /*2016-12-08-安证信息——郭雅南*/ .anz_right_title{ font-size: 24px; color: #333333; height: 40px; line-height: 36px; font-family:"微软雅黑","Arial Unicode MS","黑体"; font-weight: bold; letter-spacing: 2px; } .anz_right_title span{ font-size: 16px; padding:2px 5px; background: #73ccd4; color: #ffffff; margin-left: 15px; position: relative;top: -2px; font-weight: 100; } /*.details-nav ul li{ float: left; }*/ .anz_price{ height: 40px; background: #f5f5f5; /*padding-top: 8px;*/ /*margin: 10px 0;*/ } .anz_price .an_jiag_number{ height: 40px; line-height: 32px; color: #ff4400; font-size: 18px;} .anz_price .an_jiag_number span{ font-size: 24px; padding:0 5px; } .anz_zixl{ font-family: "微软雅黑","黑体",Arial; height: 50px; line-height: 50px; font-size: 14px; color: #999999;margin-left:12px;} .anz_btn_zix{ margin-top: 10px; padding-left: 75px;} .anz_btn_zix input{ background: #ff4400;color: #ffffff; font-size: 16px; padding: 0 60px !important; height: 30px;line-height: 30px; } .anz_operate .anz_left_link a{ border-bottom: 0px !important; padding-left: 37px;} .anz_operate .anz_left_link a:hover{ text-decoration: underline !important; } .anz_ziying_xinx{ float: left; width: 470px; margin-left: 70px;} .anz_ziying_xinx .anz_ziy_title{ font-size: 30px; color: #ff713e; font-weight:normal; font-family: "微软雅黑","Arial Unicode MS","黑体"; margin-bottom: 8px;} .anz_ziying_xinx .anz_ziy_title .an_ziying{ font-size: 14px; background: #73ccd4; color: #ffffff; padding: 0px 5px; margin-left: 10px; bottom: 3px; } .anz_ziying_xinx .anz_ziy_title img{ vertical-align: middle; margin-left: 10px; } .anz_ziying_xinx p{ line-height: 1.6em; margin-bottom: 10px; font-size: 16px; } .anz_ziying_xinx .anz_zixrx{ color: #ff4400; font-size: 18px; } .anz_ziying_img{ float: right; padding-right: 60px; padding-top: 30px;} .anz_xinx_jies{ padding-top: 30px; padding-bottom: 10px; } .anz_xinx_jies .anz_jies_title{left: -20px; margin-bottom: 30px; } .anz_xinx_jies .anz_jis_l{ float: left; padding-left: 135px; } .anz_xinx_jies .anz_jis_r{ float: right; width: 380px; margin-right: 90px; } .anz_xinx_jies .anz_jis_r h4{ font-size: 30px; color: #ff4400; margin-bottom: 10px; } .anz_xinx_jies .anz_jis_r p{ font-size: 16px; line-height: 1.8em; } .anz_xinx_jies .anz_jis_r p span{ color: #ff4400; } .anz_bibtj{ border-bottom: 1px solid #eeeeee; padding-bottom: 30px; } .anz_bibtj span img{ float: left; padding-top: 50px; margin-left: 90px; margin-right: 50px; padding-right: 0px;} .anz_bibtj:last-child{ border-bottom: 0px; } .anz_bibtj .anz_bibtj_text{ float: left; padding-top: 50px; } .anz_bibtj .anz_bibtj_text h4{ font-size: 20px; color: #666666; margin-bottom: 10px; } .anz_bibtj .anz_bibtj_text p{ font-size: 16px; line-height: 1.8em; } .anz_bibtj img{ float: right; padding-top: 30px; padding-right: 80px; } .an_banlzq_xiangq{ padding-top: 30px; } .an_banlzq{ padding-bottom: 200px; margin-bottom: 20px; background: url(/Images/banlzq_bottom.gif) no-repeat; background-position: 0 100%; } .an_banlzq .an_banlzq_xiangq{ text-align: center;margin-bottom: 10px;} .an_banlzq .an_banlzq_xiangq h4{ font-size: 22px; color: #ff4400; font-weight: bold; margin-bottom: 15px; } .an_banlzq .an_banlzq_xiangq p{ margin-bottom: 20px; font-size: 16px; } .anz_suoxcl .anz_suoxcl_l{ float: left; padding-top: 30px; padding-left: 150px; } .anz_suoxcl .anz_suoxcl_r{ float: right; padding-top: 35px; padding-right: 120px; } .anz_suoxcl .anz_suoxcl_r p{ font-size:16px; line-height: 2em; color: #666666;} .anz_diansbt{height: 54px;} .anz_yous_list{ padding-top: 35px; margin-left: 80px; border-bottom: 1px solid #eee; margin-right: 80px; padding-left: 10px; padding-bottom: 30px; } .anz_yous_list img{ float: right;} .anz_yous_list .anz_yous_list_text{ float: left; width: 480px; font-size: 16px; } .anz_yous_list .anz_yous_list_text h4{ font-size: 20px; color: #ff4400; margin-bottom: 10px; } .anz_yous_list .anz_yous_list_text p{ line-height: 1.8em; } .anz_renmwt{ margin-top: 30px; box-shadow:0 0 10px rgba(251, 94,36, 0.3); padding-bottom: 45px; } .anz_renmwt img{ margin-bottom: 45px; } .anz_renmwt p{ padding-left: 25px; line-height:2em; font-size: 16px; width: 940px; } /*公司注册页面*/ .zhuc_price{ background: #f5f5f5; /*padding: 10px 0 10px 1px;*/ margin: 6px 0; } .zhuc_price p{ font-size: 14px; color: #666666; } .zhuc_price p:nth-child(2n+1){ padding-bottom: 3px;margin-left:12px; } .zhuc_price p span{ text-decoration:line-through; padding-left: 10px; } .zhuc_price p .zhuc_price_text{ font-size: 26px; color: #ff4400; text-decoration: none; } .zhuc_jies{ padding-top: 30px; } .zhuc_dedcl .zhuc_dedcl_l{ padding-top: 35px; } .zhuc_dedcl .zhuc_dedcl_l p{ line-height: 2.4em; font-size: 16px;} .zhuc_dedcl{ padding-bottom: 35px; } .zhuc_dedcl .zhuc_dedcl_r{ padding-top: 35px; } .anz_suoxcl .zhuc_suoxcl_r{ padding-top: 45px !important; } .anz_suoxcl .zhuc_suoxcl_r p{ line-height: 2.4em; } .zhuc_remwt_list{ border-bottom: 1px solid #eeeeee; padding-bottom: 20px; width: 850px; margin: 0 auto; } .zhuc_remwt{ padding-bottom: 40px; } .zhuc_remwt img{ margin-bottom: 40px; } .zhuc_remwt_list:last-child{ margin-top: 20px; border-bottom: 0px; padding-bottom: 0px;} /*公司注册提交成功页面2017-07-10郭雅南*/ .zhuce_success{width:1218px;margin-top:20px;background:#ffffff;border:1px solid #dedede} .zhuce_success .zhuce_success_liuc{padding:30px 0;text-align:center;border-bottom:1px solid #dedede} .zhuce_success .zhuce_success_tel{height:400px;padding:100px 0 0 135px;background:url(/Images/zhuce_success_img.jpg) no-repeat;background-position:825px 60px;border-bottom:1px solid #dedede} .zhuce_success .zhuce_success_tel h2{margin-top:45px;font-size:24px;font-weight:400;color:#ff4400} .zhuce_success_tel h2 span{padding:10px 20px;color:#ffffff;background:#ff4400;border-radius:80px} .zhuc_success_cue{padding:80px 0 60px 120px;font-size:20px;color:#666666;line-height:1.8em;text-align:center} .zhuc_success_cue p{text-align:left;margin-bottom:60px} .zhuc_success_cue i{padding:0 5px;font-size:24px;font-style:normal;color:#ff4400} .zhuc_success_cue span{color:#ff4400} .zhuc_success_recommend{width:1092px;padding:30px 64px} .zhuc_success_recommend span{float:left;font-size:16px;color:#ff4400} .zhuc_success_recommend ul{float:left;width:820px;padding-left:40px;margin:0px} .zhuc_success_recommend ul li{float:left;width:410px;margin-bottom:10px;font-size:14px;list-style:none} .zhuc_success_recommend ul li a{color:#666666;border-bottom:1px solid #999999} .zhuc_success_recommend ul li a:hover{color:#ff4400} .clear{clear:both} /*二维码 20180815*/ .ServiceAR{position:fixed;top:-40px;right:3%;z-index:999} .ServiceAR_ico{width:39px;height:39px;position:relative;top:68px} .ServiceAR .ServiceAR_img{position:absolute;left:-115px} #city-dingw .city_qieh{padding:0 5px;color:#f40!important} #head{margin:0 auto;padding:16px 0 13px 0;width:1220px} #head .head_left{float:left;margin-top:-8px} #head .head_left a{display:inline-block} #head .head_left .zzgj_logo{margin-right:23px} #head .head_middle{float:left;margin:0 auto;margin-top:16px;margin-left:140px;width:458px;height:44px;border:1px solid #e6e6e6} .head_middle .head_middle_mfzfw,.head_middle_option,.head_middle_sous{float:left} .head_middle .head_middle_mfzfw{float:left;width:76px;height:42px;background:#fff;color:#666;text-align:center;font-size:14px;line-height:42px} .head_middle .head_middle_option{float:left;width:328px;min-height:44px;color:#333;line-height:44px} .head_middle .head_middle_option:hover ul{display:block} .head_middle_option .option_on{display:inline-block;padding:5px 0 8px 20px;width:328px;height:42px;font-size:14px;line-height:34px;background:url(/images/down_baoj.png) no-repeat;background-position:95% 50%;cursor:pointer;appearance:none;-moz-appearance:none;-webkit-appearance:none} .head_potion_list{position:absolute;z-index:999;display:none;width:328px;border:0;background:#fff} .head_potion_list option{padding-left:20px;color:#333;line-height:2.6em} .head_potion_list option:hover{background:#eee;cursor:pointer} .head_middle .head_middle_sous{position:relative;top:9px;float:left;width:52px;height:22px;background:url(/images/index_search_icon.png) no-repeat;background-position:50% 50%;color:#fff;line-height:22px;cursor:pointer;text-align:center;border-left:1px solid #e5e5e5} /*.head_right{width:202px;float:right;height:73px;background:url(/images/index_head_phone.png) no-repeat;overflow:hidden} .head_right .head_consultR{position:relative;top:-3px;width:100px;margin-left:90px;font-size:14px;color:#f44d3b} .head_right .head_consultR span{display:inline-block;width:100%;height:16px;line-height:17px;font-size:13px;color:#f40} .head_right .head_consultL{margin-left:90px;font-size:14px;color:#fff}*/ .nav_box{margin:0 auto;width:1220px} .pull_nav{position:relative;float:left;display:block} .pull_nav_title{display:block;width:220px;height:43px;background:#f40;color:#fff;text-align:center;font-size:16px;line-height:43px} .nav_box .pull_nav .pull_box{position:absolute;z-index:2;width:220px;background:url(/Images/index_nav_bg.png)} .pull_nav .pull_box .pull_box_nav_list{width:220px;height:400px} .pull_box .pull_box_nav_list .pull_box_nav_li{z-index:2;display:block;width:220px;height:57px;color:#fff;font-size:16px} .pull_box_nav_li span{position:relative} .pull_box_nav_li span i{position:absolute;top:50%;left:194px;width:6px;height:11px;margin-top:-5px} .pull_box .pull_box_nav_list .pull_box_nav_li:hover{border:1px solid #ccc;border-right:0;background:#fff;cursor:pointer} .pull_box_nav_list li:hover .pull_down{display:block} .pull_box_nav_list li span a{display:inline-block;margin:0 auto;width:220px;padding-left:46px;border-bottom:1px solid #929292;color:#fff;line-height:56px} .pull_box_nav_list .pull_box_nav_li:hover{display:inline-block;width:221px;border:1px solid #ccc;border-right:0;background:#fff;color:#f40;cursor:pointer} .pull_box ul li:hover span a{color:#f40} .pull_box ul li.menuList{border:1px solid #ccc;border-right:0;background:#fff;cursor:pointer} .pull_box ul li.menuList span a{color:#f40} .pull_down{position:absolute;top:0;left:220px;z-index:2;display:inline-block;display:none;width:540px;height:400px;border:1px solid #ededed;border-left:0;background:url(/images/pull_bg.png) #fff no-repeat bottom;cursor:auto} .pull_down ul{padding:0 0 0 30px;width:540px;display:inline-block;} .pull_down ul li{clear:both;padding-top:20px} .pull_down ul li label a{color:#555} .classify-detail-box{float:left;width:510px} .classify-detail-box a{float:left;display:block;margin-right:50px;padding:0 0 20px 0;width:auto;color:#666;font-size:14px} .classify-detail-box a:hover{color:#f40} .classify-detail-box .gongszy_text{float:left;margin-left:35px;color:#666;font-size:14px} .pull_down .classify-detail-box .classify_detail_link_color{color:#f40!important} .main_menu{float:left;padding-left:20px} .nav_box .main_menu li{float:left;display:inline-block;margin:0 16px;height:40px;font-size:16px;line-height:38px} .nav_box .main_menu li a.on{border-bottom:2px solid#f40;color:#f40} .nav_box .main_menu li a{display:inline-block;color:#333;text-decoration:none} .nav_box .main_menu li a:hover{border-bottom:2px solid#f40;color:#f40} .nav_58logo,.nav_58logo a{display:inline-block;margin-left:15px;height:47px;line-height:47px} .nav_58logo a img{position:relative;top:25%;display:inline-block} /*������ά��20180717������*/ .header_top_right .head_AR{ position:relative;top:8px; float:left; height:18px;padding-right:3px; border-right: 1px solid #666;} .head_AR span{position:relative; z-index:2; width:65px;height:35px; margin-left:13px;line-height:18px; background: url(/images/down_baoj.png) no-repeat; background-position: 85% 25%; cursor:pointer; } .head_AR #head_AR_con{position:absolute;top:26px;left:-200px;display:none;width:534px;padding:20px 20px 20px 20px;box-shadow:2px 2px 2px #eee;background:#fff} #head_AR_con ul li{box-sizing:border-box;-webkit-box-sizing:border-box;float:left;width:247px;height:160px;line-height:inherit;border-bottom:1px solid #e6ebf5;border-right:1px solid #e6ebf5} #head_AR_con ul li div{float:left;padding-left:20px} #head_AR_con ul li div p{font-size:16px;text-align:center} .head_AR_img{float:left;background:url(/Images/head_AR_img.png) no-repeat} #head_AR_con .head_AR_box{padding-bottom:15px} #head_AR_con .head_AR_box2,#head_AR_con .head_AR_box4,#head_AR_con .head_AR_box6{border-right:0} #head_AR_con .head_AR_box3,#head_AR_con .head_AR_box4,#head_AR_con .head_AR_box5,#head_AR_con .head_AR_box6{height:180px;padding:18px 0 10px 0} #head_AR_con .head_AR_box5,#head_AR_con .head_AR_box6{border-bottom:0} .head_AR_box .head_AR_img,.head_AR_box3 .head_AR_img,.head_AR_box5 .head_AR_img{position:relative;top:4px;width:128px;height:128px;margin-left:5px;background-position:0 0} .head_AR_box2 .head_AR_img,.head_AR_box4 .head_AR_img,.head_AR_box6 .head_AR_img{position:relative;top:-4px;width:139px;height:139px;margin-left:20px;background-position:-141px 0} .head_AR_box3 .head_AR_img{background-position:0 -141px} .head_AR_box4 .head_AR_img{background-position:-141px -144px} .head_AR_box6 .head_AR_img{background-position:-141px -294px} .head_AR_box div,.head_AR_box2 div,.head_AR_box4 div,.head_AR_box6 div{padding-top:49px} .head_AR_box3 div,.head_AR_box5 div{padding-top:49px} .head_AR_box3 div p,.head_AR_box5 div p{line-height:20px} #head_AR_con .head_AR_box6 div{position:relative;left:10px;padding-left:1px} .header_top_right ul li a img{ display:inline-block; width:25px; height:12px; position:relative; left:5px; top:-5px;} .header_top_right .head_jianzqy{position:relative;top:8px;float:left;margin-right:15px;width:108px;height:18px;line-height:18px;background:url(/images/down_baoj.png) no-repeat;background-position:85% 50%;border-right:1px solid #666} .header_top_right .head_jianzqy2{margin-left:15px} .head_jianzqy:hover .head_jianzqy_content{display:block} .head_jianzqy_content{position:absolute;top:16px;left:-9px;display:none;padding-left:8px;padding-top:10px;width:109px;border-bottom:1px solid #ccc;background:#ededed;color:#666} .hot_ico{display:inline-block;width:24px;height:16px;background:url(/Images/index_nav_hot.png) no-repeat;margin-bottom: 9px;} .new-ico{position:relative;top:-2px;left:-22px; display:inline-block;width:24px;height:16px;background:url(/Images/iconimg/new.png) no-repeat;margin-bottom: 9px;} .hot-ico{float:right;display: inline-block;width: 20px;height: 25px;background: url(/Images/iconimg/hot.png) no-repeat;margin-top: -2px;background-size: 20px 25px;} /*�绰�޸�*/ .head_right{float:right;width:235px;} .head_right .head_rightCon{width:235px} .head_rightCon .head_right_tel{float:left;width:75px;font-size:12px;color:#666} .head_rightCon .head_right_tel img{width:36px;margin:0 auto;display:block;margin-bottom:5px} .head_rightCon .head_right_telList{float:left;width:145px;padding-left:15px;font-size:18px;font-weight:700;color:#f40} .head_rightCon .head_right_telList span{display:inline-block} /*ר��ҳ��ͷ����ʽ�޸�*/ #head .head_left_zt{float:left;margin-top:14px;} /*���ʹܼҵ����������λ*/ .head_Adv{padding:0 0 0 30px;width:540px;height:256px;display:inline-block;background:#fff} .head_Adv .head_Adv_Tit{font-size:20px;color:#f40} .head_Adv .head_Adv_Box{float:left;width:100px;height:100px;margin-left:64px; margin-top:10px;} .head_Adv .head_Adv_Box2{margin-left:10px} .head_Adv .head_Adv_Box img{width:100%;height:100%} /*�ٶ�վ��������������*/ #bdcs {display:none;} /*Header��������ʽ*/ .div-sr-container{height:43px} .div-select {height: 43px;border-left:1px solid #e6e6e6;cursor: default;} .div-select,.div-option{padding:0px 10px} .div-options{display:none} .div-option{border-bottom:1px solid#e6e6e6;border-left:1px solid#e6e6e6;border-right:1px solid#e6e6e6;background-color:white;opacity:1;height:35px;line-height:35px;z-index:99999;position:relative} .div-option:hover {background-color:#ededed} .div-option-n{cursor:pointer} .div-option-custom{cursor:pointer;} .span-sr{padding-left:10px} .div-sr-img{float:left;width:17px;height:17px;margin:6px 0px} .div-sr-img img{float:left} .input-sr {display: none;border: none;width: 100%;height: 42px;padding: 0px 10px;border-left: 1px solid#e6e6e6;} /* flex 兼容处理 设置在弹性容器上的属性 */ /*flex-direction属性决定主轴的方向(即项目的排列方向)。*/ /*默认情况下,项目都排在一条线(又称"轴线")上。flex-wrap属性定义,如果一条轴线排不下,如何换行。*/ /*justify-content属性定义了项目在主轴上的对齐方式。*/ /*align-items属性定义项目在交叉轴上如何对齐。*/ /*align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。*/ /* 设置在弹性项目上的属性 */ /* flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。 以下是兼容样式写法示例,可根据需要修改属性值。 */ /*align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。*/ /* 以上是对系统的样式做兼容处理函数 以下是自定义公共函数 */ /*order属性定义项目的排列顺序。数值越小,排列越靠前,默认为0。以下是兼容样式写法示例,可根据需要修改属性值。*/ /*flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。以下是兼容样式写法示例,可根据需要修改属性值。*/ /*flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。以下是兼容样式写法示例,可根据需要修改属性值。*/ .position_center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); } /* 自有版面常用类 */ /* 资质管家首页获取用户填写的地址和手机号板块 */ /* banner */ .zzdb_top_section_nav_wrap { height: 124px; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 25px 0; } .zzdb_top_section_nav_wrap a { width: 362px; height: 76px; background: url('../../Images2021/home/bg1.png') no-repeat; color: #333; font-size: 18px; padding-left: 137px; line-height: 76px; position: relative; } .zzdb_top_section_nav_wrap a::after { content: ''; display: block; position: absolute; left: 83px; top: 18px; width: 38px; height: 38px; background: url('../../Images2021/home/jlt.png') no-repeat -20px -19px; } .zzdb_top_section_nav_wrap a:nth-child(2) { background: url('../../Images2021/home/bg2.png') no-repeat; } .zzdb_top_section_nav_wrap a:nth-child(2)::after { background: url('../../Images2021/home/jlt.png') no-repeat -18px -86px; } .zzdb_top_section_nav_wrap a:nth-child(3) { background: url('../../Images2021/home/bg3.png') no-repeat; } .zzdb_top_section_nav_wrap a:nth-child(3)::after { background: url('../../Images2021/home/jlt.png') no-repeat -18px -147px; } .zzdb_top_section_nav_wrap a:nth-child(4) { background: url('../../Images2021/home/bg4.png') no-repeat; } .zzdb_top_section_nav_wrap a:nth-child(4)::after { background: url('../../Images2021/home/jlt.png') no-repeat -17px -206px; } .zzdb_top_section_nav_wrap a:hover { background: url('../../Images2021/home/bg_hover.png') no-repeat; color: #fff; } .zzdb_top_section_nav_wrap a:hover::after { background-position-x: -85px; } @-moz-keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } @-o-keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } @-webkit-keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } @keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } .mask { position: fixed; top: 0; bottom: 0; right: 0; left: 0; background: rgba(0, 0, 0, 0.7); z-index: 9998; transform: translateZ(99px); -ms-transform: translateZ(99px); -moz-transform: translateZ(99px); -webkit-transform: translateZ(99px); -o-transform: translateZ(99px); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .mask .box_modal { background-color: #fff; width: 570px; box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12); border-radius: 4px; border: 1px solid #E6E6E6; } .mask .box_modal .box_head { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background: #F8F8F8; padding: 0 26px; } .mask .box_modal .box_head .box_title { line-height: 52px; font-size: 18px; color: #333333; } .mask .box_modal .box_head svg { cursor: pointer; width: 19px; height: 19px; } .mask .box_modal .box_content { padding: 15px 70px 40px 75px; text-align: left; } .mask .box_modal .box_content .service_num { font-size: 14px; font-weight: 400; color: #999999; line-height: 20px; } .mask .box_modal .box_content .service_num span { color: #ff6a00; } .mask .box_modal .box_content .service_type_wrap { width: 320px; } .mask .box_modal .box_content .service_type_wrap p { margin-top: 7px; font-size: 20px; font-weight: 400; color: #000000; line-height: 28px; } .mask .box_modal .box_content .service_type_wrap input[type='radio'] { /* opacity: 0; */ display: none; } .mask .box_modal .box_content .service_type_wrap input[type='radio'] + label { margin-top: 11px; margin-right: 10px; display: inline-block; font-size: 16px; padding: 5px 12px; font-weight: 400; color: #515F7B; border: 1px solid #E7EBF4; cursor: pointer; } .mask .box_modal .box_content .service_type_wrap input[type='radio']:checked + label { color: #ff6a00; border-color: #ff6a00; } .mask .box_modal .box_content .input_wrap, .mask .box_modal .box_content .code_li { position: relative; } .mask .box_modal .box_content .input_wrap svg, .mask .box_modal .box_content .code_li svg { position: absolute; width: 16px; height: 16px; left: 15px; top: 11px; fill: #999; } .mask .box_modal .box_content .input_wrap > svg { top: 32px; } .mask .box_modal .box_content .phone_reg_form_input > svg { top: 45px; } .mask .box_modal .box_content .phone_reg_form_input .input_arrow_icon_wrap svg { fill: #999; top: 45px; right: 10px; left: auto; } .mask .box_modal .box_content .phone_reg_form_input .input_arrow_icon_wrap svg:last-child { display: none; } .mask .box_modal .box_content .district-select-box { background-color: #fff; position: absolute; left: 0; right: -1px; z-index: 1; border: 1px solid #e4e4e4; font-size: 14px; transition: all .3s; } .mask .box_modal .box_content .district-select-box > div { width: 50%; height: auto; text-align: center; } .mask .box_modal .box_content .district-select-box > div strong.district-on { border-bottom: 1px solid #ed6d00; } .mask .box_modal .box_content .district-select-box > div strong { display: block; line-height: 40px; border-bottom: 1px solid #dedede; } .mask .box_modal .box_content .district-select-box > div ul { height: 205px; overflow: scroll; } .mask .box_modal .box_content .district-select-box > div ul li { line-height: 34px; text-align: center; cursor: pointer; padding: 0; } .mask .box_modal .box_content .sms_phone, .mask .box_modal .box_content .sms_location { margin-top: 33px; width: 424px; height: 40px; background: #EFEFEF; border: 1px solid #e6e6e6; padding-left: 51px; color: #333; } .mask .box_modal .box_content .sms_phone { margin-top: 20px; } .mask .box_modal .box_content .sms_location { cursor: pointer; } .mask .box_modal .box_content .code_li { margin-top: 20px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .mask .box_modal .box_content .code_li .ipt_code { width: 270px; height: 40px; background: #EFEFEF; border: 1px solid #e6e6e6; padding-left: 51px; color: #333; } .mask .box_modal .box_content .code_li .btn_code { width: 138px; height: 40px; border: 1px solid #FF6A00; font-size: 14px; color: #FF6A00; background-color: #fff; } .mask .box_modal .box_content .code_li .btn_code:focus { outline: 1px solid #ff6a00; } .mask .box_modal .box_content .btn_form { margin-top: 32px; line-height: 44px; font-size: 16px; font-weight: 500; color: #FFFFFF; width: 424px; background: #FF6A00; border: none; } .mask .box_modal .box_content .btn_form:focus { outline: 1px solid #979797; } .mask .box_modal .box_content .form_tip { margin-top: 21px; } .mask .box_modal .box_content .form_tip p { font-size: 14px; font-weight: 400; color: #999999; line-height: 20px; margin-top: 5px; } .mask .box_modal .box_content_success .success_icon { display: block; width: 75px; height: 75px; margin: 74px auto 27px auto; } .mask .box_modal .box_content_success .success_txt { font-size: 18px; text-align: center; font-weight: 400; color: #000000; line-height: 25px; } .mask .box_modal .box_content_success .contact_soon { font-size: 16px; font-weight: 400; color: #999999; line-height: 22px; margin-top: 11px; text-align: center; margin-bottom: 95px; } .mask .box_modal .box_content_success .service_qr_wrap { border-top: 1px dashed #EAEAEA; padding: 61px 132px 61px 154px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .mask .box_modal .box_content_success .service_qr_wrap .img_wrap { width: 77px; height: 77px; margin-right: 20px; background: #FFFFFF; box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.12); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .mask .box_modal .box_content_success .service_qr_wrap .img_wrap img { width: 73px; height: 73px; } .mask .box_modal .box_content_success .service_qr_wrap p { font-size: 16px; font-weight: 400; color: #000000; line-height: 25px; } /*错误提示 begin*/ .box-tip { z-index: 10001; position: fixed; margin-left: -150px; margin-top: -20px; left: 50%; top: 50%; min-width: 320px; height: 41px; color: #fff; border-radius: 2px; font-size: 14px; text-align: center; background-color: #333333; transform: translateZ(110px); -ms-transform: translateZ(110px); -moz-transform: translateZ(110px); -webkit-transform: translateZ(110px); -o-transform: translateZ(110px); } .box-tip span i { float: left; width: 20px; height: 20px; margin: 10px; background: url("/Images/box/tip.png") no-repeat; background-size: 20px 20px; } .box-tip .box-tip-img { float: left; width: 40px; height: 41px; background-color: #F7BA2C; } .box-tip .box-tip-msg { display: block; padding: 10px 0; font-size: 14px; }