.title-banner{
    font-size: 45px;
    font-weight: bold;
}
.title-1{
    font-size: 42px;
    font-weight: bold;
}
.title-2{
    font-size: 40px;
    font-weight: bold;
}
.title-3{
    font-size: 32px;
    font-weight: bold;
}
.title-4{
    font-size: 16px;
}
.text{
    font-size: 22.4px;
}
@media screen and (max-width: 768px){
    .title-banner{
        font-size: 18.4px;
    }
    .title-1{
        font-size: 22.4px;
    }
    .title-2{
        font-size: 21.6px;
    }
    .title-3{
        font-size: 21px;
    }
    .title-4{
        font-size: 15px;
    }
    .text{
        font-size: 14px;
    }

}
.items-1 {
    padding: 60px 0 120px;
    display: grid;
    grid-template-columns: 7fr 6fr;
    gap: var(--interval-global);
}

.items-1 .text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


.items-2 {
    background-color: #FFFFFF;
    padding: 50px 0;
}

.items-2 .bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    margin-top: 35px;
}

.items-2 .bottom .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 100px;
}

.items-2 .bottom .item .icon {
    transition: 1s;
}

.items-2 .bottom .item:hover .icon {
    transform: rotateY(360deg);
}

.items-2 .bottom .item .text {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.items-3 {
    padding: 80px 0 0;
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.items-3 .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.items-3 .item img {
    transition: .3s;
}

.items-3 .item:hover img {
    box-shadow: var(--box-shadow-2);
}

.items-3 .item .text {
    font-size: 1.35rem;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.items-4{
    background-color: #FFFFFF;
}
.items-4 .middle {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.items-4 .middle .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.items-4 .middle .item .text {
    font-size: 1.65rem;
    font-weight: bold;
}

.items-4 .bottom {
    display: flex;
    margin-top: 80px;
    align-items: center;
    gap: 80px;
}

.items-4 .bottom .text {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.items-4 .bottom p {
    font-size: 1.65rem;
    font-weight: bold;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.items-4 .bottom p:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: black;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 50px;
}

.items-5 {
    padding: 100px 0;
}

.items-5 .bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 20px;
    margin-top: 80px;
}

.items-5 .bottom .text {
    font-size: 1.25rem;
    text-align: center;
}

.items-5 .bottom .item img {
    transition: .3s;
}

.items-5 .bottom .item:hover img {
    box-shadow: var(--box-shadow-1);
}

.items-6 {
    padding: 50px 0;
    background-color: #FFFFFF;
}

.items-6 .middle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 80px;
    margin-top: 30px;
}

.items-6 .middle p {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 70px;
}

.items-6 .middle p:before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: black;
    border-radius: 50%;
    margin: 0 30px;
}

.items-6 .bottom .description {
    margin-top: 80px;

}

.items-6 .bottom .image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 65px;
    margin-top: 30px;
}

.items-7 {
    padding: 150px 0;
}

.items-7 .bottom {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    gap: 20px;
}
.items-7 .bottom > div{
    display: grid;
    gap: 20px;
}

.items-7 .bottom .item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    transition: .5s;
    transform: scale(1);
}

.items-7 .bottom .item:hover {
    transform: scale(1.05);
}

.items-7 .bottom .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.items-7 .bottom > div:nth-child(1) .item:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.items-7 .bottom > div:nth-child(1) .item:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
}

.items-7 .bottom > div:nth-child(1) .item:nth-child(3) {
    grid-row: 1/3;
    grid-column: 2/4;
}

.items-7 .bottom > div:nth-child(2) .item:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.items-7 .bottom > div:nth-child(2) .item:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
}

.items-7 .bottom > div:nth-child(2) .item:nth-child(3) {
    grid-row: 1;
    grid-column: 2;
}
.items-7 .bottom > div:nth-child(2) .item:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
}
.items-7 .bottom > div:nth-child(3) .item:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.items-8 {
    background-image: url("/upload/photo/202408/41 map6.png");
    background-color: var(--font-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    padding: 35px 0;
}

.items-8 .text {
    color: #FFFFFF;
}


.items-8 .text .sub-content {
    margin-top: 60px;
}

.items-8 .form {
    background-color: #FFFFFF;
    padding: 50px 60px;
}

.items-8 .form dt {
    display: flex;
    align-items: center;
}

.items-8 form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    justify-items: center;

}

.items-8 form dl {
    width: 100%;
}

.items-8 form .form4 {
    grid-row: 3;
    grid-column: 1/3;
}

.items-8 form .form4:after {
    content: "Contents with * are required. \A For your privacy and security, we will keep your information strictly confidential.";
    white-space: pre-wrap; /* 使换行符 \A 生效 */
    color: #6e6e6e;
    margin-top: 30px;
}

.items-8 form .form4 dd {
    margin-bottom: 40px;

}

.items-8 form input,
.items-8 form textarea {
    border: none;
    border-bottom: 1px solid #bcbcbc;
    padding-left: 0;
    border-radius: initial;
}

