.box1 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 10.8rem;
    padding-top: 1.07rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.breadNav {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0.31rem;
    left: 2.21rem;
}

.icon0 {
    width: 0.18rem;
    height: 0.18rem;
    filter: brightness(0) invert(100%);
}

.icon1 {
    width: 0.05rem;
    height: 0.07rem;
    margin: 0 0.06rem;
    filter: brightness(0) invert(100%);
}

.breadNav_text1 {
    width: auto;
    height: 0.21rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.21rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.breadNav_text2 {
    width: auto;
    height: 0.21rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #2161B8;
    line-height: 0.21rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.box1_text {
    margin-bottom: 0.68rem;
}

.box1_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.85rem;
    color: #FFFFFF;
    letter-spacing: 0.1rem;
    text-align: center;
    opacity: 0;
    animation: op1 1s 1s forwards;
}

.box1_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    letter-spacing: 0.05rem;
    margin-top: 0.2rem;
    opacity: 0;
    text-align: center;
    transition: 0.3s;
    animation: op2 1s 2s forwards;
}

.box1_img_box {
    animation: bts 2.5s forwards;
}

.box1_img {
    width: 6.04rem;
    height: 5.98rem;
    animation: ttb 4s infinite;
}

@keyframes op1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes op2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.8;
    }
}

@keyframes bts {
    0% {
        transform: scale(1.2);
    }

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

@keyframes ttb {
    0% {
        transform: translateY(-0.2rem);
    }

    50% {
        transform: translateY(0rem);
    }

    100% {
        transform: translateY(-0.2rem);
    }
}


.box2 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 1.07rem;
    padding-bottom: 0.99rem;
}

.box2 .main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.41rem 0.48rem;
    margin-bottom: 0.63rem;
}

.box2_box {
    max-width: 3.33rem;
    width: 22%;
    height: 2.03rem;
    padding-top: 0.37rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: 0.3s;
}

.box2_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
}

.box2_box:hover {
    box-shadow: 0rem 0rem 0.1rem 0.01rem rgba(0, 0, 0, 0.16);
    transform: translateY(-0.1rem);
}

.btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 2.28rem;
    height: 0.64rem;
    background: #2161B8;
    border-radius: 0.32rem 0.32rem 0.32rem 0.32rem;
}

.btn p {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
}

.btn img {
    width: 0.3rem;
    height: 0.14rem;
}

.box3 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 9.6rem;
}

.box3_box {
    width: 16rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.box3_box_bg {
    width: 16rem;
    height: 100%;
    cursor: default;
}

.box3_imgBox {
    position: absolute;
    left: 50%;
    transform: translate(-58%, 0);
    top: 3.92rem;

}

.box3_box_img1 {
    width: 6.34rem;
    height: 5.66rem;
    animation: ttb2 4s infinite;
    cursor: default;

}

.box3_box_img2 {
    width: 7.29rem;
    height: 3.42rem;
    position: absolute;
    top: 2rem;
    left: -0.4rem;
    animation: ttb2 4s infinite;
    cursor: default;
}

@keyframes ttb2 {
    0% {
        transform: translateY(-0.2rem);
    }

    50% {
        transform: translateY(0rem);
    }

    100% {
        transform: translateY(-0.2rem);
    }
}

.r {
    position: absolute;
}

.r_r {
    width: 0.2rem;
    height: 0.2rem;
    background: #5DA2FF;
    position: relative;
    border-radius: 50%;
    opacity: 0;
}

.r_r::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.4rem;
    height: 0.4rem;
    background: #5DA2FF;
    opacity: 0.37;
    border-radius: 50%;
    animation: r 1.5s infinite;
    cursor: pointer;
}

@keyframes r {
    0% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.frame_box>:nth-child(1) p,
.frame_box>:nth-child(2) p,
.frame_box>:nth-child(3) p {
    text-align: right;
}

.frame_box>:nth-child(4) {
    padding: 0.12rem 0.1rem !important;
}

.frame_box>:nth-child(4) p {
    text-align: center;
}

.frame_box>:nth-child(5) p,
.frame_box>:nth-child(6) p,
.frame_box>:nth-child(7) p {
    text-align: left;
}

.frame {
    position: absolute;
    min-width: 1.71rem;
    max-width: 3.41rem;
    min-height: 0.55rem;
    box-shadow: 0rem 0rem 0.06rem 0.01rem rgba(83, 152, 243, 0.9);
    border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
    border: 0.01rem solid #84B4F5;
    padding: 0.12rem 0.2rem;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
}

.box3_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.24rem;
    color: #FFFFFF;
    cursor: default;
}

