﻿@charset"utf-8";

/* 导入字体 */
@font-face {
    font-family: "siyuan";
    src: url('/site/fonts/SOURCEHANSANSCN-REGULAR.OTF');
}

@font-face {
    font-family: "siyuanBold";
    src: url('/site/fonts/SOURCEHANSANSCN-BOLD.OTF');
}

@font-face {
    font-family: "tesefonts";
    src: url('/site/fonts/Athub-Regular.ttf');
}

@font-face {
    font-family: "countfonts";
    src: url('/site/fonts/AKZIDENZGROTESK-MEDIUMCONDALT.OTF');
}

html, body {
    font-family: "siyuan","微软雅黑";
}

h1, h2, h3, h4, h5, h6, ul, li, p, dl, dt, dd, label {
    margin: 0;
}

a:focus, a:hover, a:active {
    text-decoration: none;
}

/* header 头部 */
.header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 30px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

    .header.bg {
        background-color: #20293a;
    }

    .header:hover {
        background-color: #20293a;
    }

.headDiv {
    border-bottom: solid 1px rgba(255,255,255,.25);
}

.logo {
    height: 88px;
    line-height: 88px;
    margin-right: 70px;
}

.logo, .nav {
    float: left;
}

.nav {
    margin: 0 -24px;
}

    .nav .li {
        float: left;
        margin: 0 24px;
        position: relative;
    }

        .nav .li.active > a {
            color: #fa4616;
        }

        .nav .li > a {
            float: left;
            height: 88px;
            line-height: 88px;
            font-size: 16px;
            color: #fff;
        }

.headRt {
    float: right;
}

.zqdm {
    height: 88px;
    line-height: 88px;
    font-size: 16px;
    color: #fff;
}

/*header动画*/
.logo, .nav .li {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}

    .logo.sjgAct, .nav .li.sjgAct {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: all 1s ease 0s;
        -moz-transition: all 1s ease 0s;
        -ms-transition: all 1s ease 0s;
        -o-transition: all 1s ease 0s;
        transition: all 1s ease 0s;
    }

