/*header*/
.index-header {
    display: block;
    position: fixed !important;
    z-index: 1000;
    width: 100%;
    left: 0;
    top: 0;
}

.index-header-nav {
    /* height: 100px; */
    background-color: transparent;
}

.index-header-line {
    display: block;
    width: 100%;
    height: 1px;
    background-image: url("../../images/header_line.png");
    background-position: bottom;
    background-size: 100% 1px;
}

.index-header-main {
    height: 70px;
    background-color: transparent;
}

.index-header-logo {

    width: 35%;

    height: 100%;
}

.index-header-logo h1 {

}

.index-header-logo img {

}

.index-header-menu {
    width: 45%;
    height: 100%;
}

.index-header-menu ul {
    width: 100%;
    height: 100%;
}

.index-header-menu ul li {
    width: 19%;
    float: left;
    line-height: 70px;
    text-align: center;
}

/*sub-menu{*/
.sub-menu {
    position: relative;
}


.sub-menu-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: rgba(15, 68, 142, 0.6);
    -webkit-transition:all 800ms;
    -moz-transition: all 800ms;
    -ms-transition: all 800ms;
    -o-transition: all 800ms;
    transition: all 800ms;
    overflow: hidden;
}

.sub-menu-list a {
    display: block;
    white-space: nowrap;
    /* width: 15vw; */
    padding: 10px 30px;
    line-height: 30px;
    ___text-align: left;
    ___text-indent: 30px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 800ms;
    -moz-transition: all 800ms;
    -ms-transition: all 800ms;
    -o-transition: all 800ms;
    transition: all 800ms;
}
.sub-menu-list a:hover {
    background: #0f448e;
}

.index-header-menu ul li:hover {
    background-color: #0f448e;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.index-header-menu ul li:hover:hover .sub-menu-list {
    display: block;
    ---height: 100%;
}

.index-header-menu ul li:hover a {
    ---display: block;
    ---color: #fff;
}

.index-header-menu ul li a {
    font-size: 16px;
    color: #f7f7f7;
    font-weight: normal;
}

.index-header-g {
    width: 3%;
    height: 100%;
}

