/* 工业旅游页面样式 */
.industrial-tourism-page {
    background: #000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 页面容器 - 最大宽度1414px */
.page-container {
    position: relative;
    z-index: 1;
    max-width: 1414px;
    margin: 0 auto;
}

/* ==================== Hero Banner Section ==================== */
.hero-banner-section {
    position: relative;
    width: min(1414px, calc(1414 / 1414 * 100vw));
    height: min(712px, calc(712 / 1414 * 100vw));
    margin: 0 auto;
    overflow: visible;
}

/* Banner背景 */
.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: min(1414px, calc(1414 / 1414 * 100vw));
    height: min(723px, calc(723 / 1414 * 100vw));
    object-fit: cover;
}

/* Banner内容 */
.hero-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 主标题 - 距离顶部153px，容器644*54，字体45px，渐变 */
.hero-main-title {
    margin-top: min(153px, calc(153 / 1414 * 100vw));
    /* width: min(644px, calc(644 / 1414 * 100vw)); */
    /*height: min(54px, calc(54 / 1414 * 100vw));*/
    line-height: min(54px, calc(54 / 1414 * 100vw));
    text-align: center;
    font-size: min(45px, calc(45 / 1414 * 100vw));
    font-family: 'PingFang SC Semibold', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    background: linear-gradient(90deg, #1F80FF 0%, #FFFFFF 67%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: min(15px, calc(15 / 1414 * 100vw));
    line-height: 1;
}

/* 副标题 - 字体25px，容器458，渐变1F80FF 10% FFFFFF 75% */
.hero-subtitle {
    /*margin-top: min(10px, calc(10 / 1414 * 100vw));*/
    /* width: min(458px, calc(458 / 1414 * 100vw)); */
    text-align: center;
    font-size: min(25px, calc(25 / 1414 * 100vw));
    font-family: 'PingFang SC Semibold', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    background: linear-gradient(90deg, #1F80FF 10%, #FFFFFF 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* 描述文字 - 字体20px，白色，容器819，行高1.1，居中 */
.hero-description {
    margin-top: min(38px, calc(38 / 1414 * 100vw));
    width: min(819px, calc(819 / 1414 * 100vw));
    text-align: center;
    font-size: min(20px, calc(20 / 1414 * 100vw));
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.3;
}

/* ==================== 机器人图标和联系面板 - 位置样式 ==================== */
/* 注意: 基础样式已在 contact-panel.css 中定义，此处只保留位置相关样式 */

/* 机器人图标触发器 - 距离顶部667，右侧158 */
.industrial-tourism-page .robot-icon-trigger {
    position: absolute;
    top: min(690px, calc(690 / 1414 * 100vw));
    right: min(158px, calc(158 / 1414 * 100vw));
}

/* 联系信息面板位置 */
.industrial-tourism-page .contact-panel {
    position: absolute;
    top: min(755px, calc(755 / 1414 * 100vw));
    left: 50%;
    transform: translateX(-50%);
}

/* 初始状态为显示（active） */
.industrial-tourism-page .contact-panel.active {
    transform: translateX(-50%) translateY(0);
}

/* ==================== 所获荣誉 Section ==================== */
.honors-section {
    width: min(1414px, calc(1414 / 1414 * 100vw));
    margin: 0 auto;
    padding-top: min(194px, calc(194 / 1414 * 100vw));
    padding-bottom: min(53px, calc(53 / 1414 * 100vw));
    text-align: center;
}

/* 标题区域 */
.section-header {
    text-align: center;
    margin-bottom: min(77px, calc(77 / 1414 * 100vw));
}

.section-title {
    font-size: min(30px, calc(30 / 1414 * 100vw));
    font-family: 'PingFang SC Regular', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: min(11px, calc(11 / 1414 * 100vw));
    line-height: 1;
}

.section-subtitle {
    font-size: min(20px, calc(20 / 1414 * 100vw));
    font-family: 'PingFang SC Semibold', 'Microsoft YaHei', sans-serif;
    font-weight: 400;
    color: #A2A2A2;
    text-transform: uppercase;
}

/* Swiper容器 - 2行8个网格布局（每行4个） */
.honors-swiper-container {
    width: min(1214px, calc(1214 / 1414 * 100vw));
    margin: 0 auto;
    overflow: hidden;
}

.honors-swiper-container .swiper-wrapper {
    align-items: center;
}

.honors-swiper-container .swiper-slide {
    width: 100% !important;
    margin-right: 0;
}

/* 荣誉网格 - 2行4列，自动适应行数 */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: min-content;
    gap: min(42px, calc(42 / 1414 * 100vw)) min(42px, calc(42 / 1414 * 100vw));
    width: 100%;
}

/* 荣誉项 */
.honor-item {
    width: min(268px, calc(268 / 1414 * 100vw));
    height: min(183px, calc(183 / 1414 * 100vw));
    border-radius: min(10px, calc(10 / 1414 * 100vw));
    overflow: hidden;
    background: #1a1a1a;
    margin: 0 auto;
}

.honor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 自定义分页器 - 正方形点 */
.honors-pagination {
    display: flex;
    justify-content: center;
    gap: min(31px, calc(31 / 1414 * 100vw));
    margin-top: min(53px, calc(53 / 1414 * 100vw));
}

.pagination-dot {
    width: min(10px, calc(10 / 1414 * 100vw));
    height: min(10px, calc(10 / 1414 * 100vw));
    background: #898989;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #003CF1;
}

/* ==================== 移动端竖向列表样式 (宽度 < 800px) ==================== */

/* 默认隐藏移动端列表 */
.mobile-honors-list {
    display: none;
}

.mobile-honor-item {
    width: 100%;
    max-width: min(800px, calc(800 / 1414 * 100vw));
    margin: 0 auto min(20px, calc(20 / 1414 * 100vw));
    border-radius: min(10px, calc(10 / 1414 * 100vw));
    overflow: hidden;
}

.mobile-honor-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 媒体查询：宽度 < 800px 时切换显示 */
@media screen and (max-width: 799px) {
    /* 隐藏 Swiper 和分页器 */
    .honors-swiper-container.swiper-view,
    .honors-pagination {
        display: none !important;
    }

    /* 显示移动端竖向列表 */
    .mobile-honors-list {
        display: flex;
        flex-direction: column;
        padding: 0 min(20px, 5vw);
        gap: min(40px, 8vw);
    }

    .mobile-honor-item {
        margin-bottom: 0;
    }

    .mobile-honor-item img {
        width: 100%;
        height: auto;
        border-radius: min(10px, 2vw);
    }
}