.items-8 form textarea {
    height: 70px;
}

.items-8 form button {
    grid-row: 4;
    grid-column: 1/3;
    color: white;
    background-color: #BCBCBC;
    border: none;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 18px;
}

.items-8 form button:before {
    content: url("/upload/photo/icon/Email.png");
    display: flex;
    align-items: center;
    height: 18px;
    margin-right: 10px;
}


.items-9 {
    background-color: #FFFFFF;
    padding: var(--interval-global) 0;
}

.items-9 .bottom {
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 110px;
    margin-top: 60px;
}

.items-9 .bottom .item {
    background-color: initial !important;
    display: flex;
    flex-direction: column;
    align-items: center;

    transition: .5s;
    transform: scale(1);
}

.items-9 .bottom .item:hover {
    transform: scale(1.05);
}

.items-9 .bottom .item .text {
    margin: 30px 0;
    font-size: 1.5rem;
    font-weight: bold;
}


.items-10 {
    margin: 150px 0;
}

.items-10 .bottom {
    padding: 0 50px;
    position: relative;
    margin-top: 50px;
    --swiper-navigation-top-offset: 37%
}

.items-10 .swiper-button-prev::after,
.items-10 .swiper-button-next::after {
    content: none !important;
}

.items-10 .swiper-slide .img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;

    border: 1px solid #CFCFCF;
}

.items-10 .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.items-10 .swiper-slide .title {
    margin-top: 10px;
    line-height: 1.1;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media screen and (max-width: 768px) {
    .items-1 {
        display: flex;
        flex-direction: column-reverse;
        gap: 15px 0;
        padding: 25px 0 40px;
    }
    .items-1 .sub-title {
        font-size: 1.4rem;
    }
    .items-1 .sub-content{
        font-size: 1.06rem;
    }
    .items-2 .bottom{
        grid-template-columns:none;
        grid-template-rows: none;
    }
    .items-2 .bottom .item{
        padding: 0 40px;
    }
    .items-2 .bottom .item .text{
        font-size: 1.12rem;
        text-align: left;
    }
    .items-3{
        padding: 45px 0 30px;
        grid-template-rows: none;
        grid-template-columns: none;
        gap: 40px;
    }
    .items-3 .item .text{
        margin-top: 5px;
        font-size: 1.079rem;
    }
    .items-4{
        padding: 15px;
    }
    .items-4 .middle{
        margin-top: 15px;
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 30px;
    }
    .items-4 .middle .item .text{
        font-size: 1.25rem;
    }
    .items-4 .bottom{
        display: grid;
        grid-template-columns: 6fr 4fr;
        gap: 25px;
        margin-top: 25px;
    }
    .items-4 .bottom .text{
        gap: 10px;
    }
    .items-4 .bottom p{
        font-size: 0.9rem;
    }
    .items-4 .bottom p:before{
        margin-right: 15px;
    }
    .items-5{
        padding: 40px 0;
    }
    .items-5 .bottom{
        grid-template-columns: repeat(2, 1fr );
        gap: 20px;
    }
    .items-5 .bottom .text{
        line-height: 1.2;
    }
    .items-6{
        padding: 30px 0;
    }
    .items-6 .middle{
        padding: 0;
    }
    .items-6 .middle p{
        font-size: 1.1rem;
        height: 35px;
    }
    .items-6 .middle p:before{
        width: 5px;
        height: 5px;
        margin: 0 10px;
    }
    .items-6 .bottom .description {
        margin-top: 30px;
    }
    .items-6 .bottom .image{
        margin-top: 20px;
        grid-template-rows: none;
        grid-template-columns: none;
    }
    .items-7{
        padding: 40px 0;
    }
    .items-7 .bottom{
        grid-template-columns: none;
        grid-template-rows: none;
    }

    .items-8{
        display: flex;
        flex-direction: column;
        padding: 20px 0 0!important;
        gap: 35px;
    }
    .items-8 .text{
        padding: 0 10px;
    }
    .items-8 .text .sub-title{
        font-size: 1.75rem;
    }
    .items-8 .text .sub-content{
        font-size: 1.35rem;
        margin-top: 10px;
    }
    .items-8 .form{
        padding: 15px;
    }
    .items-8 form{
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    .items-8 form dl{
        margin-bottom: 30px;
    }
    .items-8 form .form4 dd{
        margin: 0;
    }
    .items-9{
        margin-top: 40px;
        padding: 10px 0;
    }
    .items-9 .bottom{
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .items-9 .bottom .item .text{
        margin: 0 0 30px;
    }
    .items-10 {
        margin: 40px 0;
        --swiper-navigation-sides-offset: -3px
    }
    .items-10 .bottom{
        margin-top: 25px;
    }
    .items-10 .swiper-slide .title{
        -webkit-line-clamp: 2;

    }
    .swiper-button-prev img, .swiper-button-next img{
        height: 30px;
    }
    .items-10 .bottom{
        padding: 0 30px;
    }
}