.index-header-gl {
    width: 1px;
    height: 14px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.index-header-link {
    width: 17%;
    height: 100%;
    line-height: 70px;
}

.index-header-link i {

}

.index-header-link span {
    font-size: 20px;
    color: #f7f7f7;
    font-weight: 500;
    margin: 0 0 0 3px;
    font-family: 'semi-bold';
    text-shadow: #eee 0px 0px 2px;
}

.nav-active {
    background-color: #0f448e;
}

.nav-active a {
    color: #fff !important;
}

.header-hover {
    background: linear-gradient(to right, #1f60a2 20%, #024589 80%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header-hover .index-header-line {
    display: none;
}

/*index-header-menu-sub*/
.index-header-menu-sub {
    display: none;
    width: 100%;
    min-height: 50vh;
    background-color: #fff;
    z-index: 9999;
    position: fixed;
    top: 100px;
}

.index-header-menu-sub-main {

}

.index-header-menu-sub-main ul {

}

.index-header-menu-sub li {

}

/*banner*/
.leftUp img {
    -webkit-animation-name: leftUp;
    animation-name: leftUp;
}

@-webkit-keyframes leftUp {
    0% {
        transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
    }
}

@keyframes leftUp {
    0% {
        transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
    }
}

.moveRight img {
    -webkit-animation-name: moveRight;
    animation-name: moveRight;
}

@-webkit-keyframes moveRight {
    0% {
        transform: scale(1.1, 1.1) translate(-4.545%, 0);
    }
    100% {
        transform: scale(1.1, 1.1) translate(4.545%, 0);
    }
}

@keyframes moveRight {
    0% {
        transform: scale(1.1, 1.1) translate(-4.545%, 0);
    }
    100% {
        transform: scale(1.1, 1.1) translate(4.545%, 0);
    }
}

.moveDown img {
    -webkit-animation-name: moveDown;
    animation-name: moveDown;
}

@-webkit-keyframes moveDown {
    0% {
        transform: scale(1.1, 1.1) translate(0, -4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(0, 4.545%);
    }
}

@keyframes moveDown {
    0% {
        transform: scale(1.1, 1.1) translate(0, -4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(0, 4.545%);
    }
}

.centerBig img {
    -webkit-animation-name: centerBig;
    animation-name: centerBig;
}

@-webkit-keyframes centerBig {
    100% {
        transform: scale(1.1, 1.1);
    }
}

@keyframes centerBig {
    100% {
        transform: scale(1.1, 1.1);
    }
}

.rightDownBig img {
    -webkit-animation-name: rightDownBig;
    animation-name: rightDownBig;
}

@-webkit-keyframes rightDownBig {
    100% {
        transform: scale(1.1, 1.1) translate(4%, 4%);
    }
}

@keyframes rightDownBig {
    100% {
        transform: scale(1.1, 1.1) translate(4%, 4%);
    }
}

.swiper-container-banner {

}

.swiper-container-banner .swiper-wrapper {

}

.swiper-container-banner .swiper-wrapper .swiper-slide {

}

.swiper-container-banner .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-container-banner .swiper-wrapper .swiper-slide a img {
    width: 100%;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
}

.swiper-pagination-banner {
    bottom: 55px !important;
    right: 250px;
}

.index-banner-main {
    width: 100%;
    height: 100%;
}

.index-banner-main .swiper-pagination-bullets {

}

.index-banner-main .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    background: #504f5e;
    opacity: 1;
    border-radius: 3px;
    margin: 0 5px;
}

.index-banner-main .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #fff !important;
}

.company-banner {
    /* height: 560px; */
}

.x-banner {
    /*width: 100%;
    height: 560px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;*/
}
.x-banner img{
    display: block;
    width: 100%;
}

/*icon*/
.icon_header_tel {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url("../../images/icon/tel_b.png") no-repeat center;
    background-size: contain;
}

/*index service*/
.index-service {
    width: 100%;
    height: 600px;
    background-color: #f8f8f8;
}

.index-service-main {
    width: 100%;
    height: 100%;
}

.index-service-title {
    width: 100%;
    height: 217px;
}

.index-service-left {
    width: 50%;
    position: relative;
}

.index-service-left h3 {
    font-family: 'semi-bold';
    position: relative;
    font-size: 60px;
    line-height: 60px;
    color: #0f448e;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 80px 0 0 0;
}

.index-service-left h4 {
    display: block;
    position: relative;
    font-size: 30px;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    margin: 20px 0 0 0;
}

.index-service-right {

    width: 50%;
}

.index-service-right p:first-child {
    font-size: 16px;
    font-weight: lighter;
    color: #444444;
    text-shadow: #666 0 0 1px;
    text-align: right;
    margin: 127px 0 0 0;
}

.index-service-right p:last-child {
    font-size: 16px;
    font-weight: lighter;
    color: #444444;
    text-shadow: #666 0 0 1px;
    text-align: end;
    line-height: 30px;
    padding: 0 1% 0 57px;
    text-indent: 230px;
}

.index-service-item {
    width: 100%;
    height: 260px;
    position: relative;
    margin: 45px 0 0 0;
}

/*sfq*/
.sfq-container {
    width: 100%;
    height: 100%;
    margin: auto;
}

.sfq-item {
    width: 25%;
    height: 100%;
    float: left;
    border-left: 1px #e6e5e5 solid;
}

.sfq-item-wai {
    width: 100%;
    height: 100%;
}

.sfq-item-wai p:first-child {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    margin: 40px 37px 0 40px;
}

.sfq-item-wai p:nth-child(3) {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin: 20px 37px 0 40px;
}

.sfq-item-wai p:last-child {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    margin: 65px 37px 0 40px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sfq-item-nei {
    width: 100%;
    height: 100%;
}

.sfq-item-nei p {
    font-weight: normal;
    font-size: 16px;
    color: #000;
    margin: 40px 37px 0 40px;
}

.sfq-item-nei h3 {
    font-weight: bold;
    font-size: 24px;
    color: #000;
    margin: 20px 37px 0 40px;

}

.sfq-item-nei img {
    margin: 65px 37px 0 40px;
}

.sfq-hide {
    display: none;
}

.sfq-container > .sfq-item {
    width: 37%;
}

.sfq-container .sfq-item + .sfq-item {
    width: 21%;
}

.sfq-active {

}

.sfq-active .sfq-item-wai {
    width: 100%;
    height: 100%;
    background: url("../../images/img/sfq_bg.png") no-repeat center;
    background-size: 100% 100%;
}

.sfq-active .sfq-item-nei {

}

/*index-solution*/
.index-solution {
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.index-solution-main {
    width: 100%;
    height: 400px;
    position: relative;
}

.index-solution-left {
    width: 400px;
    height: 400px;
}

.index-solution-left h3 {
    font-family: 'semi-bold';
    position: relative;
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 220px 0 0 0;
}

.index-solution-left h4 {
    display: block;
    position: relative;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    font-weight: bold;
    margin: 20px 0 0 0;
}

.index-solution-right {
    width: 800px;
    height: 440px;
    z-index: 999;
    position: absolute;
    top: 200px;
    right: 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#ddd, direction=120, strength=4);
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

/*swiper-container-solution*/
.swiper-container-solution {

}

.swiper-wrapper {

}

.swiper-wrapper .swiper-slide {

}

.swiper-pagination-solution {
    position: absolute;
    top: 100px;
    height: 54px;
    margin-left: 270px;
}

.swiper-pagination-solution .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px #fff solid;
}

.swiper-pagination-solution .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-button-prev-solution {
    background-image: url("../../images/icon/icon_solution_left.png");
    background-size: 15px 25px;
    position: absolute;
    top: 95px;
    left: 560px;
    width: 15px;
    height: 25px;
    margin: 0;
}

.swiper-button-next-solution {
    background-image: url("../../images/icon/icon_solution_right.png");
    background-size: 15px 25px;
    position: absolute;
    top: 95px;
    right: 25px;
    width: 15px;
    height: 25px;
    margin: 0;
}

.index-solution-item {
    width: 800px;
    height: 440px;
}

.index-solution-item-top {
    width: 800px;
    height: 200px;
    background: #0f448e;
    background: rgba(15, 68, 142, 0.9);
    position: relative;
}

.swiper-container-solution .swiper-slide {
    opacity: 0 !important;
}

.swiper-container-solution .swiper-slide-active {
    opacity: 1 !important;
}

.index-solution-item-top .index-solution-item-line {
    display: inline-block;
    width: 41px;
    height: 3px;
    background-color: #fff;
    margin: 72px 0 0 54px;
}

.index-solution-item-top h3 {
    display: block;
    width: 100%;
    font-size: 36px;
    color: #fff;
    font-weight: normal;
    padding: 0 0 0 54px;
}

.index-solution-item-top p {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    padding: 0 0 0 54px;
}

.index-solution-item-bottom {
    width: 800px;
    height: 240px;
    background-color: #fff;
}

.index-solution-item-bottom p {
    font-size: 18px;
    color: #333;
    font-weight: normal;
    text-shadow: #666 0 0 1px;
    padding: 40px 45px 0 45px;
}

.btn-box {
    padding: 45px 45px 0 45px;
}

.btn-box a {
    display: inline-block;
    width: 150px;
    height: 44px;
    line-height: 44px;
    border: 2px #0f448e solid;
    border-radius: 8px;
    position: relative;
}

.btn-box a span {
    display: inline-block;
    width: 100px;
    position: absolute;
    left: 15px;
    font-size: 16px;
    font-weight: bold;
}

.btn-box a img {

    position: absolute;

    right: 15px;

    top: 17px;
}

.btn-box a:first-child {

}

.btn-box a:first-child span {
    color: #0f448e;
}

.btn-box a:first-child img {

}

.btn-box a:first-child:hover {
    background-color: #0f448e;
}

.btn-box a:first-child:hover span {
    color: #fff;
    left: 40px;
}

.btn-box a:first-child:hover img {

}

.btn-box a:last-child {
    background-color: #0f448e;
    margin: 0 0 0 20px;
}

.btn-box a:last-child span {
    left: 25px;
    color: #fff;
}

.btn-box a:last-child img {

}

.btn-box a:last-child:hover {
    background-color: transparent;
}

.btn-box a:last-child:hover span {
    color: #0f448e;
    left: 15px;
}

.btn-box a:last-child:hover img {

}

.btn-w {

}

.btn-w-bolder {

}

.btn-w-bg {

}

/*index-product*/
.index-product {

}

.index-product-main {
    width: 100%;
    height: 100%;
}

.index-product-main-top {

    width: 100%;

    height: 300px;
}

.index-product-main-top img {

    padding: 70px 0 0 0;
}

.index-product-main-top h3 {
    font-family: 'semi-bold';
    position: relative;
    font-size: 60px;
    line-height: 60px;
    color: #0f448e;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
}

.index-product-main-top h4 {
    display: block;
    position: relative;
    font-size: 30px;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    margin: 20px 0 0 0;
}

.index-product-main-list {

    width: 100%;

    height: 100%;
}

.index-product-main-list ul {

    width: 100%;

    height: 100%;
}

.index-product-main-list ul li {

    width: 100%;

    height: 480px;
    margin: 60px 0 0 0;
}

.index-product-main-list-item {

    width: 100%;

    height: 100%;
}

.index-product-main-list-item-left {

    width: 700px;

    height: 100%;
}

.index-product-main-list-item-left a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.index-product-main-list-item-left img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.index-product-main-list-item-left a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.index-product-main-list-item-right {

    width: 500px;

    height: 100%;
}

.index-product-main-list-item-title {
    display: inline-flex;
    margin: 80px 0 0 0;
}

.index-product-main-list-item-title-line {

    display: inline-block;

    width: 4px;

    height: 44px;

    background-color: #0f448e;

    margin: 0 0 0 1px;
}

.index-product-main-list-item-title-text {

    display: inline-block;

    min-width: 160px;

    height: 44px;

    background-color: #0f448e;

    margin: 0 0 0 5px;
}

.index-product-main-list-item-title-text p {

    color: #fff;

    font-size: 28px;

    font-weight: normal;

    text-align: center;
}

.index-product-main-list-item-biao {

    font-size: 40px;

    color: #282828;

    line-height: 55px;

    font-style: italic;
}

.index-product-main-list-item-neirong {

    font-size: 18px;

    color: #736d6d;

    font-weight: lighter;

    margin: 20px 0 0 0;
}

.btnlink {
    padding: 63px 45px 0 0;
}

.btnlink a {
    display: inline-block;
    width: 150px;
    height: 44px;
    line-height: 44px;
    border: 2px #0f448e solid;
    border-radius: 8px;
    position: relative;
}

.btnlink a span {
    display: inline-block;
    width: 100px;
    position: absolute;
    left: 15px;
    font-size: 16px;
    font-weight: bold;
}

.btnlink a i {
    position: absolute;
    right: 15px;
    top: 17px;
    width: 8px;
    height: 8px;
    background-size: contain;
    background-position: center;
}

.btnlink a:first-child {

}

.btnlink a:first-child span {
    color: #0f448e;
}

.btnlink a:first-child i {
    background-image: url("../../images/icon/icon_jia.png");
}

.btnlink a:first-child:hover {
    background-color: #0f448e;
}

.btnlink a:first-child:hover span {
    color: #fff;
}

.btnlink a:first-child:hover i {
    background-image: url("../../images/icon/icon_jia_b.png");
}

.btnlink a:last-child {
    background-color: #0f448e;
    margin: 0 0 0 20px;
}

.btnlink a:last-child span {
    left: 25px;
    color: #fff;
}

.btnlink a:last-child i {
    background-image: url("../../images/icon/icon_jia_b.png");
}

.btnlink a:last-child:hover {
    background-color: transparent;
}

.btnlink a:last-child:hover span {
    color: #0f448e;
}

.btnlink a:last-child:hover i {
    background-image: url("../../images/icon/icon_jia.png");
}

.p-l-80 {
    padding-left: 80px;
}

.p-r-90 {
    padding-right: 80px;
}

/*index-honor*/
.index-honor {
    width: 100%;
    height: 438px;
    background-image: url("../../images/img/honor_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 80px 0 0 0;
}

.index-honor-main {
    width: 1200px;
    height: 315px;
    position: absolute;
    top: 50%;
    transform: translate(0, 20%);
}

.swiper-container-honor {
    width: 100%;
    height: 100%;
}

.swiper-container-honor .swiper-wrapper {

}

.swiper-container-honor .swiper-wrapper .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;
}

.index-honor-item {
    width: 100%;
    height: 100%;
    background-color: #ddd;
}

.index-honor-item-top {
    width: 100%;
    height: 251px;
    background: #fff;
    background: rgba(255, 255, 255, 0.6);
}

.index-honor-item-top-img-pic {
    width: 100%;
    height: 100%;
    position: relative;
}

.index-honor-item-top-img-pic a {
    display: block;
    width: 253px;
    height: 185px;
    ___background: url("../../images/img/honor_k.jpg") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.index-honor-item-top-img-pic-kuang {
    width: 230px;
    height: 160px;
    margin: 10px;
}

.index-honor-item-top-img-pic-kuang img {

}

.index-honor-item-bom {
    width: 100%;
    height: 61px;
    background: #fff;
    background: rgba(255, 255, 255, 0.6);
    margin: 1px 0 0 0;
}

.index-honor-item-bom a {
    width: 100%;
    height: 100%;
}

.index-honor-item-bom a h3 {
    width: 100%;
    height: 100%;
    line-height: 61px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.index-honor-item:hover {
    background: transparent;
    opacity: 1;
    filter: opacity(100);
}

.index-honor-item:hover .index-honor-item-top {
    background-color: #0f448e;
}

.index-honor-item:hover .index-honor-item-bom {
    background-color: #0f448e;
}

.index-honor-item:hover .index-honor-item-bom a h3 {
    color: #fff;
}

/*index-about*/
.index-about {
    width: 100%;
    height: 520px;
    background-color: #fff;
    position: relative;
}

.index-about-main {
    width: 100%;
    height: 373px;
    position: relative;
    top: 80px;
}

.index-about-left {
    width: 640px;
    height: 373px;
    position: relative;
}

.index-about-left h3 {

    font-family: 'semi-bold';

    position: relative;

    font-size: 60px;

    line-height: 60px;

    color: #0f448e;

    font-weight: bold;

    letter-spacing: 1px;

    margin: 20px 0 0 0;
}

.index-about-left h4 {

    display: block;

    position: relative;

    font-size: 30px;

    line-height: 30px;

    color: #000;

    font-weight: bold;

    margin: 20px 0 0 0;
}

.index-about-left p {
    font-size: 16px;
    line-height: 32px;
    font-weight: normal;
    text-align: justify;
    color: #333;
    text-shadow: #444 0 0 1px;
    margin: 20px 0 0 0;
    padding: 0 60px 0 0;
}

.about-link {

    width: 100%;

    height: 44px;

    position: absolute;

    bottom: 0;
}

.about-link a {

    display: inline-block;

    width: 150px;

    height: 44px;

    line-height: 44px;

    border: 2px #0f448e solid;

    border-radius: 8px;

    color: #0f448e;

    text-align: center;

    font-size: 16px;

    font-weight: bold;
}

.about-link a:hover {
    background: #0f448e;
    color: #fff;
}

.index-about-right {
    width: 560px;
    height: 373px;
    background: url("../../images/img/about_bg_img.png") no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.index-about-img-pic {
    width: 520px;
    height: 334px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.index-about-img-pic img {

}

.index-about-img-pic:hover img {
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/*index-msg*/
.index-msg {
    width: 100%;
    height: 324px;
    background-image: url(../../images/img/msg_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index-msg-main {
    width: 100%;
    height: 324px;
    position: relative;
}

.index-msg-title {
    width: 100%;
    height: 30px;
    position: relative;
    top: 60px;
}

.index-msg-title span:first-child {
    font-size: 30px;
    color: #fff;
    line-height: 30px;
    font-weight: bold;
}

.index-msg-title span:last-child {
    font-size: 18px;
    color: #fff;
    line-height: 18px;
    font-weight: lighter;
}

.form-msg {
    width: 100%;
    height: 135px;
    position: relative;
    top: 100px;
}

.index-msg-group {
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin: 0 0 15px 0;
}

.index-msg-item {
    width: 390px;
    height: 60px;
    line-height: 60px;
    float: left;
    margin-right: 15px;
}

.index-msg-item:nth-child(3n) {
    margin-right: 0;
}

.index-msg-item input {
    width: 390px;
    height: 60px;
    padding: 0 0 0 20px;
}

.index-msg-item input::-webkit-input-placeholder {
    font-size: 18px;
    color: #a6a6a6;
    font-weight: normal;
}

.index-msg-verify {

}

.index-msg-verify input {
    width: 280px;
    height: 60px;
    float: left;
}

.msg-verify {
    width: 110px;
    height: 60px;
    float: right;
    margin: 0 0 0 0;
}

.msg-verify img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    cursor: pointer;
}

.index-msg-item textarea {
    width: 390px;
    height: 60px;
    padding: 20px 0 0 20px;
}

.index-msg-item textarea::-webkit-input-placeholder {
    font-size: 18px;
    color: #a6a6a6;
    font-weight: normal;
}

.index-msg-item button {
    width: 390px;
    height: 60px;
    cursor: pointer;
    font-size: 22px;
    font-weight: lighter;
    color: #fff;
    background-color: #50bf38;
}

.index-msg-item button:hover {
    color: #fff;
    background-color: #d69707;
}

/*index-foot*/
.index-foot {

    width: 100%;

    /* height: 357px; */
}

.index-foot-main {

    width: 100%;

    height: 380px;
}

.index-foot-top {

    width: 100%;

    height: 100%;
}

.index-foot-top-left {
    width: 460px;
    height: 100%;
    ___border-right: 2px #e9e9e9 solid;
}

.index-foot-top-left-logo {

    width: 100%;

    height: 137px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.index-foot-top-left-logo img {

    max-height: 100%;

    object-fit: contain;

    position: absolute;

    left: 0;

    bottom: 0;

    top: 0;

    margin: auto;
}

.index-foot-top-left-logo h3{
    font-size: 22px;
    color: #000;
    font-weight: bold;
    line-height: 137px;
}

.index-foot-top-left-logo h3:nth-child(1){
    padding: 0 0 0 6%;
}
.index-foot-top-left-logo h3:nth-child(2){
    padding: 0 0 0 20%;
}

.index-foot-top-left-link {

    width: 100%;

    height: 220px;
}

.index-foot-top-left-wx {

    width: 145px;

    height: 175px;

    float: left;

    background-color: #e9e9e9;

    border-radius: 8px;

    position: relative;

    padding: 10px 10px 10px 10px;
}

.index-foot-top-left-wx-img-pic {

    width: 125px;

    height: 130px;
}

.index-foot-top-left-wx-img-pic img {

    width: 100%;

    height: 100%;

    object-fit: fill;
}

.index-foot-top-left-wx-wz {

    font-size: 14px;

    line-height: 35px;

    color: #595656;

    font-weight: normal;

    text-align: center;
}

.index-foot-top-left-linfo {

    width: 295px;

    height: 175px;

    float: right;
}

.index-foot-top-left-linfo ul {

}

.index-foot-top-left-linfo ul li {

}

.icon {
    display: block;
    width: 42px;
    height: 42px;
    background-color: #ddd;
    border-radius: 50%;
    float: left;
}

.ml-icon-tel {
    background-image: url("../../images/icon/icon_f_tel.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.ml-icon-address {
    background-image: url("../../images/icon/icon_f_map.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.ml-icon-email {
    background-image: url("../../images/icon/icon_f_email.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.ml-wz {
    display: inline-block;
    width: 250px;
    height: 45px;
    line-height: 45px;
    color: #595656;
    font-size: 20px;
    font-family: 'semi-bold';
    padding: 0 0 0 10px;
}

.index-foot-top-left-linfo ul li:nth-child(2) {
    margin: 15px 0 15px 0;
}

.index-foot-top-left-linfo ul li:nth-child(2) .ml-icon-address {
    position: relative;
    top: 8px;
}

.ml-wz1 {
    width: 222px;
    height: 60px;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index-foot-top-right {

    width: 700px;

    height: 100%;
}

.index-foot-top-right ul {

    width: 100%;

    height: 100%;
}

.index-foot-top-right ul li {
    width: 175px;
    height: 100%;
    float: left;
    position: relative;
}

.index-foot-top-right ul li:nth-child(4n) {
    margin-right: 0;
}

.index-foot-top-bx {

    width: 175px;

    height: 100%;

    position: absolute;

    left: 0;

    right: 0;

    margin: auto;
}

.index-foot-top-bx h3 {

    font-size: 20px;

    color: #000;

    font-weight: bold;

    padding: 50px 0 30px 0;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    text-align: center;
}

.index-foot-top-bx a {
    display: block;
    font-size: 16px;
    line-height: 45px;
    line-height: 33px;
    color: #595656;
    font-weight: lighter;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.index-foot-top-bx a:hover {
    color: #0f448e;
    font-weight: bold;
}

/*index-footer*/
.index-footer {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #e9e9e9;
    background-color: #fff;
}

.index-footer-main span {
    font-size: 14px;
    color: #666666;
    font-weight: normal;
}

.index-footer-main a {
    font-size: 14px;
    color: #666666;
    font-weight: normal;
}

#ml-sheng-ming {
    font-weight: bold;
}

/*qt-company*/
.qt-company {

}

.qt-company-main {

}

.header-location {
    width: 1200px;
    height: 102px;
    position: relative;
}

.crumbs-location {
    width: 100%;
    height: 102px;
    position: relative;
    border-bottom: 1px #ebebeb solid;
}

.crumbs-bq {
    width: calc((100% - 1200px) / 2);
    height: 102px;
    background-color: #10448f;
    position: absolute;
    top: 0;
    right: 0;
}

.location-left {
    width: 910px;
    height: 102px;
    line-height: 102px;
    position: relative;
}

.location-left a {
    font-size: 18px;
    color: #666;
    padding: 0 40px 0 40px;
}

.location-left a:after {
    display: inline-block;
    content: '';
    color: #d6d6d6;
    background: #d6d6d6;
    width: 1px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-left: 40px;
}

.location-left a:first-child {
    padding: 0 40px 0 0;
}

.location-left a:last-child:after {
    display: none;
}

.location-left a:hover {
    color: #0f448e;
    font-weight: bold;
}

.location-right {
    width: 290px;
    height: 102px;
    line-height: 102px;
    background-color: #10448f;
    text-align: right;
    color: #fff;
    font-size: 16px;
    overflow: hidden;
}

.ml-icon-home {
    display: inline-block;
    width: 19px;
    height: 16px;
    background-image: url("../../images/icon/icon_home.png");
    background-repeat: no-repeat;
    background-position: initial;
    background-size: auto;
}

.location-right a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.qt-title {
    width: 100%;
}

.qt-title h3 {
    font-family: 'semi-bold';
    position: relative;
    font-size: 60px;
    line-height: 60px;
    color: #0f448e;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 70px 0 0 0;
}

.qt-title h4 {
    display: block;
    position: relative;
    font-size: 30px;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    margin: 20px 0 0 0;
}

.qt-company-pic {
    width: 100%;
    height: 334px;
    margin: 35px 0 0 0;
}

.qt-company-pic a {
    display: block;
    width: 100%;
    height: 100%;
}

.qt-company-pic a img {

}

.qt-company-content {
    font-size: 18px;
    color: #333;
    margin: 30px 0 0 0;
}

.qt-company-list {
    width: 100%;
    height: 260px;
    margin: 35px 0 73px 0;
}

.qt-company-list ul {

    width: 100%;

    height: 100%;
}

.qt-company-list ul li {
    width: 380px;
    height: 260px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.qt-company-list ul li a {
    width: 100%;
    height: 100%;
}

.qt-company-list ul li a img {

}

.qt-company-list ul li:nth-child(3n) {
    margin-right: 0;
}

/*qt-honor*/
.qt-honor {
    width: 100%;
    height: auto;
    background-image: url(../../images/img/company_honor_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.qt-honor .qt-title h3 {
    margin: 0 0 0 0;
    padding: 70px 0 0 0;
}

.qt-honor .qt-title h4 {
    margin: 0 0 0 0;
    padding: 20px 0 40px 0;
}

.qt-honor-list {
    width: 100%;
    height: 750px;
    position: relative;
}

.qt-honor-list .qt-company-list {
    margin: 0 0 73px 0;
}

.company-honor-main {
    height: auto;
    position: relative;
    top: 0;
    transform: none;
}

/*qt-contact*/
.qt-contact {
    width: 100%;

}

.qt-contact-main {
    width: 100%;
    height: 820px;
}

.qt-contact-list {

}

.qt-contact-list {

    min-height: 280px;

    margin: 60px 0 30px 0;
}

.qt-contact-list ul {

    width: 100%;

    height: 100%;
}

.qt-contact-list ul li {
    width: 380px;
    min-height: 280px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.qt-contact-list ul li:nth-child(3n) {
    margin-right: 0;
}

.qt-contact-item {

    width: 380px;

    min-height: 280px;

    background-color: #f5f7fa;

    text-align: center;
}

.qt-contact-item img {

    margin: auto;

    padding: 60px 0 45px 0;
}

.qt-contact-item h3 {

    font-size: 18px;

    color: #333;

    font-weight: normal;
}

.qt-contact-item p {

    font-size: 18px;

    color: #333;

    font-weight: bold;

    padding: 25px 0 0 0;
}

.qt-contact-map {
    width: 1200px;
    height: 400px;
    background-color: #ddd;
}

/*qt-product-list*/
.qt-product-list {
    display: inline-block;
    min-height: 20vh;
    padding: 9% 0 3% 0;
}

.qt-product-list ul {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.qt-product-list ul li {
    width: 48%;
    height: 30vh;
    float: left;
    margin-right: 4%;
    margin-bottom: 6%;
}

.qt-product-list ul li:nth-child(2n) {
    margin-right: 0;
}

.qt-product-list ul li a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.qt-product-list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qt-product-list-pic {
    width: 100%;
    height: 230px;
    background-color: #fff;
    overflow: hidden;
}

.qt-product-list-pic img {

}

.qt-product-list ul li p {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    background-color: #ddd;
}

.qt-product-list ul li:hover .qt-product-list-pic {
    overflow: hidden;
}

.qt-product-list ul li:hover .qt-product-list-pic img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.qt-product-list ul li:hover p {
    background-color: #0f448e;
    color: #fff;
}

#miao_d {
    background-color: #f5f6fa;
}

#miao_d_info {
    background-color: #f5f6fa;
    padding: 6% 0 6% 0;
    /*background: url("../../images/company_honor_bg.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 900px;*/
}

/*product-type*/
.product-type {
    display: inline-block;
    width: 100%;
    padding: 9% 0 6% 0;
}

.product-type ul {
    width: 100%;
    height: 100%;
}

.product-type ul li {
    width: 23%;
    height: 5vh;
    line-height: 5vh;
    text-align: center;
    float: left;
    border: 2px #0f448e solid;
    border-radius: 8px;
    margin-right: 2.6%;
    margin-bottom: 2%;
}

.product-type ul li:nth-child(4n) {
    margin-right: 0;
}

.product-type ul li a {
    font-size: 16px;
    font-weight: bold;
    color: #0f448e;
}

.product-type ul li:hover {
    background-color: #0f448e;
}

.product-type ul li:hover a {
    color: #fff;
}

/*ml-pro*/
#miao_d1 {
    background-color: #f5f6fa;
    padding: 0 0 6% 0;
}

.ml-pro-det {
    width: 100%;
    height: 507px;
    background-color: #fff;
}

.mal-pro-l1 {
    width: 58%;
    height: 100%;
    float: left;
    position: relative;
}

.mal-pro-ri {
    width: 38%;
    height: 100%;
    float: left;
    position: relative;
}

.swiper-img {
    width: 600px;
    height: 413px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.swiper-img img {

}

.mal-cr {
    width: 450px;
    height: 413px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.mal-tag {

}

.mal-tag a {
    float: left;
}

.tag-bg1 {
    display: inline-block;
    line-height: 32px;
    padding: 0 10px;
    background-color: #10448f;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    border: 1px #10448f solid;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.tag-bk1 {
    max-width: 80%;
    display: inline-block;
    line-height: 32px;
    padding: 0 10px;
    color: #10448f;
    font-size: 16px;
    font-weight: normal;
    border: 1px #10448f solid;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.mal-cr {

}

.mal-cr-h3 {
    font-size: 32px;
    color: #000;
    font-weight: bold;
    padding: 32px 0;
}

.mal-pro-desc {

}

.mal-pro-desc label {
    font-size: 16px;
    color: #10448f;
    font-weight: bold;
}

.mal-pro-desc p {
    font-size: 16px;
    line-height: 24px;
    color: #888;
    font-weight: normal;
    margin: 15px 0 0 0;
}

.mal-line1 {
    width: 100%;
    height: 2px;
    background-color: #eee;
    margin: 30px 0 0 0;
}

.mal-pro-tel {
    width: 100%;
    line-height: 54px;
    margin: 30px 0 10px 0;
}

.mal-pro-tel img {
    display: inline-block;
}

.mal-pro-tel label {
    font-size: 18px;
    font-weight: lighter;
    color: #333;
    position: relative;
    top: -3px;
}

.mal-pro-tel span {
    max-width: 200px;
    font-family: 'semi-bold';
    font-size: 36px;
    font-weight: bold;
    color: #10448f;
    position: relative;
    top: 3px;
}

.mal-pro-btn-link1 {
    display: inline-block;
    width: 150px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px #10448f solid;
    background-color: #10448f;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

.mal-pro-btn-link1:hover {
    background-color: transparent;
    color: #10448f;
}

.mal-det-con {
    width: 100%;
    min-height: 250px;
    background-color: #fff;
    margin: 9% 0 0 0;
    position: relative;
}

.mal-det-con-nav {
    width: 1100px;
    height: 68px;
    background-color: #eee;
    position: relative;
    margin: auto;
    top: 45px;
}

.mal-det-con-nav-l1 {
    width: 195px;
    height: 68px;
    background-color: #10448f;
    position: relative;
}

.mal-det-con-nav-l1 img {
    position: relative;
    top: 50%;
    transform: translate(20px, -50%);
}

.mal-det-con-nav-l1 span {
    position: absolute;
    top: 50%;
    transform: translate(40px, -50%);
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    line-height: 36px;
}

.mal-det-con-nav-r1 {

}

.mal-det-con-detail {

    position: relative;

    padding: 33px 50px 100px 50px;

    margin: auto;

    top: 45px;
}

.mal-det-con-detail img {
    object-fit: contain;
    margin: auto;
}

/*newsPage*/
.newsPage {
    font-size: 16px;
    color: #323232;
    line-height: 30px;
    padding: 30px 50px 30px 50px;
}

.newsPage .page-a {
    border-top: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
}

.newsPage .page-a:first-child {
    border-bottom: none;
}

.newsPage a {
    color: #323232;
}

.newsPage a:hover {
    color: #237ed2;
}

/*qt-case-list*/
.qt-case-list {
    width: 100%;
    height: 100%;
    padding-top: 9%;
    padding-bottom: 3%;
}

.qt-case-list ul {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.qt-case-list ul li {
    width: 100%;
    height: 250px;
    margin-bottom: 6%;
}

.qt-case-list ul li:hover {
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

.qt-case-list ul li:hover .qt-case-r1 p {
    color: #333;
}

.qt-case-list ul li:hover .qt-case-pic {
    overflow: hidden;
}

.qt-case-list ul li:hover .qt-case-pic img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.qt-case-list ul li:nth-child(1n) {
    margin-right: 0;
}

.qt-case-list ul li a {

    display: block;

    width: 100%;

    height: 100%;
}

.qt-case-list ul li a img {

}

.qt-case-pic {
    width: 450px;
    height: 250px;
    overflow: hidden;
    background-color: #fff;
}

.qt-case-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qt-case-r1 {
    width: 750px;
    height: 250px;
    padding: 2%;
}

.qt-case-r1 h3 {
    display: inline-block;
    font-size: 24px;
    background-color: #10448f;
    color: #fff;
    font-weight: bold;
    position: relative;
    line-height: 45px;
    padding: 0 2%;
}

.qt-case-r1 h3:after {
    display: none;
    content: '';
    width: 50%;
    height: 2px;
    background-color: #10448f;
    position: absolute;
    left: 0px;
    top: 42px;
}

.qt-case-r1 p {

    font-size: 14px;

    color: #888;

    font-weight: normal;

    padding-top: 2%;

    line-height: 30px;

    text-align: justify;
}

/*qt-support-list*/
.qt-support-list {

    width: 100%;

    padding-bottom: 80px;
}

.qt-support-list ul {

    display: inline-block;

    width: 100%;

    height: 100%;

    background-color: #fff;
}

.qt-support-list ul li {

    width: 22%;

    float: left;

    margin-right: 48px;
}

.qt-support-list ul li:nth-child(4n) {
    margin-right: 0;
}

.qt-support-list ul li a {

    display: block;

    width: 100%;

    height: 100%;
    overflow: hidden;
}

.qt-support-pic {

    width: 100%;

    height: 100%;
}

.qt-support-pic img {

}

.qt-support-com {

}

.qt-support-com h3 {
    font-size: 18px;
    color: #fff;
    background-color: #0f448a;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
}

.qt-support-content {
    background-color: #eee;
}

.qt-support-content p {
    font-size: 14px;
    color: #333;
    font-weight: normal;
    line-height: 25px;
    margin: 0 5% 5% 5%;
    text-align: justify;
}

.qt-support-list ul li:hover .qt-support-pic {
    overflow: hidden;
}

.qt-support-list ul li:hover .qt-support-pic img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.qt-support-list ul li:hover .qt-support-content {
    background-color: #0f448a;
}

.qt-support-list ul li:hover .qt-support-content p {
    color: #fff;
}

/*art-detail*/
.art-detail {
    background-color: #fff;
}

.art-detail-head {

    padding: 3% 3% 1% 3%;
}

.art-detail-head h3 {

    font-size: 30px;

    font-weight: bold;

    text-align: center;

    color: #333;

    border-bottom: 1px #ddd solid;

    padding-bottom: 30px;
}

.art-detail-head p {

    font-size: 14px;

    font-weight: normal;

    text-align: center;

    color: #666;

    padding: 1% 0;
}

.art-detail-head p span {

    padding: 0 1%;
}

.art-detail-pic {

    width: 400px;

    max-height: 400px;

    margin: auto;

    padding: 0 0 1% 0;
}

.art-detail-pic img {

}

.art-detail-content {

    padding: 1% 4% 0 4%;
}

/*qf-honor-list*/
.qf-honor-list {
    width: 100%;
    padding: 60px 0 0 0;
}

.qf-honor-list ul {
    width: 100%;
    height: 100%;
}

.qf-honor-list ul li {
    width: 31.3%;
    float: left;
    margin-right: 3%;
    margin-bottom: 3%;
}

.qf-honor-list ul li:nth-child(3n) {
    margin-right: 0;
}

.qt-support-list1 {

}

.qt-support-list1 ul {
    padding: 3% 0 3% 0;
}

.qt-support-list1 ul li {
    margin: 6% 0 6% 0;
    position: relative;
}

.qt-support-list1 ul li a {

}

.qt-support-box1 {
    width: 1200px;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.qt-support-box1:after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #0481ca;
    background: -moz-linear-gradient(90deg, #0481ca, transparent);
    background: -webkit-linear-gradient(90deg, #0481ca, transparent);
    background: -o-linear-gradient(90deg, #0481ca, transparent);
    -webkit-transition: 350ms 0s all ease;
    -moz-transition: 350ms 0s all ease;
    -ms-transition: 350ms 0s all ease;
    -o-transition: 350ms 0s all ease;
    transition: 350ms 0s all ease;
}

.qt-support-box1:hover:after {
    height: 40%;
}

.qt-support-pic1 {

    padding: 15% 0 0 0;
}

.qt-support-pic1 h3 {
    display: block;
    width: 600px;
    height: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

.qt-support-pic1 p {
    display: block;
    width: 600px;
    height: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: lighter;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 30px;
}


/*qt-env-list*/
.qt-env-list {
    width: 100%;
    display: inline-block;
    min-height: 20vh;
    padding: 9% 0 3% 0;
}

.qt-env-list ul {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.qt-env-list ul li {
    width: 30%;
    height: 30vh;
    float: left;
    margin-right: 4%;
    margin-bottom: 6%;
}

.qt-env-list ul li:nth-child(3n) {
    margin-right: 0;
}

.qt-env-list ul li a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.qt-env-list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qt-env-list ul li p {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    background-color: #ddd;
}

.qt-env-list ul li:hover .qt-product-list-pic {
    overflow: hidden;
}

.qt-env-list ul li:hover .qt-product-list-pic img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.qt-env-list ul li:hover p {
    background-color: #0f448e;
    color: #fff;
}

/*Ã¨Âµâ€žÃ¨Â´Â¨Ã¨ÂÂ£Ã¨Âªâ€°*/
.honors-list {

    background-color: #fff;
}

.honors-bg {

    background-color: #f5f6fa;

    padding: 6% 0 0 0;
}

.honors-list ul {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 2% 0;
}

.honors-list ul li {

    width: 10%;
    margin: 0 1%;
    text-align: center;
}

.honors-list ul li a {

    display: block;
    font-size: 18px;
    font-weight: lighter;
    background-color: #f5f6fa;
    color: #333;
    white-space: nowrap;
    padding: 10%;
    transition: all 0.3s linear;
}

.honors-list ul li a:hover {
    background-color: #10448f;
    color: #fff;
}

.active-honors {
    background-color: #10448f !important;
    color: #fff !important;
}

.pu-honor {
    pointer-events:none;
}

.pu-honor .pu-honor-nav {

    ___background-color: #fff;

    font-size: 30px;

    font-weight: lighter;

    color: #333;

    padding: 1% 0;

    margin: 0 0 3px 0;

    text-indent: 30px;
}

.pu-honor .pu-honor-nav-list {

}

.pu-honor .pu-honor-top {

    margin: 6% 0 6% 0;
}

.pu-honor .pu-honor-nav-list ul {

    display: flex;

    flex-wrap: wrap;

    gap: 60px;
}

.pu-honor .pu-honor-nav-list ul li {

    width: 30%;
}

.pu-honor .pu-honor-nav-list ul li img {

    object-fit: contain;

    width: 100%;

    height: 100%;
}

.footer-box{

}
.footer{
    background-color:transparent;
    padding: 30px 0 0 0;
}
.footer ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
.footer ul li{

}
.footer-item{

}
.footer-item h3{
    font-family: 'semi-bold';
    font-size: 18px;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    padding: 15px 0 30px 0;
}
.footer-item1{

}
.footer-item1 h3{
    text-align: left;
    text-indent: 14%;
}
.footer-item1 .footer-item-content{

}
.footer-item1 .footer-item-content .footer-item-link{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 15px 0;
}
.footer-item1 .footer-item-content .footer-item-link .footer-item-link-pic{
    width: 32px;
    height: 32px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-item1 .footer-item-content .footer-item-link .footer-item-link-pic img{
    width: 12px;
    height: 12px;
}
.footer-item1 .footer-item-content .footer-item-link p{
    color: #595656;
    font-size: 18px;
    font-family: 'semi-bold';
    padding: 0 0 0 10px;
}
.footer-item1 .footer-item-content .footer-item-link:nth-child(1) p{
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: bold;
}
.footer-item1 .footer-item-content .footer-item-link:nth-child(2) p{
    font-size: 15px;
}
.footer-item1 .footer-item-content .footer-item-link:nth-child(3) p{
    font-size: 18px;
}
.footer-item1 .footer-item-content .footer-item-link:nth-child(3) p:hover{
    color: #024589;
}
.footer-item2{

}
.footer-item2 h3{

}
.footer-item2 .footer-item-content{

}
.footer-item2 .footer-item2-item{
    ---background-color: #e9e9e9;
    ---padding: 15px 15px 15px 15px;
    border-radius: 15px;
    ---margin: 7px 0 0 0;
}
.footer-item2 .footer-item2-item .footer-item2-item-pic{
    display: block;
    width: 125px;
    height: 125px;
    margin: 4px 0 0 0;

}
.footer-item2 .footer-item2-item .footer-item2-item-pic .empty-box{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #f7ae34;
    color: #fff;
    font-size: 14px;
}
.footer-item2 .footer-item2-item .footer-item2-item-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px #ddd solid;
}
.footer-item2 .footer-item2-item p{
    text-align: center;
    padding: 5px 0 3px 0;
    font-size: 12px;
    color: #999;
}
.footer-item .footer-item-content{

}
.footer-item .footer-item-content a{
    display: block;
    font-size: 15px;
    line-height: 30px;
    color: #595656;
    font-weight: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}
.footer-item .footer-item-content a:hover{
    color: #00448e;
    text-decoration: underline;
}

.footer-item6 .footer-item-content a:not(:nth-child(1)){
    text-align: left;
}

.footer-item4 .footer-item-content a:not(:nth-child(1)){
    ---letter-spacing: 4px;
}
.footer-item4 .footer-item-content a{
    width: 180px;
    text-align: center;
}

