body {
    background-color: #f9fafb;
    font-size: medium;
}

/* country_content 左右结构布局样式 */
.country_content {
    display: flex;
    max-width: 1300px;
    margin: 80px auto;
    gap: 90px;
    align-items: center;
}

.country_left {
    flex: 1;

    text-align: left;
}

.country_title {
    font-weight: bold;
    font-size: 36px;
    color: #111111;
}

.country_subtitle {
    font-weight: bold;
    font-size: 28px;
    color: #111111;
}

.country_text {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-top: 40px;

}

.country_button {
    cursor: pointer;
    border-radius: 27px;
    display: inline-block;
    background-color: #FF9415;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: fit-content;
    margin-top: 60px;
}

.country_button:hover {
    background-color: #e65c00;
}

.country_right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country_image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* 响应式设计 */
@media screen and (max-width: 992px) {
    .country_content {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
    }

    .country_left {
        text-align: center;
        align-items: center;
    }

    .country_title {
        font-size: 28px;
    }

    .country_image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .country_content {
        margin: 50px auto;
        padding: 0 15px;
    }

    .country_title {
        font-size: 24px;
    }

    .country_subtitle {
        font-size: 16px;
    }

    .country_text {
        font-size: 14px;
        margin-top: .2rem;
    }

    .country_button {
        padding: 10px 40px;
        font-size: 14px;
        margin-top: .3rem;
    }
}

/* 营商环境概览模块样式 */


.environment_title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.environment_container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;

}

.environment_item {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}



.environment_item:hover {
    transform: translateY(-5px);
}

.environment_item:nth-child(2n) {
    display: flex;
    flex-direction: column-reverse;
}

.environment_image {
    width: 100%;
    height: 195px;
    object-fit: cover;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}

.environment_item .environment_content {
    flex: 1;
    margin-top: -15px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.environment_item:nth-child(2n) .environment_content {
    margin-bottom: -15px;
    margin-top: 0px;
}

.environment_content {
    padding: 20px;
}

.environment_item_title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.environment_item_text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */


@media screen and (max-width: 768px) {
    .environment_section {
        padding: 0;
    }

    .environment_container {
        width: 7.5rem;
        padding: 0 0.3rem;
        flex-wrap: wrap;
        gap: 0.2rem;
    }

    .environment_item {
        flex: none;
        flex-shrink: 0;
        width: 3.35rem;
        margin-bottom: 20px;
    }



    .environment_title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .environment_image {
        height: 180px;
    }

    .environment_content {
        padding: 15px;
    }

    .environment_item_title {
        font-size: 16px;
    }

    .environment_item_text {
        font-size: 13px;
    }
}

/* 当地化服务能力部分样式 */
.local_service_section {
    padding-top: 100px;

}

.local_service_container {
    max-width: 1300px;
    margin: 0 auto;

}

.local_service_title {
    text-align: center;
    font-size: 44px;
    color: #111111;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: Microsoft YaHei;
}

.local_service_subtitle {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 60px;
    font-family: Microsoft YaHei;
}

.local_service_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}

.local_service_card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}


.local_service_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.local_service_icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.icon_container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.icon_container img {
    max-height: 62px;
}

.local_service_card_title {
    font-size: 20px;
    color: #111111;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: Microsoft YaHei;
}

.local_service_card_desc {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    font-family: Microsoft YaHei;
}

.local_service_support {

    background-color: #1563FF;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.local_service_support img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.support_text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support_title {
    font-size: 20px;
    color: #fff;
    font-family: Microsoft YaHei;
}

.support_arrow {
    font-size: 0px;
}

.support_arrow img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .local_service_grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media screen and (max-width: 992px) {
    .local_service_title {
        font-size: 36px;
    }

    .local_service_grid {
        gap: 25px;
    }
}

@media screen and (max-width: 750px) {
    .local_service_section {
        padding-top: .6rem;
    }

    .local_service_title {
        font-size: 28px;
    }

    .local_service_subtitle {
        font-size: 14px;
        margin-bottom: .3rem;
    }

    .local_service_grid {
        gap: .2rem;
        padding: 0 0.3rem;
    }



    .local_service_card {
        padding: .3rem .2rem;
    }

    .icon_container img {
        height: .62rem;
    }

    .icon_container {
        width: auto;
        height: auto;
        margin-bottom: .1rem;
    }
}


/* 联系我们三栏布局模块 */
.contact_section_new {
    position: relative;
    height: 333px;
    margin-top: 120px;
}

.contact_section_new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/contact-bg.png');

    z-index: -1;
}

.contact_container_new {
    max-width: 1300px;
    width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.contact_text_col {
    color: white;
}

.contact_text_title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: Microsoft YaHei;
    padding-top: 20px;
}

.contact_text_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.contact_info_line_label {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 28px;
    display: flex;
    align-items: center;
}

.contact_info_line img {
    height: 18px;
    margin-right: 5px;
}

.contact_info_line_text {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;
    letter-spacing: 2px;
}

.contact_image_col {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.contact_image_col img {}

.contact_form_col {
    width: 650px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact_form_title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    font-family: Microsoft YaHei;
}

.contact_form_new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form_group_new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_label_new {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form_input_new {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form_input_new:focus {
    outline: none;
    border-color: #1563FF;
}

.form_row_new {
    display: flex;
    gap: 15px;
}

.form_col_new {
    flex: 1;
}

.form_submit_new {
    width: 350px;
    height: 54px;
    background: #1563FF;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    border: none;
    margin: 0px auto;
    margin-top: 15px;
}



/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .contact_container_new {
        /* gap: 20px; */
    }

    .contact_image_col {
        flex: 0 0 180px;
    }
}

@media screen and (max-width: 992px) {
    .contact_container_new {
        flex-direction: column;
        text-align: center;
        width: 100%;
        position: static;
        left: auto;
        transform: translateX(0);
    }

    .contact_section_new {
        height: auto;
        margin-top: .5rem;
        padding: .8rem 0;
    }

    .contact_text_info {
        display: none;
    }

    .contact_image_col {
        display: none;
    }

    /* .contact_container_new {} */
    .form_label_new {
        text-align: left;
    }

    .contact_text_col,
    .contact_form_col {
        flex: none;
        width: 6.9rem;
    }

    .contact_image_col {
        margin: 30px 0;
    }

    .contact_info_line {
        justify-content: center;
    }

    .form_submit_new {
        align-self: center;
        width: 100%;
        max-width: 200px;
    }
}

@media screen and (max-width: 768px) {
    .contact_section_new {
        padding: 60px 0;
    }

    .contact_text_title {
        font-size: 28px;
    }

    .form_row_new {
        flex-direction: column;
        gap: 15px;
    }

    .contact_form_col {
        padding: 25px;
    }

    .contact_form_title {
        font-size: 20px;
    }
}