.application-page {
    width: 100%;
}

.application-page .section {
    padding: 30px 0;
}

.application-page .container {
    width: 1400px;
    margin: 0 auto;
}

.application-page .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.application-page .btn-red {
    background-color: #1a5fb4;
    color: #ffffff;
    text-decoration: none;
}

.application-page .btn-red:hover {
    background-color: transparent;
    color: #1a5fb4;
    border-color: #1a5fb4;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.1);
}

.application-page .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/dist/img/background/bg_01.webp') center center no-repeat;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.application-page .hero-content {
    position: relative;
    z-index: 2;
}

.application-page .hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.application-page .hero-desc {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.application-page .scenarios-section {
    background-color: #ffffff;
}

.application-page .section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.application-page .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #1a5fb4;
}

.application-page .scenario-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.application-page .scenario-item {
    display: grid;
    align-items: center;
    gap: 60px;
}

.application-page .scenario-item:nth-child(1),
.application-page .scenario-item:nth-child(3) {
    grid-template-columns: 1fr 1fr;
}

.application-page .scenario-item:nth-child(2) {
    grid-template-columns: 1fr 1fr;
}

.application-page .scenario-img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.application-page .scenario-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.application-page .scenario-item:hover .scenario-img img {
    transform: scale(1.05);
}

.application-page .scenario-content {
    padding: 20px 0;
}

.application-page .scenario-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.1);
    color: #1a5fb4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.application-page .scenario-title {
    font-size: 26px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.application-page .scenario-desc {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
    text-align: justify;
}

.application-page .scenario-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.application-page .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.application-page .feature-check {
    color: #1a5fb4;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.application-page .feature-text {
    font-size: 15px;
    color: #555555;
}



/* 新增：核心组件技术 section 样式 */
.application-page .core-tech-section {
    background-color: #f9fafb;
    padding: 60px 0;
    margin-top: 20px;
}

.application-page .section-intro {
    font-size: 16px;
    color: #666666;
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
}

.application-page .tech-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.application-page .tech-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #1a5fb4;
}

.application-page .tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(26, 95, 180, 0.1);
}

.application-page .tech-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(26, 95, 180, 0.1);
    color: #1a5fb4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 22px;
}

.application-page .tech-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.application-page .tech-card-desc {
    font-size: 15px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.application-page .tech-card-specs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.application-page .tech-card-specs li {
    font-size: 14px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.application-page .tech-card-specs li::before {
    content: "•";
    color: #1a5fb4;
    font-weight: bold;
}

.application-page .tech-cta {
    text-align: center;
}