.box3_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
    line-height: 0.24rem;
    margin-top: 0.05rem;
    cursor: default;
}

.box4 .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 0.84rem;
}

.box4_left {
    width: 4.76rem;
    height: 6.8rem;
    padding-left: 0.4rem;
    background: #F0F0F0;
    border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.box4_right {
    width: 9.78rem;
    height: 6.8rem;
    border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
    overflow: hidden;
}
.box4_right img{
           width: 100%;
           height: 100%;
       }
.box4_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.46rem;
    color: #333333;
    margin-bottom: 0.22rem;
}

.box4_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    line-height: 0.46rem;
}

.box5 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 9.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.78rem;
}

.box5_title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box5_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.56rem;
    color: #333333;
    margin-bottom: 0.34rem;
}

.box5_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
}

.box5_box {
    width: 13.7rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 0.9rem;
    position: relative;
}

.box5_box img {
    width: 6.18rem;
    height: 4.04rem;
    animation:  ttb3 4s infinite;
}
@keyframes ttb3 {
    0% {
        transform: translateY(-0.15rem);
    }

    50% {
        transform: translateY(0.15rem);
    }

    100% {
        transform: translateY(-0.15rem);
    }
}
.box5_text {
    position: absolute;
}

.box5_p3 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    position: relative;
    white-space: nowrap;
}

.box5_textBox>:nth-child(1) .box5_p3::after,
.box5_textBox>:nth-child(2) .box5_p3::after,
.box5_textBox>:nth-child(3) .box5_p3::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.box5_textBox>:nth-child(4) .box5_p3::after,
.box5_textBox>:nth-child(5) .box5_p3::after,
.box5_textBox>:nth-child(6) .box5_p3::after {
    left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.box5_p3::after {
    content: '';
    position: absolute;
    bottom: -0.08rem;
    width: 1.26rem;
    height: 0.04rem;
    border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
    opacity: 0.6;
}
.logo_box{
    display: flex;
    gap: 0.2rem;
    margin-top: 1rem;
}
.logo_box img{
    width: 2.05rem;
    height: 0.84rem;
}
.box6 {
    padding: 0.7rem 0;
}

.box6 .main {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 7.6rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2.19rem;
    padding-left: 1.75rem;
}

.box6_left {
    width: 6.7rem;
    height: 5.38rem;
    position: relative;
    z-index: 1;
}

.img_top {
    display: flex;
    justify-content: space-between;
    padding: 0 0.3rem;
}

.img_top img {
    width: 1.65rem;
    height: 1.45rem;
}

.img_bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 1.79rem;
}

.img_bottom img {
    width: 2.25rem;
    height: 2.14rem;
}

.box6_box_wrap {
    width: 4.5rem;
    height: 4.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    overflow: hidden;
}

.box6_box {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border: #4A88FF solid 0.04rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.line_run1 {
    width: 1.42rem;
    height: 0.07rem;
    position: absolute;
    top: -0.05rem;
    animation: run1 3s infinite;
    filter: brightness(150%);
}

@keyframes run1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(12rem);
    }
}

.line_run2 {
    height: 1.42rem;
    width: 0.07rem;
    position: absolute;
    right: -0.05rem;
    animation: run2 3s infinite;
    filter: brightness(150%);
}

@keyframes run2 {
    0% {
        transform: translateY(-4rem);
    }

    100% {
        transform: translateY(12rem);
    }
}

.line_run3 {
    width: 1.42rem;
    height: 0.07rem;
    position: absolute;
    bottom: -0.05rem;
    animation: run3 3s infinite;
    filter: brightness(150%);
}

@keyframes run3 {
    0% {
        transform: translateX(8rem);
    }

    100% {
        transform: translateX(-8rem);
    }
}

.line_run4 {
    height: 1.42rem;
    width: 0.07rem;
    position: absolute;
    left: -0.05rem;
    animation: run4 3s infinite;
    filter: brightness(150%);
}

@keyframes run4 {
    0% {
        transform: translateY(12rem);
    }

    100% {
        transform: translateY(-4rem);
    }
}

.box6_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.46rem;
    color: #333333;
}

.box6_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    margin-top: 0.22rem;
}

.box7 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 1.29rem;
    height: 7.6rem;
}

.box7_main {
    max-width: 14rem;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.box7_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.46rem;
    color: #FFFFFF;
    margin-bottom: 0.32rem;
}

.box7_p2 {
    max-width: 5rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.46rem;
}

.box7_right {
    position: relative;
    width: 5rem;
    height: 5rem;
    margin-left: 3.3rem;
}

