/* APP页面优化样式 - 更紧凑居中 */

/* APP应用开发区域 */
.App {
    background: #fff;
}

.App .App_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.App .App_content .App_content_title {
    text-align: center;
    margin-bottom: 35px;
}

.App .App_content .App_content_title dd {
    font-size: 28px;
    color: #333333;
    margin-bottom: 8px;
}

.App .App_content .App_content_title dt {
    font-size: 15px;
    color: #999999;
}

/* 导航标签 */
.App .App_content .App_content_nav {
    margin: 30px auto;
    text-align: center;
    max-width: 600px;
}

.App .App_content .App_content_nav a {
    display: inline-block;
    width: 130px;
    line-height: 48px;
    text-align: center;
    background: #f6f6f6;
    margin: 0 8px 10px;
    font-size: 14px;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.App .App_content .App_content_nav a:hover,
.App .App_content .App_content_nav a.on {
    background: #ff7019;
    color: #fff;
}

/* 内容主体 */
.App .App_content .App_content_body {
    margin-top: 50px;
}

.App .App_content .App_content_body .App_content_body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

/* 左侧内容 */
.App .App_content .App_content_body .content_body_left {
    flex: 1;
    max-width: 580px;
}

.App .App_content .App_content_body .content_body_left .body_left_img {
    margin-bottom: 25px;
    text-align: center;
}

.App .App_content .App_content_body .content_body_left .body_left_img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.App .App_content .App_content_body .content_body_left .body_left_txt dd {
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.App .App_content .App_content_body .content_body_left .body_left_txt dt p {
    font-size: 14px;
    color: #666666;
    line-height: 26px;
    margin-bottom: 8px;
}

/* 右侧内容 */
.App .App_content .App_content_body .content_body_right {
    flex: 0 0 420px;
    border: 3px solid #f0f0f0;
    padding: 35px 30px;
    border-radius: 8px;
    background: #fafafa;
}

.App .App_content .App_content_body .content_body_right .body_right_top {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.App .App_content .App_content_body .content_body_right .body_right_top dd {
    font-size: 20px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 600;
}

.App .App_content .App_content_body .content_body_right .body_right_top dt {
    font-size: 13px;
    color: #666666;
    line-height: 22px;
}

.App .App_content .App_content_body .content_body_right .body_right_bottom dd {
    font-size: 16px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 600;
}

.App .App_content .App_content_body .content_body_right .body_right_bottom dt p {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 8px;
    position: relative;
}

.App .App_content .App_content_body .content_body_right .body_right_bottom dt p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #ff7019;
    border-radius: 50%;
}

/* 相关案例区域 */
.app_case {
    background: #f6f6f6;
    padding: 50px 0;
}

.app_case .app_case_title {
    font-size: 28px;
    color: #333333;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 600;
}

.app_case .IndexCase_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.66%;
    flex-wrap: wrap;
}

.app_case .IndexCase_content .IndexCase_content_list {
    flex: 0 0 23%;
    max-width: 280px;
    margin-right: 0;
    margin-bottom: 0;
}

.app_case .IndexCase_content .IndexCase_content_list:nth-child(4n) {
    margin-right: 0;
}

.app_case .IndexCase_content .IndexCase_content_list .content_list_img .list_img_title img {
    height: 480px;
    object-fit: cover;
}

/* 底部CTA */
.app_footer {
    height: 120px;
    width: 100%;
    background: #828fff url(/images/bn48.png) no-repeat 50% 50%;
    text-align: center;
    line-height: 120px;
}

.app_footer a {
    display: inline-block;
    width: 260px;
    line-height: 48px;
    text-align: center;
    color: #828fff;
    font-size: 15px;
    background: #fff;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.app_footer a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 响应式优化 */
@media screen and (max-width: 1200px) {
    .App .App_content .App_content_body .App_content_body {
        flex-direction: column;
        gap: 30px;
    }
    
    .App .App_content .App_content_body .content_body_left,
    .App .App_content .App_content_body .content_body_right {
        max-width: 100%;
        flex: none;
    }
    
    .app_case .IndexCase_content .IndexCase_content_list {
        flex: 0 0 48%;
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .App .App_content {
        padding: 40px 15px;
    }
    
    .App .App_content .App_content_title dd {
        font-size: 22px;
    }
    
    .App .App_content .App_content_nav a {
        width: 110px;
        line-height: 42px;
        font-size: 13px;
        margin: 0 4px 8px;
    }
    
    .App .App_content .App_content_body .content_body_right {
        padding: 25px 20px;
    }
    
    .app_case .IndexCase_content .IndexCase_content_list {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .app_footer {
        height: 100px;
        line-height: 100px;
    }
    
    .app_footer a {
        width: 220px;
        line-height: 44px;
        font-size: 14px;
    }
}
