/* @import url(./layout.css); */
@import url(./global.css);

/* ==========================================================================
   common part
========================================================================== */
.pic {
    overflow: hidden;
    position: relative;
    height: auto;
}

.bgimg {
    width: 100%;
}

.upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.pic:hover .upimg {
    transform: scale(1.05);
}

/* 没有放大效果 */
.upimg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 居中对齐 */
.upimg3 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
}

.pic:hover .upimg3 {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* 缩小放大 */
.upimg4 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%) scale(0.93);
    transform: translate(-50%, -50%) scale(0.93);
    transition: all .5s;
}

.pic:hover .upimg4 {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.container {
    overflow: hidden;
}

.container img {
    max-width: 100%;
}

.container * {
    box-sizing: border-box;
}

.zhanwei {
    height: 110px;
}

@media only screen and (max-width: 920px) {
    .zhanwei {
        display: none;
    }
}


/* ==========================================================================
   part01
========================================================================== */
.part01 {
    padding: .8rem 0;
}

.home_title {
    font-weight: bold;
    font-size: .36rem;
    color: #323333;
    text-align: center;
}

.home_subtitle {
    font-size: .16rem;
    color: #666666;
    text-align: center;
    margin: .2rem 0 0;
}

.allNewPro {
    font-weight: bold;
    font-size: .24rem;
    color: #133574;
}

.homeNew_swiper {
    position: relative;
    padding: .25rem 0 .5rem;
}


.homeNew_box {
    padding: .3rem .2rem .1rem .4rem;
    margin: .2rem;
    background: #FFFFFF;
    box-shadow: 0px .1rem .2rem 0px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(238, 238, 238);
}

.homeNew_title {
    font-size: .18rem;
    color: #666666;
    margin: .2rem 0;
}

.homeNew_type {
    font-size: .24rem;
    color: #333333;
}

.homeNew_box:hover .homeNew_type {
    color: #133574;
    font-weight: 700;
}

.homeNew_img {
    justify-content: flex-end;
    margin: .45rem 0 0;
}

.homeNew_img .pic {
    width: 65%;
}

.homeNew_swiper .swiper-button-next:after,
.homeNew_swiper .swiper-button-prev:after {
    font-size: .26rem;
}

.homeNew_swiper .swiper-button-next {
    right: -0.35rem;
}

.homeNew_swiper .swiper-button-prev {
    left: -0.35rem;
}


@media only screen and (max-width: 1200px) {
    .home_subtitle {
        font-size: 12px;
    }

    .homeNew_title {
        font-size: 12px;
    }
}


@media only screen and (max-width: 500px) {

    .homeNew_swiper .swiper-button-next:after,
    .homeNew_swiper .swiper-button-prev:after {
        font-size: 18px;
    }

    .homeNew_type,
    .allNewPro {
        font-size: 14px;
    }
}














/* ==========================================================================
   part02
========================================================================== */
.part02 {
    background-image: -moz-linear-gradient(90deg, rgb(216, 225, 239) 0%, rgb(248, 249, 251) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(216, 225, 239) 0%, rgb(248, 249, 251) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(216, 225, 239) 0%, rgb(248, 249, 251) 100%);
    padding: .8rem 0;
}

.homePro_swiper {
    padding: .8rem 0;
    position: relative;
}

.homePro_box {
    position: relative;
    border-left: 1px solid #c0bfbf;
}

.homePro_box .pic .upimg {
    top: 100%;
}

.homePro_box:hover .pic .upimg {
    top: 0;
}

.homePro_cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.homePro_box:hover .homePro_cover {
    background: rgba(6, 50, 122, .7);
}

.homePro_icon {
    width: 1rem;
    height: 1rem;
    text-align: center;
    line-height: 1rem;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    transition: background 0.5s;
}

.homePro_box:hover .homePro_icon {
    background-position: center bottom;
}

.homePro_title {
    font-size: .24rem;
    color: #323333;
    text-align: center;
    padding: 0 0 .2rem;
    margin: .2rem 0;
    position: relative;
}

.homePro_box:hover .homePro_title {
    color: #fff;
}

.homePro_title::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: .3rem;
    height: 1px;
    background: rgb(193, 197, 200);
}

.homePro_box:hover .homePro_title::before {
    background: rgb(255, 255, 255);
}

.homePro_info {
    font-size: .14rem;
    color: #7C7B7C;
    line-height: 2;
    text-align: center;
    padding: 0 .7rem;
}

.homePro_box:hover .homePro_info {
    color: #fff;
}

.homePro_swiper .swiper-button-prev::after,
.homePro_swiper .swiper-button-next::after {
    display: none;
}

.homePro_swiper .swiper-button-prev {
    width: .35rem;
    height: .35rem;
    top: auto;
    bottom: 0;
    left: calc(50% - .4rem);
    margin-top: 0;
    background: url(../images/arr05.png) no-repeat center;
    background-size: 100% auto;
    transition: all .3s;
}

.homePro_swiper .swiper-button-prev:hover {
    background-image: url(../images/arr07.png);
}

.homePro_swiper .swiper-button-next {
    width: .35rem;
    height: .35rem;
    top: auto;
    bottom: 0;
    right: calc(50% - .4rem);
    margin-top: 0;
    background: url(../images/arr06.png) no-repeat center;
    background-size: 100% auto;
    transition: all .3s;
}

