@font-face {
    font-family: 'HONORSansCNHeavy';
    src: url('./HONORSansCN-Heavy.ttf') format('truetype');
    /* 指定字体文件的路径和格式 */
}

@font-face {
    font-family: 'YeZiGongChangAoYeHei';
    src: url('./YeZiGongChangAoYeHei-2.ttf') format('truetype');
    /* 指定字体文件的路径和格式 */
}

@font-face {
    font-family: 'MiSansThin';
    src: url('./MiSans-Thin.ttf') format('truetype');
    /* 指定字体文件的路径和格式 */
}

@font-face {
    font-family: 'MiSansDemibold';
    src: url('./MiSans-Demibold.ttf') format('truetype');
    /* 指定字体文件的路径和格式 */
}

@font-face {
    font-family: 'MiSansDemibold';
    src: url('./MiSans-Semibold.ttf') format('truetype');
    /* 指定字体文件的路径和格式 */
}

.parent {
    width: 100%;
    height: 100vh;
}

.parent .parent-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 1.604vw 5.208vw;
    box-sizing: border-box;
    z-index: 200;
    box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, .1);
}

.parent .parent-top .parent-top-left {
    width: 4.427vw;
    height: 2.813vw;
}

.parent .parent-top .parent-top-right {
    /* width: 2.292vw;
    height: 1.667vw;*/
    cursor: pointer;
}

.parent-middle {
    padding: 8.063vw 5.208vw 0;

}



.parent-middle .parent-middle-top {
    margin-top: 1.042vw;
    /* height: 29.167vw; */
    position: relative;
    overflow: hidden;
    width: 100%;
    /* 设置轮播图容器宽度为100% */
    height: calc(100vw * 500 / 1720);

}

.swiper-wrapper {
    animation-name: example;
    animation-duration: 1s;
}

/* 动画代码 */
@keyframes example {
    0% {
        transform: scale(1.2);
    }

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

.parent-middle .parent-middle-top .swiper-slide {
    position: relative;
    top:10px;
}

.parent-middle img {
    width: 100%;
    display: block;
        cursor: pointer;
}

.parent-middle .parent-middle-top .swiper-slide .swiper-slide-div p:nth-child(1) {
    font-family: 'MiSansDemibold', sans-serif;
    position: absolute;
    bottom: 13.177vw;
    left: 3.281vw;
    font-size: 1.875vw;
    color: #fff;

}

.parent-middle .parent-middle-top .swiper-slide .swiper-slide-div p:nth-child(2) {
    font-family: 'HONORSansCNHeavy', sans-serif;
    position: absolute;
    bottom: 7.333vw;
    left: 3.281vw;
    font-size: 4.063vw;
    color: #fff;

}

.parent-middle .parent-middle-top .swiper-slide .btn-click {
    color: #fff;
    height: 3.646vw;
    text-align: center;
    line-height: 3.646vw;
    border-radius: 10px;
    width: 12.344vw;
    position: absolute;
    bottom: 2.604vw;
    left: 3.281vw;
    font-size: 1.563vw;
    font-weight: 700;
    border: 2px solid #fff;
    font-family: 'MiSansDemibold', sans-serif;

}

.parent-middle .parent-middle-top .swiper-slide .btn-click:hover {
    background-color: #5791c9;
    transition: 0.3s;
    border: 2px solid #5791c9;
}

.parent-middle .parent-middle-top .swiper-pagination-bullet-active {
    color: #fff;
    background: #fff !important;
}

.parent-middle-text {
    margin-top: 5.08vw;
}

.big-text {
    display: flex;
    align-items: center;
    color: #5791c9;
    font-size: 4.167vw;
    flex-direction: column;

}

.big-text h1:nth-child(1) {
    font-family: 'HONORSansCNHeavy', sans-serif;
}

.big-text h1:nth-child(2) {
    font-family: 'MiSansThin', sans-serif;
}

.small-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 3.125vw;

}

.small-text div {
    line-height: 2.083vw;
    color: #000;
    font-size: 1.250vw;
    font-weight: 700;
    text-align: center;
}


.parent-bottom {
    width: 100%;
    background: #d9d9d9;
    padding: 3.490vw 5% 5.208vw;
    box-sizing: border-box;
    margin-top: 2.604vw;
}

.parent-bottom p {
    color: #626262;
    font-size: 1.250vw;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.823vw;
}

