/*banner区域开始*/
.banner {
    width: 100%;
    height: 450px;
    background-color: #f8f8f8;
    /* 备用背景色 */
    background-image: url('http://www.rcrzj.com/template/pc/skin/images/index_banner11_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    margin-top: 68px;
}

/* 内容容器 - 限制最大宽度并居中 */
.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* 左侧内容区域 */
.banner-content {
    flex: 1;
    padding-right: 50px;
}

.banner-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.consult-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.consult-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 右侧图片区域 */
.banner-image {
    flex: 1;
    min-height: 350px;
    /* 改为min-height确保内容足够显示 */
    background-image: url('../images/index_banner1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
    .banner {
        padding: 50px 0;
        text-align: center;
        height: 430px;
        margin: auto;
    }

    .banner-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .banner-content {
        padding-right: 0;
        margin-bottom: 0;
        /* 移除原来的margin-bottom */
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .banner-title {
        font-size: 32px;
        text-align: center;
    }

    .banner-desc {
        font-size: 16px;
        text-align: center;
        max-width: 100%;
    }

    .banner-image {
        width: 100%;
        min-height: 170px;
        /* 确保图片区域高度 */
        margin-top: 0;
        /* 移除原来的margin-top */
        background-size: contain;
        /* 保持图片完整显示 */
        order: 2;
        /* 确保图片在下方显示 */
        background-size: 65%;
    }

    .consult-btn {
        padding: 12px 30px;
    }
}


/*banner区域结束*/

/*主体部分开始*/
:root {
    --primary-color: #333;
    --secondary-color: #f8f9fa;
    --accent-color: #ff6b00;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
}


.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #fd4343;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 16px;
}

/* 热门注册地介绍 */
.popular-regions {
    margin-bottom: 60px;
}

.region-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.region-img {
    height: 200px;
    overflow: hidden;
}

.region-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.region-card:hover .region-img img {
    transform: scale(1.05);
}

.region-content {
    padding: 20px;
    background: white;
}

.region-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.region-content ul {
    padding-left: 20px;
}

.region-content li {
    margin-bottom: 8px;
    position: relative;
}

.region-content li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* 更多注册地列表 */
.more-regions {
    background-color: var(--secondary-color);
    padding: 40px 0;
    margin-bottom: 60px;
    border-radius: 8px;
}

.country-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.country-table th,
.country-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.country-table th {
    background-color: #fd4343;
    color: white;
}

.country-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.country-table tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.country-flag {
    object-fit: cover;
    border: 1px solid var(--border-color);
    margin-right: 10px;
    vertical-align: middle;
}

/* 注册流程 */
.registration-process {
    margin-bottom: 60px;
}

.process-steps {
    position: relative;
    padding-top: 50px;
}

.process-steps:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    text-align: right;
    z-index: 2;
}

.process-step:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50%;
    padding-right: 0;
    text-align: left;
}

.step-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    position: relative;
}

.step-content:before {
    content: "";
    position: absolute;
    top: 20px;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.process-step:nth-child(even) .step-content:before {
    right: auto;
    left: -10px;
    border-left: none;
    border-right: 10px solid white;
}

.step-number {
    position: absolute;
    transform: translateY(-50%);
    right: 1090px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.2);
}

.process-step:nth-child(even) .step-number {
    right: auto;
    left: 1090px;
}

.step-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.step-time {
    display: inline-block;
    background-color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--light-text);
    margin-top: 10px;
}

/* 服务内容 */
.services {
    margin-bottom: 60px;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    min-width: 10%;
    display: flex;
    flex: 1;
    align-items: center;
    font-size: 25px;
    color: #fd4343;
    margin-bottom: 20px;
}

.service-title {
    min-width: 90%;
    display: flex;
    flex: 1;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* 成功案例 */
.success-cases {
    background-color: var(--secondary-color);
    padding: 40px 0;
    margin-bottom: 60px;
    border-radius: 8px;
}

.case-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.case-img {
    height: 180px;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-card:hover .case-img img {
    transform: scale(1.05);
}

.case-content {
    padding: 20px;
}

.case-industry {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.case-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.case-location {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 14px;
}

.case-location i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* 专业团队 */
.team {
    margin-bottom: 60px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-img {
    height: 250px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member-title {
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.member-experience {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.member-skills {
    font-size: 14px;
}

/* 常见问题 */
.faq {
    margin-bottom: 60px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid var(--border-color) !important;
}

.accordion-button {
    font-weight: bold;
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

/* 免费咨询 */
.consultation {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: center;
}

.consultation-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.consultation-desc {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.consultation-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--accent-color);
}

.consultation-btn:hover {
    background-color: transparent;
    color: white;
}

/* 优惠活动 */
.promotion {
    background: linear-gradient(135deg, #ff9a44 0%, #ff6b00 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.promotion:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.promotion:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.promotion-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.promotion-desc {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promotion-time {
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* 客户评价 */
.testimonials {
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(30, 80, 162, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-company {
    font-size: 14px;
    color: var(--light-text);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .process-steps:before {
        left: 40px;
    }

    .process-step {
        padding-right: 0;
        padding-left: 80px;
        text-align: left;
        justify-content: flex-start;
    }

    .process-step:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .step-number {
        left: 20px;
        right: auto;
    }

    .process-step:nth-child(even) .step-number {
        left: 20px;
    }

    .step-content:before {
        right: auto;
        left: -10px;
        border-left: none;
        border-right: 10px solid white;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
    }

    .consultation-title {
        font-size: 24px;
    }

    .promotion-title {
        font-size: 20px;
    }
    .accordion-header .accordion-button{
        font-size: 1.2rem;
    }
}


/*主体部分结束*/