/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul,  li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font-family: "微软雅黑",sans-serif, inherit; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}
body{ font-size:14px; color: #333333;}
h1 { font-size: 20px; /* 18px / 12px = 1.5 */ }
h2 { font-size: 18px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 12px; }

address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */
.hidden{
    display: none;
}

input::-webkit-input-placeholder{
    color:#999999;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#999999;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#999999;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color:#999999;
}
/* 重置列表元素 */
ul, li{ list-style: none; margin: 0px; padding: 0px; }
input:focus{outline:none;}
/* 重置文本格式元素 */
a:link,a:visited,a:active{color:#333333;text-decoration:none;font-size: 14px;}
a:hover{color:#1874ac;}

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after { content: ''; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html { overflow-y: scroll; }
/*超出内容显示省略号*/
.ellipsis{  max-width: 100%;  white-space: nowrap;  text-overflow:ellipsis;  overflow:hidden;  }
/*清除浮动*/
.clearfix {  *zoom: 1;  }
.clearfix:before,
.clearfix:after {  display: table;  line-height: 0;  content: "";  }
.clearfix:after {  clear: both;  }

.badge {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    font-size: 12px;
    text-align: center;
    background-color: #2F4056!important;
    color: #fff;
    border-radius: 2px;
    height: 18px;
    line-height: 18px;
}

body .layui-layer-warn .layui-layer-title{background:#1874ac; color:#fff; border: none;}
body .layui-layer-warn a.layui-layer-close{color:#fff;}
body .layui-layer-warn .layui-layer-content{color:#ff0000;}
body .layui-layer-warn .layui-layer-btn{border-top:1px solid #E9E7E7}
body .layui-layer-warn .layui-layer-btn a{
    background: #fff;
    border-color: #E9E7E7;
    color: #333;
}
body .layui-layer-warn .layui-layer-btn .layui-layer-btn1{
    background: #C9C5C5;
}

.flex {
    display: flex;
}
.jy_between{
    justify-content: space-between;
}

.overflow-hidden{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fl{
    float: left;
}
.fr{
    float: right;
}
.fz12{
    font-size: 12px;
}
.fz14{
    font-size: 14px;
}
.fz16{
    font-size: 16px;
}
.fz18{
    font-size: 18px;
}
.fz20{
    font-size: 20px;
}
a.fz20{
    font-size: 20px;
}
a.underline{
    text-decoration: underline;
}
a.fz18:link,a.fz18:visited,a.fz18:active{
    color:#333333;
    text-decoration:none;
    font-size: 18px;
}
a.fz16:link,a.fz16:visited,a.fz16:active{
    color:#333333;
    text-decoration:none;
    font-size: 16px;
}
.ml10{
    margin-left: 10px;
}
.ml15{
    margin-left: 15px;
}
.ml20{
    margin-left: 20px;
}
.ml30{
    margin-left: 30px;
}
.mr10{
    margin-right: 10px;
}
.mr15{
    margin-right: 15px;
}
.mr20{
    margin-right: 20px;
}
.mr30{
    margin-right: 30px;
}
.mr60{
    margin-right: 60px;
}
.mt5{
    margin-top: 5px;
}
.mt10{
    margin-top: 10px;
}
.mt15{
    margin-top: 15px;
}
.mt20{
    margin-top: 20px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
.mt50{
    margin-top: 50px;
}
.mb10{
    margin-bottom: 10px;
}
.mb15{
    margin-bottom: 15px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.pt10{
    padding-top: 10px;
}
.pt15{
    padding-top: 15px;
}
.pt20{
    padding-top: 20px;
}
.pt30{
    padding-top: 30px;
}

.pb10{
    padding-bottom: 10px;
}
.pb15{
    padding-bottom: 15px;
}
.pb20{
    padding-bottom: 20px;
}
.pb30{
    padding-bottom: 30px;
}
.pb40{
    padding-bottom: 40px;
}

.pl10{
    padding-left: 10px;
}
.pl15{
    padding-left: 15px;
}
.pl20{
    padding-left: 20px;
}
.pl30{
    padding-left: 30px;
}
.pa10{
    padding: 10px;
}
.wd45{
    width: 45px;
}
.wd65{
    width: 65px;
}
.wd30{
    width: 30px;
}
.wd70{
    width: 70px;
}
.wd80{
    width: 80px;
}
.wd90{
    width: 90px;
}
.wd100{
    width: 100px;
}
.wd150{
    width: 150px;
}
.wd200{
    width: 200px;
}
.wd230{
    width: 230px;
}
.wd300{
    width: 300px;
}
.wd400{
    width: 400px;
}
.wd500{
    width: 500px;
}
.wdp100{
    width: 100%;
}
.wdp90{
    width: 90%;
}
.wdp80{
    width: 80%;
}
.wdp70{
    width: 70%;
}
.wdp60{
    width: 60%;
}
.wdp50{
    width: 50%;
}
.wdp40{
    width: 40%;
}
.wdp30{
    width: 30%;
}
.a-left{
    text-align: left;
}
.a-right{
    text-align: right;
}
.a-center{
    text-align: center;
}
a {
    text-decoration: none;
    color: #08acee;

}
.btn-right {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    background-color: #009688;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}
.btn-danger {
    background-color: #FF5722;
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}
.submit_btn_orange {
    background: #f0ad4e;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 5px;
}
.submit_btn_green {
    background: #27AE60;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 5px;
}
.submit_btn {
    background: #1874ac;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 5px;
}
button {
    outline: 0;
}
.bold{
    font-weight: bold;
}
img {
    border: 0;
}
a.blue{
    color: #1874ac;
}
a.blue_16{
    color: #1874ac;
    font-size: 16px;
}
a.red{
    color: #ff0000;
}
.blue{
    color: #1874ac;
}
.red{
    color: red;
}
.blue{
    color: #1874ac;
}
.orange{
    color: #f0ad4e;
}
.yellow{
    color: #fe6b00;
}
.bg_white{
    background: #ffffff;
}
.bg_grey{
    background: #ebebeb;
}
.bg_yellow{
    background: #fe6b00!important;
}
.bg_green {
    background-color: #009688!important;
}
.bg_cyan {
    background-color: #2F4056!important;
}
.bg_blue {
    background-color: #1874ac!important;
}
a.cancel {
    color: red;
}
a.orange{
    color: #fe6b00;
}
a.blue_submit{
    display: inline-block;
    background: #1874ac;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 8px 5px;
}
a.cyan_btn{
    display: inline-block;
    padding: 0px 10px;
    height: 25px;
    border: 1px solid #2F4056;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    line-height: 25px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    background: #2F4056;
}
a.blue_btn{
    display: inline-block;
    padding: 0px 10px;
    height: 25px;
    border: 1px solid #1874ac;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    line-height: 25px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    background: #1874ac;
}
a.blue_btn:hover{
    color: #ffffff;
}
a.red_btn{
    display: inline-block;
    padding: 0px 12px;
    height: 30px;
    border: 1px solid #FF5722;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    line-height: 30px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    background: #FF5722;
}
a.yellow_btn{
    display: inline-block;
    padding: 0px 12px;
    height: 30px;
    border: 1px solid #fe6b00;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    line-height: 30px;
    text-align: center;
    color: #fe6b00;
    font-size: 14px;
    background: #ffffff;
}
.form_select{
    height: 40px;
    line-height: 35px;
    font-size: 12px;
    color: #525252;
    border-radius: 2px;
    border: 1px solid #bfccd3;
    padding: 0px 10px;
}
.form_input{
    height: 40px;
    min-height: 35px;
    font: 400 12px Arial;
    font-size: 12px;
    color: #525252;
    border-radius: 2px;
    border: 1px solid #bfccd3;
    text-indent: 10px;
}
.form_textarea{
    line-height: 25px;
    font-size: 12px;
    color: #525252;
    border-radius: 2px;
    border: 1px solid #bfccd3;
    text-indent: 10px;
}
.search-input{
    margin: 0px;
    padding: 0px;
    text-indent: 45px;
    background: url(../images/search.png) #ffffff no-repeat 5px center;
}
/*头部*/
.top{
    width: 100%;
    height: 40px;
    background: #f6f6f6;
}
.top_bar{
    width: 1200px;
    margin: 0px auto;
    height: 40px;
    line-height: 40px;
    clear: both;
}
.top_login{
    width: 400px;
}
.top_login a{
    padding: 0px 8px;
}
.top_nav{
    width: 260px;
}
.top_nav ul{
    list-style: none;
}
.top_nav >ul >li{
    float: left;
    color: #696969;
}
.top_nav ul li.td{
    color: #696969;
}
.top_nav ul li a{
    padding: 0px 5px;
    color: #696969;
}

.rg_menu ul li .simple{
    vertical-align:middle;
    width:16px;
    margin-top:-2px;
}
.rg_menu ul li span {
    margin: 0px 5px;
}
.rg_menu ul li .td {
    padding-right: 18px;
    background: url("../images/bgkd.png") no-repeat right -20px;
    display: inline-block;
    padding-left: 10px;
}
.rg_menu ul li.kf{
    position:relative;
    z-index:5;
}
.kf_child{
    position: absolute;
    top: 41px;
    left: 0;
    display: none;
    width: 88px;
    border-left: 1px #dcdcdc solid;
    border-right: 1px #dcdcdc solid;
    border-bottom: 1px #dcdcdc solid;
    margin-left: -1px;
    z-index: 9999;
    background: #efefef;
}
.rg_menu ul li.kf:hover a.td{
    background: url("../images/bgkd.png") no-repeat right 20px;
    border-color: #dcdcdc;
    outline: 1px #dcdcdc solid;
    line-height:40px;
    border-bottom: 1px solid #ffffff;
}
.rg_menu ul li.kf:hover .kf_child{
    display: block;
}
.kf_child ul li{
    text-align: center;
}
.kf_child ul li:hover{
    background-color: #1874ac;
}
.kf_child ul li:hover >a{
    color: #ffffff;
}
.kf_child ul li a:hover{
    color: #ffffff;
}

.show_qrcode{
    float: right;
    position: relative;
    color: #696969;
}
.tip-qrcode{
    display: none;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50px;
    right: -70px;
    z-index: 99999;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 0 8px 0 #dfdfdf;
    background: #dfdfdf;
    padding: 5px;
}
.tip-qrcode:after{
    border-bottom: 15px solid #dfdfdf;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    content: '';
    position: absolute;
    right: 90px;
    top: -10px;
}
.tip-qrcode img{
    width: 200px;
    height: 200px;
}
.show_qrcode:hover .tip-qrcode{
    display:block;
}

.head{
    width: 100%;
    background: #ffffff;
    height: 50px;
    padding: 25px 0;
}
.header{
    width: 1200px;
    margin: 0px auto;
}
.h_logo{
    width: 250px;
    margin-top: -10px;
    margin-bottom: 10px;
}
.h_search{
    width: 650px;
}
.h_qbtns{
    width: 250px;
}
.h_search_warp{
    float: left;
    width: 500px;
    border: 1px #d7d7d7 solid;
    border-right: none;
    height: 38px;
    position: relative;
    border-radius: 3px 0 0 3px;
}
.h_search_warp .ico {
    position: absolute;
    top: 12px;
    left: 12px;
    background-image: url("../images/icon2.png");
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}
.ico-zoom {
    background-position: -800px -20px;
}
.h_search_txt{
    float: right;
    display: inline;
    width: 470px;
    text-indent: 10px;
    height: 38px;
    line-height: 38px;
    border: 0px;
    border: none;
    outline: none;
    color: #999;
    font-family: "Microsoft YaHei";
    font-size: 12px;
}
.h_search_sub{
    float: left;
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    background: #1874ac;
    transition-duration: 0.3s;
    border-radius: 0 3px 3px 0;
    padding: 0;
}
.h_qbtns .qbtn{
    margin-left: 23px;
    width: 90px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #333333;
}
.h_qbtns .qbtn a{
    display: block;
    width: 100%;
    height: 38px;
    border: 1px #dbdbdb solid;
    transition-duration: 0.3s;
    font-size: 14px;
    color: #333;
    overflow: hidden;
}

.nav {
    width: 100%;
    margin: 0px auto;
    height: 50px;
    border-bottom: 1px solid #089ad0;
    clear: both;
    background: #ffffff;
}
.nav_bar {
    width: 1200px;
    margin: 0px auto;
}
.nav_bar >ul >li {
    float: left;
    width: 120px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    margin-right: 10px;
}
.nav_bar ul li.m_cate {
    width: 190px;
    background: #1874ac;
}
.nav_bar >ul >li.m_cate >a{
    color: #ffffff;
}
.nav_bar ul li.dropdown {
    position: relative;
    display: inline-block;
}

.nav_bar ul li.on >a {
    color: #1874ac;
}
.nav_bar ul li a {
    padding: 0px 0px 0px 15px;
    font-size: 16px;
}
.dropdown_list {
    position: absolute;
    background-color: #1874ac;
    width: 190px;
    height: 420px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 0px 0px;
    z-index: 9999;
}
.dropdown_list a{
    color: #FFFFFF;
}
.nav_bar ul li .dropdown_list li{
    width: 190px;
    line-height: 30px;
}
.nav_bar ul li .dropdown_list li:hover{
    background: #ffffff;
}
.nav_bar ul li .dropdown_list li:hover a{
    color: #333333;
}
.dropdown_list li .cate_b{
    margin: 5px 0px 0px 0px;
    text-align: left;
}
.dropdown_list li a.ct1{
    font-size: 16px;
    color: #f0fff7;

}
.dropdown_list li a.ct2{
    font-size: 12px;
    color: #62c1d0;
}
.dropdown:hover .dropdown_list {
    display: block;
}
.bb {
    border-bottom: 1px solid #d4dede;
}
/*

#focus{ margin: 0 auto; width:100%; height:420px; overflow: hidden; position: relative;z-index: 9990}
#focus img{ display:block; width:100%; height:420px;}
#focus ul{overflow: hidden; position: absolute; left: 0; top: 0;}
#focus ul li{ position:relative;}
#focus ul li.aaa{  height: 100%; float: left;}
#focus ul li.bbb{  height: 100%; position: absolute; left: 0; top: 0; z-index: 1;}
#focus ul li.bbb.current{ z-index: 2;}
#focus ul li.ccc{position: absolute;height: 420px;width: 100%;-webkit-transform:scaleX(1.2) scaleY(1.2);-moz-transform:scaleX(1.2) scaleY(1.2);transform:scaleX(1.2) scaleY(1.2);z-index: 1}
#focus ul li.ccc.current{z-index: 2;transform:scale(1);transition: opacity 1s ease 0s,transform 3s ease 0s;}
#focus .left{ position: absolute; left: 0; top: 50%; margin-top: -50px; width: 50px; height: 100px; cursor: pointer; z-index: 3;}
#focus .right{ position: absolute; right: 0; top: 50%; margin-top: -50px; width: 50px; height: 100px; cursor: pointer; z-index: 3;}
#focus ol{ overflow: hidden; position: absolute; left:50%; bottom: 12px; z-index: 3;}
#focus ol li{ width: 12px; height: 12px; background: #ffffff; border-radius: 100%; float: left; margin-left: 10px; cursor: pointer;}
#focus ol li.current{ background: #ff0000;}
#focus ul li .text { position:absolute; left:0; bottom:0; width:100%; height:40px; line-height:40px; z-index:10; text-align:left; padding-left:10px; background:rgba(0,0,0,0.6); box-sizing:border-box; font-size:20px; overflow:hidden;}
*/
.layui-carousel-ind{
    z-index: 99999;
}
/*登录头像*/
.home_box{
    width: 1200px;
    margin: -420px auto 0px;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.home_login_box{
    width: 260px;
    background: #ffffff;
    height: 500px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9999;
    clear: both;
}
.home_login_box p{
    margin: 5px 5px;
    text-align: center;
}
.user_img{
    width: 100px;
    height: 100px;
    margin: 10px auto;
    display: block;
}
.touxiang{
    width: 260px;
    margin:20px auto 20px;
    text-align: center;
}
.home_login_box .register_btn {
    display: inline-block;
    padding: 15px 70px;
    background-color: #089ad0;
    font-size: 18px;
    color: #fff;
    margin: 20px;
    border: 0px;
}
.home_login_box .tel{
    background: url("../images/phone.png") no-repeat;
    margin-left: 45px;
    margin-top: 15px;
    text-align: left;
    text-indent: 38px;
    font-weight: bold;
    height: 32px;
    line-height:26px;
    font-size: 18px;
    color: #fe6b00;
}
.home_login_box .name{
    color: #fe6b00;
    font-weight: bold;
    font-size: 14px;
}
.touxiang .deal{
    width: 240px;
    height: 78px;
    background: #f5f4f3;
    margin-left: 10px;
    margin-top: 15px;
}
.touxiang .deal span{
    display: block;
    width: 110px;
    float: left;
    margin: 5px 4px;
    text-align: left;
    padding: 5px 0px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.touxiang .deal a{
    font-size: 12px;
    margin-left: 5px;
}
.touxiang .deal em{
    color: red;
    margin-left: 2px;
}
.touxiang .deal img{
    width: 20px;
    height: 20px;
    float: left;
    margin-left: 5px;
}

/*内容*/
.contain {
    width: 100%;
    height: auto;
    clear: both;
    background: #f5f4f3;
}
.c_item_ad {
    width: 1200px;
    margin: 20px auto 10px;
    clear: both;
}
.c_item_ad img{
    width: 1200px;
    height: 100px;
}
.c_item {
    width: 1200px;
    margin: 20px auto 10px;
    clear: both;
    padding-bottom: 10px;
}
.c_item_left{
    width: 820px;
    background: #ffffff;
}
.c_item_right{
    width: 350px;
    background: #ffffff;
}
.item_tit{
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #eeeeee;
    padding: 0px 20px;
}
.item_tit span{
    padding-left: 10px;
    height: 18px;
    border-left: 3px solid #1874ac;
    font-size: 18px;
    line-height: 18px;
}
.c_item_left .item_con,.item_ppsj_con{
    width: 100%;
}
.item_con >ul >li{
    width: 380px;
    float: left;
    position: relative;
    margin-top: 20px;
    margin-left: 15px;
}
.item_ppsj_con ul li{
    float: left;
    width: 210px;
    text-align: center;
    margin: 12px;
}
.item_ppsj_con ul li .sjbg{
    width: 194px;
    height: 62px;
    padding-top: 2px;
    border-radius: 5px;
    border:1px solid #d4dede;
}
.item_ppsj_con ul li img{
    width: 190px;
    height: 60px;
}
.itxp{
    width: 380px;
    height: 140px;
    border: 1px solid #e5e5e5;
}
.itxp:hover{
    /*border: 1px solid #1874ac;*/
    box-shadow:rgba(0,0,0,0.18) 0px 0px 5px 0px;
}
.itxp img{
    width: 120px;
    height: 120px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.itxp .it_info{
    margin-left: 138px;
    margin-top: 15px;
}
.itxp .it_info >ul >li{
    height: 35px;
    line-height: 35px;
    margin-top: 1px;
    clear: both;
}
.it_info em{
    color: #999999;
}
/*.it_info span{
    float: right;
    font-size: 14px;
    display: block;
    width: 200px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}*/
.it_info span{
    font-size: 14px;
    display: block;
    width: 245px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*推荐供应商*/
.tjgys{
    width: 340px;
    margin: 5px auto;
}
.tjgys ul li{
    height: 36px;
    line-height: 36px;
    padding-left: 15px;
    margin: 12px 0px;
    font-size: 14px;
}
.tjgys ul li:hover{
    background: #f5f4f3;
}
/*大宗动态*/
.dzdt_block{
    width: 100%;
}
.dzdt{
    width: 320px;
    margin: 5px auto;
    height: 320px;
}
.dzdt ul li{
    height: 41px;
    line-height: 41px;
    font-size: 14px;
    clear: both;
    cursor: pointer;
}
.dzdt ul li:hover{
    background: #f5f4f3;
}
.bk1{
    width: 95px;
    float: left;
}
.bk2{
    width: 115px;
    margin-left: 5px;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bk3{
    width: 90px;
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: right;
}
/*成交动态*/
.cjdt{
    width: 340px;
    margin: 5px auto;
    height: 320px;
}
.cjdt ul li{
    height: 30px;
    line-height: 30px;
    padding-left: 15px;
    margin: 10px 0px;
    font-size: 14px;
}
.cjdt ul li:hover{
    background: #f5f4f3;
}
.cjdt ul li .cj1{
    width: 30%;
    display: block;
    float: left;
    color: #fe6b00;
}
.cjdt ul li .cj2{
    width: 25%;
    display: block;
    float: left;
}
.cjdt ul li .cj3{
    width: 25%;
    display: block;
    float: left;
}
.cjdt ul li .cj4{
    width: 20%;
    display: block;
    float: right;
}
/*实时求购*/
.ssqg{
    width: 800px;
    overflow: hidden;
    height: 320px;
    line-height: 40px;
    margin: 15px auto 5px;
}
.ssqg >ul >li{
    height: 54px;
    line-height: 54px;
    border-bottom: 1px solid #dfdfdf;
    clear: both;
}
.ssqg >ul >li:hover{
    background: #f5f4f3;
}
.ssqg_item{
    width: 790px;
    margin: 0px auto;
    clear: both;
}
.ssqg_item dl dd{
    float: left;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}
.ssqg_item dl dd.qg1{
    width: 280px;
    margin-left: 10px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ssqg_item dl dd.qg2{
    width: 120px;
    text-align: center;
}
.ssqg_item dl dd.qg3{
    width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ssqg_item dl dd.qg4{
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ssqg_item dl dd.qg5{
    width: 80px;
}
.ssqg_item dl dd.qg6{
    width: 80px;
    text-align: center;
}
/*底部*/
footer{
    width: 100%;
    background: #3c3c3c;
    color: #bbbbbb;
    font-size: 14px;
}
.footer{
    width: 1200px;
    margin: 0px auto;
    padding:20px 0px 10px;
}
.footer a{
    color: #bbbbbb;
    font-size: 14px;
}
.footer a:hover{
    color: #f0ad4e;
}
.ft_left{
    width: 250px;
    float: left;
}
.fl_center{
    width: 700px;
    float: left;
}
.ft_right{
    width: 200px;
    float: right;
    padding-top: 20px;
}
.ft_center dl{
    width: 180px;
    float: left;
    margin-top: 10px;

}
.ft_center dt{
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}
.ft_center dd{
    height: 30px;
    line-height: 30px;
}
.ft_qrcode{
    width: 180px;
    text-align: center;
}
.ft_qrcode img{
    width: 120px;
    height: 120px;
}
.ft_service img{
    margin-left: 40px;
}
.copyright{
    border-top: 1px solid #999999;
    text-align: center;
    margin: 30px 0px;
    padding-top: 20px;
}
/*面包屑*/
.crumbs{
    width: 1200px;
    margin: 10px auto;
}
.crumbs_txt{
    margin: 10px 0px;
    height:30px;
    line-height: 30px;
}
.contain_white {
    width: 1200px;
    margin: 0px auto;
    height: auto;
    clear: both;
}
/*产品详情*/
.prd_block{
    width: 1198px;

}
.prd_desc{
    width: 860px;
    float: left;
    border: 1px solid #dfdfdf;
}
.prd_img{
    width: 220px;
    text-align: center;
    float: left;
    margin-top: 20px;
    position: relative;
    padding-bottom: 20px;
    height: 200px;
}
.prd_img .cas{
    width: 150px;
    height: 150px;
}
.prd_img .sp{
    position: absolute;
    bottom: 0px;
    right: 23px;
}
.prd_img .sp p{
    line-height: 25px;
    color: #333333;
}
.prd_info{
    width: 639px;
    float: left;
    border-left: 1px solid #dfdfdf;
    height: 360px;
}
.prd_info .prd_name{
    width: 639px;
    background: #f5f5f5;
    height: 40px;
    line-height: 40px;
    color: #0b3138;
    font-size: 16px;
    text-overflow: ellipsis;
    display: inline-block;
    text-indent: 20px;
}
.prd_inq{
    width: 320px;
    float: right;
    border: 1px solid #dfdfdf;
}

.prd_inq_txt{
    background: #f5f5f5;
    height: 40px;
    line-height: 40px;
    color: #0b3138;
    text-indent: 20px;
}
.prd_new_inq{
    width: 96%;
    margin: 10px auto;
}
.prd_new_inq >ul >li{
    line-height: 30px;
    padding: 3px 0px;
}
.prd_new_inq ul li span {
    display: block;
    width: 60px;
    color: #999;
    text-align: right;
    margin-right: 5px;
    float: left;
}

.prd_detail{
    padding: 10px;
}
.prd_detail ul li span {
    display: block;
    width: 74px;
    margin-right: 10px;
    color: #999;
    text-align: right;
    float: left;
}
.prd_detail ul li {
    float: left;
    width: 45%;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    color: #0b3138;
    text-align: left;
    line-height: 45px;
    text-indent: 10px;
    margin-right: 20px;
}
.prd_detail ul li.full {
    width: 100%;
    padding-top: 12px;
    line-height: 30px;
}
.prd_detail ul li.border0 {
    border: 0px;
}
.prd_detail ul li.alias_name{
    height: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.icon_heart {
    overflow: hidden;
    display: inline-block;
    height: 19px;
    width: 22px;
    background: url(../images/common.png) -116px -125px no-repeat;
    position: absolute;
    top: 2px;
    right: 23px;
    cursor: pointer;
}
.icon_heart2 {
    overflow: hidden;
    display: inline-block;
    height: 19px;
    width: 22px;
    background: url(../images/common.png) -138px -125px no-repeat;
    position: absolute;
    top: 2px;
    right: 23px;
    cursor: pointer;
}

.prd_con{
    width: 100%;
    clear: both;
    margin: 15px auto;
    float: left;
}
.prd_con_left{
    width: 862px;
    float: left;
    border: 1px solid #dfdfdf;
}
.prd_con_right{
    width: 322px;
    float: right;
}
.prd_tab{
    background: #f5f4f3;
    height: 40px;
    line-height: 40px;
}
.prd_tab li {
    width: 20%;
    height: 40px;
    float: left;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    color: #666666;
}
.prd_tab li.active {
    background: #1874ac;
    color: #ffffff;
}
.tab1{
    margin: 10px;
}
.prd_item_info{
    width: 830px;
    margin: 5px auto;
    line-height: 30px;
   /* height: 1000px;*/
    overflow: hidden;
}

.base_column{
    height: 30px;
    line-height: 30px;
    width: 100%;
    background: #f5f5f5;
    padding: 5px 0px;
    text-indent: 30px;
    font-size: 14px;
    font-weight: bold;
    clear: both;
    margin: 10px 0px;
}
.base_info li{
    line-height: 25px;
    padding: 3px 0px;
    clear: both;
}
.base_info li span{
    display: block;
    width: 130px;
    margin-right: 10px;
    text-align: right;
    float: left;
}
.base_info li .in{
    display: block;
    width: 700px;
    float: right;
}
/*交易动态*/
.dt_block{
    width: 320px;
    border: 1px solid #dfdfdf;
}
.dt_txt{
    background: #f5f5f5;
    height: 40px;
    line-height: 40px;
    color: #0b3138;
    text-indent: 20px;
}
.dt_con{
    width: 98%;
    padding-left: 10px;
}
.jydt_tb{
    width: 98%;
    margin: 0px auto;
}
.jydt_tb thead th{
    font-size: 12px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    text-align: left;
}
.jydt_tb tbody td{
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}
.jydt_tb tbody td.st{
    color: #1874ac;
}
/*猜你喜欢*/
.cnxh{
    width: 300px;
}
.cnxh ul li{
    width: 150px;
    float: left;
    margin: 5px 0px;
}
.cnxh_bk{
    border: 1px solid #dfdfdf;
    width: 130px;
    height:130px;
    text-align: center;
    margin: 5px auto;
}
.cnxh ul li img{
    width: 120px;
    height: 120px;
}
.cnxh ul li p{
    line-height: 25px;
    font-size: 12px;
    padding: 0px 0px 0px 15px;
    height: 30px;
    overflow: hidden;
}
/*产品列表*/
.pl_block{
    width: 1200px;
    overflow: hidden;
}
.pl_block >ul{
    width: 1250px;
}
.pl_block >ul >li{
    /*width: 582px;*/
    width: 380px;
    float: left;
    position: relative;
    border: 1px solid #e5e5e5;
    margin-right: 28px;
    margin-bottom: 15px;
    padding: 5px;
}
.pl_block >ul >li:hover{
    /*border: 1px solid #1874ac;*/
    box-shadow:rgba(0,0,0,0.18) 0px 0px 5px 0px;
}
.pl_block ul li .img{
    width: 110px;
    height: 110px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.pl_block ul li .pl_bk{
    width: 360px;
    margin-left: 130px;
}
.pl_block ul li .pl_bk li{
    line-height: 30px;
    height: 30px;
    padding: 2px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 190px;
}
.pl_block ul li .pl_xj{
    position: absolute;
    bottom: 10px;
    right: 10px;
}
/*分页*/
.paging{
    clear: both;
    width: 900px;
    height: 40px;
    margin: 10px auto;
}
.pagination{
    text-align: left;
}
.pagination li{
    float: left;
    border: 1px solid #e5e5e5;
    height: 34px;
    line-height: 34px;
    display: inline-block;
    color: #333333;
    font-size: 14px;
    text-align: center;
    margin-right: 5px;
    /*width: 40px;*/
    padding: 0px 13px;
}
.pagination li.active {
    border: 1px solid #147397;
    color: #fff;
    background: #147397;
}
.pagination li.disabled a{
    color: #bbb;
}
/*实单专区*/
.sd_block{
    width: 1200px;
    overflow: hidden;
}
.sd_block >ul{
    width: 1250px;
}
.sd_block >ul >li{
    width: 386px;
    float: left;
    border: 1px solid #e5e5e5;
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 10px 20px 10px 10px;
}
.sd_block >ul >li h3{
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0px;
    width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sd_block >ul >li:hover{
    /*border:1px solid #1874ac;*/
    box-shadow:rgba(0,0,0,0.18) 0px 0px 5px 0px;
    cursor: pointer;
}
.sd_block >ul >li .sd_item{
    width: 100%;
    position: relative;
    margin: 10px 0px;
}
.sd_item img{
    width: 100px;
    height: 100px;
    float: left;
    margin: 10px 5px;
}
.sd_item .sd_bk{
    float: right;
    width: 230px;
    margin-top: 10px;
}
.sd_bk li{
    line-height: 28px;
}
.sd_bk span{
    color: #999999;
}
.sd_gl{
    clear: both;
}
.sd_gl span{
    font-size: 12px;
    float: left;
}
.sdbj{
    float: right;
}

.icon-help {
    float: right;
    position: relative;
    cursor: pointer;
    color: rgba(0,0,0,.2);
    transition: all .1s linear;
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-help:before {
    content: "\e696";
}
.icon-help .tip-top {
    display: none;
    width: 162px;
    height: 41px;
    font-size: 12px;
    color: #fff;
    line-height: 41px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 8px 0 rgba(57,191,147,.5);
    background: #03A670;
    position: absolute;
    top: -52px;
    right: -5px;
}
.icon-help .tip-top:after {
    border-top: 4px solid #03a670;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: '';
    position: absolute;
    right: 10px;
    bottom: -4px;
}
.icon-help:hover{color:#1966ff}
.icon-help:hover .tip-top{display:block}
/*快速询单*/
.kqy_table{
    margin: 10px auto;
    width: 90%;
}
.kqy_table tbody tr td{
    padding: 10px 0px;
}
.kqy_table .t1{
    width: 160px;
    text-align: right;
    padding-right: 15px;
}
/*快速报价*/
.kq_quote_info{
    width: 90%;
    margin: 20px auto 30px;
}
.kq_quote_info ul{
    width: 100%;
}
.kq_quote_info ul li{
    width: 45%;
    float: left;
    line-height: 25px;
    padding: 5px 0px;
}
.kq_quote_info ul li.full{
    width: 98%;
}
.kqq_table{
    margin: 10px auto;
    width: 90%;
}
.kqq_table th{
    border: 1px solid #e6e6e6;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
}
.kqq_table thead tr{
    background: #f5f4f3;
}
.kqq_table td{
    border: 1px solid #e6e6e6;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
}

/*快捷登录*/
.kq_login_main{
    margin: 50px auto 20px;
    width: 80%;
    position: relative;
}
.kq_login_title{
    height: 30px;
    line-height: 30px;
    margin: 20px 0px;
    border-bottom: 1px solid #4476A7;
    padding-bottom: 10px;
}
.kq_login_title span {
    border-left: 2px solid #089ad0;
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    font-size: 18px;
    color: #089ad0;
}
.kq_login_title em {
    float: right;
}
a.login_reg {
    font-size: 16px;
    color: #fe6b00;
}
.kq_login ul li {
    padding: 8px 0px;
}
.kq_login .input_box {
    margin-bottom: 10px;
    position: relative;
}
.kq_login .inputs {
    height: 35px;
    line-height: 35px;
    padding-left: 35px;
    border: 1px solid #d0d0d0;
    background-color: #fff;
}
.icon {
    background-image: url(../images/icon_login.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    display: inline-block;
    font-size: 0;
    margin-right: 5px;
    vertical-align: sub;
    width: 16px;
    height: 16px;
}
.kq_login .icon_username {
    position: absolute;
    left: 10px;
    top: 10px;
    background-position: 0 -19px;
}
.kq_login .icon_password {
    position: absolute;
    left: 10px;
    top: 10px;
    background-position: -16px -19px;
}
.kq_login .icon_capt{
    position: absolute;
    left: 10px;
    top: 10px;
    background-position: -32px -19px;
}
/*面包屑*/
/*标准table*/
.bz_table{
    width: 100%;
}
.bz_table thead tr{
    background: #f5f4f3;
}
.bz_table thead th{
    border: 1px solid #e6e6e6;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
    color: #383d49;
    text-align: left;
}
.bz_table tbody td{
    border: 1px solid #e6e6e6;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
    color: #555555;
}
.bz_table tbody tr:hover{
    background: #f5f4f3;
}
/*下拉地区*/
.area_content {
    width: 300px;
    border: 1px solid #cad0dd;
    border-top: none;
    padding-bottom: 10px;
    position: absolute;
    display: none;
    background-color: #fff;
}

.area_menu {
    overflow: hidden;
    font-size: 14px;
    color: #35393e;
}
.area_menu ul {
    margin: 0px;
    padding: 0px;
}
.area_menu ul .isClick {
    background-color: #fff;
    color: #089ad0;
    border-bottom: none;
}
.area_menu ul li{
    float: left;
    width: 33.33%;
    margin: 0px;
    margin-bottom: 0 !important;
    list-style: none;
    text-align: center;
    height: 35px;
    line-height: 35px;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #f4f4f4;
    border-bottom: 1px solid #cad0dd;
    padding: 0px;
}
.area_data {
    display: none;
    overflow: hidden;
}
.area_data_content {
    padding: 10px;
    overflow: hidden;
}
.area_data ul li {
    float: left;
    list-style: none;
    width: 60px;
    height: 22px;
    line-height: 22px;
    margin-bottom: 0 !important;
    font-size: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 12px;
    margin-top: 5px;
    max-width: 50px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.area_data ul li a{
    font-size: 14px;
    color: #1874ac;
}
.isBlock {
    display: block !important;
    z-index: 999;
}
.no_data{
    width: 100%;
}
.no_data_info{
    width: 130px;
    background: url("../images/nodata.png") left no-repeat;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    margin: 20px auto;
}
.no_data_info span{
    margin-left: 40px;
}

.page_con{
    padding: 10px;
    line-height: 30px;
    min-height: 430px;

}
.page_con p{
    margin: 10px 0px;
    line-height: 30px;
}

.partners ul li {
    width: 25%;
    float: left;
    margin: 10px 0px;
}
.login_bg {
   background: url(../images/login.png);
    min-height: 500px;
}
.login_main {
    float: right;
    margin-top: 70px;
    border: 1px solid #d5d5d5;
    width: 400px;
    background: #ffffff;
    position: relative;
    padding-left: 50px;
}
.login_title {
    height: 30px;
    line-height: 30px;
    margin: 20px 0px;
}
.login_title span {
    border-left: 2px solid #089ad0;
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    font-size: 18px;
    color: #089ad0;
}
.login_title em {
    float: right;
    margin-right: 50px;
}
.login ul li {
    padding: 12px 0px;
}
.input_box {
    margin-bottom: 10px;
    position: relative;
}
.login .inputs {
    width: 310px;
    height: 32px;
    line-height: 32px;
    padding-left: 35px;
    border: 1px solid #d0d0d0;
    background-color: #fff;
}

.icon {
    background-image: url(../images/icon_login.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    display: inline-block;
    font-size: 0;
    margin-right: 5px;
    vertical-align: sub;
    width: 16px;
    height: 16px;
}
.icon_username {
    position: absolute;
    left: 10px;
    top: 10px;
    background-position: 0 -19px;
}
.icon_password {
    position: absolute;
    left: 10px;
    top: 10px;
    background-position: -16px -19px;
}
.icon_verify {
    position: absolute;
    left: 10px;
    top: 10px;
    background-position: -32px -19px;
}
.login_check {
    float: left;
}
.login_forget {
    float: right;
    margin-right: 70px;
}
/*注册*/
.c_register_type{
    width: 1000px;
    margin: 30px 100px;
    clear: both;
    font-size: 16px;
    color: #fe6b00;
    padding-left: 80px;
}
.c_register_type span{
    color: #089ad0;
}
.c_register{
    width: 1000px;
    margin: 30px 100px;
    clear: both;
}

.c_register ul li{
    padding:12px 0px;
    clear: both;
}
.c_register ul li span{
    width: 150px;
    font-size: 14px;
    color: #454545;
    line-height: 30px;
    margin-right: 10px;
    text-align: right;
    float: left;
}
.reg_back {
    border-bottom: 1px solid #089ad0;
    height: 40px;
    line-height: 40px;
    color: #089ad0;
    text-indent: 10px;
}
.email_send_btn {
    width: 120px;
    height: 37px;
    background-color: #089ad0;
    color: #fff;
    border: 0;
    cursor: pointer;
}
.c_news{
    clear: both;
    width: 1100px;
    margin: 25px auto;
    min-height: 400px;
}
.c_news ul li {
    overflow: hidden;
    line-height: 45px;
    height: 45px;
    border-bottom: 1px dashed #e8e8e8;
}
.c_news li a i {
    width: 8px;
    height: 8px;
    background-color: #999;
    display: inline-block;
    margin-right: 13px;
    margin-left: 2px;
}
.c_news ul li a span {
    float: right;
    line-height: 45px;
    font-size: 14px;
    color: #999;
    margin-right: 20px;
}

.c_news_detail {
    clear: both;
    width: 1000px;
    margin: 20px auto;
}
.c_news_detail .title {
    text-align: center;
    font-size: 22px;
    color: #333333;
    margin-bottom: 20px;
}
.c_news_detail .desc {
    width: 100%;
    border-bottom: 1px dotted #9c9d9e;
    padding-bottom: 30px;
}
.c_news_detail .desc p {
    text-align: center;
    font-size: 14px;
    color: #666;
}
.c_news_detail .desc p span {
    margin-right: 23px;
}
.c_news_detail .desc p a {
    color: #666;
    margin-right: 23px;
}

.c_news_detail .content {
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-top: 34px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    color: #666666;
}
.c_news_detail p {
    line-height: 30px;
    margin-bottom: 15px;
}
.c_news_detail .next_pre {
    width: auto;
    padding: 35px 30px 35px 0px;
}

/*快速回到顶部*/
/*new-右侧浮动*/

/* 定义动画 */
@keyframes floatUpDown {
   0%, 100% {
     transform: translateY(0);
   }
   50% {
     transform: translateY(-20px); /* 调整此值以改变浮动的距离 */
   }
 }
.global_express{position: fixed;z-index:99999;right:6px;top:620px; animation: floatUpDown 2s ease-in-out infinite; cursor: pointer;}
.global_express .close{position: absolute;z-index:11;right:0;top:0;cursor: pointer; width: 20px; height: 20px; padding-top: 6px;}
.quick_bar{position: fixed;z-index:9;right:0%;bottom:110px;}
.quick_bar.on{display:block}
.quick_bar ul{height:163px}
.quick_bar li{position:relative;width:40px;height:40px;cursor:pointer;background:#1874ac;border-top:1px solid #fff;padding-top:10px}
.quick_bar li span{display:block;width:20px;height:20px;margin:0 auto;}
.quick_bar li.li1{border-top:0}
.quick_bar li .icon1{background:url(../images/quick_icon.png) no-repeat -20px 0}
.quick_bar li .icon2{background:url(../images/quick_icon.png) no-repeat 0 0}
.quick_bar li .icon3{background:url(../images/quick_icon.png) no-repeat -40px 0}
.quick_bar li .icon4{background:url(../images/quick_icon.png) no-repeat -60px 0}
.quick_bar li:hover{background:#494949;overflow:inherit;}

.quick_bar li .zktx{top:0;position:absolute;z-index: 9999;display:none}
.quick_bar li.li1:hover .zktx,.quick_bar li.li2:hover .zktx,.quick_bar li.li3:hover .zktx,.quick_bar li.li4:hover .zktx{display: block;}
.quick_bar li .animat{left:-110px;}
.quick_bar li .animat-a{left:-160px;}
.quick_bar li .icon1ct{left:-170px;}
.quick_bar li b{display:block;float:left;background:#007de4;height:40px;font-weight:normal;color:#fff;font-size:12px;line-height:40px;text-align:center}
.quick_bar li strong{display:block;float:left;display:inline;width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;margin-top:13px}
.quick_bar li .borderys1{border-left:8px solid #fff;}
.quick_bar li .borderys2{border-left:8px solid #007de4;}
.quick_bar li.li1:hover .animat-a{left: -122px;}
.quick_bar li.li2:hover .icon1ct{left: -132px;}
.quick_bar li.li3:hover .animat,.quick_bar li.li4:hover .animat{left: -79px;}
.quick_bar li.li3:hover .animat b,.quick_bar li.li4:hover .animat b{width: 79px;}
.quick_bar li.li4{display:none}
.quick_bar li.li2{}
.quick_bar .icon1ct{height:163px}
.quick_bar .icon1ct .icon1ct-z{background:#fff;width:130px;float:left;display:inline;padding-bottom:10px;border: 1px solid #dddddd;}
.quick_bar .icon1ct .icon1ct-z img{width:98px;height:98px;}
.quick_bar .icon1ct img{display:block;margin:10px auto 3px}
.quick_bar .icon1ct p{text-align:center;font-size:12px;color:#007de4}
.quick_bar .animat-a .animat-a-a{background:#fff;width:120px;float:left;text-align: center;border: 1px solid #dddddd;}
.quick_bar .animat-a .animat-a-a dl{border-bottom:1px dotted #dddddd;padding:15px 0;}
.quick_bar .animat-a .animat-a-a .animat-a-a-a p,.quick_bar .animat-a .animat-a-a .animat-a-a-b p{padding-top:5px;font-size:14px;color:#1874ac;font-weight:700}
.quick_bar .animat-a .animat-a-a .animat-a-a-a p{color:#F66400}
.quick_bar .animat-a .animat-a-a dl.animat-a-a-c{border-bottom:0}


/*用户注册*/
.register_block{
    margin-bottom: 30px;
    height:600px;
    position: relative;
}
.progressbar {
    overflow: hidden;
    counter-reset: step;
    width: 1100px;
    margin: 50px auto;
    display: block;
}
.progressbar li {
    list-style-type: none;
    color: #333333;
    text-transform: uppercase;
    font-size: 9px;
    width: 25%;
    float: left;
    position: relative;
    text-align: center;

    font-weight: bold;
}
.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    line-height: 30px;
    display: block;
    font-size: 10px;
    color: #333;
    background: #d5d5d5;
    border-radius: 3px;
    margin: 0 auto 5px auto;
    font-size: 16px;
}
.progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #d5d5d5;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;

}
.progressbar li.active:before, .progressbar li.active:after {
    background: #27AE60;
    color: white;
}

.progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
.progressbar li.active:before,  .progressbar li.active:after{
    background: #27AE60;
    color: white;
}

#register_block fieldset {
    border: 0 none;
    /* border-radius: 3px;
     box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
     padding: 20px 30px;
     box-sizing: border-box;*/
    width: 1200px;
    position: absolute;
}

/*stacking fieldsets above each other*/

#register_block fieldset:not(:first-of-type) {
    display: none;
}

.reg_choice{
    width: 600px;
    margin: 50px auto;
}
.reg_choice li{width: 300px; float: left;}
.reg_choice li .chioce_anim{
    width: 150px;
    height: 150px;
    line-height: 30px;
    margin: 0 auto 10px;
    text-align: center;
    background-color: #1874ac;
    cursor: pointer;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
}
.reg_choice li .chioce_anim:hover{
    background-color: #ff734a;
}
.reg_choice li .active{
    background-color: #ff734a;
}

/*step2*/

.reg_step{
    width: 600px;
    margin: 0px auto;
    clear: both;
}

.reg_step ul li{
    padding:15px 0px;
    clear: both;

}
.reg_step ul li span{
    width: 150px;
    font-size: 14px;
    color: #454545;
    line-height: 30px;
    margin-right: 10px;
    text-align: right;
    float: left;
}

.reg_ok{
    width: 800px;
    margin: 10px auto;
    text-align: center;
}
.reg_ok h2{
    font-size: 40px;
}
.reg_ok .reg_account{
    margin: 30px 0px 10px;
    font-size: 16px;
}
.reg_account p{
    padding: 5px 0px;
}
.grey{
    color: grey;
}


.c_search{
    width: 610px;
}
.c_search_warp{
    float: left;
    width: 400px;
    border: 1px #d7d7d7 solid;
    border-right: none;
    height: 36px;
    position: relative;
    border-radius: 3px 0 0 3px;
}
.c_search_warp .ico {
    position: absolute;
    top: 12px;
    left: 12px;
    background-image: url("../images/icon2.png");
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}
.ico-zoom {
    background-position: -800px -20px;
}
.c_search_txt{
    float: right;
    display: inline;
    width: 370px;
    text-indent: 10px;
    height: 36px;
    line-height: 36px;
    border: 0px;
    border: none;
    outline: none;
    color: #999;
    font-family: "Microsoft YaHei";
    font-size: 12px;
}
.c_search_sub{
    float: left;
    width: 100px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border: none;
    outline: none;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    background: #1874ac;
    transition-duration: 0.3s;
    border-radius: 0 3px 3px 0;
    padding: 0;
}

.detail_more {
    height: 32px;
    line-height: 32px;
    background: #fafcfe;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #333;
    font-size: 14px;
    font-family: "微软雅黑";
    margin-bottom: 12px;
}
.detail_more a {
    color: #333;
    display: block;
    position: relative;
    font-weight: bold;
}
/*标准table*/
.cost_table{
    width: 100%;
}
.cost_table thead tr{
    background: #1874ac;
}
.cost_table >thead >tr >th{
    border: 1px solid #e6e6e6;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
    color: #ffffff;
    text-align: left;
}
.cost_table >tbody >tr >td{
    border: 1px solid #e6e6e6;
    padding: 5px 10px;
    min-height: 20px;
    line-height: 20px;
    color: #555555;
}
.cost_table tbody tr:hover{
    background: #f5f4f3;
}