.parent-bottom-ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.parent-bottom-ul .parent-bottom-li {
    width: 25%;
    height: 5.208vw;
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.parent-text {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 4.167vw;
    position: relative;
}

.parent-text1 {
    text-align: center;
    padding: 30px;
    font-family: 'HONORSansCNHeavy', sans-serif;

}

.parent-text-btn {
    padding: 10px 28px;
    font-weight: bold;
    font-size: 1.563vw;
    background: #5791C9;
    border-radius: 28px;
    font-family: 'HONORSansCNHeavy', sans-serif;
    letter-spacing: 4px;
    /* margin-top: 4.167vw; */


}

.parent-top-pc {
    width: 38px;
    height: 28px;
}

.parent-text-btn a {
    color: #fff;
}

.parent-text-p1 {
    font-size: 4.063vw;
    font-weight: 700;
    margin: 4.167vw 0 2.604vw;
    letter-spacing: 3px;
    font-family: 'HONORSansCNHeavy', sans-serif;

}

.parent-text-p2 {
    margin-bottom: 2.333vw;
    color: #828282;
    font-size: 1.146vw;
    font-weight: 700;
    letter-spacing: 2px;
}

.goTop {
    position: absolute;
    right: 5.208vw;
    bottom: 2.604vw;
    cursor: pointer;

}

.goTop img {
    width: 4.948vw;
    height: 1.979vw;
}

.list {
    margin-top: 10px;
}
.list-in:nth-of-type(1) {
    padding: 10.817vw 5.208vw 3.646vw;
}

.list-in {
    padding: 3.646vw 5.208vw;
}

.list-in:nth-of-type(2n-1) {
    background: #ebebeb;
}

.list-in:nth-of-type(2n) {
    background: #fff;
}

.list-in-top {
    font-weight: bold;
    color: #5791c9;
}

.list-in-top p:nth-child(1) {
    font-size: 3.125vw;
    font-family: 'MiSansSemibold', sans-serif;
    margin-bottom: .583vw;

}

.list-in-top p:nth-child(2) {
    font-size: 4.167vw;
    font-family: 'HONORSansCNHeavy', sans-serif;
}

.list-in-btm {
    width: 100%;
    display: flex;
    margin-top: 2.344vw;
}

.list-in-b-left {
    width: 60%;
    overflow: hidden;
}

.list-in-b-left img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
    cursor: pointer;

}

.list-in-b-left img:hover {
    transform: scale(1.1);
}

