@charset "UTF-8";

@font-face {
    font-family : "PingFang SC";
    src :
        url("/font/PingFang_SC.ttf");
}

/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, div, input, section, article {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a,
a:hover,
a:focus,
a.active {
    text-decoration: none;
}
body {
    font-family: "PingFang SC", Helvetica, Arial, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background: #ffffff;
}

li {
    list-style: none;
}

fieldset, img, input, button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

ul, ol {
    list-style: none;
}

.btn-trash {
    display: none;
}
button {
    cursor: pointer;
}

input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "SimSun", "宋体";
    padding-left: 20px;
}

select, input {
    vertical-align: middle;
}

select, input, textarea {
    font-size: 14px;
    margin: 0;
    outline: none;
    background: transparent;
}

textarea {
    resize: none;
}

.container {
     padding:0;
}

/*防止拖动*/
img {
    border: 0;
    font-size: 0;
    vertical-align: middle;
}

/*  去掉图片低测默认的3像素空白缝隙*/
table {
    border-collapse: collapse;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

s, i, em {
    font-style: normal;
    /*字体没有样式*/
    text-decoration: none;
}

html, body {
    height: 100%;
}

body {
    min-width: 1200px;
}

/* 清除 浮动*/
.overflow {
    overflow: auto;
    zoom: 1;
}

.clearfix:after, .clearfix:before {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.clearfix {
    zoom: 1;
}

/* float */
.clear:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0
}

.clear {
    zoom: 1
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* flex */
.fx {
    display: flex;
}

.fx_ai {
    display: flex;
    align-items: center;
}

.fx_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fx_one {
    flex: 1
}
.cursor_pointer {
    cursor: pointer;
}
/* 单行 超出 */
.over {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 两行文本超出 */
.over2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.over3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mz-title {
    line-height: 40px;
}

/* public */
.img {
    width: 100%;
}

.postr {
    position: relative;
}

.posta {
    position: absolute
}

.c6 {
    color: #666;
}

.c9 {
    color: #999;
}

.cf {
    color: #fff;
}

.red {
    color: #FF6464;
}

.green{
    color: #3ABF7C;
}

.orange {
    color: #FFA31D
}

.blue {
    color: #2356AA;
}
.cred{
    color: #EA1616;
}

.bgf {
    background: #fff;
}

.bor {
    border: 1px solid #D2D2D2;
}

.f14 {
    font-size: 14px;
}

.f18 {
    font-size: 18px;
}

.f12 {
    font-size: 12px;
}

.borb {
    border-bottom: solid 1px #F6F6F6;
}

.bor {
    border: 1px solid #F6F6F6;
}

.txtc {
    text-align: center;
    color: #707070;
}
.c70{
    color: #707070;
}

.layout {
    width: 1200px;
    margin: 0 auto;
}

.mz-col-5 {
    width: 20%;
    padding: 10px;
    float: left;
}
.content-index {
    min-height: calc(100vh - 275px);
    margin-top: 30px;
    margin-bottom: 50px;
}

.foot-line {
    margin: 60px 0;
}

.foot-line .lang_line {
    width: 280px;
    height: 1px;
    background: #DCDCDC;
    display: inline-block;
}

.foot-line span {
    margin: 0 20px;
}

/**公共radio**/

.choose {
    position: relative;
}

.choose .radio {
    position: relative;
    display: inline-block;
    font-weight: 400;
    color: #0c4757;
    padding-left: 25px;
    cursor: pointer;
    padding-right: 25px;

}

.choose .radio input {
    position: absolute;
    left: -9999px;
}

.choose .radio i {
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    outline: 0;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    border-radius: 50%;
    transition: border-color .3s;
    -webkit-transition: border-color .3s;
}

.choose .radio input + i:after {
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #EA7916;
    opacity: 0;
    transition: opacity .1s;
    -webkit-transition: opacity .1s;
}

.choose .radio input:checked + i:after {
    opacity: 1;
}

/**公共checkbox**/



input[type=checkbox] {
    width:15px;
    height:15px;
    text-align: center;
}
input[type=checkbox]:after {
    width: 100%;
    height: 100%;
    top: 0px;
    content: " ";
    background-color:White;
    color: #EAEAEA;
    display: inline-block;
    visibility: visible;
    border-radius: 2px;
    border:1px solid #EAEAEA;
}
input[type=checkbox][disabled=disabled]:after {
    width: 100%;
    height: 100%;
    top: 0;
    content: " ";
    background-color:#3ABF7C;
    color: #ffffff;
    display: inline-block;
    visibility: visible;
    border-radius: 2px;
    border:1px solid #A9A9A9;
}
input[type=checkbox]:checked:after {
    content: "\2713";/*UNICODE中对号*/
    font-size: 12px;
    font-weight:bold;
    background-color:#3ABF7C;
}

/* 浮动窗口 */
.float_box {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    z-index: 99;
}

.float_box li a {
    display: block;
}

.float_box li {
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    cursor: pointer;
    position: relative;
}

.float_box li img {
    width: 60px;
}

.float_box .wechat:hover .code {
    display: block;
}

.float_box .code {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    right: 90px;
    background: url('../images/float_ico_qrbg.png') center center no-repeat;
    background-size: contain;
}

/* 新增 */
.float_box .code img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 104px;
}

.float_box .shopNumb {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

.float_box .phone:hover .tel {
    display: block;
}

.float_box .tel {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    font-size: 18px;
    line-height: 50px;
    height: 50px;
    background: #fff;
    right: 90px;
}

.triangle {
    width: 0;
    height: 0;
    border: 10px solid;
    border-top-color: #fff;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
    margin-left: 10px;
    transform: translateY(-50%) rotate(-90deg);
    position: absolute;
    right: -15px;
    top: 50%;
}

.label_r {
    float: right;
    text-align: left;
    color: #FFA31D;
    font-size: 12px;
}

.hide {
    display: none
}

/* nav */
.nav {
    position: relative;
    cursor: pointer;
    text-align: center;
}

/* 白色背景层title样式 */
.bgf .nav.active {
    color: #000;
}

.bgf .nav.active .nav_line {
    position: absolute;
    width: 60%;
    height: 2px;
    background: #EA7916;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

/* 透明背景层title样式 */
.white-content {
    color: #FFFFFF;
}

.white-content .nav.active .nav-title {
    color: #FFFFFF;
    font-weight: bolder;
}

.bgf .nav.active .nav-title {
    color: #333;
    font-weight: bolder;
}

.white-content .nav.active .nav_line {
    position: absolute;
    width: 60%;
    height: 2px;
    background: #FFFFFF;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

header .bgf {
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.06);
}
/* ------------------------------------------------------------------------- */

.top-logo {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}

.top-logo img {
    width: 128px;
    height: 30px;
}

.top-right {
    width: 28px;
    height: 25px;
    position: absolute;
    top: 27px;
    right: 60px;
}

.top-right img {
    display: block;
    width: 100%;
    height: 100%;
}

.top-nav {
    width: 100%;
    height: 100%;
}

.top-content {
    width: 600px;
    height: 100%;
    margin: 0 auto;
}

.top-nav-item {
    width: 150px;
    height: 80px;
    font-size: 19px;
    color: #999;
    line-height: 80px;
    text-align: center;
    position: relative;
}
.top-content .active{
    color:#333333 !important;
}
.top-nav-item-line {
    width: 30px;
    height: 1px;
    background-color: #333333;
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translate(-50%,50%);
}
.active .top-nav-item-line {
    background-color: #333333;
}


/* ------------------------------------------------------------------------- */
/* 头部 */
.wrap {
    width: 100% !important;
    height: 80px;
    background: #fff;
}
.header-ad{
    width: 1200px;
    height: 80px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    margin: 0 auto;

}
.header-ad .logo-l{
    width: 50%;

}
.header-ad .logo-l img{
    width: 210px;
    height: 50px;
}
.header-ad .logo-r{
    width: 50%;
    line-height: 50px;
    font-size: 24px;
    color: #0870EE;
    text-align: right;
}
.header-ad .logo-r img{
    width: 30px;
    vertical-align: middle;
    height: 100%;
}
/* nav */
.nav-wrap{
    width: 100%;
    height: 50px;
    background:rgba(0,33,74,1);
    line-height: 50px;
}
.nav-wrap .nav{
    width: 1200px;
    margin	:0 auto;
    cursor: pointer;
}
.nav ul>li{
    display: inline-block;
    width: 13%;
    font-size: 16px;
    text-align: center;
}
.nav ul>li>a{
    display: inline-block;
    width: 100%;
    height: 50px;
    color: #fff;
}
a:hover{
    color: #333333;
}
.nav ul>li>a:hover{
    background: #0870EE;
}
.active-nav{
    background: #0870EE;
}
.aa{
    position: relative;
}
.aa:hover .bb{
    display: block;
}
.bb{
    width: 100%;
    position: absolute;
    top: 44px;
    text-align: center;
    z-index: 999;
    display: none;
    box-shadow:3px 3px 8px rgba(0,0,0,0.08);
}
.bb>p>a{
    display: block;
    width: 100%;
    height: 44px;
    text-align: center;
    background: #fff;
    font-size: 14px;
    color: #333;
}
.bb>p>a:hover{
    background:rgba(238,245,255,1);
    color: #0870EE;
}
.bb .bb-active{
    background:rgba(238,245,255,1);
    color: #0870EE;
}

/*底部浮动*/
.footer-wrap{
    position: relative;
    width: 100%;
    height: 300px;
    /* margin: 0 auto; */
    background:rgba(0,33,74,1);
}
.footer{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}
.footer .footer-l,.footer .footer-c,.footer .footer-r{
    width: 33.3333%;
    color: #fff;
    font-size: 14px;
}
.footer .footer-l>img{
    width: 210px;
    height: 50px;
    margin-top: 40px;
}
.footer .footer-l p{
    margin-bottom: 15px;

}
.footer .footer-l p>img{
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
.footer .footer-l p:nth-of-type(1){
    margin-top: 30px
}
.footer .footer-c p:nth-of-type(1){
    margin-top: 110px;
    margin-bottom: 15px;
}
.footer .footer-r img{
    width: 120px;
    height: 120px;
    margin-top: 50px;
}
.footer-l-ma,.footer-r-ma{
    position: relative;
    width: 48%;
    text-align: right;
}
.cutting{
    position: absolute;
    top: 65px;
    left: 165px;
    width: 1px;
    height: 98px;
    border-left: 1px solid rgba(255,255,255,0.4);
}
.footer .blogroll {
    margin-top: 15px;
}
.footer .blogroll li{
    display: inline-block;
    font-size: 12px;
    color: #fff;
}
.footer .blogroll li a{
    font-size: 12px;
    color: #fff;
    display: block;
    margin: 0 4px;
}
.copyright{
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);

}
.copyright-con{
    width: 1200px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    color: #fff;
    font-size: 12px;
}
.copyright-con div{
    height: 40px;

}
.copyright-con img{
    width: 33px;
    height: 20px;
    vertical-align: middle;
    margin:12px;
}
.about-title{
    margin-bottom: 30px;
}
.bottom-img{
    width: 120px;
}

.bottom-img .bottom-title{
    text-align: center;
    margin-top: 10px;
}

.gopage{
    text-align: center;
    margin: 40px 0;
}
 .logo-info{
    display: inline-block;
    margin-top: 24px;
}

 .logo-info img{
   width: 60%;
}
 .content{
     position: relative;
 }

 .go-top{
     width: 60px;
     height: 60px;
     position: fixed;
     bottom: 414px;
     right: 24px;
     cursor: pointer;
 }

/* 单行 超出 */
.over {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 两行文本超出 */
.over2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.over4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.over8 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}