.box7_img1 {
    width: 3.19rem;
    height: 4.43rem;
    position: absolute;
    top: 0.52rem;
    left: 0;
}

.box7_img2 {
    width: 7.29rem;
    height: 3.42rem;
    transform: scale(0.57);
    position: absolute;
    top: 0.98rem;
    left: -2.2rem;
}

.box7_img3 {
    position: absolute;
    width: 0.26rem;
    height: 0.37rem;
    top: 0;
    left: 0.99rem;
    animation: img3 1s infinite;
}

.box7_img4 {
    position: absolute;
    width: 0.26rem;
    height: 0.37rem;
    animation: img4 1s infinite;
    left: 0.99rem;
    bottom: 0.84rem;
}

@keyframes img3 {
    0% {
        transform: translateY(0.1rem) rotate(180deg);
    }

    50% {
        transform: translateY(-0.1rem) rotate(180deg);
    }

    100% {
        transform: translateY(0.1rem) rotate(180deg);
    }
}

@keyframes img4 {
    0% {
        transform: translateY(-0.1rem);
    }

    50% {
        transform: translateY(0.1rem);
    }

    100% {
        transform: translateY(-0.1rem);
    }
}

.box8 {
    margin: 0.6rem 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 7.6rem;

}

.box8_main {
    max-width: 19.2rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

.box8_left {
    width: 10.06rem;
    height: 7.6rem;
    margin-right: 2.57rem;
}
.box8_left img{
    width: 100%;
    height: 100%;
}
.box8_p1 {
    max-width: 2.76rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.46rem;
    color: #333333;
}

.box8_p2 {
    max-width: 3.07rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    margin-top: 0.31rem;
}

.box8_img {
    width: 5.44rem;
    height: 5.17rem;
    position: absolute;
    top: 1.85rem;
    left: 6.02rem;
}

.box9 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 8.31rem;
    padding-top: 0.91rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box9_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.56rem;
    color: #FFFFFF;
}

.box9_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.34rem;
    margin-top: 0.34rem;
}

.box9_box {
    max-width: 19.2rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#swiper1 {
    padding-top: 1.1rem !important;
    padding-left: 1rem !important;

}

.mySlide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position: center;
    background-size: cover;
    width: 4.8rem;
    height: 100%;
}

.mySlide img {
    width: 4.8rem !important;
    height: 3.2rem !important;
}

#swiper1 .swiper-slide-active .active_box {
    display: block !important;
}

.active_box {
    width: 4.8rem;
    height: 0.59rem;
    background: #FFFFFF;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #333333;
    line-height: 0.59rem;
    text-align: center;
}

.box10 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 7.8rem;
    padding-top: 0.8rem;
}

.box10_title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.28rem;
    color: #000000;
    text-align: center;
    margin-bottom: 0.18rem;
}

.box10_hr {
    width: 0.56rem;
    margin: 0 auto;
    height: 0.04rem;
    background: linear-gradient(179deg, #2161B8 0%, #2F98CF 100%);
    border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
    margin-bottom: 0.3rem;
}

.mySwiper2 {
    padding: 0.2rem 0 !important;
}

.box10_sliderBox {
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.06rem 0.01rem rgba(0, 0, 0, 0.16);
    border-radius: 0.1rem 0.1rem 0.06rem 0.06rem;
    position: relative;
    z-index: 1;
}

.box10_sliderBox p {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #333333;
    margin: 0.18rem 0;
    transition: 0.3s;
}

.box10_sliderBox::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0.05rem;
    background: #2161B8;
    border-radius: 0rem 0rem 0.1rem 0.1rem;
    bottom: 0;
    left: 0;
    transition: 0.5s;
}

.box10_sliderBox::after {
    content: '';
    position: absolute;
    background-image: url('/assets/img/MR30/img36.png');
    width: 100%;
    height: 2.6rem;
    top: 0;
    left: 0;
    z-index: -1;
}

.box10_sliderImg {
    width: 100%;
    height: 2.6rem !important;
}

.box10_sliderBox_box {
    width: 100%;
    padding: 0 0.25rem;
}

.box10_sliderBox_box hr {
    width: 100%;
    border: 0.01rem solid #E6E6E6;
}

.box10_sliderBox table {
    width: 100%;
    height: 1.7rem;
    margin-top: 0.2rem;
}

.box10_sliderBox table tbody>:nth-child(odd) {
    background: #F3F3F3;
}

.box10_sliderBox tr {
    display: flex;
    justify-content: space-between;
    padding: 0 0.15rem;
}

