body {
    overflow-x: hidden;
    font-family: 'Microsoft Yahei';
}

html {
    font-size: 10px;
    /*10 ÷ 16 × 100% = 62.5%*/
}

@media (max-width: 1200px) {
    html {
        font-size: 9px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 7px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 9px;
    }
}

/*盒布局*/

.display-box {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -o-box !important;
    display: -ms-flexbox !important;
    display: box !important;
}

.display-box2 {
    display: -webkit-box;
    display: -moz-box;
    display: -o-box;
    display: -ms-flexbox;
    display: box;
}

/*垂直方向-居中对其*/

.box-align-center {
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    box-align: center;
}

.box-align-center>* {
    display: block;
}

/*垂直方向-顶部对齐*/

.box-align-start {
    -moz-box-align: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -o-box-align: start;
    box-align: start;
}

/*垂直方向-底部对齐*/

.box-align-end {
    -moz-box-align: end;
    -webkit-box-align: end;
    -o-box-align: end;
    -ms-flex-align: end;
    box-align: end;
}

/*水平方向-居中对齐*/

.box-pack-center {
    -moz-box-pack: center;
    -webkit-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    box-pack: center;
}

/*水平方向-左则对齐*/

.box-pack-start {
    -moz-box-pack: start;
    -webkit-box-pack: start;
    -o-box-pack: start;
    -ms-flex-pack: start;
    box-pack: start;
}

/*水平方向-右则对齐*/

.box-pack-end {
    -moz-box-pack: end;
    -webkit-box-pack: end;
    -o-box-pack: end;
    -ms-flex-pack: end;
    box-pack: end;
}

/*设置元素为可伸缩*/

.box-flex {
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    -o-box-flex: 1;
    -ms-flex: 1;
    box-flex: 1;
}

.box-flex2 {
    -moz-box-flex: 0.1;
    -webkit-box-flex: 0.1;
    -o-box-flex: 0.1;
    -ms-flex: 0.1;
    box-flex: 0.1;
}

/*规定框中子元素的显示次序*/

.box-ordinal-group1 {
    -moz-box-ordinal-group: 1;
    -webkit-box-ordinal-group: 1;
    -o-box-ordinal-group: 1;
    -ms-box-ordinal-group: 1;
    box-ordinal-group: 1;
}

.box-ordinal-group2 {
    -moz-box-ordinal-group: 2;
    -webkit-box-ordinal-group: 2;
    -o-box-ordinal-group: 2;
    -ms-box-ordinal-group: 2;
    box-ordinal-group: 2;
}

.box-ordinal-group3 {
    -moz-box-ordinal-group: 3;
    -webkit-box-ordinal-group: 3;
    -o-box-ordinal-group: 3;
    -ms-box-ordinal-group: 3;
    box-ordinal-group: 3;
}

/*改变元素的排列方向-纵向排列*/

.box-orient-vertical {
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    -o-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
}

/*/盒布局*/

/*动画、过渡*/

.transition1 {
    -moz-transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

/*宽高计算*/

.width-calc1 {
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    width: -o-calc(100% - 40px);
    width: -ms-calc(100% - 40px);
    width: calc(100% - 40px);
}

.height-calc1 {
    height: -moz-calc(100% - 30px);
    height: -webkit-calc(100% - 30px);
    height: -o-calc(100% - 30px);
    height: -ms-calc(100% - 30px);
    height: calc(100% - 30px);
}

/*位置偏移*/

.transform1 {
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.transform2 {
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*设置元素为内联快级并垂直居中对齐*/

.vertical-align-middle {
    vertical-align: middle;
}

.display-inline-block-align {
    display-inline-block;
    vertical-align: middle;
}

.display-inline-block-align-q * {
    display-inline-block;
    vertical-align: middle;
}

/*改变placeholder输入框提示颜色*/

.placeholder-color1:-moz-placeholder {
    color: #939393;
}

.placeholder-color1::-moz-placeholder {
    color: #939393;
}

.placeholder-color1:-ms-input-placeholder {
    color: #939393;
}

.placeholder-color1::-webkit-input-placeholder {
    color: #939393;
}

/*/通用样式*/

.jiamsrg-div {
    margin-left: auto;
    margin-right: auto;
}

body>iframe {
    display: none;
}

a {
    text-decoration: none !important;
}

.navbar-brand {
    float: none;
    line-height: 0;
}

.mobile-con {
    display: none;
}

.header .header-box {
    background: #fff;
    height: 80px;
    line-height: 80px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    position: fixed;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}

.header .header-box .container {
    position: relative;
}

.header .header-box .logo {
    float: left;
}

.header .header-box .nav-con {
    width: 86%;
    margin: 0 auto;
    text-align: right;
    float: right;
    padding-right: 14%;
}

@media (max-width: 1200px) {
    .header .header-box .nav-con {
        padding-right: 21%;
    }
}

@media (max-width: 992px) {
    .header .header-box .nav-con {
        padding-right: 26%;
    }
}

.header .header-box .nav-con #nav {
    width: 100%;
    float: right;
    margin-bottom: 0;
}

.header .header-box .nav-con #nav .sub-nav {
    text-align: center;
    position: relative;
    line-height: 70px;
    transition: 0.3s;
    margin: 0 1px;
    text-transform: uppercase;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.header .header-box .nav-con #nav .sub-nav:hover a {
    color: #005aab;
}

.header .header-box .nav-con #nav .sub-nav a {
    color: #363636;
    font-size: 1.6rem;
    display: block;
    height: 100%;
    padding: 0 1.5rem;
}

@media (max-width: 1200px) {
    .header .header-box .nav-con #nav .sub-nav a {
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .header .header-box .nav-con #nav .sub-nav a {
        padding: 0 0.4rem;
    }
}

.header .header-box .nav-con #nav .sub-nav .drop-down {
    z-index: 999;
    position: absolute;
    top: 75px;
    left: -30%;
    display: none;
}

.header .header-box .nav-con #nav .sub-nav .drop-down {
    width: 250%;
    text-align: center;
    background: #fff;
}

.header .header-box .nav-con #nav .sub-nav .drop-down li {
    line-height: 40px;
    border-bottom: 1px solid #f6f6f6;
}

.header .header-box .nav-con #nav .sub-nav .drop-down li a {
    font-size: 1.5rem;
    display: block;
    color: #333 !important;
}

.header .header-box .nav-con #nav .sub-nav .drop-down li a:hover {
    background: #005aab;
    color: #fff !important;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 {
    z-index: 999;
    position: absolute;
    top: 79px;
    left: -150px;
    display: none;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 {
    width: 1000px;
    padding: 30px 40px;
    background: #f3f5f8;
    border-radius: 3px;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 .list {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 180px;
    text-align: left;
    vertical-align: top;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 .list h6 {
    font-size: 1.6rem;
    color: #121212;
    padding-left: 20px;
    background: url("../images/nav-lit_03.png") no-repeat left center;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 ul {
    margin-left: 20px;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 li {
    line-height: 28px;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 li a {
    font-size: 1.4rem;
    display: block;
    padding: 0;
    color: #545454 !important;
}

.header .header-box .nav-con #nav .sub-nav .drop-down2 li a:hover {
    color: #0187e8 !important;
}

.header .header-box .nav-con #nav .active a {
    color: #005aab;
}

.header .header-box .search-con .toggle-btn {
    position: absolute;
    top: 0px;
    right: 15px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background: #005aab url("../images/search-btn_03.jpg") no-repeat center;
}

.header .header-box .search-con .search {
    display: none;
    position: absolute;
    right: 15px;
    top: 80px;
    width: 260px;
    height: 60px;
    border-top: 4px solid #305399;
    background-color: #fff;
    z-index: 10;
    line-height: 60px;
}

.header .header-box .search-con .search .txt {
    margin: 8px 7px;
    width: 246px;
    height: 43px;
    border: none;
    padding: 0 14px;
    background-color: #f4f4f4;
}

.header .header-box .search-con .search .submit {
    width: 58px;
    height: 39px;
    border: none;
    background-color: #305399;
    position: absolute;
    top: 10px;
    right: 8px;
    text-align: center;
    line-height: 39px;
    border-radius: 2px;
    color: #fff;
}

.header .header-box .language {
    position: absolute;
    right: 95px;
    top: 0px;
    width: 90px;
    height: 80px;
    border-left: 1px solid #e0e0e0;
}

.header .header-box .language a {
    display: block;
    font-size: 1.8rem;
    color: #777;
    text-align: center;
}

.header .ins-header-box {
    background: #fff;
    position: static;
}

.header .ins-header-box .logo {
    float: left;
}

@media (max-width: 992px) {
    .header .ins-header-box .logo img {
        width: auto;
    }
}

.header .ins-header-box .nav-con #nav .sub-nav a {
    color: #373737;
}

.header .ins-header-box .nav-con #nav .sub-nav .drop-down {
    top: 99px;
    left: -20%;
}

.header .ins-header-box .search-con .toggle-btn {
    background: url("../images/search-btn_03.jpg") no-repeat center;
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

.header .mobile-con .navbar-default .navbar-nav>li>a:hover,
.header .mobile-con .navbar-default .navbar-nav>li>a:focus {
    color: #005aab;
}

.header .mobile-con .navbar-default {
    background: #fff;
}

.header .mobile-con .navbar-header .navbar-brand {
    float: none;
    line-height: 0;
    padding: 0;
}

.header .mobile-con .navbar-brand>img {
    margin: 9px 0 0 3%;
}

.header .mobile-con .navbar-brand span {
    display: inline-block;
    position: absolute;
    left: 116px;
    top: 31px;
    font-size: 16px;
    color: #333;
}

.header .mobile-con .nivo-directionNav {
    display: none;
}

.header .mobile-con .box .nivo-controlNav {
    margin-left: -16px;
    bottom: -6px;
}

.header .mobile-con .nivo-controlNav a {
    width: 6px;
    height: 6px;
    margin: 0 3px;
}

.header .mobile-con .navbar-toggle {
    margin-top: 11px;
}

.header .mobile-con .language {
    display: inline-block;
    position: relative;
    margin: 17px 12px 0 0;
    float: right;
    color: #333;
}

.header .mobile-con .language a {
    font-size: 14px;
    padding: 0px 6px;
    color: #333;
}

.header .mobile-con .language a:hover {
    color: #1b75cf;
}

.header .mobile-con .language .active {
    color: #1b75cf;
}

.header .mobile-con .dropdown .txt {
    margin-left: 20px;
}

.header .mobile-con .dropdown .txt h6 {
    font-size: 14px;
}

.header .mobile-con .dropdown .txt a {
    font-size: 13px;
    display: inline-block;
    margin: 4px 12px;
    color: #666;
}

.header .mobile-con .dropdown .txt a:hover {
    color: #1b75cf;
}

/*mobile-header*/

@media (max-width: 768px) {
    .pc-con {
        display: none !important;
    }
    .mobile-con {
        display: block !important;
    }
}

/*main*/

.main {
    clear: both;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .main {
        margin-top: 55px;
    }
}

.main .ad-box-pc {
    margin-top: -1px;
}

.main .ad-box-pc .swiper-container-pc {
    overflow: hidden;
    position: relative;
}

.main .ad-box-pc .swiper-container-pc:hover .swiper-button-next-pc {
    opacity: 1;
}

.main .ad-box-pc .swiper-container-pc:hover .swiper-button-prev-pc {
    opacity: 1;
}

.main .ad-box-pc .top-banner {
    width: 100%;
    position: relative;
}

.main .ad-box-pc .swiper-slide {
    overflow: hidden;
}

.main .ad-box-pc .swiper-slide img {
    width: 100%;
}

.main .ad-box-pc .swiper-pagination {
    position: absolute;
    bottom: 5%;
    z-index: 99;
}

.main .ad-box-pc .swiper-pagination-bullet {
    border-radius: 10px;
    border: 1px solid #fff;
    background: transparent;
    height: 9px;
    width: 9px;
    opacity: 1;
}

.main .ad-box-pc .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.main .ad-box-pc .swiper-button-next-pc {
    width: 33px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 50%;
    margin-top: -26px;
    background: url("../images/ad-btn_03.png") no-repeat center;
    z-index: 6;
    opacity: 0.5;
}

.main .ad-box-pc .swiper-button-prev-pc {
    width: 33px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    left: 5%;
    top: 50%;
    margin-top: -26px;
    background: url("../images/ad-btn_06.png") no-repeat center;
    z-index: 6;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .main .ad-box-pc .swiper-pagination {
        position: absolute;
        bottom: 3%;
        z-index: 99;
    }
    .main .ad-box-pc .swiper-pagination-bullet {
        border-radius: 10px;
        border: 1px solid #fff;
        background: transparent;
        height: 5px;
        width: 5px;
        opacity: 1;
    }
    .main .ad-box-pc .swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1;
    }
}

.main .index-tit {
    text-align: center;
    margin-bottom: 5%;
}

.main .index-tit h4 {
    font-size: 3rem;
    color: #333;
}

@media (max-width: 768px) {
    .main .index-tit h4 {
        font-size: 2.5rem;
    }
}

.main .index-tit h4 span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 33px;
    height: 1px;
    background: #ccc;
    margin: 0 25px;
}

