:root {
    --primary-color: #7441ef;
    --text-color: #333333;
    --bg-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#root {
    position: relative;
    width: 1920px; /* UI设计稿宽度 */
    transform-origin: top left;
}

/* 确保header在缩放时保持固定位置 */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.hero-section {
    background-image: url('/images/index-icon-1.jpg');
    background-size: cover;
    background-position: center;
    height: 900px;
    padding: 150px 260px 177px 260px;
    display: flex;
    justify-content: space-between;
}

.hero-content {
    margin-top: 144px;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    color: #4B0082;
    line-height: 90px;
}

/* 更多样式... */

.section-title {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-top: 72px;
}

.section-subtitle {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
}

.section-desc {
    font-size: 24px;
    color: #666666;
    text-align: center;
    margin-top: 12px;
}

.section-divider {
    width: 80px;
    margin: 8px auto;
    display: block;
}

/* 数智化部分 */
.digital-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.digital-cards img {
    width: 408px;
}

/* 解决方案部分 */
.solution-section {
    position: relative;
}

.solution-img {
    width: 1200px;
    margin: 24px auto;
    display: block;
}

.solution-detail {
    width: 1157px;
    margin: 20px auto;
    display: block;
}

/* 数智驱动部分 */
.drive-content {
    position: relative;
    height: 630px;
}

.drive-main {
    width: 1200px;
    margin: 24px auto;
    display: block;
}

.drive-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.drive-cards img {
    width: 360px;
}

/* 功能部分 */
.features-img,
.features-detail {
    width: 1200px;
    margin: 20px auto;
    display: block;
}

/* 联系部分 */
.contact-section {
    background-color: #F3F0FF;
    padding: 64px 0;
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link,
.contact-btn {
    width: 594px;
    cursor: pointer;
}

.contact-btn {
    margin-left: 40px;
} 

.input-content {
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    /* 隐藏滚动条 */
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
        display: none;
    }
}
.noLayuiShadow {
    box-shadow: none !important;
}