/*
* @Author: peng
* @Date:   2019-04-09 17:18:38
* @Last Modified by:   peng
* @Last Modified time: 2019-04-12 13:17:17
*/
@charset "UTF-8";

/* ====== 重置CSS 2018-09-04 ====== */
* {
    box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
small,
strong,
dl,
dt,
dd,
ol,
ul,
li {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'siyuanyahei' !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    line-height: 1.5;
    font-family: 'siyuanyahei' !important;
}

/*@font-face{*/
/*  font-family: siyuanyahei;*/
/*  src: url("../fonts/siyuanyahei.OTF");*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*}*/

body {
    font-size: 14px;
    line-height: 1.75;
    font-family: 'siyuanyahei' !important;
    color: #666;
    background: #fff;
    overflow-x: hidden;
}

ul,
ol,
li {
    list-style: none;
}

a {
    color: #666;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    font-family: 'siyuanyahei' !important;
}

a:hover {
    outline: none;
    color: #0073b6;
}

a:focus {
    outline: none;
}

input,
button,
textarea {
    border-radius: 0;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    font-family: 'siyuanyahei' !important;
}

button {
    outline: none;
}

table {
    border-collapse: collapse;
    word-wrap: break-all;
    border-spacing: 0;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

img {
    vertical-align: middle;
    border: none;
    max-width: 100%;
}

/*HTML5 Fix*/
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details,
summary,
picture {
    display: block;
}

/*去除苹果默认样式*/
input,
textarea {
    -webkit-appearance: none;
}

/* ====== 通用样式 ====== */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

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

.hide {
    display: none;
}

.show {
    display: block;
}

.clear {
    clear: both;
}

.center {
    text-align: center;
}

.box {
    display: block;
    width: 100%;
    height: 100%;
}

.icon {
    display: inline-block;
    font-style: normal;
    vertical-align: middle;
}

/*垂直居中*/
.com-table {
    display: table;
    width: 100%;
    height: 100%;
}

.com-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

/*定宽布局*/
.com-width {
    margin-right: auto;
    margin-left: auto;
    width: 1200px;
}

/*背景色*/
.bg-gray {
    background: #f5f5f5 !important;
}

/*简易栅格化*/
.col {
    margin-left: -10px;
    margin-right: -10px;
    zoom: 1;
}

.col:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.col>li,
.col .item {
    float: left;
    padding: 0 10px;
}

.col li img,
.col .item img {
    max-width: 100%;
}

.col-2 li,
.col-2 .item {
    width: 50%;
}

.col-3 li,
.col-3 .item {
    width: 33.3333%;
}

.col-4>li,
.col-4 .item {
    width: 25%;
}

.col-5 li,
.col-5 .item {
    width: 20%;
}

.col-6 li,
.col-6 .item {
    width: 16.6666%;
}

.col-8 li,
.col-8 .item {
    width: 12.5%;
}

/*浏览器更新提示*/
.browserupgrade {
    margin: 0;
    padding: 50px 0;
    background: #ccc;
    text-align: center;
    font-size: 18px;
}

.browserupgrade a {
    font-weight: 600;
    color: red;
    text-decoration: underline;
}

/*图片放大*/
.pic-scale .pic,
.img-scale {
    position: relative;
    overflow: hidden;
}

.img-scale img,
.pic-scale img {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.img-scale:hover img,
.pic-scale:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

/*图片去色*/
.img-gray {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}

/*三角形*/
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    margin-top: -1px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    -webkit-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
}

.pt-40 {
    padding-top: 40px;
}

.pt-60 {
    padding-top: 60px;
}
.pt-70 {
    padding-top: 70px;
}
.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-110 {
    padding-top: 110px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-100 {
    padding-bottom: 100px;
}

.c-default {
    color: #0073b6;
}

.com-tit-36 {
    font-size: 36px;
    color: #333;
    line-height: 34px;
    height: 34px;
}

.com-tit-36.white {
    color: #fff;
}

.com-des-16 {
    font-size: 16px;
    line-height: 30px;
}

.com-des-14 {
    font-size: 14px;
    color: #717171;
    line-height: 30px;
}


.c-333 {
    color: #333;
}

/*字体*/
/* @font-face {
  font-family: 'siyuanyahei' !important;
  src: url("../fonts/Roboto Bold.woff2") format("woff2"),
       url("../fonts/Roboto Bold.woff") format("woff"),
       url("../fonts/Roboto Bold.ttf") format("truetype"),
       url("../fonts/Roboto Bold.eot") format("embedded-opentype"),
       url("../fonts/Roboto Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
} */


/*内页栏目图*/
.page-banner {
    position: relative;
    overflow: hidden;
}

.page-banner .pb-pic {
    overflow: hidden;
}

.page-banner .pb-pic img {
    max-width: 100%;
    -webkit-animation: SlickIn cubic-bezier(1, 0, .5, .5) 1s;
    animation: SlickIn cubic-bezier(1, 0, .5, .5) 1s;
}

@-webkit-keyframes SlickIn {
    0% {
        -webkit-transform: scale(1.1, 1.1)
    }

    100% {
        -webkit-transform: scale(1, 1)
    }
}

@-webkit-keyframes SlickOut {
    0% {
        -webkit-transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(.9, .9)
    }
}

@keyframes SlickIn {
    0% {
        transform: scale(1.1, 1.1)
    }

    100% {
        transform: scale(1, 1)
    }
}

@keyframes SlickOut {
    0% {
        transform: scale(1, 1)
    }

    100% {
        transform: scale(.9, .9)
    }
}

/*子栏目栏*/
.page-cate-wrap {
    height: 60px;
}
.page-cate {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 59px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.page-cate .com-width>a,
.page-cate li {
    position: relative;
    display: inline-block;
    position: relative;
    vertical-align: top;
    color: #333;
    font-size: 16px;
    margin-right: 50px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.page-cate li {
    position: static;
}

.page-cate li>a {
    position: relative;
    display: inline-block;
    margin-right: 0;
    /*padding: 0 5px;*/
}
.page-cate li>a span {
    position: relative;
    color: #666;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.page-cate li>a:hover span,
.page-cate li.on>a span,
.page-cate li:hover>a span  {
    color: #0073B6;
}
.page-cate .com-width>a:before,
.page-cate li>a:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #0073b6;
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.page-cate .com-width>a.on:before,
.page-cate .com-width>a:hover:before,
.page-cate li:hover>a:before,
.page-cate li.on>a:before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.page-cate .com-width>a.on,
.page-cate .com-width>a:hover,
.page-cate li>a:hover,
.page-cate li.on>a:hover {
    color: #0073b6;
}

.page-sub-cate {
    height: 0;
    line-height: 50px;
    position: absolute;
    z-index: 1;
    top: 60px;
    width: 100%;
    left: 0;
    background-color: #efefef;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.page-sub-cate.forR {
    text-align: right;
    right: 0;
    left: auto;
}

.page-sub-cate.forR .sub-a {
    margin-right: 0;
    margin-left: 30px;
}

.page-sub-cate .sub-a {
    font-size: 16px;
    margin-right: 50px;
    color: #666;
    position: relative;
    display: inline-block;
}

.page-sub-cate .sub-a:hover,
.page-sub-cate .sub-a.on {
    color: #0073b6;
}

.page-cate li:hover .page-sub-cate {
    height: 50px;
}

.page-cate li .page-sub-cate .ps {
    position: absolute;
}

/*栏目标题*/
.page-title {
    margin-top: 30px;
    text-align: center;
}

.page-title h3 {
    font-size: 32px;
    color: #333;
    line-height: 130px;
}

/*分页*/
.pages {
    text-align: center
}

.pages a,
.pages span {
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    line-height: 30px;
    color: #666;
    font-size: 14px;
    border: 1px solid #ededed;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
}

.pages .prev,
.pages .prev_disabled,
.pages .next,
.pages .next_disabled {
    padding: 0 12px;
    width: auto;
    color: #666;
}

.pages .pre:hover,
.pages .next:hover {
    background-color: #0073b6;
    color: #fff;
}

.pages .current,
.pages a:hover {
    background-color: #0073b6;
    border-color: #0073b6;
    color: #fff !important;
}

.pages a.prev:before,
.pages a.prev_disabled:before {
    content: "上一页";
}

.pages a.next:before,
.pages a.next_disabled:before {
    content: "下一页";
}


/*标题*/
.com-title {
    text-align: center;
}
.com-title .cn {
    font-size: 28px;
    color: #333;
    line-height: 1;
}
.com-title .en {
    margin-top: 10px;
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
}


/*数字滚动 风格2*/
.num-scroll-two {
    text-align: center;
    font-size: 0;
    padding: 60px 0;
}

.num-scroll-two li {
    display: inline-block;
    padding: 0 50px;
    color: #aaa;
    font-size: 16px;
    min-width: 162px;
    vertical-align: middle;
}


.num-scroll-two li .num {
    margin-right: 5px;
    font-size: 66px;
    font-family: 'siyuanyahei' !important;
    line-height: 1;
    display: inline-block;
    color: #fff;
    font-weight: bold;
}
.num-scroll-two li .num-cont i {
    font-size: 66px;
    font-family: 'siyuanyahei' !important;
    color: #fff;
    line-height: 1;
    font-style: normal;
    font-weight: bold;
    display: inline-block;
    position: relative;
    top: -2px;
}
.num-scroll-two li .cont {
    display: inline-block;
}
.num-scroll-two li .num-tit {
    color: #e9e9e9;
}
.num-scroll-two.inner li .num-tit {
    color: #666;
}


/*悬浮链接*/
.suspension{position:fixed;z-index:55;right:0;bottom:85px;width:70px;height:240px;}
.suspension-box{position:relative;float:right;}
.suspension .a{display:block;width:44px;height:44px;background-color:#0073b6;background-color: rgba(0, 115, 182, .8); margin-bottom:4px;cursor:pointer;outline:none;transition: .3s;}
.suspension .a.active,
.suspension .a:hover{background:#0073b6;}
.suspension .a .i{float:left;width:44px;height:44px;background-image:url(../images/kf02/side_icon.png);background-repeat:no-repeat;}
/* .suspension .a-service .i{background-position:0 0;} */
.suspension .a-service .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/kf02/suspension-bg.png);background-repeat:no-repeat;background-position:0 0;}
.suspension .a-service-phone .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/kf02/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
.suspension .a-qrcode .i{background-position:-44px 0;}
.suspension .a-cart .i{background-position:-88px 0;}
.suspension .a-top .i{background-position:-132px 0;}
.suspension .a-top{background:#8c8d90;background: rgba(140, 141, 144, .8); display:none;}
.suspension .a-top:hover{background:#8c8d90;}
.suspension .d{display:none;width:200px;background:#fff;position:absolute;right:67px;/* min-height:90px; */border:1px solid #E0E1E5;border-radius:3px;box-shadow:0px 2px 5px 0px rgba(161, 163, 175, 0.11);}
.suspension .d .arrow{position:absolute;width:8px;height:12px;background:url(../images/kf02/side_bg_arrow.png) no-repeat;right:-8px;top:31px;}
.suspension .d-service{top:-15px;}
.suspension .d-service-wechat{top:34px;}
.suspension .d-service-phone{top:130px;}
.suspension .d-qrcode{top:83px;}
.suspension .d .inner-box{padding: 5px 15px 5px;}
.suspension .d-service-item{border-bottom:1px solid #eee;padding: 10px 0;}
.suspension .d-service .d-service-item{border-bottom:none;}
.suspension .d-service-item .circle{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#F1F1F3;display:block;float:left;}
.suspension .d-service-item .i-qq{width:44px;height:44px;background:url(../images/kf02/side_con_icon03.png) no-repeat center 15px;display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item .i-kf{width:44px;height:44px;background:url(../images/kf02/en_3.png) no-repeat center;background-size: 44px; display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item:hover .i-qq{background-position:center 3px;}
.suspension .d-service-item .i-tel{width:44px;height:44px;background:url(../images/kf02/side_con_icon02.png) no-repeat center center;display:block;}
.suspension .d-service-item h3{float:left;width:112px;line-height:44px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text{float:left;width:112px;line-height:22px;font-size:14px;margin-left:12px;}
.suspension .d-service-item .text .number{font-family:Arial,"Microsoft Yahei","HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;}
.suspension .d-service-intro{padding-top:10px;}
.suspension .d-service-intro p{float:left;line-height:27px;font-size:12px;width:50%;white-space:nowrap;color:#888;}
.suspension .d-service-intro i{background:url(../images/kf02/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}
.suspension .d-qrcode{text-align:center;}
.suspension .d-qrcode .inner-box{padding: 10px 0;}
.suspension .d-qrcode p{font-size:16px;color:#93959c;/* line-height: 1; */}