.main .index-tit p {
    font-size: 1.8rem;
    color: #666;
    font-family: "Franklin Gothic demi Cond";
    text-transform: uppercase;
}

.main .product {
    padding: 4% 0;
}

.main .product .swiper-container-product {
    overflow: hidden;
}

.main .product .swiper-container-product .swiper-slide {
    border: 1px solid #ebebeb;
}

.main .product .swiper-container-product .swiper-slide:hover .img .masking {
    opacity: 1;
}

.main .product .swiper-container-product .swiper-slide .img {
    position: relative;
    overflow: hidden;
}

.main .product .swiper-container-product .swiper-slide .img img {
    width: 100%;
}

.main .product .swiper-container-product .swiper-slide .img .masking {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
    height: 100%;
    overflow: hidden;
}

.main .product .swiper-container-product .swiper-slide .img .masking img {
    height: 100%;
    width: auto;
}

.main .product .swiper-container-product .swiper-slide .txt {
    padding: 5%;
}

.main .product .swiper-container-product .swiper-slide .txt p {
    font-size: 1.8rem;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main .product .swiper-container-product .swiper-slide .txt b {
    display: block;
    width: 40px;
    height: 3px;
    background: #0086d4;
}

.main .product .swiper-pagination-pro {
    text-align: center;
    margin-top: 30px;
    z-index: 99;
}

.main .product .swiper-pagination-bullet {
    border-radius: 12px;
    border: 1px solid #ccc;
    background: transparent;
    margin: 0 5px;
    height: 11px;
    width: 11px;
    opacity: 1;
}

.main .product .swiper-pagination-bullet-active {
    background: #0086d4;
    opacity: 1;
    border-color: #0086d4;
}

.main .application {
    padding: 4% 0;
    background: #f4f4f4;
}

.main .application li {
    width: 23%;
    float: left;
    height: 356px;
    background: #fff;
    margin-right: 2.666666%;
    text-align: center;
    transition: 0.4s;
}

@media (max-width: 992px) {
    .main .application li {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .main .application li {
        height: auto;
        width: 100%;
        margin: 0 0 15px 0;
        padding-bottom: 20px;
    }
}

.main .application li:hover {
    box-shadow: 0 0 20px #dddef1;
}

.main .application li:hover .img {
    background: #0063ce;
}

.main .application li:hover h6 {
    color: #0063ce;
}

.main .application li .img {
    height: 85px;
    width: 85px;
    border-radius: 80px;
    margin: 70px auto 0;
    background: #484848;
    transition: 0.4s;
    line-height: 85px;
}

@media (max-width: 992px) {
    .main .application li .img {
        margin: 30px auto 0;
    }
}

.main .application li h6 {
    font-size: 2rem;
    color: #000;
    margin: 30px 0 18px;
}

.main .application li p {
    font-size: 1.2rem;
    color: #888;
    line-height: 180%;
    margin: 0 10%;
}

.main .application li:nth-child(4) {
    margin-right: 0;
}

.main .news {
    padding: 4% 0;
}

.main .news .swiper-container-news {
    overflow: hidden;
}

.main .news .swiper-container-news .swiper-slide {
    border: 1px solid #ebebeb;
}

.main .news .swiper-container-news .swiper-slide:hover .img img {
    transform: scale(1.1);
}

.main .news .swiper-container-news .swiper-slide:hover .txt h6 {
    color: #0063ce;
}

.main .news .swiper-container-news .swiper-slide:hover .txt span {
    color: #0063ce;
}

.main .news .swiper-container-news .swiper-slide .img {
    position: relative;
    overflow: hidden;
}

.main .news .swiper-container-news .swiper-slide .img img {
    width: 100%;
    transition: 0.4s;
}

.main .news .swiper-container-news .swiper-slide .img .masking {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
}

.main .news .swiper-container-news .swiper-slide .txt {
    padding: 5%;
}

.main .news .swiper-container-news .swiper-slide .txt p {
    font-size: 1.4rem;
    color: #b4b2b2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main .news .swiper-container-news .swiper-slide .txt h6 {
    font-size: 1.8rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main .news .swiper-container-news .swiper-slide .txt span {
    font-size: 1.4rem;
    color: #888;
}

.main .news .swiper-pagination-news {
    text-align: center;
    margin-top: 30px;
    z-index: 99;
}

.main .news .swiper-pagination-bullet {
    border-radius: 12px;
    border: 1px solid #ccc;
    background: transparent;
    margin: 0 5px;
    height: 11px;
    width: 11px;
    opacity: 1;
}

.main .news .swiper-pagination-bullet-active {
    background: #0086d4;
    opacity: 1;
    border-color: #0086d4;
}

.main .about {
    padding: 4% 0;
    background: #f4f4f4;
}

.main .about .lf-box {
    width: 40.8333333%;
    float: left;
}

@media (max-width: 768px) {
    .main .about .lf-box {
        width: 100%;
    }
}

.main .about .lf-box .img {
    overflow: hidden;
}

.main .about .lf-box .img img {
    transition: 0.4s;
    width: 100%;
}

.main .about .lf-box .txt {
    background: #0086d4;
    padding: 5%;
    height: 213px;
}

@media (max-width: 1200px) {
    .main .about .lf-box .txt {
        height: 180px;
        padding: 4%;
    }
}

@media (max-width: 992px) {
    .main .about .lf-box .txt {
        height: 158px;
        padding: 4%;
    }
}

@media (max-width: 768px) {
    .main .about .lf-box .txt {
        height: auto;
    }
}

.main .about .lf-box .txt h6 {
    font-size: 2.4rem;
    color: #fff;
}

.main .about .lf-box .txt p {
    font-size: 1.4rem;
    color: #b7d4ef;
    line-height: 180%;
    margin: 4% 0;
}

.main .about .lf-box .txt span {
    font-size: 1.4rem;
    color: #fff;
    text-decoration: underline;
}

.main .about .rt-box {
    width: 56.66666%;
    float: right;
}

@media (max-width: 768px) {
    .main .about .rt-box {
        width: 100%;
        margin-top: 20px;
    }
}

.main .about .rt-box .txt-box {
    margin-bottom: 2.8%;
}

.main .about .rt-box .txt-box .img {
    width: 40%;
    float: left;
}

@media (max-width: 768px) {
    .main .about .rt-box .txt-box .img {
        width: 100%;
    }
}

.main .about .rt-box .txt-box .img img {
    width: 100%;
}

.main .about .rt-box .txt-box .txt {
    width: 60%;
    float: right;
    padding: 3% 6%;
}

@media (max-width: 768px) {
    .main .about .rt-box .txt-box .txt {
        width: 100%;
    }
}

.main .about .rt-box .txt-box .txt h6 {
    font-size: 2.4rem;
    color: #333;
}

.main .about .rt-box .txt-box .txt p {
    font-size: 1.4rem;
    color: #666;
    line-height: 180%;
    margin: 8% 0;
}

.main .about .rt-box .txt-box .txt span {
    font-size: 1.4rem;
    color: #999;
    text-decoration: underline;
}

.main .about .rt-box .img-box {
    width: 100%;
    float: left;
}

.main .about .rt-box .img-box img {
    width: 100%;
}

.footer {
    background: #4b4c4e;
}

.footer .footer-content {
    padding: 60px 0 60px;
    position: relative;
}

.footer .footer-content .list {
    float: left;
    margin-right: 7%;
}

@media (max-width: 1200px) {
    .footer .footer-content .list {
        margin-right: 5%;
    }
}

@media (max-width: 992px) {
    .footer .footer-content .list {
        margin-right: 2%;
    }
}

.footer .footer-content .list h5 {
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.footer .footer-content .list ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    margin-top: 5px;
}

.footer .footer-content .list li {
    font-size: 1.4rem;
    color: #d1d1d1;
    line-height: 32px;
}

.footer .footer-content .list li a {
    color: #d1d1d1;
}

.footer .footer-content .list li a:hover {
    color: #0086d4;
}

.footer .footer-content .contact {
    float: right;
}

.footer .footer-content .contact h5 {
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.footer .footer-content .contact ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    margin-top: 5px;
}

.footer .footer-content .contact li {
    font-size: 1.4rem;
    color: #d1d1d1;
    line-height: 32px;
}

.footer .footer-content .contact li a {
    color: #d1d1d1;
}

.footer .footer-content .contact li a:hover {
    color: #0086d4;
}

.footer .footer-content .contact .link a {
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .footer {
        padding: 0;
    }
    .footer .footer-con2 {
        background: #363637;
        display: block !important;
        text-align: center;
    }
    .footer .footer-con2 p img {
        margin: 0;
    }
    .footer .footer-con2 p a {
        display: inline-block;
        margin: 20px 12px;
    }
    .footer .footer-con2 p a:hover img {
        margin-top: -4px;
    }
    .footer .footer-con2 h5 {
        background: #363637 url("../images/lit_07.png") no-repeat right center;
        background-position: right 26px top 28px;
        margin: 0;
        font-weight: 500;
        color: #fff;
        font-size: 15px;
        border-bottom: 1px solid #aaa;
        padding: 18px 26px 18px 24px;
    }
    .footer .footer-con2 .list-con {
        display: none;
    }
    .footer .footer-con2 .list-con a {
        color: #fff;
        margin: 0;
        background: #4b4c4e;
        text-decoration: none;
        display: block;
        border-bottom: 1px solid #aaa;
        font-size: 14px;
        padding: 12px 26px 12px 24px;
    }
    .footer .footer-con2 .list-con a:hover {
        color: #0086d4;
    }
    .footer .footer-con2 .list-con li {
        color: #fff;
        border-bottom: 1px solid #aaa;
        font-size: 14px;
        padding: 12px 26px 12px 24px;
        background: #edf2f8;
    }
    .footer .footer-con2 .link {
        display: none;
        color: #fff;
        border-bottom: 1px solid #aaa;
        font-size: 14px;
        padding: 12px 26px 12px 24px;
        background: #9a9a9a;
    }
    .footer .footer-con2 .link a {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        margin: 0 3% 0 0;
    }
}

.footer .footer-bot {
    height: 60px;
    background: #363637;
}

.footer .footer-bot .container {
    position: relative;
}

.footer .footer-bot p {
    margin: 0;
    font-size: 1.4rem;
    color: #a9a9a9;
    line-height: 59px;
}

.footer .footer-bot p a {
    color: #a9a9a9;
}

.footer .footer-bot p a:hover {
    color: #0086d4;
}

.footer .footer-bot .lf {
    float: left;
}

.footer .footer-bot .rt {
    float: right;
}

@media (max-width: 768px) {
    .footer .footer-bot {
        height: auto;
        text-align: center;
    }
    .footer .footer-bot .container {
        position: relative;
    }
    .footer .footer-bot p {
        margin: 0;
        font-size: 1.4rem;
        color: #a9a9a9;
        line-height: 26px;
    }
    .footer .footer-bot p a {
        color: #a9a9a9;
    }
    .footer .footer-bot p a:hover {
        color: #0063ce;
    }
    .footer .footer-bot .lf {
        float: none;
        display: inline;
    }
    .footer .footer-bot .rt {
        float: none;
        display: inline;
        padding-left: 10px;
    }
}

.footer .returnTop {
    z-index: 99;
    display: block;
    cursor: pointer;
    position: fixed;
    bottom: 90px;
    right: 30px;
    opacity: 1;
    width: 48px;
    height: 48px;
    background: url("../images/return-top.png") no-repeat center;
}

/*ins-style*/

@media (max-width: 768px) {
    .ins-main {
        margin-top: 55px;
    }
}

.ins-main .ins-ad {
    position: relative;
}

@media (min-width: 768px) {
    .ins-main .ins-ad {
        margin-top: 80px;
    }
}

.ins-main .ins-ad img {
    width: 100%;
}

.ins-main .ins-nav {
    height: 58px;
    line-height: 58px;
    border-bottom: 1px solid #f5f5f5;
}

.ins-main .ins-nav .rt-nav {
    float: right;
}

.ins-main .ins-nav .rt-nav p {
    margin: 0;
    padding-left: 26px;
    background: url("../images/location_03.jpg") no-repeat left center;
    font-size: 1.4rem;
    color: #333;
}

.ins-main .ins-nav .rt-nav p a {
    color: #333;
}

.ins-main .ins-nav .rt-nav p a:hover {
    color: #0187e8;
}

.ins-main .ins-nav .rt-nav p .active {
    color: #0187e8;
}

@media (max-width: 768px) {
    .ins-main .ins-nav {
        height: auto;
        line-height: 40px;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 15px;
    }
    .ins-main .ins-nav .rt-nav {
        float: none;
    }
    .ins-main .ins-nav .rt-nav p {
        margin: 0;
        padding-left: 26px;
        background: url("../images/location_03.jpg") no-repeat left center;
        font-size: 1.4rem;
        color: #333;
    }
    .ins-main .ins-nav .rt-nav p a {
        color: #333;
    }
    .ins-main .ins-nav .rt-nav p a:hover {
        color: #0187e8;
    }
    .ins-main .ins-nav .rt-nav p .active {
        color: #0187e8;
    }
}

.ins-main .list-nav {
    height: 64px;
    margin-top: -64px;
    text-align: center;
    z-index: 6;
    position: relative;
}

.ins-main .list-nav ul {
    margin: 0;
}

.ins-main .list-nav li {
    font-size: 1.6rem;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 3%;
}

.ins-main .list-nav li:hover a {
    color: #00f0ff;
    border-color: #00f0ff;
}

.ins-main .list-nav li a {
    color: #fff;
    padding-bottom: 16px;
    border-bottom: 1px solid transparent;
}

.ins-main .list-nav .active a {
    color: #00f0ff;
    border-color: #00f0ff;
}

@media (max-width: 768px) {
    .ins-main .list-nav {
        height: 64px;
        margin-top: -64px;
        text-align: center;
        z-index: 6;
        position: relative;
    }
    .ins-main .list-nav ul {
        margin: 0;
    }
    .ins-main .list-nav li {
        font-size: 1.6rem;
        display: inline-block;
        *display: inline;
        *zoom: 1;
        margin: 0 3% 10px 3%;
    }
    .ins-main .list-nav li:hover a {
        color: #00f0ff;
        border-color: #00f0ff;
    }
    .ins-main .list-nav li a {
        color: #fff;
        padding-bottom: 8px;
        border-bottom: 1px solid transparent;
    }
    .ins-main .list-nav .active a {
        color: #00f0ff;
        border-color: #00f0ff;
    }
}

.ins-main .ins-team {
    padding: 4% 0 3%;
    background: #f1f1f1;
}

.ins-main .ins-team li {
    width: 22%;
    float: left;
    margin-right: 4%;
    margin-bottom: 2.66666%;
}

@media (max-width: 768px) {
    .ins-main .ins-team li {
        width: 49%;
        margin: 0 2% 2% 0;
    }
}

.ins-main .ins-team li img {
    width: 100%;
}

.ins-main .ins-team li p {
    text-align: center;
    margin: 15px 0 0 0;
    font-size: 1.6rem;
    color: #333;
}

.ins-main .ins-team li:nth-child(4n+4) {
    margin-right: 0;
}

@media (max-width: 768px) {
    .ins-main .ins-team li:nth-child(2n+2) {
        margin-right: 0;
    }
}

.ins-main .ins-bankuai {
    padding: 2% 0 3%;
    background: #f1f1f1;
}

.ins-main .ins-bankuai li {
    padding: 3% 0;
    border-bottom: 1px solid #cdcdcd;
}

.ins-main .ins-bankuai li:hover .img img {
    transform: scale(1.08);
}

.ins-main .ins-bankuai li:hover .txt h6 {
    color: #5e8abb;
}

.ins-main .ins-bankuai li .img {
    width: 43.16666%;
    float: left;
    overflow: hidden;
}

@media (max-width: 768px) {
    .ins-main .ins-bankuai li .img {
        width: 100%;
        margin-bottom: 15px;
    }
}

.ins-main .ins-bankuai li .img img {
    width: 100%;
    transition: 0.4s;
}

.ins-main .ins-bankuai li .txt {
    width: 50%;
    float: right;
}

@media (max-width: 768px) {
    .ins-main .ins-bankuai li .txt {
        width: 100%;
    }
}

.ins-main .ins-bankuai li .txt h6 {
    font-size: 1.8rem;
    color: #000;
}

.ins-main .ins-bankuai li .txt p {
    font-size: 1.4rem;
    color: #666;
    line-height: 220%;
}

.ins-main .ins-bankuai li:nth-child(2n+2) .img {
    float: right;
}

.ins-main .ins-bankuai li:nth-child(2n+2) .txt {
    float: left;
}

.ins-main .ins-profile {
    padding: 4% 0 3%;
    background: #f1f1f1;
}

.ins-main .ins-profile li {
    margin-bottom: 6%;
}

.ins-main .ins-profile li .img {
    width: 47%;
    float: right;
}

.ins-main .ins-profile li .img img {
    width: 100%;
}

.ins-main .ins-profile li .txt {
    width: 47%;
    float: left;
}

.ins-main .ins-profile li .txt h6 {
    font-size: 2.4rem;
    color: #3e6ca1;
    margin-bottom: 4%;
}

.ins-main .ins-profile li .txt h6 span {
    display: block;
    font-size: 1.2rem;
    font-family: arial;
    margin-top: 13px;
}

.ins-main .ins-profile li .txt p {
    font-size: 1.4rem;
    color: #666;
    line-height: 180%;
    margin-bottom: 3%;
}

.ins-main .ins-profile li:nth-child(2) {
    margin-bottom: 0;
}

.ins-main .ins-profile li:nth-child(2) .img {
    float: left;
}

.ins-main .ins-profile li:nth-child(2) .txt {
    float: right;
}

.ins-main .ins-profile li:nth-child(2) .txt h6 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .ins-main .ins-profile {
        padding: 4% 0 3%;
        background: #f1f1f1;
    }
    .ins-main .ins-profile li {
        margin-bottom: 6%;
    }
    .ins-main .ins-profile li .img {
        width: 100%;
        float: right;
        margin-bottom: 15px;
    }
    .ins-main .ins-profile li .img img {
        width: 100%;
    }
    .ins-main .ins-profile li .txt {
        width: 100%;
        float: left;
    }
    .ins-main .ins-profile li .txt h6 {
        font-size: 2.4rem;
        color: #3e6ca1;
        margin-bottom: 4%;
    }
    .ins-main .ins-profile li .txt h6 span {
        display: block;
        font-size: 1.2rem;
        font-family: arial;
        margin-top: 13px;
    }
    .ins-main .ins-profile li .txt p {
        font-size: 1.4rem;
        color: #666;
        line-height: 180%;
        margin-bottom: 3%;
    }
    .ins-main .ins-profile li:nth-child(2) {
        margin-bottom: 0;
    }
    .ins-main .ins-profile li:nth-child(2) .img {
        float: left;
    }
    .ins-main .ins-profile li:nth-child(2) .txt {
        float: right;
    }
    .ins-main .ins-profile li:nth-child(2) .txt h6 {
        font-size: 2rem;
    }
}

.ins-main .ins-culture {
    padding: 4% 0;
    background: #f1f1f1;
}

.ins-main .ins-culture .top-list {
    margin-bottom: 6%;
}

.ins-main .ins-culture .top-list li {
    width: 32.333333%;
    float: left;
    margin-right: 1.5%;
}

.ins-main .ins-culture .top-list li .img img {
    width: 100%;
}

.ins-main .ins-culture .top-list li .txt {
    padding-left: 4%;
}

.ins-main .ins-culture .top-list li .txt h5 {
    font-size: 2rem;
    color: #3e6ca1;
    margin: 15px 0;
}

.ins-main .ins-culture .top-list li .txt p {
    font-size: 1.4rem;
    color: #3e6ca1;
    margin-bottom: 5px;
}

.ins-main .ins-culture .top-list li:nth-child(3n+3) {
    margin-right: 0;
}

.ins-main .ins-culture .bot-list li {
    float: left;
    height: 80px;
    padding-left: 100px;
    margin-right: 4%;
}

.ins-main .ins-culture .bot-list li h6 {
    font-size: 2rem;
    color: #3e6ca1;
    margin-top: 15px;
}

.ins-main .ins-culture .bot-list li p {
    font-size: 1.4rem;
    color: #3e6ca1;
}

.ins-main .ins-culture .bot-list li:nth-child(4) {
    margin-right: 0;
}

.ins-main .ins-culture .bot-list li:nth-child(1) {
    background: url("../images/wenhua-icon_03.jpg") no-repeat left center;
}

.ins-main .ins-culture .bot-list li:nth-child(2) {
    background: url("../images/wenhua-icon_05.jpg") no-repeat left center;
}

.ins-main .ins-culture .bot-list li:nth-child(3) {
    background: url("../images/wenhua-icon_07.jpg") no-repeat left center;
}

.ins-main .ins-culture .bot-list li:nth-child(4) {
    background: url("../images/wenhua-icon_09.jpg") no-repeat left center;
}

@media (max-width: 768px) {
    .ins-main .ins-culture {
        padding: 4% 0;
        background: #f1f1f1;
    }
    .ins-main .ins-culture .top-list {
        margin-bottom: 6%;
    }
    .ins-main .ins-culture .top-list li {
        width: 100%;
        float: left;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .ins-main .ins-culture .top-list li .img img {
        width: 100%;
    }
    .ins-main .ins-culture .top-list li .txt {
        padding-left: 4%;
    }
    .ins-main .ins-culture .top-list li .txt h5 {
        font-size: 2rem;
        color: #3e6ca1;
        margin: 15px 0;
    }
    .ins-main .ins-culture .top-list li .txt p {
        font-size: 1.4rem;
        color: #3e6ca1;
        margin-bottom: 5px;
    }
    .ins-main .ins-culture .top-list li:nth-child(3n+3) {
        margin-right: 0;
    }
    .ins-main .ins-culture .bot-list li {
        float: left;
        height: 80px;
        padding-left: 100px;
        margin-right: 4%;
        margin-bottom: 20px;
    }
    .ins-main .ins-culture .bot-list li h6 {
        font-size: 2rem;
        color: #3e6ca1;
        margin-top: 15px;
    }
    .ins-main .ins-culture .bot-list li p {
        font-size: 1.4rem;
        color: #3e6ca1;
    }
    .ins-main .ins-culture .bot-list li:nth-child(4) {
        margin-right: 0;
    }
    .ins-main .ins-culture .bot-list li:nth-child(1) {
        background: url("../images/wenhua-icon_03.jpg") no-repeat left center;
    }
    .ins-main .ins-culture .bot-list li:nth-child(2) {
        background: url("../images/wenhua-icon_05.jpg") no-repeat left center;
    }
    .ins-main .ins-culture .bot-list li:nth-child(3) {
        background: url("../images/wenhua-icon_07.jpg") no-repeat left center;
    }
    .ins-main .ins-culture .bot-list li:nth-child(4) {
        background: url("../images/wenhua-icon_09.jpg") no-repeat left center;
    }
}

.ins-main .ins-net {
    padding: 4% 0 2%;
    background: #f1f1f1;
    text-align: center;
}

.ins-main .ins-net img {
    max-width: 100%;
}

.ins-main .ins-honor {
    padding: 4% 0;
    background: #f1f1f1;
    text-align: center;
}

.ins-main .ins-honor li {
    width: 23%;
    float: left;
    margin-right: 2.666666%;
    margin-bottom: 2.66666%;
}

@media (max-width: 768px) {
    .ins-main .ins-honor li {
        width: 49%;
        margin: 0 2% 2% 0;
    }
}

.ins-main .ins-honor li img {
    width: 100%;
    cursor: pointer;
}

.ins-main .ins-honor li p {
    text-align: center;
    font-size: 1.4rem;
    margin: 10px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ins-main .ins-honor li:nth-child(4n+4) {
    margin-right: 0;
}

@media (max-width: 768px) {
    .ins-main .ins-honor li:nth-child(2n+2) {
        margin-right: 0;
    }
}

.ins-main .ins-case {
    padding: 4% 0;
    background: #f1f1f1;
    text-align: center;
}

.ins-main .ins-case li {
    width: 23%;
    float: left;
    margin-right: 2.666666%;
    margin-bottom: 2.66666%;
}

@media (max-width: 768px) {
    .ins-main .ins-case li {
        width: 49%;
        margin: 0 2% 2% 0;
    }
}

.ins-main .ins-case li:hover .img img {
    transform: scale(1.1);
}

.ins-main .ins-case li .img {
    overflow: hidden;
}

.ins-main .ins-case li .img img {
    width: 100%;
    transition: 0.4s;
}

.ins-main .ins-case li p {
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    margin: 10px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ins-main .ins-case li:nth-child(4n+4) {
    margin-right: 0;
}

@media (max-width: 768px) {
    .ins-main .ins-case li:nth-child(2n+2) {
        margin-right: 0;
    }
}

.ins-main .case-show {
    padding: 4% 0;
    background: #f1f1f1;
    text-align: center;
}

.ins-main .case-show h4 {
    font-size: 2.4rem;
    color: #5b5b5b;
    text-align: center;
    margin-bottom: 4%;
}

.ins-main .case-show .top-show {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ins-main .case-show .top-show {
        width: 100%;
    }
}

.ins-main .case-show .top-show .view .swiper-container {
    height: 100%;
    padding: 1px;
}

.ins-main .case-show .top-show .view .swiper-container .swiper-slide {
    width: 100%;
}

.ins-main .case-show .top-show .view .swiper-container .swiper-slide img {
    width: 100%;
    border: 1px solid #f0f0f0;
    background: #f3f3f3;
}

.ins-main .case-show .top-show .preview {
    width: 100%;
    padding: 1% 0;
    position: relative;
    border-top: none;
}

.ins-main .case-show .top-show .preview .arrow-left {
    position: absolute;
    width: 23px;
    height: 43px;
    left: 15px;
    top: 50%;
    margin-top: -21px;
    background: url("../images/show-btn_03.png") no-repeat center;
    cursor: pointer;
    z-index: 6;
}

.ins-main .case-show .top-show .preview .arrow-right {
    position: absolute;
    width: 23px;
    height: 43px;
    right: 15px;
    top: 50%;
    margin-top: -21px;
    background: url("../images/show-btn_06.png") no-repeat center;
    cursor: pointer;
    z-index: 6;
}

.ins-main .case-show .top-show .preview .swiper-container {
    width: 100%;
    margin: 0 auto;
}

.ins-main .case-show .top-show .preview .swiper-slide {
    float: left;
    width: auto;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.ins-main .case-show .top-show .preview .swiper-slide img {
    width: 100%;
    cursor: pointer;
    border: 1px solid #efefef;
    background: #f3f3f3;
}

.ins-main .case-show .top-show .preview .active-nav img {
    border: 1px solid #0086d4;
}

.ins-main .case-show .top-show .txt-box {
    margin: 4% 0;
    text-align: left;
}

.ins-main .case-show .top-show .txt-box p {
    font-size: 1.6rem;
    color: #333;
    line-height: 180%;
}

.ins-main .case-show .return a {
    display: block;
    margin: 0 auto;
    width: 170px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    background: #0086d4;
    color: #fff;
    font-size: 1.4rem;
}

.ins-main .ins-huanjing {
    padding: 2.5% 0 1.5%;
}

.ins-main .ins-huanjing li {
    border: 1px solid #f1f1f1;
    padding: 1%;
    position: relative;
    width: 32.33333%;
    float: left;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
}

.ins-main .ins-huanjing li .img-box {
    position: relative;
    cursor: pointer;
}

.ins-main .ins-huanjing li .img-box:hover .masking {
    opacity: 1;
}

.ins-main .ins-huanjing li .img-box img {
    width: 100%;
}

.ins-main .ins-huanjing li .img-box .masking {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
}

.ins-main .ins-huanjing li:nth-child(3n+3) {
    margin-right: 0;
}

@media (max-width: 768px) {
    .ins-main .ins-huanjing {
        padding: 2.5% 0 1.5%;
    }
    .ins-main .ins-huanjing li {
        border: 1px solid #f1f1f1;
        padding: 1%;
        position: relative;
        width: 49%;
        float: left;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .ins-main .ins-huanjing li .img-box {
        position: relative;
        cursor: pointer;
    }
    .ins-main .ins-huanjing li .img-box:hover .masking {
        opacity: 1;
    }
    .ins-main .ins-huanjing li .img-box img {
        width: 100%;
    }
    .ins-main .ins-huanjing li .img-box .masking {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: 0.3s;
    }
    .ins-main .ins-huanjing li:nth-child(3n+3) {
        margin-right: 2%;
    }
    .ins-main .ins-huanjing li:nth-child(2n+2) {
        margin-right: 0;
    }
}

.ins-main .ins-history {
    padding: 3% 0;
}

.ins-main .ins-history .content {
    background: url("../images/licheng-bg_03.jpg") repeat-y center;
    position: relative;
}

.ins-main .ins-history .content .top-img {
    text-align: center;
}

.ins-main .ins-history .content .list-box {
    margin-top: 4%;
}

.ins-main .ins-history .content .list-box li {
    width: 53.8%;
    float: left;
    position: relative;
    height: 91px;
    margin-bottom: 30px;
}

@media (max-width: 1300px) {
    .ins-main .ins-history .content .list-box li {
        width: 54.3%;
    }
}

@media (max-width: 1200px) {
    .ins-main .ins-history .content .list-box li {
        width: 55.3%;
    }
}

@media (max-width: 992px) {
    .ins-main .ins-history .content .list-box li {
        width: 57%;
    }
}

.ins-main .ins-history .content .list-box li:hover .date {
    border-color: #d4b08c;
}

.ins-main .ins-history .content .list-box li:hover .date h6 {
    background: #d4b08c;
    color: #fff;
}

.ins-main .ins-history .content .list-box li:hover p {
    color: #d4b08c;
}

.ins-main .ins-history .content .list-box li .date {
    float: right;
    border-radius: 91px;
    padding: 7px;
    background: #fff;
    border: 1px solid #efefef;
}

.ins-main .ins-history .content .list-box li .date h6 {
    font-size: 1.8rem;
    color: #070707;
    background: #f7f7f7;
    margin: 0;
    width: 84px;
    height: 84px;
    border-radius: 84px;
    text-align: center;
    line-height: 84px;
}

.ins-main .ins-history .content .list-box li p {
    font-size: 1.4rem;
    color: #727272;
    line-height: 160%;
    width: 80%;
    position: absolute;
    transform: translate(0%, -50%);
    left: 0%;
    top: 50%;
}

@media (max-width: 992px) {
    .ins-main .ins-history .content .list-box li p {
        width: 70%;
    }
}

.ins-main .ins-history .content .list-box li:nth-child(even) {
    float: right;
}

.ins-main .ins-history .content .list-box li:nth-child(even) .date {
    float: left;
}

.ins-main .ins-history .content .list-box li:nth-child(even) p {
    font-size: 1.4rem;
    color: #727272;
    line-height: 160%;
    position: absolute;
    transform: translate(25%, -50%);
    right: 0%;
    top: 50%;
}

@media (max-width: 992px) {
    .ins-main .ins-history .content .list-box li:nth-child(even) p {
        transform: translate(40%, -50%);
    }
}

@media (max-width: 768px) {
    .ins-main .ins-history {
        padding: 3% 0;
    }
    .ins-main .ins-history .content {
        background: none;
        position: relative;
    }
    .ins-main .ins-history .content .top-img {
        display: none;
    }
    .ins-main .ins-history .content .list-box {
        margin-top: 4%;
    }
    .ins-main .ins-history .content .list-box li {
        width: 100%;
        float: left;
        position: relative;
        height: 91px;
        margin-bottom: 30px;
    }
    .ins-main .ins-history .content .list-box li:hover .date {
        border-color: #d4b08c;
    }
    .ins-main .ins-history .content .list-box li:hover .date h6 {
        background: #d4b08c;
        color: #fff;
    }
    .ins-main .ins-history .content .list-box li:hover p {
        color: #d4b08c;
    }
    .ins-main .ins-history .content .list-box li .date {
        float: left;
        border-radius: 91px;
        padding: 7px;
        background: #fff;
        border: 1px solid #efefef;
    }
    .ins-main .ins-history .content .list-box li .date h6 {
        font-size: 1.8rem;
        color: #070707;
        background: #f7f7f7;
        margin: 0;
        width: 64px;
        height: 64px;
        border-radius: 64px;
        text-align: center;
        line-height: 64px;
    }
    .ins-main .ins-history .content .list-box li p {
        font-size: 1.4rem;
        color: #727272;
        line-height: 160%;
        width: 80%;
        position: absolute;
        transform: translate(40%, -50%);
        left: 0%;
        top: 50%;
    }
    .ins-main .ins-history .content .list-box li:nth-child(even) {
        float: right;
    }
    .ins-main .ins-history .content .list-box li:nth-child(even) .date {
        float: left;
    }
    .ins-main .ins-history .content .list-box li:nth-child(even) p {
        font-size: 1.4rem;
        color: #727272;
        line-height: 160%;
        position: absolute;
        transform: translate(25%, -50%);
        right: 0%;
        top: 50%;
    }
}

@media (max-width: 768px) and (max-width: 992px) {
    .ins-main .ins-history .content .list-box li p {
        width: 70%;
    }
}

@media (max-width: 768px) and (max-width: 992px) {
    .ins-main .ins-history .content .list-box li:nth-child(even) p {
        transform: translate(40%, -50%);
    }
}

.ins-main .ins-message {
    padding: 4% 0;
    background: #f1f1f1;
}

.ins-main .ins-message ul:nth-child(1) li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    float: left;
}

.ins-main .ins-message ul:nth-child(1) li input {
    background: #f6f6f6;
    padding: 0 15px;
    font-size: 1.6rem;
    color: #666;
    border: none;
    width: 100%;
    height: 57px;
}

.ins-main .ins-message ul:nth-child(1) li:nth-child(2n+2) {
    margin-right: 0;
}

.ins-main .ins-message ul:nth-child(1) li:nth-child(5) {
    width: 100%;
    margin: 0;
}

.ins-main .ins-message ul:nth-child(1) li:nth-child(5) textarea {
    background: #f6f6f6;
    padding: 15px;
    font-size: 1.6rem;
    color: #666;
    border: none;
    width: 100%;
    height: 215px;
}

.ins-main .ins-message ul:nth-child(3) {
    text-align: center;
    margin-top: 3%;
}

.ins-main .ins-message ul:nth-child(3) input {
    width: 200px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    background: #283776;
}

@media (max-width: 768px) {
    .ins-main .ins-message {
        padding: 4% 0;
        background: #f1f1f1;
    }
    .ins-main .ins-message ul:nth-child(1) li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
        float: left;
    }
    .ins-main .ins-message ul:nth-child(1) li input {
        background: #f6f6f6;
        padding: 0 15px;
        font-size: 1.6rem;
        color: #666;
        border: none;
        width: 100%;
        height: 57px;
    }
    .ins-main .ins-message ul:nth-child(1) li:nth-child(2n+2) {
        margin-right: 0;
    }
    .ins-main .ins-message ul:nth-child(1) li:nth-child(5) {
        width: 100%;
        margin: 0;
    }
    .ins-main .ins-message ul:nth-child(1) li:nth-child(5) textarea {
        background: #f6f6f6;
        padding: 15px;
        font-size: 1.6rem;
        color: #666;
        border: none;
        width: 100%;
        height: 160px;
    }
    .ins-main .ins-message ul:nth-child(3) {
        text-align: center;
        margin-top: 3%;
    }
    .ins-main .ins-message ul:nth-child(3) input {
        width: 200px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 1.5rem;
        background: #283776;
    }
}

.ins-main .ins-contact .contact-top {
    padding: 5% 0;
}

.ins-main .ins-contact .contact-top .lf {
    width: 33.333333%;
    text-align: center;
    float: left;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-top .lf {
        width: 100%;
    }
}

.ins-main .ins-contact .contact-top .lf .link {
    margin-top: 40px;
}

.ins-main .ins-contact .contact-top .lf .link a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 200px;
    text-align: center;
    border-radius: 6px;
    height: 54px;
    line-height: 54px;
    box-shadow: 0 0 26px #005aab;
    background: #005aab;
    font-size: 1.8rem;
    color: #fff;
}

.ins-main .ins-contact .contact-top .rt {
    width: 66.666666666%;
    float: right;
    border-left: 1px solid #cecece;
    padding-left: 8%;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-top .rt {
        width: 100%;
        border: none;
        margin-top: 30px;
    }
}

.ins-main .ins-contact .contact-top .rt h6 {
    font-size: 2rem;
    color: #3a3a3a;
}

.ins-main .ins-contact .contact-top .rt b {
    display: block;
    width: 54px;
    height: 4px;
    background: #005aab;
    margin: 15px 0;
}

.ins-main .ins-contact .contact-top .rt li {
    float: left;
    margin-right: 20px;
}

.ins-main .ins-contact .contact-top .rt li p {
    margin-bottom: 5px;
    font-size: 1.4rem;
    color: #444;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-top .rt li p {
        margin-bottom: 10px;
    }
}

.ins-main .ins-contact .contact-top .rt li:nth-child(3) {
    margin-right: 0;
}

.ins-main .ins-contact .contact-top .rt li img {
    margin-top: 0 !important;
}

.ins-main .ins-contact .map-box .amap-controls {
    display: none;
}

.ins-main .ins-contact .map-box .my-map {
    margin: 0 auto;
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .map-box .my-map {
        height: 300px;
    }
}

.ins-main .ins-contact .map-box .my-map .icon {
    background: url(http://lbs.amap.com/console/public/show/marker.png) no-repeat;
}

.ins-main .ins-contact .map-box .my-map .icon-cir {
    height: 31px;
    width: 28px;
}

.ins-main .ins-contact .map-box .my-map .icon-cir-red {
    background-position: -11px -5px;
}

.ins-main .ins-contact .map-box .amap-container {
    height: 100%;
}

.ins-main .ins-contact .contact-bot {
    padding: 5% 0;
}

.ins-main .ins-contact .contact-bot .lf {
    width: 38.33333%;
    float: left;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-bot .lf {
        width: 100%;
    }
}

.ins-main .ins-contact .contact-bot .lf h4 {
    font-size: 3rem;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-bot .lf h4 {
        font-size: 2.5rem;
    }
}

.ins-main .ins-contact .contact-bot .lf b {
    display: block;
    width: 54px;
    height: 4px;
    background: #005aab;
}

.ins-main .ins-contact .contact-bot .lf p {
    font-size: 1.4rem;
    color: #444;
    line-height: 180%;
    margin: 60px 0 50px;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-bot .lf p {
        margin: 20px 0;
    }
}

.ins-main .ins-contact .contact-bot .lf .follow h6 {
    font-size: 1.8rem;
    color: #3a3a3a;
    min-height: 23px;
    padding-left: 37px;
    background: url("../images/follow-lit_03.jpg") no-repeat left center;
}

.ins-main .ins-contact .contact-bot .lf .follow li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 20px 8px 0 0;
}

.ins-main .ins-contact .contact-bot .rt {
    padding: 3%;
    width: 51.1666666%;
    float: right;
    box-shadow: 0 0 30px #dfdddd;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-bot .rt {
        width: 100%;
    }
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(1) {
    margin: 0;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(1) li {
    width: 48%;
    float: left;
    margin: 0 4% 4% 0;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(1) li input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 0 10px;
    height: 52px;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(1) li textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    height: 220px;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(1) li:nth-child(2n+2) {
    margin-right: 0;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(1) li:last-child {
    width: 100%;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(2) {
    text-align: right;
    margin: 0;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(2) li {
    width: 156px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 3rem;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

@media (max-width: 768px) {
    .ins-main .ins-contact .contact-bot .rt ul:nth-child(2) li {
        width: 100px;
    }
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(2) li input {
    width: 100%;
    border: none;
    height: 100%;
    background: #a8a8a8;
    font-size: 1.4rem;
    color: #fff;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(2) li:nth-child(2) {
    margin: 0;
}

.ins-main .ins-contact .contact-bot .rt ul:nth-child(2) li:nth-child(2) input {
    background: #005aab;
}

.ins-main .ins-about .profile {
    padding: 7% 0;
}

.ins-main .ins-about .profile .img {
    width: 42.83333%;
    float: left;
}

.ins-main .ins-about .profile .img img {
    width: 100%;
}

.ins-main .ins-about .profile .img video {
    width: 100%;
    object-fit: cover;
    height: 24rem;
}

video::-webkit-media-controls {
    overflow: hidden !important;
}

video::-webkit-media-controls-enclosure {
    width: calc(100% + 32px);
    margin-left: auto;
}

video::-webkit-media-controls-enclosure {
    opacity: .8;
}

.kanbare {
    background-color: #FFFFFF;
}

@media (max-width: 768px) {
    .ins-main .ins-about .profile .img {
        width: 100%;
    }
    .ins-main .ins-about .profile .img video {
        height: auto !important;
    }
}

.ins-main .ins-about .profile .txt {
    width: 52.5%;
    float: right;
}

.jiamsrg {
    background-color: #F0F8FD;
}

@media (max-width: 768px) {
    .ins-main .ins-about .profile .txt {
        width: 100%;
    }
}

.ins-main .ins-about .profile .txt h5 {
    font-size: 3rem;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .ins-main .ins-about .profile .txt h5 {
        font-size: 2.5rem;
    }
}

.ins-main .ins-about .profile .txt b {
    display: block;
    width: 54px;
    height: 4px;
    background: #005aab;
    margin: 15px 0;
}

.ins-main .ins-about .profile .txt p {
    font-size: 1.4rem;
    color: #666;
    line-height: 200%;
}

.ins-main .ins-about .culture {
    text-align: center;
    padding: 5% 0 7%;
    background: #f2f2f2;
}

.ins-main .ins-about .culture .culture-tit {
    margin-bottom: 6%;
}

.ins-main .ins-about .culture .culture-tit h5 {
    font-size: 3rem;
    color: #2b2b2b;
}

@media (max-width: 768px) {
    .ins-main .ins-about .culture .culture-tit h5 {
        font-size: 2.5rem;
    }
}

.ins-main .ins-about .culture .culture-tit p {
    font-size: 1.4rem;
    color: #2b2b2b;
}

.ins-main .ins-about .culture .content img {
    max-width: 100%;
}

.ins-main .ins-advantage {
    padding: 3% 0;
}

.ins-main .ins-advantage .top-list {
    text-align: center;
    margin-bottom: 3%;
}

.ins-main .ins-advantage .top-list li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    border: 1px solid #eee;
    width: 215px;
    text-align: center;
    height: 80px;
    line-height: 80px;
}

.ins-main .ins-advantage .top-list li:hover {
    background: #d4b08c;
}

.ins-main .ins-advantage .top-list li:hover a {
    color: #fff;
}

.ins-main .ins-advantage .top-list li a {
    display: block;
    font-size: 1.6rem;
    color: #373737;
}

.ins-main .ins-advantage .top-list .active {
    background: #d4b08c;
}

.ins-main .ins-advantage .top-list .active a {
    color: #fff;
}

.ins-main .ins-advantage .content .img img {
    width: 100%;
}

.ins-main .ins-advantage .content .con-tit {
    text-align: center;
    margin: 3% 0;
}

.ins-main .ins-advantage .content .con-tit h4 {
    font-size: 3rem;
    color: #005aab;
}

.ins-main .ins-advantage .content .con-tit p {
    font-size: 1.6rem;
    color: #323232;
}

.ins-main .ins-advantage .content .txt p {
    font-size: 1.4rem;
    color: #767676;
    line-height: 200%;
}

@media (max-width: 768px) {
    .ins-main .ins-advantage {
        padding: 3% 0;
    }
    .ins-main .ins-advantage .top-list {
        text-align: center;
        margin-bottom: 3%;
    }
    .ins-main .ins-advantage .top-list li {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        border: 1px solid #eee;
        width: 50%;
        float: left;
        text-align: center;
        height: 50px;
        line-height: 50px;
    }
    .ins-main .ins-advantage .top-list li:hover {
        background: #d4b08c;
    }
    .ins-main .ins-advantage .top-list li:hover a {
        color: #fff;
    }
    .ins-main .ins-advantage .top-list li a {
        display: block;
        font-size: 1.6rem;
        color: #373737;
    }
    .ins-main .ins-advantage .top-list .active {
        background: #d4b08c;
    }
    .ins-main .ins-advantage .top-list .active a {
        color: #fff;
    }
    .ins-main .ins-advantage .content .img img {
        width: 100%;
    }
    .ins-main .ins-advantage .content .con-tit {
        text-align: center;
        margin: 3% 0;
    }
    .ins-main .ins-advantage .content .con-tit h4 {
        font-size: 2.4rem;
        color: #005aab;
    }
    .ins-main .ins-advantage .content .con-tit p {
        font-size: 1.6rem;
        color: #323232;
    }
    .ins-main .ins-advantage .content .txt p {
        font-size: 1.4rem;
        color: #767676;
        line-height: 200%;
    }
}

.ins-main .ins-recruit {
    padding: 4% 0 0;
}

.ins-main .ins-recruit .tit {
    text-align: center;
    margin-bottom: 4%;
    background: url("../images/tit-bg_03.png") no-repeat center 82%;
}

.ins-main .ins-recruit .tit h5 {
    font-size: 2.4rem;
    color: #005aab;
}

.ins-main .ins-recruit .tit p {
    font-size: 1.6rem;
    color: #666;
    text-transform: uppercase;
}

.ins-main .ins-recruit .table {
    padding-bottom: 15px;
}

.ins-main .ins-recruit .table .tit2 {
    height: 56px;
    line-height: 56px;
    background: #005aab;
}

.ins-main .ins-recruit .table .tit2 li {
    float: left;
    text-align: center;
    width: 25%;
    box-sizing: border-box;
    font-size: 1.6rem;
    color: #fefefe;
    border-right: 1px solid #fff;
}

.ins-main .ins-recruit .table .tit2 li:last-child {
    border-right: none;
}

.ins-main .ins-recruit .table .table-con {
    position: relative;
    z-index: 6;
    margin-top: 0;
}

.ins-main .ins-recruit .table .table-con ul {
    margin: 0;
    cursor: pointer;
    height: 56px;
    line-height: 56px;
    border-top: 1px solid #cdcdcd;
}

.ins-main .ins-recruit .table .table-con li {
    float: left;
    height: 56px;
    line-height: 56px;
    font-size: 1.6rem;
    background: #fff;
    color: #666;
    width: 25%;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #cdcdcd;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ins-main .ins-recruit .table .table-con li span {
    color: #005aab;
}

.ins-main .ins-recruit .table .table-con li:first-child {
    border-left: 1px solid #cdcdcd;
}

.ins-main .ins-recruit .table .table-con .txt-box {
    display: none;
    border-left: 1px solid #cdcdcd;
    border-right: 1px solid #cdcdcd;
    clear: both;
    padding: 2%;
    position: relative;
    background: #fff;
}

.ins-main .ins-recruit .table .table-con .txt-box .box-tit h5 {
    font-size: 2.4rem;
    color: #333;
    display: inline-block;
}

.ins-main .ins-recruit .table .table-con .txt-box .box-tit h5 b {
    color: #005aab;
    font-weight: 500;
}

.ins-main .ins-recruit .table .table-con .txt-box .box-tit span {
    display: inline-block;
    font-size: 1.4rem;
    color: #666;
    margin: 0 1%;
}

.ins-main .ins-recruit .table .table-con .txt-box .txt h6 {
    font-size: 16px;
    color: #666;
    padding: 1% 0 1% 13px;
    line-height: 180%;
    background: url("../images/h6-lit_03.jpg") no-repeat left center;
}

.ins-main .ins-recruit .table .table-con .txt-box .txt p {
    font-size: 1.4rem;
    color: #666;
    line-height: 24px;
}

.ins-main .ins-recruit .table .table-con .txt-box .txt a {
    display: inline-block;
    width: 160px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    background: #005aab;
    font-size: 1.6rem;
    margin: 3% 0 2%;
    color: #fff;
}

.ins-main .ins-recruit .link-bot {
    margin-top: 2%;
}

.ins-main .ins-recruit .link-bot img {
    width: 100%;
}

@media (max-width: 768px) {
    .ins-main .ins-recruit .tit {
        text-align: center;
        margin-bottom: 4%;
        background: none;
    }
    .ins-main .ins-recruit .tit h5 {
        font-size: 2.4rem;
        color: #005aab;
    }
    .ins-main .ins-recruit .tit p {
        font-size: 1.6rem;
        color: #666;
        text-transform: uppercase;
    }
    .ins-main .ins-recruit .table-box {
        overflow: auto;
    }
    .ins-main .ins-recruit .table {
        width: 500px;
        max-width: 500px;
    }
}

.ins-main .ins-solution {
    padding: 4% 0;
}

.ins-main .ins-solution .content li {
    margin-bottom: 3%;
    background: #e4e4e4;
    position: relative;
}

.ins-main .ins-solution .content li .img {
    width: 66%;
    float: left;
}

@media (max-width: 768px) {
    .ins-main .ins-solution .content li .img {
        width: 100%;
    }
}

.ins-main .ins-solution .content li .img img {
    width: 100%;
}

.ins-main .ins-solution .content li .txt {
    width: 28%;
    float: right;
    margin-right: 3%;
    text-align: center;
    margin-top: 5%;
}

@media (max-width: 768px) {
    .ins-main .ins-solution .content li .txt {
        width: 100%;
        margin: 0;
        padding: 20px 0;
    }
}

.ins-main .ins-solution .content li .txt h6 {
    font-size: 2rem;
    color: #191919;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 15px 0;
}

.ins-main .ins-solution .content li .txt p {
    font-size: 1.4rem;
    color: #666;
    line-height: 200%;
    margin: 8% 0 8%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}

@media (max-width: 768px) {
    .ins-main .ins-solution .content li .txt p {
        margin: 20px;
    }
}

.ins-main .ins-solution .content li .txt span {
    display: inline-block;
    width: 130px;
    line-height: 30px;
    height: 30px;
    text-align: center;
    background: #005aab;
    font-size: 1.4rem;
    color: #fff;
}

.ins-main .ins-solution .content li:nth-child(even) {
    margin-bottom: 4%;
}

.ins-main .ins-solution .content li:nth-child(even) .img {
    float: right;
}

.ins-main .ins-solution .content li:nth-child(even) .img img {
    width: 100%;
}

.ins-main .ins-solution .content li:nth-child(even) .txt {
    float: left;
    margin-left: 3%;
}

.ins-main .ins-news {
    padding: 2%;
    background: #fff;
}

.ins-main .ins-news li {
    padding: 1.5% 0;
}

.ins-main .ins-news li:hover .img img {
    transform: scale(1.1);
}

.ins-main .ins-news li:hover .txt h6 {
    color: #005aab;
}

.ins-main .ins-news li:hover .txt p {
    color: #005aab;
}

.ins-main .ins-news li .img {
    overflow: hidden;
    width: 31.9%;
    float: left;
}

.ins-main .ins-news li .img img {
    width: 100%;
    transition: 0.4s;
}

.ins-main .ins-news li .txt {
    width: 65%;
    float: right;
}

.ins-main .ins-news li .txt h6 {
    font-size: 2rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5%;
}

.ins-main .ins-news li .txt p {
    font-size: 1.6rem;
    color: #6d6d6d;
    line-height: 160%;
    margin: 4% 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -moz-line-clamp: 3;
    -o-line-clamp: 3;
}

.ins-main .ins-news li .txt span {
    font-size: 1.4rem;
    color: #a3a3a3;
    display: block;
    line-height: 20px;
    padding-left: 34px;
    background: url("../images/date_07.jpg") no-repeat left center;
}

.ins-main .ins-news li:first-child {
    padding-top: 1%;
}

@media (max-width: 768px) {
    .ins-main .ins-news li {
        padding: 3% 0;
        border-bottom: 1px solid #eee;
    }
    .ins-main .ins-news li:hover .img img {
        transform: scale(1.1);
    }
    .ins-main .ins-news li:hover .txt h6 {
        color: #005aab;
    }
    .ins-main .ins-news li:hover .txt p {
        color: #005aab;
    }
    .ins-main .ins-news li .img {
        overflow: hidden;
        width: 31.9%;
        float: left;
    }
    .ins-main .ins-news li .img img {
        width: 100%;
        transition: 0.4s;
    }
    .ins-main .ins-news li .txt {
        width: 65%;
        float: right;
    }
    .ins-main .ins-news li .txt h6 {
        font-size: 1.6rem;
        color: #1f1f1f;
        overflow: hidden;
        margin-top: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 5%;
    }
    .ins-main .ins-news li .txt p {
        font-size: 1.4rem;
        color: #6d6d6d;
        line-height: 160%;
        margin: 4% 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -moz-line-clamp: 2;
        -o-line-clamp: 2;
    }
    .ins-main .ins-news li .txt span {
        font-size: 1.4rem;
        color: #a3a3a3;
        display: block;
        line-height: 20px;
        display: none;
        padding-left: 34px;
        background: url("../images/date_07.jpg") no-repeat left center;
    }
}

.ins-main .news-show {
    padding: 2.5%;
    background: #fff;
}

.ins-main .news-show .show-tit {
    border-bottom: 1px solid #eee;
}

.ins-main .news-show .show-tit h5 {
    font-size: 2.4rem;
    color: #171717;
    margin: 2% 0 1%;
    font-weight: 500;
}

.ins-main .news-show .show-tit p {
    font-size: 1.4rem;
    color: #b3b3b3;
    text-transform: uppercase;
}

.ins-main .news-show .content img {
    max-width: 100% !important;
    margin: 3% 0;
    width: auto !important;
    height: auto !important;
}

.ins-main .news-show .content p {
    text-align: left;
    font-size: 1.5rem;
    color: #515151;
    line-height: 180%;
    margin-bottom: 2%;
}

.ins-main .news-show .link {
    margin: 5% auto 0;
}

.ins-main .news-show .link p a {
    font-size: 1.4rem;
    color: #a8a8a8;
}

.ins-main .news-show .link p a:hover {
    color: #005aab;
}

@media (max-width: 768px) {
    .ins-main .news-show {
        padding: 2.5% 0;
    }
    .ins-main .news-show .show-tit {
        border-bottom: 1px solid #eee;
    }
    .ins-main .news-show .show-tit h5 {
        font-size: 2.4rem;
        color: #171717;
        margin: 2% 0 1%;
        font-weight: 500;
    }
    .ins-main .news-show .show-tit p {
        font-size: 1.4rem;
        color: #b3b3b3;
        text-transform: uppercase;
    }
    .ins-main .news-show .content {
        width: 100%;
        margin: 0 auto;
    }
    .ins-main .news-show .content img {
        max-width: 100% !important;
        margin: 3% 0;
    }
    .ins-main .news-show .content p {
        text-align: left;
        font-size: 1.5rem;
        color: #515151;
        line-height: 180%;
        margin-bottom: 2%;
    }
    .ins-main .news-show .link {
        width: 100%;
        margin: 5% auto 0;
    }
    .ins-main .news-show .link p a {
        font-size: 1.4rem;
        color: #a8a8a8;
    }
    .ins-main .news-show .link p a:hover {
        color: #005aab;
    }
}

.ins-main .ins-zhuanli {
    padding: 4% 0;
    background: #f1f1f1;
    text-align: center;
}

.ins-main .ins-zhuanli li {
    width: 18%;
    float: left;
    margin-right: 2.5%;
    margin-bottom: 2.5%;
}

@media (max-width: 768px) {
    .ins-main .ins-zhuanli li {
        width: 49%;
        margin: 0 2% 2% 0;
    }
}

.ins-main .ins-zhuanli li .img {
    position: relative;
}

.ins-main .ins-zhuanli li .img:hover .masking {
    opacity: 1;
}

.ins-main .ins-zhuanli li .img .masking {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
}

.ins-main .ins-zhuanli li img {
    width: 100%;
    cursor: pointer;
}

.ins-main .ins-zhuanli li p {
    text-align: center;
    font-size: 1.4rem;
    margin: 10px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ins-main .ins-zhuanli li:nth-child(5n+5) {
    margin-right: 0;
}

@media (max-width: 768px) {
    .ins-main .ins-zhuanli li:nth-child(5n+5) {
        margin-right: 2%;
    }
    .ins-main .ins-zhuanli li:nth-child(2n+2) {
        margin-right: 0;
    }
}

.ins-main .ins-jiance {
    padding: 3% 0;
    background: #f1f1f1;
}

.ins-main .ins-jiance li {
    position: relative;
    margin-bottom: 3%;
}

.ins-main .ins-jiance li img {
    width: 100%;
}

.ins-main .ins-jiance li p {
    font-size: 2.2rem;
    color: #fff;
    position: absolute;
    left: 20px;
    bottom: 15px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .ins-main .ins-jiance li p {
        position: static;
        text-align: center;
        margin-top: 15px;
        font-size: 1.6rem;
        color: #333;
    }
}

.ins-main .ins-jiance li:last-child {
    margin-bottom: 0;
}

.ins-main .ins-wisdom {
    padding: 4% 0 3%;
    background: #f1f1f1;
}

.ins-main .ins-wisdom li {
    position: relative;
    width: 32.33333%;
    float: left;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
}

.ins-main .ins-wisdom li:hover .img img {
    transform: scale(1.1);
}

.ins-main .ins-wisdom li .img {
    overflow: hidden;
}

.ins-main .ins-wisdom li .img img {
    width: 100%;
    transition: 0.4s;
}

.ins-main .ins-wisdom li .txt h6 {
    margin: 15px 0 10px;
    font-size: 1.7rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ins-main .ins-wisdom li .txt p {
    font-size: 1.2rem;
    color: #8d8d8d;
    line-height: 180%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    height: 42px;
}

.ins-main .ins-wisdom li:nth-child(3n+3) {
    margin-right: 0;
}

.ins-main .ins-download {
    padding: 2.5% 0;
}

.ins-main .ins-download li {
    position: relative;
    height: 90px;
    line-height: 90px;
    border-bottom: 1px solid #eee;
}

.ins-main .ins-download li:hover {
    background: #005aab;
}

.ins-main .ins-download li:hover p {
    color: #fff;
    background: url("../images/download-lit_11.png") no-repeat 13px center;
}

.ins-main .ins-download li:hover span {
    color: #fff;
    background: url("../images/download-lit_10.png") no-repeat left center;
}

.ins-main .ins-download li a {
    display: block;
}

.ins-main .ins-download li p {
    font-size: 1.6rem;
    color: #424242;
    padding-left: 40px;
    background: url("../images/download-lit_06.png") no-repeat 13px center;
}

.ins-main .ins-download li span {
    display: block;
    line-height: 40px;
    position: absolute;
    top: 26px;
    right: 13px;
    padding-left: 58px;
    background: url("../images/download-lit_03.png") no-repeat left center;
    font-size: 1.6rem;
    color: #424242;
}

@media (max-width: 768px) {
    .ins-main .ins-download {
        padding: 2.5% 0;
    }
    .ins-main .ins-download li {
        position: relative;
        height: 50px;
        line-height: 50px;
        border-bottom: 1px solid #eee;
    }
    .ins-main .ins-download li:hover {
        background: #005aab;
    }
    .ins-main .ins-download li:hover p {
        color: #fff;
        background: url("../images/download-lit_11.png") no-repeat 13px center;
    }
    .ins-main .ins-download li:hover span {
        color: #fff;
        background: none;
    }
    .ins-main .ins-download li a {
        display: block;
    }
    .ins-main .ins-download li p {
        font-size: 1.6rem;
        color: #424242;
        padding-left: 40px;
        background: url("../images/download-lit_06.png") no-repeat 13px center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 80%;
    }
    .ins-main .ins-download li span {
        display: block;
        line-height: 40px;
        position: absolute;
        top: 6px;
        right: 13px;
        padding-left: 8px;
        background: none;
        font-size: 1.6rem;
        color: #424242;
    }
}

.ins-main .ins-faq {
    padding: 1% 0 2.5%;
}

.ins-main .ins-faq li {
    padding: 2% 0;
    border-bottom: 1px solid #eee;
}

.ins-main .ins-faq li h6 {
    padding-left: 62px;
    background: url("../images/question-lit_03.jpg") no-repeat left center;
    font-size: 1.8rem;
    color: #272727;
    font-weight: 600;
    line-height: 40px;
}

.ins-main .ins-faq li p {
    font-size: 1.4rem;
    color: #5c5c5c;
    line-height: 180%;
    padding-left: 62px;
    background: url("../images/question-lit_06.jpg") no-repeat left top;
}

.ins-main .ins-product {
    padding: 4% 0;
}

.ins-main .ins-product .content .pro-tit {
    text-align: center;
    margin-bottom: 4%;
}

.ins-main .ins-product .content .pro-tit h5 {
    font-size: 3rem;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .ins-main .ins-product .content .pro-tit h5 {
        font-size: 2.5rem;
    }
}

.ins-main .ins-product .content .pro-tit b {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #0086d4;
}

.ins-main .ins-product .content li {
    width: 31.8333333%;
    float: left;
    margin-right: 2.25%;
    margin-bottom: 2.25%;
    border: 1px solid #ebebeb;
}

@media (max-width: 768px) {
    .ins-main .ins-product .content li {
        width: 100%;
        margin: 0 0 18px 0;
    }
}

.ins-main .ins-product .content li:hover .img .masking {
    opacity: 1;
}

.ins-main .ins-product .content li .img {
    position: relative;
}

.ins-main .ins-product .content li .img img {
    width: 100%;
}

.ins-main .ins-product .content li .img .masking {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
}

.ins-main .ins-product .content li .txt {
    padding: 5%;
}

.ins-main .ins-product .content li .txt p {
    font-size: 1.8rem;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ins-main .ins-product .content li .txt b {
    display: block;
    width: 40px;
    height: 3px;
    background: #0086d4;
}

.ins-main .ins-product .content li:nth-child(3n+3) {
    margin-right: 0;
}

.ins-main .product-show {
    padding: 2%;
    background: #fff;
    margin-top: 5%;
}

.ins-main .product-show .top-show {
    background: #fff;
    margin: 0 0 2%;
}

.ins-main .product-show .top-show .left {
    width: 47%;
    float: left;
}

.ins-main .product-show .top-show .left .view .swiper-container {
    height: 100%;
    padding: 1px;
}

.ins-main .product-show .top-show .left .view .swiper-container .swiper-slide {
    width: 100%;
}

.ins-main .product-show .top-show .left .view .swiper-container .swiper-slide img {
    width: 100%;
    border: 1px solid #f0f0f0;
    background: #f3f3f3;
}

.ins-main .product-show .top-show .left .preview {
    width: 100%;
    padding: 2% 0;
    position: relative;
    background: #fafafa;
    border-top: none;
}

.ins-main .product-show .top-show .left .preview .swiper-container {
    width: 100%;
    margin: 0 auto;
}

.ins-main .product-show .top-show .left .preview .swiper-slide {
    float: left;
    width: auto;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.ins-main .product-show .top-show .left .preview .swiper-slide img {
    width: 100%;
    cursor: pointer;
    border: 1px solid #efefef;
    background: #f3f3f3;
}

.ins-main .product-show .top-show .left .preview .active-nav img {
    border: 1px solid #005aab;
}

.ins-main .product-show .top-show .right {
    width: 49%;
    float: right;
}

.ins-main .product-show .top-show .right .txt h5 {
    font-size: 1.6rem;
    color: #383838;
    margin: 3% 0;
}

.ins-main .product-show .top-show .right .txt h5 span {
    float: right;
    font-size: 1.4rem;
    color: #b3b3b3;
}

.ins-main .product-show .top-show .right .txt h5 span b {
    font-size: 1.8rem;
    color: #ff0000;
}

.ins-main .product-show .top-show .right .txt .txt {
    margin: 6% 0;
}

.ins-main .product-show .top-show .right .txt p {
    margin: 4px 0;
    line-height: 150%;
    font-size: 1.4rem;
    color: #787878;
}

.ins-main .product-show .top-show .right .txt .link {
    margin-top: 40px;
}

.ins-main .product-show .top-show .right .txt .link a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-right: 20px;
}

.ins-main .product-show .content-box {
    margin: 4% 0;
    padding: 3% 0;
    border-top: 1px solid #eee;
}

.ins-main .product-show .content-box .box-tit {
    margin-bottom: 3%;
    border-bottom: 1px solid #eee;
}

.ins-main .product-show .content-box .box-tit h5 {
    width: 150px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #005aab;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0;
}

.ins-main .product-show .recomend {
    background: #fff;
}

.ins-main .product-show .recomend .recomend-tit {
    border-bottom: 1px solid #eee;
}

.ins-main .product-show .recomend .recomend-tit h5 {
    width: 150px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #005aab;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0;
}

.ins-main .product-show .recomend .swiper-container-recomend {
    overflow: hidden;
    position: relative;
    padding: 3% 0 0;
}

.ins-main .product-show .recomend .swiper-slide:hover p {
    color: #005aab;
}

.ins-main .product-show .recomend .swiper-slide .img {
    border: 1px solid #f5f5f5;
    position: relative;
}

.ins-main .product-show .recomend .swiper-slide .img img {
    width: 100%;
}

.ins-main .product-show .recomend .swiper-slide .img .masking {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.ins-main .product-show .recomend .swiper-slide p {
    font-size: 1.4rem;
    color: #585858;
    text-align: center;
    margin: 10px 0 0 0;
}

@media (max-width: 768px) {
    .ins-main .product-show {
        padding: 2%;
        background: #fff;
    }
    .ins-main .product-show .top-show {
        background: #fff;
        margin: 2% 0;
    }
    .ins-main .product-show .top-show .left {
        width: 100%;
        float: left;
    }
    .ins-main .product-show .top-show .left .view .swiper-container {
        height: 100%;
    }
    .ins-main .product-show .top-show .left .view .swiper-container .swiper-slide {
        width: 100%;
    }
    .ins-main .product-show .top-show .left .view .swiper-container .swiper-slide img {
        width: 100%;
        border: 1px solid #f0f0f0;
        background: #f3f3f3;
    }
    .ins-main .product-show .top-show .left .preview {
        width: 100%;
        padding: 2% 0;
        position: relative;
        background: #fafafa;
        border-top: none;
    }
    .ins-main .product-show .top-show .left .preview .swiper-container {
        width: 100%;
        margin: 0 auto;
    }
    .ins-main .product-show .top-show .left .preview .swiper-slide {
        float: left;
        width: auto;
        box-sizing: border-box;
        border: 1px solid transparent;
    }
    .ins-main .product-show .top-show .left .preview .swiper-slide img {
        width: 100%;
        cursor: pointer;
        border: 1px solid #efefef;
        background: #f3f3f3;
    }
    .ins-main .product-show .top-show .left .preview .active-nav img {
        border: 1px solid #005aab;
    }
    .ins-main .product-show .top-show .right {
        width: 100%;
        float: right;
    }
    .ins-main .product-show .top-show .right .txt h5 {
        font-size: 2.4rem;
        color: #005aab;
        margin: 5% 0;
    }
    .ins-main .product-show .top-show .right .txt h5 span {
        display: block;
        float: none;
        margin-top: 10px;
    }
    .ins-main .product-show .top-show .right .txt p {
        margin: 4px 0;
        line-height: 180%;
        font-size: 1.4rem;
        color: #969696;
    }
    .ins-main .product-show .top-show .right .txt .link {
        margin-top: 40px;
    }
    .ins-main .product-show .top-show .right .txt .link a {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        margin-right: 20px;
    }
    .ins-main .product-show .top-show .right .txt .link a img {
        width: 120px;
    }
    .ins-main .product-show .content-box {
        margin: 4% 0;
        padding: 3% 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    .ins-main .product-show .content-box .box-tit {
        margin-bottom: 3%;
    }
    .ins-main .product-show .content-box .box-tit h5 {
        width: 100px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: #005aab;
        color: #fff;
        font-size: 1.6rem;
    }
    .ins-main .product-show .recomend {
        background: #fff;
    }
    .ins-main .product-show .recomend .recomend-tit h5 {
        width: 100px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: #005aab;
        color: #fff;
        font-size: 1.6rem;
    }
    .ins-main .product-show .recomend .swiper-container-recomend {
        overflow: hidden;
        position: relative;
        padding: 3% 0 0;
    }
}

.page-num {
    clear: both;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    padding: 3% 0 3%;
    background: #fff;
}

.page-num li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    padding: 0 !important;
    border: none !important;
}

.page-num span {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin: 0 2px;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px solid #c7c7c7;
    color: #333;
    padding: 0 12px;
}

.page-num .current {
    background-color: #005aab;
    border: 1px solid #005aab;
    padding: 0 12px;
    color: #fff;
}

.page-num a {
    display: inline-block;
    padding: 0 12px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin: 0 2px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px solid #c7c7c7;
}

.page-num a:hover {
    color: #fff;
    border-color: #005aab;
    background-color: #005aab;
}

@media (max-width: 768px) {
    .page-num {
        clear: both;
        text-align: center;
        vertical-align: middle;
        line-height: 20px;
        padding: 4% 0 4%;
    }
    .page-num li {
        margin-bottom: 5px;
    }
    .page-num span {
        display: inline-block;
        min-width: 32px;
        height: 32px;
        text-align: center;
        line-height: 32px;
        margin: 0 2px;
        font-size: 14px;
        margin-bottom: 1%;
    }
    .page-num a {
        display: inline-block;
        padding: 0 12px;
        height: 32px;
        text-align: center;
        line-height: 32px;
        margin: 0 2px;
        background-color: #fff;
        color: #333;
        font-size: 14px;
        margin-bottom: 1%;
    }
    .page-num a:hover {
        color: #fff;
        border-color: #005aab;
        background-color: #005aab;
    }
}

.ins-service .img img {
    width: 100%;
    margin-bottom: 3%;
}

.nav-shadow {
    box-shadow: 0 0 15px #cdcbcb;
}

.bstrgjxa {
    padding: 3% 15px 5%;
}

.aaregtx {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.kanbsrg .swiper-slide h6 {
    line-height: 40px;
    color: #084F7C;
    font-size: 18px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.kanbsrg .swiper-slide:nth-child(odd) h6 {
    background-color: #B9D6E9;
}

.kanbsrg .swiper-slide:nth-child(even) h6 {
    background-color: #7BBCE6;
}

.zsrge1,
.zsrge2 {
    text-align: left;
    padding-left: 25px;
    height: 220px;
    position: relative;
}

.zsrge1 p,
.zsrge2 p {
    text-align: left;
    color: #646464;
    line-height: 1.8;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zsrge2 {
    padding-top: 25%;
}

.kanbsrg .swiper-slide:nth-child(odd) .zsrge1:after {
    position: absolute;
    content: "";
    left: 8px;
    top: 0;
    height: 80%;
    width: 2px;
    background-color: #084F7C;
}

.kanbsrg .swiper-slide:nth-child(odd) .zsrge1:before {
    position: absolute;
    content: "";
    left: 4px;
    bottom: 19%;
    height: 85%;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    overflow: hidden;
    background-color: #084F7C;
}

.kanbsrg .swiper-slide img {
    max-width: 100%;
}

.kanbsrg .swiper-slide:nth-child(even) .zsrge2:after {
    position: absolute;
    content: "";
    left: 8px;
    top: 16.8%;
    height: 80%;
    width: 2px;
    background-color: #084F7C;
}

.kanbsrg .swiper-slide:nth-child(even) .zsrge2:before {
    position: absolute;
    content: "";
    left: 4px;
    top: 17%;
    height: 85%;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    overflow: hidden;
    background-color: #084F7C;
}

.bstrgjxa .swiper-button-next {
    background: #7BBCE6 url(../images/tr.png) center center no-repeat;
    right: 0px;
    left: auto;
    opacity: 1 !important;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border-left: 1px solid #62AFE1;
    outline: none;
}

.bstrgjxa .swiper-button-prev {
    background: #7BBCE6 url(../images/tl.png) center center no-repeat;
    right: auto;
    left: 0px;
    opacity: 1 !important;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border-right: 1px solid #62AFE1;
    outline: none;
}

.zksmdrg {
    text-align: center;
    padding-bottom: 5%;
}

.zksmdrg h3 {
    font-size: 3rem;
    color: #3a3a3a;
}

.zksmdrg b {
    display: inline-block;
    width: 54px;
    height: 4px;
    background: #005aab;
    margin: 6px 0;
}

@media (max-width: 1200px) {
    .jiamsrg-div {
        max-width: 970px;
    }
}

@media (max-width: 992px) {
    .jiamsrg-div {
        max-width: 750px;
    }
}

.kanstrghs {
    background-color: #FFFFFF;
    padding-top: 5%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 11%;
}

.xioalsrt ul {
    font-size: 0;
    text-align: center;
    margin: 0 -52px;
}

.xioalsrt {
    margin-top: 3%;
}

.xioalsrt ul li {
    display: inline-block;
    padding: 0 52px;
    margin-bottom: 20px;
}

.xioalsrt-div {
    border: 1px solid #0C79BE;
    border-radius: 100px;
    overflow: hidden;
    padding: 8px;
}

.xioalsrt-div a {
    position: relative;
    display: block;
}

.xioalsrt-src img {
    max-width: 100%;
}

.xioalsrt-jtsreg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #0072BB;
    border-radius: 100px;
    overflow: hidden;
    padding: 0 15px;
}

.xioalsrt-jtsreg h4 {
    font-size: 20px;
    color: #FFF;
}

.xioalsrt-jtsreg p {
    font-size: 14px;
    line-height: 1.7;
    color: #FFF;
    padding-top: 3px;
}

.guangrem {
    background-color: #F0F8FD;
    padding-top: 5%;
}

.guangrem {
    padding-bottom: 7%;
}

.guangrem .zksmdrg {
    padding-bottom: 4%;
}

.guangrem .jiamsrg-div {
    max-width: 1100px;
}

.xxlsmth {
    width: 69%;
    text-align: center;
    margin: 0 auto;
}

.xxlsmth p {
    color: #666666;
    font-size: 14px;
    line-height: 2.65;
}

.xxlsm-grt {
    margin-top: 70px;
}

.xxlsm-grt img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1050px) {
    .guangrem {
        padding-left: 15px;
        padding-right: 15px;
    }
    .xxlsmth {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .xxlsmth {
        width: 100%;
    }
    .xxlsm-grt {
        margin-top: 30px;
    }
}

.kan-left {
    width: 225px;
}

.kan-right {
    padding-left: 25px;
}

.srt-1 h3 {
    text-align: center;
    font-size: 26px;
    line-height: 70px;
    background-color: #005AAB;
    color: #FFF;
    padding: 0;
    margin: 0;
}

.srt-2 ul {
    margin-top: -2px !important;
}

.srt-2 ul li {
    width: 100% !important;
    float: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 2px !important;
}

.srt-2 ul li a {
    display: block;
    background-color: #F0F0F0;
    color: #5B5B5B;
    font-size: 15px;
    text-align: center;
    line-height: 68px;
    padding-left: 10px;
}

.srt-2 ul li a:hover span {
    color: #005AAB;
}

.srt-2 ul li span {
    padding-left: 10px;
}

.ssxxa {
    margin-top: 24px;
}

.ssxxa h3 {
    font-size: 20px;
    line-height: 56px;
}

.srt-3 {
    background-color: #F0F0F0;
    padding: 20px 22px;
}

.xiaos {
    padding-bottom: 12px;
}

.xiaos-2 {
    color: #444444;
    font-size: 13px;
    line-height: 2;
}

.xiaos-r {
    color: #444444;
    font-size: 14px;
    line-height: 1.3;
    padding-left: 13px;
}

.xiaos-r b {
    color: #0079E5;
    font-size: 15px;
}

@media (max-width: 992px) {
    .airtsgm {
        display: block !important;
    }
    .kan-right {
        padding-left: 0;
    }
    .kan-left {
        width: 100%;
    }
    .srt-2 ul li a {
        padding-left: 22px;
    }
}

.tsrgea {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.nbdtsreg dl {
    display: flex;
    background-color: #5A5A5E;
    color: #FFF;
    font-size: 18px;
    padding: 0;
    margin: 0;
}

.nbdtsreg dt {
    flex: 1;
    text-align: center;
    padding: 0;
    margin: 0;
    font-weight: 100;
    line-height: 62px;
    border-left: 1px solid #66666A;
}

.nbdtsreg dt:first-child {
    border: none;
    flex: 2;
}

.nbdtsreg2 dl {
    background-color: #F9F9F9;
}

.nbdtsreg2 dl:nth-child(odd) {
    background-color: #FFF;
}

.nbdtsreg2 dl dt {
    line-height: 58px;
    color: #555555;
    font-size: 16px;
}

.nbdtsreg2 {
    border: 1px solid #EAEAEA;
    border-bottom: none;
}

.nbdtsreg2 dl {
    border-bottom: 1px solid #EAEAEA;
}

.nbdtsreg2 dt {
    border-left: 1px solid #EAEAEA;
}

.nbdtsreg2 dl dt:first-child {
    border-left: none;
    text-indent: 25px;
    text-align: left;
}

.nbdtsreg2 dt img {
    cursor: pointer;
}

.tsrgea {
    padding-bottom: 70px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .tsrgea-div {
        overflow-x: auto;
    }
    .nbdtsreg dt {
        font-size: 14px !important;
        line-height: 48px;
    }
    .nbdtsreg dt:first-child {
        flex: auto;
        width: 45%;
        text-indent: 0 !important;
    }
    .nbdtsreg2 dl dt {
        line-height: 1.5;
        font-size: 14px;
        padding: 10px 0;
        box-sizing: border-box;
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -o-box !important;
        display: -ms-flexbox !important;
        display: box !important;
        -webkit-box-align: center;
        -moz-box-align: center;
        -o-box-align: center;
        -ms-flex-align: center;
        box-align: center;
        -moz-box-pack: center;
        -webkit-box-pack: center;
        -o-box-pack: center;
        -ms-flex-pack: center;
        box-pack: center;
    }
    .nbdtsreg2 dt:first-child {
        flex: auto;
        width: 45%;
        text-indent: 0 !important;
        padding: 10px 15px;
    }
    .tsrgea {
        padding-bottom: 30px;
        padding-top: 10px;
    }
}

.zhsme-tc {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: none;
}

.zhsme-tc-div {
    position: absolute;
    width: 600px;
    left: 50%;
    top: 50%;
    z-index: 9998;
    background-color: #FFF;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px 85px 60px;
}

.zhsme-tc-top {
    padding-top: 25px;
}

.zhsme-tc-top h3 {
    color: #2F2F2F;
    font-size: 22px;
    padding: 0;
    margin: 0;
}

.zhsme-tc-top p {
    padding-top: 8px;
    color: #777777;
    font-size: 14px;
}

.zhsme-tc-inysr {
    padding-top: 20px;
}

.zhsme-tc-inysr input {
    line-height: 46px;
    font-size: 14px;
    padding: 0 15px;
    display: block;
    width: 100%;
    border: 1px solid #DADADA;
}

.zhsme-tc-submt {
    padding-top: 40px;
}

.zhsme-tc-submt input {
    background-color: #005AAB;
    color: #FFF;
    font-size: 14px;
    display: inline-block;
    border-radius: 100px;
    border: none;
    line-height: 34px;
    padding: 0 50px;
}

.zhsme-tc-gb {
    float: right;
    margin-right: -60px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .zhsme-tc-div {
        width: 86%;
        padding: 20px 25px 45px;
    }
    .zhsme-tc-gb {
        margin-right: 0px;
    }
}