.navUl {
    position: absolute;
    top: 88px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    padding-top: 1px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    .navUl > div {
        background-color: #20293a;
    }

    .navUl li {
        display: inline-block;
        vertical-align: top;
        margin: 0 27px;
    }

        .navUl li a {
            display: block;
            height: 76px;
            line-height: 76px;
            font-size: 16px;
            color: #a2a8b5;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -ms-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

        .navUl li:hover a {
            color: #fff;
        }

.nav .li > a {
    position: relative;
}

    .nav .li > a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #fa4a16;
        opacity: 0;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

.nav .li:hover .navUl {
    visibility: visible;
    opacity: 1;
}

.nav .li:hover > a {
    color: #fa4a16;
}

    .nav .li:hover > a:after {
        opacity: 1;
    }

/*footer尾部*/
.footer {
    background-color: #28334a;
    overflow: hidden;
}

.foot_top {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px #59637a;
    overflow: hidden;
}

.footLogo {
    float: left;
}

.footTel {
    font-size: 14px;
    color: #ffffff;
    margin-top: 25px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footNav {
    float: right;
    width: 75%;
    margin-right: -6%;
    display: flex;
    justify-content: space-between;
}

.footNavLi {
    width: 20%;
}

    .footNavLi > div {
        display: inline-block;
        vertical-align: top;
        text-align: left;
    }

    .footNavLi .tit {
        font-size: 14px;
        color: #ffffff;
        margin-bottom: 10px;
    }

.fotNavUl li a {
    font-size: 12px;
    color: #59637a;
    line-height: 32px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    .fotNavUl li a:hover, .ftBtmRtUl li a:hover, .ftBtmRt a:hover {
        color: #eee;
    }

.foot_btm {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

/* .ftBtmLt {
		float: left;
	}

	.ftBtmRtUl {
		margin: 0 -12px;
	}

	.ftBtmRtUl li {
		float: left;
		margin: 0 12px;
	}

	.ftBtmRtUl li a {
		float: left;
		font-size: 12px;
		color: #59637a;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	} */

/* .ftBtmRt {
		float: right;
	} */

/* .ftBtmRtDiv {
		margin: 0 -12px;
	} */

.ftBtmRt p, .ftBtmRt a {
    float: left;
    font-size: 12px;
    color: #59637a;
    margin: 0 12px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}


/*首页通用 - 大标题*/
.inxBox {
    overflow: hidden;
}

    .inxBox .title {
        position: relative;
        z-index: 1;
        text-align: center;
        padding-top: 25px;
        padding-bottom: 25px;
    }

        .inxBox .title .tit {
            font-size: 36px;
            color: #333333;
        }

        .inxBox .title .txt {
            font-size: 18px;
            color: #999999;
            margin-top: 20px;
            height: 72px;
            line-height: 36px;
        }

        .inxBox .title .ico {
            display: block;
            font-family: "tesefonts";
            font-size: 170px;
            font-style: normal;
            height: 135px;
            line-height: 135px;
            position: absolute;
            z-index: -1;
            top: 41%;
            left: 50%;
            -webkit-transform: translate(-50%,-50%);
            -moz-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            -o-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
            color: #ebebeb;
        }

/* 首页 - 关于我们 企业优势 */
.inx_aboutUsBox {
    padding-top: 70px;
    padding-bottom: 110px;
}

.inx_aboutUsList {
    margin: 105px -40px 145px;
}

.inx_aboutUsDl {
    width: 20%;
    float: left;
    text-align: center;
}

    .inx_aboutUsDl dt {
        width: 72px;
        height: 72px;
        background-size: 100%;
        background-position: 0px 0px;
        margin: auto;
    }

    .inx_aboutUsDl dd {
        margin-top: 25px;
        font-size: 18px;
        color: #999999;
        line-height: 20px;
    }

    .inx_aboutUsDl:hover dd {
        color: #fa4a16;
    }

.moreBut {
    width: 148px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    border: solid 1px #d2d2d2;
    display: block;
    margin: auto;
    font-size: 14px;
    color: #333333;
}

    .moreBut:hover {
        border: solid 1px #fa4a16;
        color: #fa4a16;
    }

/*首页 - 企业简介、股票代码*/
.inx_qyjjBox {
    position: relative;
    z-index: 1;
    padding-top: 70px;
    padding-bottom: 110px;
    height: 783px;
}

    .inx_qyjjBox .mcBg {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 100% 100% !important;
        -moz-background-size: 100% 100% !important;
    }

    .inx_qyjjBox .title .tit {
        color: #ffffff;
    }

    .inx_qyjjBox .title .txt {
        color: #999999;
    }

    .inx_qyjjBox .title .ico {
        color: rgba(255,255,255,0.2);
    }

.inx_qyjjLt {
    width: 50%;
    padding-right: 30px;
    margin-top: 25px;
}

    .inx_qyjjLt .txt {
        font-size: 16px;
        color: #ececec;
        line-height: 30px;
    }

.inx_qyjjLtUl {
    margin-top: 85px;
}

    .inx_qyjjLtUl li {
        width: 33.333%;
        float: left;
    }

        .inx_qyjjLtUl li > div {
            display: inline-block;
            text-align: center;
        }

        .inx_qyjjLtUl li:nth-child(1) {
            text-align: left;
        }

        .inx_qyjjLtUl li:nth-child(2) {
            text-align: center;
        }

        .inx_qyjjLtUl li:nth-child(3) {
            text-align: right;
        }

        .inx_qyjjLtUl li .count {
            font-size: 40px;
            color: #fff;
            font-family: "tesefonts";
        }

        .inx_qyjjLtUl li .wen {
            font-size: 18px;
            color: #ececec;
        }

/* 首页 - 解决方案 */
.inx_jjfaBox {
    padding-top: 70px;
    padding-bottom: 110px;
}

    .inx_jjfaBox .title .tit {
        color: #333333;
    }

    .inx_jjfaBox .title .ico {
        color: #ebebee;
    }

    .inx_jjfaBox .cont .container {
        display: flex;
        justify-content: space-around;
        color: #333333;
        flex-direction: row;
        flex-wrap: wrap;
    }

.inx_jjfaLt {
    width: 50%;
    margin-top: 25px;
}

    .inx_jjfaLt .txt {
        font-size: 16px;
        line-height: 30px;
    }

        .inx_jjfaLt .txt h2 {
            font-size: 75px;
            font-weight: 400;
            line-height: 90px;
            margin-bottom: 18px;
        }

        .inx_jjfaLt .txt h3 {
            font-size: 20px;
            color: #999999;
            margin-bottom: 40px;
        }

        .inx_jjfaLt .txt span {
            font-size: 20px;
            font-family: "宋体";
            line-height: 30px;
        }

    .inx_jjfaLt .jjfaUl {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

        .inx_jjfaLt .jjfaUl .fa {
            width: 50%;
            font-size: 20px;
            margin-top: 50px;
        }

            .inx_jjfaLt .jjfaUl .fa span {
                margin-left: 20px;
                line-height: 50px;
            }

    .inx_jjfaLt .moreBut {
        margin-top: 50px;
        margin-left: 0;
    }

.inx_jjfaRt {
    width: 50%;
    margin-top: 25px;
    text-align: center;
}

    .inx_jjfaRt img {
        width: 80%;
        height: 80%;
    }

    .inx_jjfaRt h3 {
        font-size: 36px;
        font-weight: 400;
    }

/* 首页 - 产品展示 */
.inx_cpzsBox {
    padding-top: 70px;
    padding-bottom: 110px;
    background-color: #20293a;
}

    .inx_cpzsBox .title .tit {
        color: #ffffff;
    }

    .inx_cpzsBox .title .ico {
        color: rgba(255,255,255,.1);
    }

    .inx_cpzsBox .cont .container {
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        flex-wrap: wrap;
    }

.inx_cpzsLt {
    width: 50%;
    margin-top: 25px;
}

    .inx_cpzsLt .txt {
        font-size: 16px;
        color: #ffffff;
        line-height: 30px;
    }

        .inx_cpzsLt .txt h2 {
            font-size: 75px;
            font-weight: 400;
            line-height: 90px;
            margin-bottom: 18px;
        }

        .inx_cpzsLt .txt h3 {
            font-size: 20px;
            color: #999999;
            margin-bottom: 40px;
        }

        .inx_cpzsLt .txt span {
            font-size: 20px;
            color: #ffffff;
            font-family: "宋体";
            line-height: 30px;
        }

    .inx_cpzsLt .cpzsUl {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

        .inx_cpzsLt .cpzsUl .cp {
            width: 50%;
            font-size: 20px;
            margin-top: 50px;
        }

            .inx_cpzsLt .cpzsUl .cp span {
                margin-left: 20px;
                line-height: 50px;
                color: #ffffff;
            }

                .inx_cpzsLt .cpzsUl .cp span:hover {
                    color: #fa4a16;
                }

    .inx_cpzsLt .moreBut {
        margin-top: 50px;
        margin-left: 0;
        color: #ffffff;
    }

.moreBut:hover {
    border: solid 1px #fa4a16;
    color: #fa4a16;
}

.inx_cpzsRt {
    width: 50%;
    margin-top: 25px;
    text-align: center;
}

    .inx_cpzsRt img {
        width: 80%;
        height: 80%;
    }

    .inx_cpzsRt h3 {
        font-size: 36px;
        font-weight: 400;
        color: #ffffff;
    }

/* 首页 - 投资者关系 */
.inx_tzzgxBox {
    background-color: #f5f6f9;
    padding-top: 60px;
    padding-bottom: 110px;
}

    .inx_tzzgxBox .ico {
        color: #f2f2f2;
    }

.inx_tzzgxList {
    padding-top: 45px;
    height: 100%;
}

.inx_tzzgxLi {
    float: left;
    height: 100%;
}

.inx_tzzgxLiDiv {
    background-color: #fff;
}

.inx_tzzgxLi1 {
    padding-right: 30px;
    width: 25.76%;
    height: 100%;
}

    .inx_tzzgxLi1 .inx_tzzgxLiDiv {
        padding: 39px 50px;
    }

.inx_tzzgxHead {
    padding-bottom: 15px;
    border-bottom: solid 1px #e5e5e5;
}

    /* .inx_tzzgxHead .inx_tzzgxTit .tit,.inx_tzzgxHead .inx_tzzgxTit .count {
		display: inline-block;
		vertical-align: middle;
	} */

    .inx_tzzgxHead .inx_tzzgxTit {
        display: flex;
        justify-content: space-between;
    }

        .inx_tzzgxHead .inx_tzzgxTit .tit {
            font-size: 24px;
            color: #333333;
            /* margin-right: 50px; */
        }

        .inx_tzzgxHead .inx_tzzgxTit .count {
            font-size: 18px;
            color: #333333;
        }

.inx_tzzgx1Txt {
    font-size: 16px;
    color: #999999;
}

.inx_tzzgxMny {
    margin-bottom: 20px;
    margin-top: 30px;
}

    .inx_tzzgxMny .monery {
        float: left;
        margin-top: 8px;
    }

    .inx_tzzgxMny .count, .inx_tzzgxMny .danwei, .inx_tzzgxMny .danwei img {
        display: inline-block;
        vertical-align: bottom;
    }

    .inx_tzzgxMny .count {
        font-size: 60px;
        color: #fa4616;
        font-family: "countfonts";
        height: 44px;
        line-height: 44px;
    }

    .inx_tzzgxMny .monery.active .count,
    .inx_tzzgxMny .monery.active .danwei span {
        color: #0e990e;
    }

    .inx_tzzgxMny .danwei {
        font-size: 32px;
        color: #fa4616;
        font-family: "countfonts";
    }

        .inx_tzzgxMny .danwei span {
            display: inline-block;
            vertical-align: bottom;
            height: 23px;
            line-height: 23px;
        }

        .inx_tzzgxMny .danwei img {
            opacity: 0;
        }

    .inx_tzzgxMny .feilvDiv {
        font-size: 18px;
        line-height: 30px;
        color: #fa4616;
        font-family: "countfonts";
        float: right;
    }

.inx_tzzgx1Ul {
    padding: 15px 0;
    margin-bottom: -15px;
}

    .inx_tzzgx1Ul li {
        float: left;
        width: 50%;
        margin-bottom: 15px;
    }

    .inx_tzzgx1Ul .danwei {
        font-size: 14px;
        color: #999999;
    }

    .inx_tzzgx1Ul .count {
        font-size: 30px;
        color: #333333;
        font-family: "countfonts";
    }

.inx_tzzgxLi2 {
    width: 74.24%;
    height: 100%;
}

.inx_tzzgxLiRow {
    margin: -11px;
}

.inx_tzzgxLiCol {
    width: 50%;
    min-height: 100%;
    float: left;
    padding: 11px;
}

.inx_tzzgxLi2 .inx_tzzgxLiDiv {
    padding: 30px;
}

.inx_tzzgxLi2 .time {
    margin-bottom: 25px;
}

    .inx_tzzgxLi2 .time .day {
        font-size: 48px;
        color: #cccccc;
        font-family: "countfonts";
        line-height: 30px;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

.inx_tzzgxLi2 .inx_tzzgxLiDiv:hover .time .day {
    color: #fa4616;
}

.inx_tzzgxLi2 .inx_tzzgxLiDiv:hover .time .year {
    color: #fa4616;
}

.inx_tzzgxLi2 .time .year {
    font-size: 18px;
    color: #cccccc;
    font-family: "countfonts";
    line-height: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.inx_tzzgxLi2 .tit {
    font-size: 20px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    margin-bottom: 40px;
}

/*公用部分 - banner*/
.banner .img img {
    max-width: 100%;
}

.banSwiper {
    position: relative;
}

.banImg img {
    width: 100%;
}

.banTxt {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banTxtLt {
    display: inline-block;
    vertical-align: middle;
}

.banTxtLt {
    width: 53.67%;
}

    .banTxtLt .tit {
        font-size: 46px;
        color: #ffffff;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }

    .banTxtLt .txt {
        font-size: 24px;
        color: #ffffff;
        letter-spacing: 3px;
    }

    .banTxtLt .but {
        font-size: 18px;
        color: #ffffff;
        display: block;
        width: 208px;
        height: 45px;
        border: solid 1px #fff;
        text-align: center;
        line-height: 43px;
        margin-top: 89px;
    }

.banPagination {
    position: absolute;
    z-index: 3;
    left: 0;
    width: 100%;
    height: 26px;
    bottom: 80px !important;
    text-align: center;
}

    .banPagination .swiper-pagination-bullet {
        height: 16px;
        width: 3px;
        background-color: rgba(255,255,255,.3);
        opacity: 1;
        border-radius: 0;
        margin: 0 7px;
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .banPagination .swiper-pagination-bullet-active {
        height: 26px;
        background-color: rgba(255,255,255,1);
    }

/*banner动画效果*/
@keyframes banImg {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fancybox-opened .fancybox-title {
    font-size: 16px;
    color: #333;
    line-height: 28px;
}

.fancybox-outer, .fancybox-inner {
    position: unset !important;
    background-color: #fff;
}

.fancybox-nav {
    top: 45%;
}

.fancybox-prev {
    left: 45px;
}

.fancybox-next {
    right: 45px;
}

.banTxt .but {
    position: relative;
    z-index: 1;
}

    .banTxt .but:after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(255,255,255,0);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        z-index: -1;
        /*opacity: 0;*/
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .banTxt .but:hover:after {
        background-color: rgba(255,255,255,.3);
    }

@keyframes banTxtBut {
    0% {
        width: 0px;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        height: 100%;
    }
}

.banSwpnext, .banSwpprev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    opacity: .3;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    cursor: pointer;
}

.banSwpnext {
    right: 30px;
}

.banSwpprev {
    left: 30px;
}

    .banSwpnext:hover, .banSwpprev:hover {
        opacity: 1;
    }

.banImg {
    position: relative;
}

    .banImg .img:nth-child(2) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        animation: banImg 2.5s ease 0s infinite;
    }

/*公用部分 - 内页banner*/
.nBanner {
    position: relative;
    overflow: hidden;
}

    .nBanner img {
        width: 100%;
    }

.nBanTxt {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .nBanTxt .tit {
        font-size: 46px;
        color: #ffffff;
    }

    .nBanTxt .txt {
        font-size: 24px;
        color: #ffffff;
        line-height: 42px;
        margin-top: 45px;
    }

/*公用部分 - 分页*/
.pagination {
    text-align: center;
    font-size: 0;
    width: 100%;
    margin: 0;
}

    .pagination li {
        float: none !important;
        display: inline-block;
        vertical-align: top;
        border: 0;
        margin: 0 5px;
    }

        .pagination li a {
            display: block;
            width: 40px;
            height: 40px;
            border: solid 1px #dcdcdc;
            font-size: 16px;
            color: #333333;
            line-height: 38px;
            padding: 0;
            background-color: rgba(0,0,0,0) !important;
            border-radius: 0 !important;
        }

            .pagination li a img {
                display: inline-block;
                vertical-align: middle;
            }

    .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
        background-color: #fa4616 !important;
        border-color: #fa4616;
        color: #fff;
    }

    .pagination li.prevNext a {
        font-size: 0;
    }

    .pagination li.disabled a img {
        opacity: .5;
    }

.header,
.banner,
.content,
.footer,
.AboBox {
    width: 100%;
    min-width: 320px;
}

.inx_aBox .mcBg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.inx_aBox .title .tit {
    color: #ffffff;
}

.inx_aBox .title .txt {
    color: #999999;
}

.inx_aBox .title .ico {
    color: rgba(255,255,255,.05);
}

.inx_aLt {
    width: 50%;
    padding-right: 30px;
    margin-top: 25px;
}

    .inx_aLt .txt {
        font-size: 16px;
        color: #ececec;
        line-height: 30px;
    }

.inx_aLtUl {
    margin-top: 85px;
}

    .inx_aLtUl li {
        width: 33.333%;
        float: left;
    }

        .inx_aLtUl li > div {
            display: inline-block;
            text-align: center;
        }

        .inx_aLtUl li:nth-child(1) {
            text-align: left;
        }

        .inx_aLtUl li:nth-child(2) {
            text-align: center;
        }

        .inx_aLtUl li:nth-child(3) {
            text-align: right;
        }

        .inx_aLtUl li .count {
            font-size: 40px;
            color: #fff;
            font-family: "tesefonts";
        }

        .inx_aLtUl li .wen {
            font-size: 18px;
            color: #ececec;
        }
/**/

.inx_hBox {
    padding-top: 70px;
    padding-bottom: 110px;
    background-color: #f6f7fa;
}

.inx_hList {
    margin: 0 -25px;
}

.inx_hCol {
    padding: 0 25px;
}

.inx_hBox .ico {
    color: #f2f2f2;
}

.inx_hDl dd {
    padding: 35px 30px;
    background-color: #f5f6f9;
}

.inx_hDl dt {
    overflow: hidden;
}

    .inx_hDl dt img {
        width: 100%;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

.inx_hDl:hover dt img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.dataBox .dataDiv {
    float: left;
}

.dataBox .day {
    font-size: 50px;
    color: #f05423;
    font-family: "countfonts";
    display: inline-block;
    vertical-align: middle;
    height: 37px;
    line-height: 37px;
}

.dataBox .year {
    font-size: 16px;
    color: #cccccc;
    line-height: 18px;
    font-family: "countfonts";
    display: inline-block;
    vertical-align: middle;
}

.dataBox .icoUl {
    float: right;
    height: 37px;
    line-height: 37px;
}

    .dataBox .icoUl li {
        color: #cccccc;
    }

.inx_hDl {
    position: relative;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

    .inx_hDl:hover {
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
    }

    .inx_hDl .tit {
        font-size: 18px;
        color: #333333;
        line-height: 30px;
        margin-top: 20px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .inx_hDl .txt {
        font-size: 14px;
        line-height: 24px;
        color: #999999;
        margin-top: 15px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .inx_hDl .but {
        margin-top: 25px;
        display: block;
        color: #999999;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

        .inx_hDl .but img {
            margin-left: 15px;
            margin-top: -3px;
            -webkit-filter: grayscale(100);
            -moz-filter: grayscale(100);
            -ms-filter: grayscale(100);
            -o-filter: grayscale(100);
            filter: grayscale(100);
        }

    .inx_hDl:hover .but {
        color: #f05423;
    }

        .inx_hDl:hover .but img {
            -webkit-filter: grayscale(0);
            -moz-filter: grayscale(0);
            -ms-filter: grayscale(0);
            -o-filter: grayscale(0);
            filter: grayscale(0);
        }
/**/

.inx_pBox {
    padding-top: 65px;
    padding-bottom: 110px;
}

    .inx_pBox .ico {
        color: #f3f3f3;
    }

.inx_pList {
    margin-top: 70px;
}

.inx_plgUl {
    margin: -10px;
}

    .inx_plgUl li {
        float: left;
        /*width: 20%;
          margin-left: 100px;*/
        width: 33.33%;
        padding: 20px;
        text-align:center;
    }

        .inx_plgUl li img {
            border: solid 1px #efefef;
            /*width: 100%;*/
            width: 200px;
            height: 200px;
        }

.smlNav {
    border-bottom: solid 1px #dcdcdc;
    text-align: center;
    font-size: 0;
}

.smlNavSwiper {
    display: inline-block;
    margin: 0 -90px;
    max-width: 100%;
}

    .smlNavSwiper .swiper-slide {
        width: auto;
        padding: 0 45px;
    }

    .smlNavSwiper li a {
        height: 80px;
        line-height: 80px;
        font-size: 18px;
        color: #999999;
        display: block;
        position: relative;
    }

        .smlNavSwiper li a:after {
            content: "";
            width: 100%;
            height: 2px;
            background-color: #fa4616;
            position: absolute;
            left: 0;
            bottom: 0;
            opacity: 0;
        }

    .smlNavSwiper li.active a:after {
        opacity: 1;
    }

    .smlNavSwiper li.active a, .smlNavSwiper li:hover a {
        color: #fa4616;
    }
/*		地图*/

.chinaMapDiv {
    position: relative;
    width: 1089px;
    margin: auto;
    max-width: 100%;
    margin-top: 80px;
}
