/* Banner Styles */

body {
    background-color: #f9fafb;
    font-size: medium;
}

.banner {
    background-image: url('../images/banner-building.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    height: 470px;
    position: relative;
    padding-bottom: 88px;
}




.banner-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-countries {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-services,
.banner-desc {
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
}

.banner-contact {
    margin: 30px auto;
    display: flex;
    width: 749px;
    height: 54px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 27px;
    border: 1px solid #FFFFFF;
    letter-spacing: 1px;
}

.banner-contact-list {
    display: flex;
    flex: 1;
    padding: 0 28px;
    justify-content: space-between;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-label {
    font-weight: bold;
}

.banner-btn {
    width: 150px;
    height: 54px;
    background: #FF9415;
    border-radius: 0px 27px 27px 27px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1px;
    margin-right: -1px;
    cursor: pointer;
}



.banner-btn:hover {
    background-color: #e65c00;
}

.banner-stats {
    position: absolute;
    width: 100%;
    height: 88px;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background: rgba(21, 99, 255, 0.7);
    gap: 28px;
}

.stat-item {
    text-align: center;
    gap: 5px;
    display: flex;
    align-items: center;
    height: 50px;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
}

.stat-desc {
    font-size: 14px;
    display: block;
}

.banner-features {
    display: flex;
    max-width: 1300px;
    left: 50%;
    gap: 28px;
    transform: translateX(-50%);
    color: #333;
    position: absolute;
    bottom: -91px;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-weight: bold;
    width: 304px;
    height: 126px;
    background: #FFFFFF;
    box-shadow: 5px 8px 25px 0px rgba(17, 17, 17, 0.05);
    border-radius: 10px;
}

.feature-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-number {
    font-weight: bold;
    font-size: 30px;
    color: #1563FF;
    line-height: 28px;
}

.feature-desc {
    font-size: 16px;
    color: #333;
    font-weight: normal;
}

.feature-icon {
    color: #0070c0;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 36px;
    }

    .banner-countries {
        font-size: 18px;
    }

    .banner-contact-list {
        flex-direction: column;
        gap: 10px;
    }

    .banner-contact {
        flex-direction: column;
        width: 6.9rem;
        height: auto;
        align-items: center;
        margin: 0px auto;
        padding-top: 10px;
    }



    .banner::before,
    .banner::after {
        display: none;
    }

    .stat-item img {
        display: none;
    }

    .stat-item {
        text-align: left;
        height: auto;
    }

    .stat-item>span>span:first-child {
        font-weight: 500;
        font-size: .46rem;
        color: #FFFFFF;
        display: block;
        font-weight: 800;
    }

    .stat-text {
        font-size: 12px;
    }

    .banner {
        height: auto;
        padding-bottom: 0rem;
    }

    .banner-stats {
        height: auto;
        padding-bottom: 1rem;
        padding-top: .2rem;
        gap: 10px;
        position: static;
    }
}


/* 套餐选择部分样式 */
.packages_section {
    padding-top: 170px;
}

.packages_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages_title {
    font-size: 40px;
    color: #111111;
    text-align: center;
    margin-bottom: 20px;
    font-family: Microsoft YaHei;
    font-weight: bold;
}

.packages_subtitle {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
    line-height: 26px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-family: Microsoft YaHei;
}

.packages_grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.package_card {

    flex: 1;
    max-width: 410px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 5px 8px 25px 0px rgba(17, 17, 17, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-bottom: 80px;
}

.package_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package_title {
    font-size: 24px;
    color: #111111;
    margin-bottom: 10px;
    font-family: Microsoft YaHei;
    font-weight: bold;
}

.package_description {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 32px;
}

.package_price {
    margin: 10px 0px 30px 0px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 32px;
}

.page_opener {
    width: 350px;
    height: 54px;
    border-radius: 6px;
    border: 1px solid #1563FF;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 400;
    font-size: 16px;
    color: #1563FF;
    line-height: 30px;
    position: absolute;
    cursor: pointer;

    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}

.discount-tag {
    position: absolute;
    top: 0;
    right: 0px;
    background-color: #FF6A00;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg) translateX(70px) translateY(30px);
    transform-origin: top right;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* 确保标签在响应式布局中也能正常显示 */
@media screen and (max-width: 750px) {
    .page_opener {
        width: 80%;
    }

    .packages_section {
        padding-top: 2.35rem;
    }

    .package_price {
        display: none;
    }

}

.amount {
    font-weight: 400;
    font-size: 31px;
    color: #111111;
    line-height: 32px;
}

.unit {
    font-size: 16px;
    color: #666;
}


.package_button {
    width: 100px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid #FF9415;
    font-weight: 400;
    font-size: 14px;
    color: #FF9415;
    line-height: 34px;
    text-align: center;
    background-color: #fff;
    margin-top: 30px;
}


.package_features {
    margin-top: 20px;
}

.feature_section {
    font-size: 16px;
    color: #111111;
    margin: 20px 0 10px 0;
    font-weight: bold;
    font-family: Microsoft YaHei;
}

.feature_list {
    list-style: none;
    padding: 0;
    border-bottom: 1px solid #E9E9E9;
}

.feature_list:last-child {
    border-bottom: none;
}

.feature_item {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
    line-height: 30px;
    position: relative;
    padding-left: 22px;
    font-family: Microsoft YaHei;
}

.feature_item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1563FF;
    font-weight: bold;
}


.packages_footer {
    font-size: 12px;
    color: #999999;
    text-align: center;
    line-height: 20px;
    margin: 0 auto;
    font-family: Microsoft YaHei;
    max-width: 735px;

}

/* 响应式设计 */
@media screen and (max-width: 1300px) {
    .feature_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .feature_item {
        padding-right: 30px;
        line-height: normal;

    }

    .package_button {
        margin-top: .2rem;
    }

    .packages_grid {
        gap: 20px;
    }

    .package_card {
        padding: 30px;
    }

    .package_card {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 750px) {
    .packages_title {
        font-size: 36px;
    }

    .packages_subtitle {
        margin-bottom: .3rem;
    }

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


}

@media screen and (max-width: 750px) {


    .packages_title {
        font-size: 28px;
    }

    .packages_subtitle {
        font-size: 14px;
    }

    .package_title {
        font-size: 22px;
    }

    .amount {
        font-size: 40px;
    }


}

.center_service {
    padding: 60px 0;
    margin-top: 20px;
}

.center_service_container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service_card {
    background-color: #ffffff;
    box-shadow: 5px 8px 25px 0px rgba(17, 17, 17, 0.05);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service_icon {
    margin-bottom: 20px;
}

.service_title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.service_desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service_features {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

/* .feature_item {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature_item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1563FF;
    font-weight: bold;
} */

.service_consult {
    font-size: 16px;
    color: #1563FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.service_consult:hover {
    color: #0f4bc7;
}

.center_service_button {
    text-align: center;
    margin-top: 30px;
}

.more_services_btn {
    display: inline-block;
    background-color: #1563FF;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 100px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.more_services_btn:hover {
    background-color: #0f4bc7;
}


@media screen and (max-width: 768px) {
    .center_service_container {
        grid-template-columns: repeat(2, 1fr);
        gap: .3rem;
        padding: 0rem 0.3rem;
    }

    .service_card {
        width: 3.3rem;
        padding: .3rem .4rem;
    }

    .service_features {
        display: none;
    }

    .service_icon img {
        height: .36rem;
    }

    .service_icon {
        margin-bottom: 0rem;
    }

    .service_title {
        margin-bottom: .1rem;
    }



    .service_desc {
        margin-bottom: 0px;
    }

    .center_service {
        padding: 0px;
        padding-bottom: .8rem;
    }

    .consult_title {
        padding-left: .3rem;
    }
}

/* advantages_content 样式 */
.advantages_content {
    display: flex;
    max-width: 1300px;
    margin: 80px auto;
    gap: 90px;
}

.advantages_left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages_main_image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 10px;
}

.advantages_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.advantage_item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage_icon {
    width: 36px;
    height: 36px;
}

.advantage_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.advantage_title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.advantage_desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media screen and (max-width: 992px) {
    .advantages_content {
        flex-direction: column;
        gap: 30px;
    }

    .advantages_main_image {
        max-width: 100%;
    }

    .advantage_item {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .advantages_content {
        padding: 0 15px;
    }

    .advantage_icon {
        width: 40px;
        height: 40px;
    }

    .advantage_title {
        font-size: 16px;
    }

    .advantage_desc {
        font-size: 13px;
    }
}

.consult_section {
    background-image: url('../images/banner-building.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
    position: relative;
    margin-top: 60px;
}

.consult_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 99, 255, 0.6);
    z-index: 1;
}

.consult_container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 158px;
    align-items: center;
}

.consult_text {
    flex: 1;
    color: white;
}

.consult_title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 45px;
}

.consult_subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.consult_features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.consult_feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.consult_feature_title {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    position: relative;
    padding-left: 12px;
}

.consult_feature_title::before {
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 2px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 1px;
    position: absolute;
}

.consult_feature_desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* 为了更好的视觉效果，调整第一个和第三个元素的左边框 */
.consult_feature:nth-child(1),
.consult_feature:nth-child(3) {
    border-left: none;
}

/* 为了更好的视觉效果，调整第二个和第四个元素的右边框 */
.consult_feature:nth-child(2),
.consult_feature:nth-child(4) {
    border-right: none;
}

/* 为了更好的视觉效果，调整第一个和第二个元素的上边框 */
.consult_feature:nth-child(1),
.consult_feature:nth-child(2) {
    border-top: none;
}

/* 为了更好的视觉效果，调整第三个和第四个元素的下边框 */
.consult_feature:nth-child(3),
.consult_feature:nth-child(4) {
    border-bottom: none;
}

/* 响应式设计调整 */


.consult_form {
    flex: 1;
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    padding: 30px 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consult_form_title {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 25px;
    text-align: center;
}

.form_group {
    margin-bottom: 20px;
}

.form_row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form_col {
    flex: 1;
}

.form_label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.form_input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form_input:focus {
    outline: none;
    border-color: #1563FF;
}

.form_submit {
    width: 100%;
    height: 48px;
    background: #1563FF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.form_submit:hover {
    background: #0f4bc7;
}

/* 响应式设计 */
@media screen and (max-width: 992px) {
    .consult_container {
        flex-direction: column;
        gap: 40px;
    }

}

@media screen and (max-width: 768px) {
    .consult_section {
        padding: 60px 0;
    }

    .consult_title {
        font-size: 28px;
    }

    .consult_subtitle {
        font-size: 16px;
    }

    .form_row {
        flex-direction: column;
        gap: 20px;
    }

    .consult_form {
        width: 6.9rem;
        padding: .5rem .3rem;
    }

    .consult_form_title {
        font-weight: bold;
        font-size: .44rem;
        color: #111111;
        margin-bottom: .1rem;
    }

    .consult_features {
        padding: 0rem .3rem;
    }

    .consult_container {
        gap: .2rem;
    }

    .process_item {
        display: flex;
    }

    .process_icon {
        flex-shrink: 0;
    }

    .process_content {
        text-align: left;
    }

    .process_container {
        align-items: flex-start;
    }
}

/* 公司设立办理流程模块 */
.process_section {
    padding: 80px 0;
    text-align: center;
}

.process_title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.process_subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.process_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process_item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process_icon {
    width: 160px;
    height: 160px;
    border-radius: 20px 80px 80px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
    font-size: 48px;
    color: white;
}




.process_icon.orange {
    background: #FF9415;
    color: #FF9415;
}

.process_icon.blue {
    background: #1563FF;
    color: #1563FF;
}

.process_number {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process_content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.process_content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 20px;
}

.process_arrow {
    width: 34px;
    height: 34px;
    padding-top: 60px;
}


.process_button {
    display: inline-block;
    margin-top: 50px;
    padding: 12px 110px;
    background: #1563FF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.process_button:hover {
    background: #0f4bc7;
}

.process_note {
    margin-top: 15px;
    font-size: 14px;
    color: #999;
}

/* 响应式设计 */
@media screen and (max-width: 992px) {
    .process_icon img {
        width: 40%
    }

    .process_number {
        width: 15px;
        height: 15px;
        font-size: 12px;
    }

    .process_container {
        flex-direction: column;
        gap: 20px;
        padding: 0 .3rem;
    }

    .process_arrow {
        padding-top: 0px;
        transform: rotate(90deg);
    }

    .process_icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .process_title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .process_section {
        padding: 60px 0;
    }

    .process_title {
        font-size: 24px;
    }

    .process_subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .process_icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 0px;
    }

    .process_content h3 {
        font-size: 16px;
        padding-left: 10px;
    }

    .process_content p {
        font-size: 13px;
        padding: 0 10px;
    }
}

/* 优化banner-features移动端样式 */
@media (max-width: 768px) {
    .banner-features {
        gap: .15rem;
        max-width: 100%;
        width: 6.9rem;
        flex-wrap: wrap;
    }

    .feature-item {
        width: 3.35rem;
        height: 1.16rem;
        background: #FFFFFF;
        box-shadow: .05rem .08rem .25rem 0px rgba(17, 17, 17, 0.05);
        border-radius: .2rem;
        gap: 0rem;
        justify-content: flex-start;
    }

    .feature-image {
        width: 35px;
        height: 35px;
        margin: 0rem 0.4rem;
    }

    .feature-text {
        gap: 3px;
    }

    .feature-number {
        font-size: 22px;
        line-height: 24px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .banner-btn {
        width: 100%;
        border-radius: 27px;
    }

    .advantages_content {
        padding: 0 .3rem;
        margin: .4rem 0;
    }

    .advantages_left {
        display: none;
    }

    .advantage_item {
        margin-bottom: .5rem;
        gap: .5rem;
    }

    .packages_title {
        margin-bottom: .1rem;
    }

    .consult_section {
        margin-top: 0px;
    }
}