.homePro_swiper .swiper-button-next:hover {
    background-image: url(../images/arr08.png);
}


@media only screen and (max-width: 1280px) {
    .homePro_info {
        font-size: 12px;
        padding: 0 10px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 500px) {
    .homePro_title {
        font-size: 14px;
    }

    .homePro_box {
        border-left: none;
    }

    .homePro_cover {
        background: rgba(6, 50, 122, .7);
    }

    .homePro_icon {
        background-position: center bottom;
    }

    .homePro_title {
        color: #fff;
    }

    .homePro_info {
        color: #fff;
    }

    .homePro_box .pic .upimg {
        top: 0;
    }

    .home_subtitle {
        padding: 0 20px;
    }
}











/* ==========================================================================
   part03
========================================================================== */
.part03 {
    background-image: -moz-linear-gradient(90deg, rgb(216, 225, 239) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(216, 225, 239) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(216, 225, 239) 0%, rgb(255, 255, 255) 100%);
    padding: .6rem 0 .9rem;
}

.homeSolve_swiper {
    margin: .5rem 0 0;
}

.homeSolve_box {
    position: relative;
    overflow: hidden;
}

.homeSolve_cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.solve_details {
    top: 100%;
    transition: all .5s;
}

.homeSolve_box:hover .homeSolve_cover {
    top: -100%;
}

.homeSolve_box:hover .solve_details {
    top: 0;
}

.homeSolve_center {
    justify-content: center;
    padding: 20% 0 0;
}

.homeSolve_vertical {
    font-weight: bold;
    font-size: .24rem;
    color: #FFFFFF;
}

.homeSolve_bottom {
    width: 100%;
    height: 100%;
    align-items: flex-end;
}

.homeSolve_bottom a {
    width: 100%;
}

.homeSolve_area {
    padding: .35rem .45rem;
    background: rgba(21, 51, 111, .6);
}

.homeSolve_title {
    font-weight: bold;
    font-size: .24rem;
    color: #FFFFFF;
}

.homeSolve_info {
    font-size: .14rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin: .2rem 0 .1rem;
}

@media only screen and (max-width: 1280px) {
    .homeSolve_area {
        padding: .25rem .35rem;
    }
}

@media only screen and (max-width: 920px) {
    .homeSolve_info {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .homeSolve_box:hover .homeSolve_cover {
        top: 0;
    }

    .solve_details {
        top: 0;
    }

    .homeSolve_vertical {
        font-size: 16px;
    }
}









/* ==========================================================================
   part04
========================================================================== */
.part04 {
    background: url(../images/part04.jpg) no-repeat bottom / cover;
    padding: .9rem 0;
}

.home_MST {
    justify-content: space-between;
    align-items: center;
}

.homeMST_left {
    width: calc(58% - .65rem);
}

.homeMST_right {
    width: 42%;
}

.homeMST_title {
    display: inline-block;
    font-weight: bold;
    font-size: .36rem;
    color: #323333;
    position: relative;
}

.homeMST_title::before {
    content: "";
    position: absolute;
    left: -0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24.0104vw;
    height: 7.7604vw;
    background: url(../images/MST.png) no-repeat center;
    background-size: 100% auto;
}

.homeMST_en {
    font-weight: bold;
    font-size: .16rem;
    color: #8A8A91;
    margin: .1rem 0;
}

.homeMST_intro {
    font-size: .16rem;
    color: #4B4E50;
    line-height: 2;
}

.play_img {
    width: 1.28rem;
    opacity: 0.5;
    transition: all .3s;
}

.play_img:hover {
    opacity: 0.8;
}

.homeMST_ljxq {
    margin-top: .15rem;
}

.ljxq_link {
    font-size: .16rem;
    color: rgb(21, 51, 111);
    font-weight: bold;
    align-items: center;
}

.ljxq_link .fa-angle-right {
    margin-left: .15rem;
    font-size: .2rem;
}

.homeMST_list {
    margin: .45rem 0 0 -0.25rem;
}

.homeMST_list li {
    margin: 0 0 0 .25rem;
}

.homeMST_box {
    width: 1.65rem;
    height: 1.65rem;
    border: .05rem solid #FFFFFF;
    background-image: -moz-linear-gradient(90deg, rgb(21, 51, 111) 0%, rgb(2, 61, 150) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(21, 51, 111) 0%, rgb(2, 61, 150) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(21, 51, 111) 0%, rgb(2, 61, 150) 100%);
    border-radius: 50%;
    flex-direction: column;
    transition: all .3s;
}

.homeMST_box:hover {
    transform: translateY(-0.1rem);
}

.homeMST_img {
    width: .5rem;
    margin-bottom: .15rem;
}

.homeMST_name {
    font-weight: bold;
    font-size: .18rem;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
}

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 768px) {
    .ljxq_link {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .homeMST_left {
        width: 100%;
    }

    .homeMST_right {
        width: 100%;
        margin: 20px 0 0;
    }

    .homeMST_en {
        font-size: 12px;
    }

    .homeMST_intro {
        font-size: 12px;
        line-height: 2;
    }

    .homeMST_title::before {
        left: 0;
        width: 184px;
        height: 59px;
    }

    .ljxq_link .fa-angle-right {
        font-size: 16px;
    }

    .homeMST_list {
        justify-content: space-between;
    }

    .homeMST_box {
        width: 100px;
        height: 100px;
    }
}