.list-in-b-right {
    width: 40%;
    padding-left: 3.646vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-in-b-right .right-in-text {
    font-size: 1.563vw;
    font-weight: 700;
    letter-spacing: 0.104vw;
}

.list-in-b-right .right-in-btn {
    color: #5791c9;

    align-self: flex-end;


}

.list-in-b-right .right-in-btn a {
    color: #5791c9;
    font-weight: bold;
    padding: 0.781vw 2.344vw 0.6vw;
    border: 0.208vw solid #5791c9;
    transition: 0.3s;
    font-family: 'HONORSansCNHeavy', sans-serif;
    border-radius: 2.083vw;
    display: inline-block;
    font-size: 1.458vw;
    font-weight: 700;
    cursor: pointer;

}

.list-in-b-right .right-in-btn a:hover {
    background: #5791c9;
    color: #fff !important;

}

/* .list-in-b-right .right-in-btn:hover a {
} */


.list-footer {
    padding: 3.646vw;
    box-sizing: border-box;
    color: #5791c9;
    font-weight: 700;
    font-family: 'HONORSansCNHeavy', sans-serif;
}

.list-footer-p1 {
    font-size: 4.271vw;

}

.list-footer-p2 {
    font-size: 3.188vw;

}

.pop {
    width: 100%;
    height: 100%;
    background: #ebebeb;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    /* transition: opacity 0.3s; */
    /* display: flex;
    flex-direction: column;
    align-items: center; */

}

.addamimate {
    animation-name: addamimate1;
    animation-duration: 0.6s;
    animation-fill-mode: forwards
}


/* 动画代码 */
@keyframes addamimate1 {
    0% {
        opacity: 0;
        transform: translateY(0);

    }

    100% {
        opacity: 1;
        transform: translateY(100%);

    }
}

.pop-head {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 2.604vw 0;
}

.pop-div {
    margin-top: 4.688vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pop-div div {
    height: 0.260vw;
    width: 2.344vw;
    background: #000;
    margin-top: 0.365vw;
}

.pop-middle {
    font-size: 2.708vw;
    color: #000;
    margin-top: 4.688vw;

}

.pop-middle div {
    height: 7.2vw;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.pop-middle div a {
    line-height: 7.2vw;
}

.pop-middle div:hover a {
    color: #7ea9d2;
    font-weight: 700;
    font-family: 'HONORSansCNHeavy', sans-serif;

}


.pop-middle div a::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 0.260vw solid transparent;
    border-bottom: 0.260vw solid transparent;
    border-left: 0.521vw solid #7ea9d2;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.pop-middle div a::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 0.260vw solid transparent;
    border-bottom: 0.260vw solid transparent;
    border-right: 0.521vw solid #7ea9d2;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 40%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.pop-middle div a:hover::after {
    opacity: 1;
}

.pop-middle div a:hover::before {
    opacity: 1;
}

.pop-close {
    margin-top: 5.208vw;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.pop-close img {
    width: 1.563vw;
}

.parent-top-input {
    width: 15.417vw;
    height: 2.563vw;
    border: 0.052vw solid;
    border-radius: 0.260vw;
    padding: 0 10px;
    display: none;
    box-sizing: border-box;
    margin-right: 20px;

}

.parent-top-input .parent-top-input-in {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.parent-top-input input {
    font-size: 1.042vw;
}

.parent-top-input img {
    width: 16px;

}

.big-text h1:nth-child(1) {
    font-size: 4.375vw
}

.big-text h1:nth-child(2) {
    font-size: 3.333vw;
    letter-spacing: 0.260vw;
}

.pop-div div:nth-child(3) {
    background: #5791c9;
}

.parent-bottom-ul .parent-bottom-li {
    height: 8.533vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(1) img {
    width: 7.865vw;
    height: 1.094vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(2) img {
    width: 10.260vw;
    height: 1.563vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(3) img {
    width: 6.302vw;
    height: 2.292vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(4) img {
    width: 8.698vw;
    height: 2.813vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(5) img {
    width: 7.552vw;
    height: 1.875vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(6) img {
    width: 7.292vw;
    height: 3.073vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(7) img {
    width: 6.406vw;
    height: 2.917vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(8) img {
    width: 6.406vw;
    height: 1.771vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(9) img {
    width: 10.104vw;
    height: 1.302vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(10) img {
    width: 9.635vw;
    height: 1.927vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(11) img {
    width: 5.000vw;
    height: 2.292vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(12) img {
    width: 8.229vw;
    height: 2.813vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(13) img {
    width: 7.135vw;
    height: 2.969vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(14) img {
    width: 9.010vw;
    height: 2.552vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(15) img {
    width: 5.260vw;
    height: 2.344vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(16) img {
    width: 9.375vw;
    height: 1.406vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(17) img {
    width: 6.406vw;
    height: 1.406vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(18) img {
    width: 6.615vw;
    height: 1.875vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(19) img {
    width: 9.740vw;
    height: 2.396vw;
}

.parent-bottom-ul .parent-bottom-li:nth-of-type(20) img {
    width: 4.844vw;
    height: 3.177vw;
}

.pages {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

#test1 {
    text-align: center;
    font-size: 20px;
    display: inline-block;
}

#test1 a,
#test1 button {
    color: #6d6d6d;
}

.junp {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.junp-one {
    width: 20.417vw;
    height: 1px;
    background: #6e6e6e;
    margin-right: 10px;
}

.layui-input {
    font-size: 20px;
    width: 40px;
    border: 1px solid #333;
    border-radius: 2px;
    margin: 0 10px;
    text-align: center;
}

.layui-laypage-btn {
    border: 0;
    font-size: 20px;
}

.layui-laypage-default {
    display: flex;
}

.layui-laypage-skip {
    display: flex;
    align-items: center;
}

.layui-laypage-default a,
.layui-laypage-default span {
    margin-right: 10px;
}

/* .layui-laypage-last,
.layui-laypage-spr,
.layui-laypage-first {
    display: none;
} */


.layui-laypage-curr {
    color: #5791c9;
    border-bottom: 3px solid #5791c9;
}

.parent-top-search {
    height: 1.563vw;
    width: 1.615vw ;
    margin-right: 20px;
}

.parent-top-mobile{
    cursor: pointer;
}



/* mobile */
@media screen and (max-width: 750px) {
    .junp-one {
        width: 26.667vw;

    }
    
    .list {
    margin-top: 50px;
}

    .parent .parent-top .parent-top-left {
        width: 11.333vw;
        height: 7.200vw;
    }


    .parent-middle {
    padding: 16vw 0 18vw 0;    }

    .parent-middle-pc {
        display: none;
    }

    .parent-middle .parent-middle-top {
        margin-top: 0;
        height: calc(100vw* 690 / 750);
    }



    .parent-middle .parent-middle-top .swiper-slide .btn-click {
        position: relative;
        background-color: rgba(0, 0, 0, 0);
        color: #fff;
        height: 6.000vw;
        text-align: center;
        line-height: 6.000vw;
        width: 22.000vw;
        position: absolute;
        bottom: 7.333vw;
        left: 9.333vw;
        font-size: 2.667vw;
        font-weight: 700;
        border: 1px solid #fff;
    }

    .parent-middle-text {
        padding: 0 9.333vw;
        box-sizing: border-box;
    }

    .big-text {
        display: block;
    }

    .big-text h1:nth-child(1) {
        font-size: 10.933vw;
    }

    .big-text h1:nth-child(2) {
        font-size: 7.200vw;
    }

    .small-text {
        display: block;
    }

    .small-text div {
        text-align: left;
        font-size: 2.133vw;
        line-height: 7vw;
        color: #444444;
    }

    .parent-bottom {
        padding: 4.667vw 8.667vw 6.667vw;
        margin-top: 7.467vw;
    }

    .parent-bottom p {
        font-size: 2.133vw;
        text-align: left;
        margin-bottom: 4.667vw;
    }

    .parent .parent-top {
        height: 56px;
    position: fixed;
    top: 0;    
    left: 0;
        transform: translateX(0);
        padding: 0 9.333vw !important;
    }

    .goTop {
        display: none;
    }

    .parent-text {
        margin-top: 5.867vw;
    }

    .parent-text-btn {
        width: 26.400vw;
        height: 7.733vw;
        padding: 0;
        font-size: 3.200vw;
        text-align: center;
        line-height: 7.733vw;
        border-radius: 7.733vw;
        ;
    }

    .parent-text-p1 {
        font-size: 6.667vw;
        margin-top: 8.000vw !important;
        margin-bottom: 4.000vw;
        color: #000;
    }

    .parent-text-p2 {
        font-size: 1.867vw;
    }

    .pop-div {
        margin-top: 14.667vw;
    }

    .pop-div div {
        height: 0.800vw;
        width: 6.000vw;
        margin-top: 0.800vw;
    }

    .pop-middle {
        font-size: 6.933vw;
        margin-top: 17.333vw;
    }

    .pop-middle div {
        margin-bottom: 20.667vw;
    }

    .parent-top-input {
        width: 34.417vw;
        height: 6.563vw;
        border-radius: 1vw;
    }

    .parent-top-input input {
        font-size: 2.133vw;
        width: 60%;
    }

    .parent-top-right {
        width: 4.267vw;
        height: 4.133vw;
    }

    .list-in {
        padding: 9.333vw !important;
    }

    .list-in-top p:nth-child(1) {
        font-size: 5.333vw;
    }

    .list-in-top p:nth-child(2) {
        font-size: 7.000vw;
    }

    .list-in-b-right .right-in-text {
        font-size: 2.667vw;
        font-weight: 700;
        letter-spacing: 0.533vw;
        line-height: 4.133vw;
    }

    .list-in-b-right .right-in-btn a{
        border: 0.400vw solid #5791c9;
        border-radius: 5.667vw;
        font-size: 2.400vw;
        width: 20.667vw;
        height: 5.667vw;
        text-align: center;
        line-height: 5.667vw;
    }

    .contact {
        padding: 22.000vw 9.333vw 20.667vw;
        background: #fff;
    }

    .contact-h1 p:nth-child(1) {
        font-size: 11.467vw;
        font-family: 'HONORSansCNHeavy', sans-serif;
    }

    .contact-h1 p:nth-child(2) {
        font-size: 8.800vw;
    }

    .parent-middle-text {
        margin-top: 8.667vw;
    }

    .contact-p {
        font-size: 2.667vw;
        color: #5a5a5a;
        margin-bottom: 6.667vw;
        color: #5a5a5a;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .list-footer-p1 {
        font-size: 8.800vw;

    }

    .list-footer-p2 {
        font-size: 5.600vw;

    }

    .list-in-b-left img:nth-child(1) {
        display: none;
    }

    .pop-head {
        padding: 0;
        height: 56px;
        align-items: center;
    }

    .pop-head img {
        width: 11.333vw;
        height: 7.200vw;
    }

    .pages {
        display: flex;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 50px;
        padding: 0 9.333vw !important;
    }

    .pop-close img {
        width: 4.000vw;
    }

}

/* pc */
@media screen and (max-width: 1200px) {
    .list-in:nth-of-type(1) {
        padding: 12.817vw 2.604vw 3.646vw;
    }
}



/* pc */
@media screen and (min-width: 750px) {

    .parent-text1 {
        text-align: center;
        font-family: 'HONORSansCNHeavy', sans-serif;

    }

    .parent-middle-mobile {
        display: none;
    }

    .list-in-b-left img:nth-child(2) {
        display: none;
    }
}