.box10_sliderBox td {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.14rem;
    color: #7D7D7D;
    line-height: 0.35rem;
    white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.box10_sliderBox:hover p {
    color: #2161B8;
}

.box10_sliderBox:hover::before {
    width: 100%;
}

.box10 .main {
    position: relative;
    width: 90%;
}

.swiper-button-prev,
.swiper-button-next {
    top: 1.58rem !important;
    font-size: 0.34rem;
    color: #000 !important;
    transition: 0.3s;
}

.swiper-button-prev {
    left: -0.47rem !important;
}

.swiper-button-next {
    right: -0.47rem !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #2161B8 !important;
}

.box11 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 2.8rem;
    padding-top: 0.9rem;
}

.box11_box {
    width: 10.74rem;
    margin: 0 auto;
}

.box11_box p {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.36rem;
    color: #FBFBFB;
    letter-spacing: 0.05rem;   
}

.box11_btnBox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1.57rem;
    margin-top: 0.3rem;
}

.box11_btnBox a {
    width: 2.08rem;
    height: 0.48rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
    border: 0.01rem solid #FFFFFF;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.2rem;
    color: #FFFFFF;
    line-height: 0.48rem;
    text-align: center;
}

@media (max-width: 1600px) {
    .box3_box {
        transform: scale(0.9);
        transition: 0.3s;
        bottom: -0.46rem;
        right: 0.35rem;
    }
}

@media only screen and (max-width: 1024px) {
.box1_img{
        width: 6.69rem;
    height: 3.78rem;
        margin-top: 1.5rem;
    }
    .breadNav_text2 {
    color: rgb(132 172 223);
}     
.box1_p1 {
    font-size: 0.35rem;
}
.box1_text {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}
       .box1_img{
               width: 3.69rem;
       }
       .box2_box{
           width: 46%;
       }
       /*.box3_box{
           width: auto;
           right: 0;
       }
       .box3{
           height: 100%;
       }
       .box3_imgBox{
               transform: translate(-50%, 0%);
       }*/
       .box3_box{
           transform: scale(0.46);
       right: 4.3rem;
       bottom: 1.54rem;
       }
       .box3{
           height: 7.6rem;
       }
       .box3_p1{
           font-size: 0.3rem;
       }
       .box3_p2{
           font-size: 0.2rem;
       }
       .frame {
            height: 70px!important;
        }
        .box4{
            padding: 0.8rem 0;
        }
       .box4_left{
        width: 4.76rem;
        height: 3.8rem;
        margin-right: 0.2rem;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
       }
       .box4_right{
           width: 6.78rem;
            height: 3.8rem;
       }
       .box4 .main{
           padding-top: 0;
           padding-bottom: 0;
       }
       .box5_box{
           width: 88%;
       }
       .box5{
           padding: 0.78rem 0.2rem 0 0.2rem;
       }
       .box5_box img{
           width: 3.06rem;
           height: 2.02rem;
           margin: 1.03rem 0;
       }
       .logo_box{
           flex-wrap: wrap;
           margin-top: 0;
           justify-content: space-evenly;
       }
       .box6 .main{
           gap: 0rem; 
    padding-left: 0rem;
    flex-direction: column-reverse;
        justify-content: space-evenly;
       }
       .box7_right{
           margin-left: 0.3rem;
       }
       .box8_left{
           margin-right: 1rem;
           width: 3.06rem;
       }
       .box8_img{
               width: 3.44rem;
    height: 3.17rem;
    position: absolute;
    top: 2.5rem;
        left: 0.5rem;
       }
       .box9{
               padding: 0.91rem 0.2rem 0 0.2rem;
       }
       #swiper1{
               padding-left: 1.2rem !important;
       }
       .box10{
           height: 100%;
       }
       .box10 .main{
           width: 85%;
       }
       .box11_box p{
           letter-spacing:normal;
           text-align: center;
       }
       .box11_box{
           width: auto;
       }
       .box5_text:nth-child(1){
            left: 0.35rem!important;
            top: 1.4rem !important;
        }
        .box5_text:nth-child(2){
            top: 1.9rem!important;
            left: 0.4rem!important;
        }
        .box5_text:nth-child(3){
            top: 2.37rem!important;
            left: 0.1rem!important;
        }
        .box5_text:nth-child(4){
            top: 1.4rem!important;
            left: 4.9rem!important;
        }
        .box5_text:nth-child(5){
            top: 1.9rem!important;
            left: 4.9rem!important;
        }
        .box5_text:nth-child(6){
            top: 2.37rem!important;
            left: 4.9rem!important;
        }
    
}