/* 小麦智云页面专用样式 */

/* 主视觉区域样式调整 */
.w-1300 {
    max-width: 1300px;
    margin: 0 auto;
}
.hero {
    background-image: url('../img/xiaomai/top-bg.png');
    background-repeat: no-repeat;
    background-size:  100% 100%;
    background-position: center top;
}

.hero-content h1 {
    font-family: "PingFang SC";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: linear-gradient(180deg, rgba(0, 119, 255, 0.66) -87.7%, #07F 128.69%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* 产品特点区域样式 */
.product-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-features .container {
    max-width: 1300px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}


.section-title h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4facfe;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #4facfe;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* AI能效诊断报告模块样式 */
.ai-diagnosis-section {
    padding: 126px 0;
    background-image: url('../img/xiaomai/footer-bg.png');
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}


.diagnosis-content {
    color: #131313;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px; /* 150% */
}

.diagnosis-title {
    font-size: 36px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.apply-button {
    background: #3182ce;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.apply-button:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 130, 206, 0.4);
}

.apply-button:active {
    transform: translateY(0);
}

/* 装饰性线条和效果 */
.factory-structures::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #edf2f7);
    z-index: 1;
}
/* 设备服务升级模块样式 */
.device-service-section {
    padding: 80px 0;
    background-color: #fff;
}

.device-service-container {
    
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
    position: sticky;
    top: 0;
    background-color: white;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.service-title {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-item {
    display: flex;
    width: 280px;
    height: 80px;
    padding-bottom: 4.667px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.00);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;

}
.tab-item:hover {
    border-bottom: 4px solid #148FFA;
}

.tab-item.active {
    border-bottom: 4px solid #148FFA;
}

.tab-icon {
    width: 32px;
    margin-right: 30px;
}

.tab-text {
    color: #131313;
    font-family: "PingFang SC";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}

.service-content {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-layout {
    display: flex;
    gap: 40px;
    padding-top: 80px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
}

.content-title {
    color: #131313;
    font-family: "PingFang SC";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 45px; /* 150% */
    margin-bottom: 16px;
}

.content-desc,
.prediction-desc {
    color: #666;
    font-family: "PingFang SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 200% */
}


.prediction-preview {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 16px;
    padding-top: 80px;
    align-items: center;
}

.prediction-image {
    flex: 1;
}

.prediction-content {
    flex: 2;
}

.prediction-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}
.device-service-image {
    width: 800px;
}

/* 小麦智云系统架构样式 */
.architecture-section {
    padding: 118px 0;
    background-color: #fff;
}

.arch-title {
    color: #1B1B1B;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px;
}

.arch-desc {
    color: #000;
    font-family: "regular";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 150% */
    margin-bottom: 40px;
}



.xm-device-item {
    border-radius: 4px;
    background: #393939;
    color: #FFF;
    font-family: "PingFang SC";
    font-size: 16.696px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    padding: 20px 0;
}
.layer-title-1 {
    width: 1em;
    border-radius: 4px;
    background-color: #393939;
    color: #FFF;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    padding: 0px 24px;
    height:  100%;
}
.layer-title-2 {
    width: 1em;
    border-radius: 4px;
    color: #FFF;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    padding: 0px 24px;
    height:  100%;
    background-color: #6055EF;
}
.table-td-1 {
    background-color: #F4F7FB;
    border-radius: 4px;
    padding: 12px;
    align-items: center;
}
.table-td-2 {
    background-color: #F1F3FF;
    border-radius: 4px;
    padding: 12px;
    align-items: center;
}
.table-td-title-1{
    width: 1em;
    margin-right: 12px;
    color: #171719;
    font-size: 16px;
    font-weight: 600;
}
.table-td-title-2{
    width: 1em;
    margin-right: 12px;
    color: #6E66F1;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.table-row1-col {
    height:  100%;
    gap: 10px;
}
.table-row1-col div,
.table-row1-col2 div,
.table-row2-col1 div ,
.table-row2-col2 div ,
.table-row2-col3 div,
.table-row3-col1 div,
.table-row3-col2 div,
.table-row3-col3 div,
.table-row3-col4 div,
.table-row4-col1 div,
.table-row4-col2 div {
    flex: 1;
    padding: 10px 12px;
    border-radius: 4px;
    background: #F9F9F9;
    box-shadow: 0 0 10.435px 0 rgba(154, 173, 198, 0.00), 0 0 9.391px 0 rgba(154, 173, 198, 0.01), 0 0 8.348px 0 rgba(154, 173, 198, 0.05), 0 0 6.261px 0 rgba(154, 173, 198, 0.09), 0 0 3.13px 0 rgba(154, 173, 198, 0.10);
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}
.table-row1-col2,
.table-row2-col2 {
    flex: 1;
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.table-row2-col1 {
    flex: 1;
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.table-row2-col3 {
    flex: 1;
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.table-row2-col3 div {
    padding: 18px 12px;
}
.table-row3-col1,
.table-row3-col2,
.table-row3-col3,
.table-row3-col4 {
    flex: 1;
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.table-row4-col1{
    gap: 8px;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.table-row4-col2  {
    gap: 8px;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* 平台支持部分样式 */
.platform-support-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.platform-support-container {
    padding: 110px 24px;
}
.platform-feature-icon {
    height: 40px;
    margin-bottom: 10px;
}
.platform-support-title {
    color: #1B1B1B;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 40px;
    text-align: center;
}

.platform-features {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.platform-feature-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 24px;
    height: 310px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #F3F8FF 26%, #CADEFC 90%);
}


.platform-feature-title {
    color: #131E29;
    font-family: "PingFang SC";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    margin-bottom: 16px;
}

.platform-feature-description {
    color: #131E29;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.08px;
}


/* 秦骏行业物模型部分样式 */
.industry-model-section {
    background-image: url('../img/xiaomai/xiaomai-bg2.png');
    background-size: 100% auto;
    padding: 60px 0px;
}
.industry-model-container {
    height: 456px;
    background-image: url('../img/xiaomai/xiaomai-bg.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
}

