/* 流程列表样式 */
.process-list-container {
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.process-list::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: linear-gradient(180deg, #007bff 0%, #0056b3 100%);
    border-radius: 2px;
    z-index: 0;
}

.process-list .process-item {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    backdrop-filter: blur(10px);
}

.process-list .process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-list .process-item:hover::before {
    opacity: 1;
}

.process-list .process-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

.process-list .process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.4s ease;
}

.process-list .process-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-list .process-item:hover .process-number::before {
    opacity: 0.3;
}

.process-list .process-item:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.process-list .process-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.process-list .process-title {
    color: #333;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.process-list .process-item:hover .process-title {
    color: #007bff;
}

.process-list .process-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
}



/* 响应式调整 */
@media (max-width: 1200px) {
    .process-list-container {
        margin: 30px 0;
    }
    
    .process-list .process-item {
        padding: 20px;
    }
}



@media (max-width: 768px) {
    
    .process-list .process-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .process-list .process-title {
        font-size: 16px;
    }


}

@media (max-width: 480px) {
   .process-list  .process-item {
        padding: 20px 15px;
    }
    
   .process-list  .process-number {
        width: 45px;
        height: 45px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
   .process-list  .process-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
   .process-list  .process-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
   .process-list  .process-duration {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* 服务流程样式 */
.service-process-section {
padding: 50px 0;
background-color: #f8f9fa;
}

.process-timeline {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding-left: 50px;
}

.process-timeline:before {
content: '';
position: absolute;
top: 0;
left: 20px;
height: 100%;
width: 2px;
background-color: var(--primary-color);
z-index: 0;
}

.timeline-item {
position: relative;
margin-bottom: 40px;
}

.timeline-item:last-child {
margin-bottom: 0;
}

.timeline-content {
width: 100%;
padding: 30px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
position: relative;
z-index: 1;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.timeline-dot {
position: absolute;
top: 30px;
left: -30px;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--primary-color);
border: 4px solid #fff;
box-shadow: 0 0 0 2px var(--primary-color);
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
}

.timeline-number {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-weight: bold;
font-size: 14px;
}

.timeline-content h3 {
color: var(--primary-color);
margin-top: 0;
margin-bottom: 15px;
font-size: 22px;
font-weight: 600;
display: flex;
align-items: center;
}

.timeline-content p {
margin-bottom: 15px;
line-height: 1.6;
color: #555;
}

.timeline-content .features-list {
padding-left: 0;
margin-bottom: 0;
list-style: none;
}

.timeline-content .features-list li {
margin-bottom: 8px;
position: relative;
padding-left: 25px;
}

.timeline-content .features-list li:before {
content: '✓';
position: absolute;
left: 0;
color: #28a745;
font-weight: bold;
}

.timeline-content .process-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: var(--primary-color);
border-radius: 50%;
color: #fff;
font-size: 18px;
margin-right: 15px;
box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
flex-shrink: 0;
}

/* 服务保障部分 */
.service-guarantee {
margin-top: 0px;
padding: 50px 0;
background-color: #f8f9fa;
border-radius: 10px;
}

.service-guarantee h2 {
text-align: center;
margin-bottom: 40px;
font-size: 28px;
color: #333;
}

.guarantee-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}

.guarantee-item {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
width: 70px;
height: 70px;
background-color: rgba(0, 123, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.guarantee-icon i {
font-size: 30px;
color: var(--primary-color);
}

.guarantee-item h3 {
font-size: 20px;
margin-bottom: 15px;
color: #333;
}

.guarantee-item p {
color: #666;
line-height: 1.6;
}

/* 联系我们部分 */
.contact-cta {
    margin-top: 0px;
    text-align: center;
    padding: 50px;
    background-color: #007bff;
    border-radius: 10px;
    color: #fff;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .cta-button {
    display: inline-block;
    background-color: #fff;
    color: #007bff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-cta .cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-process-section .section-title {
        font-size: 28px;
    }

    .process-timeline:before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-process-section .section-title {
        font-size: 24px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    .contact-cta h2 {
        font-size: 24px;
    }
}


/*content-contact*/
/* 联系我们部分样式调整 */
/* 联系我们部分 */
.contact-cta {
    margin-top: 0px;
    text-align: center;
    padding: 50px;
    background-color: #007bff;
    border-radius: 10px;
    color: #fff;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .cta-button {
    display: inline-block;
    background-color: #fff;
    color: #007bff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-cta .cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-process-section .section-title {
        font-size: 28px;
    }

    .process-timeline:before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-process-section .section-title {
        font-size: 24px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    .contact-cta h2 {
        font-size: 24px;
    }
}


/*content-contact*/
/* 联系我们部分样式调整 */
.contact-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-section .section-title {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.contact-info {
    flex: 1.1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-left: 4px solid var(--primary-color); */
}

.contact-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-desc {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: rgba(0, 102, 204, 0.1);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: row;
    /* 改为横向排列 */
    align-items: center;
    /* 垂直居中 */
    flex-wrap: wrap;
    /* 允许在小屏幕上换行 */
    width: 100%;
}

.contact-text span {
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    /* 右侧添加间距 */
    color: #333;
}

.contact-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.5;
    flex: 1;
    /* 让内容占据剩余空间 */
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
}

.contact-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* 热线电话样式特殊处理 */

.hotline-number {
    font-size: 18px !important;
    /* 放大字体 */
    font-weight: bold !important;
    /* 加粗 */
}

.hotline-number a {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 26px;
}

.contact-text .service-time {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-phone:hover {
    transform: translateY(-3px);
}

.contact-phone i {
    font-size: 32px;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: rgba(0, 102, 204, 0.1);
}

.phone-number {
    display: flex;
    flex-direction: column;
}

.phone-number span {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.phone-number p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* 新增微信联系方式样式 */
.contact-wechat {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 0 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-wechat:hover {
    transform: translateY(-3px);
}

.contact-wechat .wechat-info {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.contact-wechat .wechat-info i {
    font-size: 32px;
    color: #07C160;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: rgba(7, 193, 96, 0.1);
}

.contact-wechat .wechat-text {
    display: flex;
    flex-direction: column;
}

.contact-wechat .wechat-text span {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-wechat .wechat-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

.contact-wechat .wechat-qrcode {
    text-align: center;
}

.contact-wechat .wechat-qrcode img {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.contact-wechat .wechat-qrcode p {
    font-size: 14px;
    margin-top: 5px;
    color: #666;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-tip {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-field textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-field {
    flex: 1;
    margin-bottom: 0;
}

.button-group {
    display: flex;
    gap: 15px;
}

.submit-btn {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.baidu-service-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.baidu-service-btn:hover {
    background-color: #e55c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    color: #fff;
}

.baidu-service-btn i {
    margin-right: 5px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
        padding: 30px;
    }

    .contact-form {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-subtitle {
        font-size: 20px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-item i,
    .wechat-info i {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-text span {
        font-size: 15px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .phone-number span {
        font-size: 20px;
    }

    .hotline-number {
        font-size: 16px !important;
    }

    .hotline-number a {
        font-size: 22px;
    }

    .contact-wechat .wechat-info {
        flex: 1;
        margin-right: 0;
    }

    .contact-wechat .wechat-qrcode {
        display: flex;
        align-items: center;
    }

    .contact-wechat .wechat-qrcode img {
        width: 80px;
        height: 80px;
        margin-right: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-row .form-field {
        margin-bottom: 10px;
    }

    .button-group {
        flex-direction: column;
    }
}

/*case*/
/* 子分类导航样式 */
.subcategory-navigation {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    position: relative;
    padding: 10px 0;
}

.subcategory-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 80px;
    /* 默认只显示一行 */
    transition: max-height 0.3s ease;
}

.subcategory-menu.expanded {
    max-height: 500px;
    /* 展开后的高度，足够显示所有分类 */
}

.subcategory-menu li {
    margin: 0;
    padding: 0;
    width: 10%;
    /* 一行显示10个图标 */
    text-align: center;
}

.subcategory-menu li a {
    display: flex;
    flex-direction: column;
    /* 图标在上，文字在下 */
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 100%;
}

.subcategory-menu li a i {
    font-size: 35px;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

.subcategory-menu li a span {
    display: block;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
}

.subcategory-menu li.active a,
.subcategory-menu li a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.03);
}

.subcategory-menu li.more-item a {
    color: var(--primary-color);
}

.subcategory-menu li:nth-child(n+10) {
    order: 1;
}

.subcategory-menu li:last-child {
    order: 0;
}

/* 隐藏额外的分类，只在展开时显示 */
.subcategory-menu .hidden-category {
    display: none;
}

.subcategory-menu.expanded .hidden-category {
    display: block;
}

.subcategory-menu.expanded li:last-child {
    order: 2;
}

@media (max-width: 992px) {
    .subcategory-menu li {
        width: 20%;
        /* 平板上一行显示5个 */
    }

    .subcategory-menu li:nth-child(n+10) {
        order: 1;
    }

    .subcategory-menu li:last-child {
        order: 0;
    }

    .subcategory-menu {
        max-height: 160px;
        /* 默认显示两行 */
    }
}

@media (max-width: 768px) {
    .subcategory-menu li:nth-child(n+8) {
        order: 1;
    }

    .subcategory-menu li {
        width: 25%;
        /* 移动端一行显示4个 */
    }

    /* 移动端显示更多按钮放在第8个位置 */
    .subcategory-menu li.more-item {
        order: 0;
    }
}


