/* 首页专用样式 */
.hero-new {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/05 banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.hero-new .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-new-content {
    width: 100%;
    display: block;
}

.hero-new-title {
    font-size: 66px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    max-width: 800px;
    text-align: left;
}

.hero-new-subtitle {
    font-size: 24px;
    color: #f0f0f0;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 800px;
    text-align: left;
}

.hero-new-buttons {
    display: flex;
    gap: 20px;
}

.stats-banner {
    position: relative;
    background: #fff;
    padding: 80px 0 100px;
    overflow: visible;
    border-bottom: 1px solid #e0e0e0;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -50px;
    background-image: url('../images/home/06.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.stats-banner .container {
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item-new {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
}

.stat-item-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #e0e0e0;
}

.stat-number-new {
    font-size: 56px;
    font-weight: 700;
    color: #e60012;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item-new.animate .stat-number-new {
    opacity: 1;
    transform: translateY(0);
}

.stat-label-new {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.stat-item-new.animate .stat-label-new {
    opacity: 1;
    transform: translateY(0);
}

.about-new {
    padding: 100px 0;
    background: #fafafa;
}

.section-title-centered {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.about-new-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 200px;
    align-items: flex-start;
}

.about-new-left {
    text-align: left;
}

.about-new-logo {
    max-width: 240px;
    margin: 0 0 30px 0;
    display: block;
}

.about-new-slogan {
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.about-new-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.about-new-right p strong {
    color: #e60012;
    font-weight: 700;
}

.about-new-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-dark {
    background: #e60012;
    color: #fff;
}

.btn-primary-dark:hover {
    background: #c00010;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: #e60012;
    border: 2px solid #e60012;
}

.btn-outline-dark:hover {
    background: #e60012;
    color: #fff;
    transform: translateY(-2px);
}

.products-new {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-title-new {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card-new {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border: 1px solid #e5e5e5;
}

.product-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #e60012;
}

.product-card-new-image {
    height: 240px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-new-content {
    padding: 30px 25px;
    background: #fff;
}

.product-card-new-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-top: 20px;
}

.product-card-new-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e60012;
}

.product-card-new-desc {
    font-size: 14px;
    color: black;
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-card-new-tags {
    font-size: 13px;
    color: black;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-weight: bold;
}

.product-card-new-application {
    font-size: 13px;
    color: black;
    line-height: 1.6;
    margin: 0;
}

.product-card-new-link {
    display: inline-block;
    color: #e60012;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.product-card-new-link:hover {
    color: #c00010;
    text-decoration: underline;
}

/* 应用中心 */
.application-center {
    padding: 100px 0;
    background: #000000;
}

.section-title-app {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.app-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.app-page {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.app-page.fade-out {
    opacity: 0;
}

.app-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
}

.app-card:hover {
    transform: translateY(-8px);
}

.app-card-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.app-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.app-card:hover .app-card-image img {
    transform: scale(1.1);
}

.app-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    padding: 30px 25px;
}

.app-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

/* 进度条导航 */
.app-progress-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 0;
}

.app-progress-bar-container {
    flex: 1;
    height: 2px;
    background: #333;
    position: relative;
}

.app-progress-bar {
    height: 100%;
    width: 0%;
    background: #e60012;
    transition: width 0.05s linear;
}

.app-nav-arrows {
    display: flex;
    gap: 10px;
    align-items: center;
}

.app-nav-arrow {
    background: transparent;
    border: 2px solid #666;
    color: #999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.app-nav-arrow:hover {
    border-color: #e60012;
    color: #e60012;
}

/* 合作伙伴 */
.partners-section {
    padding: 100px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.partners-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-scroll-container {
    width: 100%;
    overflow: hidden;
}

.partners-logos-scroll {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-partners 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.partners-logos-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% / 2));
    }
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 180px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

.partners-new {
    padding: 100px 0;
    background: #000000;
}

.section-title-white {
    color: #fff;
}

.partners-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.partner-item-new {
    background: transparent;
    padding: 80px 60px;
    border: 0.5px solid rgba(51, 51, 51, 0.5);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    height: 100%;
    transition: all 0.3s;
}

.partner-item-new:hover {
    border-color: #666;
    background: rgba(255,255,255,0.02);
}

.partner-item-new img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-item-new:hover img {
    opacity: 1;
}

.inquiry-new {
    padding: 100px 0;
    background: url('../images/home/27.png') center center / cover no-repeat;
    position: relative;
}

.inquiry-new .container {
    position: relative;
    z-index: 1;
}

.inquiry-form-new {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.form-group-new {
    margin-bottom: 0;
}

.form-label-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-label-wrapper label {
    color: #333;
    font-size: 15px;
    white-space: nowrap;
    margin: 0;
}

.form-label-wrapper select {
    flex: 1;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    background: #fff;
    color: #333;
}

.form-group-new select {
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group-new input::placeholder,
.form-group-new select option:first-child {
    color: #aaa;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: #999;
    background: #fff;
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-new {
    background: #e60012;
    color: #fff;
    border: none;
    padding: 15px 80px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 30px auto 0;
    width: auto;
}

.btn-submit-new:hover {
    background: #c00010;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,0,18,0.5);
}

@media (max-width: 1024px) {
    .stats-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-item-new {
        padding: 30px 15px;
    }
    
    .stat-number-new {
        font-size: 48px;
    }
    
    .about-new-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-new-buttons {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
    
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-card-image {
        height: 300px;
    }
    
    .app-progress-nav {
        gap: 15px;
    }
    
    .partners-logos-scroll {
        gap: 60px;
        animation: scroll-partners 35s linear infinite;
    }
    
    .partner-logo {
        min-width: 150px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    .partners-grid-new {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .partner-item-new {
        padding: 60px 40px;
        min-height: 180px;
    }
    
    .partner-item-new img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-new-title {
        font-size: 36px;
    }
    
    .hero-new-subtitle {
        font-size: 18px;
    }
    
    .stats-banner {
        padding: 50px 0 60px;
    }
    
    .stats-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item-new {
        padding: 30px 10px;
    }
    
    .stat-item-new:nth-child(3)::after,
    .stat-item-new:nth-child(4)::after {
        display: none;
    }
    
    .stat-number-new {
        font-size: 40px;
    }
    
    .stat-label-new {
        font-size: 13px;
    }
    
    .products-grid-new {
        grid-template-columns: 1fr;
    }
    
    .app-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .app-card-image {
        height: 250px;
    }
    
    .app-card-title {
        font-size: 18px;
    }
    
    .app-progress-nav {
        gap: 10px;
        margin-top: 30px;
    }
    
    .app-nav-arrows {
        gap: 8px;
    }
    
    .app-nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .section-title-app {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .partners-logos-scroll {
        gap: 40px;
        animation: scroll-partners 30s linear infinite;
    }
    
    .partner-logo {
        min-width: 120px;
    }
    
    .partner-logo img {
        max-height: 40px;
    }
    
    .partners-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .partner-item-new {
        padding: 50px 35px;
        min-height: 160px;
    }
    
    .partner-item-new img {
        max-height: 35px;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-label-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .form-label-wrapper label {
        min-width: 60px;
    }
    
    .btn-submit-new {
        width: 100%;
        padding: 12px 40px;
    }
}
