/* === 移动端全局重置 === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    width: 100%;
    min-height: 100vh;
    background: #f5f5f5;
    font-family: "Microsoft YaHei";
}
img { max-width: 100%; display: block; }

/* === Header 容器 === */
.header {
    position: relative;
    width: 100%;
    height: 105.33vw; /* 按750×400设计稿换算，请根据实际Banner比例调整 */
    overflow: hidden;
}

/* === Banner 层（底层） === */
.header_banner {
    width: 100%;
        height: 105.33vw; /* 790/750*100 */
        overflow: hidden;
}
/* ========== 幻灯片列表 ========== */
.header_banner .bd,
.header_banner .banner_ul,
.header_banner .banner_li {
    width: 100%;
    height: 100%;
}

.header_banner .banner_li img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* ★ 铺满容器不变形，多余部分裁切 */
    display: block;         /* 消除img底部默认间隙 */
}

/* ========== 指示器（小圆点）========== */
.header_banner .hd {
    position: absolute;
    bottom: 36px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.13vw;            /* 圆点间距: 16/750*100 */
}

/* 隐藏SuperSlide自动生成的文字分页，只保留圆点 */
.header_banner .hd .hd-list {
    display: flex;
    gap: 2.13vw;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_banner .hd .hd-list li {
    width: 2.13vw;          /* 圆点大小: 16/750*100 */
    height: 2.13vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    /* 隐藏SuperSlide默认的文字数字 */
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
}

/* 当前激活的圆点 */
.header_banner .hd .hd-list li.on {
    background: #fff;
    width: 5.33vw;          /* 激活态变长条: 40/750*100 */
    border-radius: 2.67vw;
}

/* ========== 左右箭头（移动端建议隐藏）========== */
.header_banner .hd .prev,
.header_banner .hd .next {
    display: none;          /* ★ 移动端触摸滑动即可，隐藏箭头节省空间 */
}

/* 如果PC端也需要显示箭头，用媒体查询单独开启 */
@media (min-width: 768px) {
    .header_banner .hd .prev,
    .header_banner .hd .next {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 10.67vw;
        height: 10.67vw;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        color: #fff;
        font-size: 5.33vw;
        z-index: 10;
        text-decoration: none;
    }
    .header_banner .hd .prev { left: 2.67vw; }
    .header_banner .hd .next { right: 2.67vw; }
}

/* === 顶部区域：Logo + 搜索框 纵向排列 === */
.header_top {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column; /* ★ 纵向排列，各占一行 */
    align-items: flex-start;
    padding: 10px 15px 0 15px;
    padding-top: calc(12px + constant(safe-area-inset-top));
    padding-top: calc(12px + env(safe-area-inset-top));
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

/* Logo 行 */
.header_top_logo {
    /*margin-bottom: 20px;
    margin-top: 10px;*/
}
.header_top_logo img {
    height: 13.33vw;
    width: auto;
}

/* 搜索框行：撑满整行宽度 */
.header_top_search {
    width: 100%; /* ★ 独占一行且撑满 */
    padding-top: 15px;
}
/* === 搜索框容器：flex横向排列 === */
.header_top_search .layui-form {
    display: flex;
    align-items: center;
    width: 100%;
}

/* ★ 放大镜按钮：透明背景 + 左侧定位 */
.header_top_search .search-icon-btn {
    height: 38px;
    width: 38px;
    padding: 0;
    margin-right: -20px;
    background: #ebf3f9;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 17px 0 0 17px;
}

/* 放大镜图标样式 */
.header_top_search .search-icon-btn .layui-icon {
    font-size: 20px;
    color: #2ca2ad;              /* 图标颜色，按需调整 */
    line-height: 1;
}

/* ★ Input框：左侧圆角（因为按钮在左边了） */
.header_top_search .layui-input {
    flex: 1;
    height: 38px;
    line-height: 38px;
    font-size: 15px;
    border-radius: 0 17px 17px 0;
    border: none;
    padding-left: 28px;          /* ★ 给放大镜图标留出空间 */
    background: rgba(255, 255, 255, 0.92);
}
/* === 底部区域：撑满整个页面宽度 === */
.header_bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    width: 100%; /* ★ 撑满整个页面宽度 */
    padding: 0;   /* 去掉内边距，让内容真正撑满边缘 */
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
}
.header_bottom img {
    width: 100%;  /* ★ 图片铺满整个底部宽度 */
    height: auto;
    display: block;
}

/* === 仅限制桌面端最大宽度 === */
@media screen and (min-width: 768px) {
    .header { max-width: 750px; margin: 0 auto; }
}
.main_index{
    background-color: #e3fdff;
    width: 100%;
    height: auto;
}
/**通知公告**/
/* ========== 通知栏容器 ========== */
.main_notice{
    width: 100%;
    padding: 20px 10px;
}
.main_notice1 {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    gap: 12px;
}

/* ========== 左侧图标 ========== */
.main_notice_icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #73BDAE;
    font-size: 30px;
    line-height: 1;
}
.main_notice_icon .iconfont{
    font-size: 28px;
}
/* ========== 右侧轮播区域 ========== */
.main_notice_list {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    height: 24px;               /* topLoop 必须指定固定高度 = 单条行高 × vis */
}

/* 隐藏slide插件自动生成的控制栏 */
.main_notice_list .hd {
    display: none !important;
}

/* ========== 轮播内容（topLoop 专用） ========== */
.main_notice_ul {
    position: relative;         /* topLoop 依赖相对定位计算 margin-top */
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    /* 禁止使用 display:flex，会覆盖插件动态设置的 marginTop */
}

.main_notice_li {
    width: 100%;
    height: 24px;               /* 子项固定高度，与容器高度、line-height 三者一致 */
    overflow: hidden;           /* 防止文字换行撑破单行高度 */
}

.main_notice_li a {
    display: block;
    text-decoration: none;
    height: 100%;
}

.main_notice_li p {
    margin: 0;
    font-size: 14px;
    color: #333333;
    line-height: 24px;          /* 与 li 高度一致，实现垂直居中 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 容器样式 */
.main1 {
    width: 100%;
    padding: 10px 10px;
}

.main1_ul {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap:12px;
}

/* ========== 模块容器（垂直布局，非圆形） ========== */
.main1_li {
    width: calc((100% - 36px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.main1_li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main1_li a:hover {
    transform: translateY(-5px);
}

/* 图片容器 - 背景图 + 文字（padding-bottom 撑高，与文字大小无关） */
.main1_li_img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60.6%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 10px;
}

/* 渐变文字 + 白色外描边（绝对定位，不影响背景尺寸） */
.main1_li_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: transparent;
    background: linear-gradient(to bottom, #038b6a 0%, #62a514 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 0.5px #fff;
    paint-order: stroke fill;
}

/* 响应式适配（小屏幕自动换行） */
@media (max-width: 768px) {
    .main1_ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.main2{
    width: 100%;
    padding: 20px 10px;
}
/* ========== 标题容器 ========== */
.main_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* ========== 左侧标题 ========== */
.main_title h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #169177;
    line-height: 1.3;
    position: relative;
    padding-left: 10px;
}

/* 左侧竖向装饰条（可选，增强视觉识别） */
.main_title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background-color: #ffaf16;
    border-radius: 2px;
}

/* ========== 右侧更多链接 ========== */
.main_title a {
    font-size: 15px;
    color: #999;
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.main_title a:active {
    color: #86d7c6;
}

/* ========== 列表容器（100%宽度 + 渐变阴影） ========== */
.main2_list {
    width: 100%;
    padding: 16px 12px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #cbf2f5, #e4fdff);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(134, 215, 198, 0.15);
    margin-top: 20px;
}

/* ========== 列表项容器 ========== */
.main2_list_ul {
    width: 100%;
    display: block;
}

/* ========== 单个列表项（垂直排列） ========== */
.main2_list_li a {
    display: flex;
    flex-direction: column;       /* 标题与日期垂直排列 */
    align-items: stretch;         /* 子元素撑满宽度 */
    text-decoration: none;
    padding: 15px 0 0 0;
    transition: all 0.2s ease;
}

.main2_list_li a:active {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(0.99);
}

/* ========== 标题（单行省略） ========== */
.main2_list_li h3 {
    margin: 0;
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
    white-space: nowrap;          /* 强制单行 */
    overflow: hidden;
    text-overflow: ellipsis;      /* 超出显示省略号 */
}

/* ========== 日期（居右换行） ========== */
.main2_list_li p {
    margin: 10px 0 0;              /* 与标题间距 */
    font-size: 14px;
    color: #95cbcf;
    text-align: right;            /* 居右对齐 */
    white-space: nowrap;
}

.main3{
    width: 100%;
    padding: 20px 10px;
    background-color: #e3fdff;
}
.main3_list {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

/* ========== 左侧单图 ========== */
.main3_l {
    flex: 1;
    min-width: 0;
}

.main3_l img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

/* ========== 右侧双图（上下排列） ========== */
.main3_r {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main3_r a {
    flex: 1;
    min-height: 0;
    display: block;
}

.main3_r img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}
.main4{
    width: 100%;
    padding: 20px 10px;
    height: auto;
    background-color: #e3fdff;
}
.main4 img{
    width: 100%;
    height: auto;
}

.main5{
    width: 100%;
    padding: 20px 10px;
    height: auto;
    background-color: #e3fdff;
}
.main5_banner {
    position: relative;
    width: 100%;
    overflow: hidden;           /* 隐藏超出容器的轮播内容 */
    border-radius: 12px;        /* 与页面其他模块圆角保持一致 */
}

/* ========== 轮播内容区域 ========== */
.main5_banner .bd {
    width: 100%;
    overflow: hidden;           /* 配合slide插件的leftLoop效果 */
}

.main5_banner_ul {
    display: flex;              /* slide插件会自动计算宽度，flex作为基础布局兜底 */
}

.main5_banner_li {
    flex-shrink: 0;             /* 防止轮播项被压缩 */
    width: 100%;                /* 单张占满容器宽度，vis:1时生效 */
}

.main5_banner_li a {
    display: block;
    width: 100%;
}

.main5_banner_li img {
    width: 100%;
    height: auto;               /* 高度自适应，保持图片原始比例 */
    display: block;             /* 消除img底部默认间隙 */
    object-fit: cover;          /* 若需固定高度可改为cover裁剪填充 */
}

/* ========== 控制栏（按钮+指示点） ========== */
.main5_banner .hd {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;                  /* 按钮与指示点之间的间距 */
    pointer-events: none;       /* 让控制栏不遮挡图片点击 */
}

/* 恢复按钮和指示点的点击事件 */
.main5_banner .hd a,
.main5_banner .hd ul {
    pointer-events: auto;
}

/* ========== 左右切换按钮 ========== */
.main5_banner .hd .prev,
.main5_banner .hd .next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    display: none;
}
.main5_banner .hd .prev{
    position: absolute;
    left: 0;
    bottom: 50px;
}
.main5_banner .hd .next{
    position: absolute;
    right: 0;
    bottom: 50px;
}
.main5_banner .hd .prev:hover,
.main5_banner .hd .next:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* 用CSS绘制箭头图标，无需额外引入字体或图片 */
.main5_banner .hd .prev::before,
.main5_banner .hd .next::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
}

.main5_banner .hd .prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;           /* 视觉居中修正 */
}

.main5_banner .hd .next::before {
    transform: rotate(45deg);
    margin-right: 2px;          /* 视觉居中修正 */
}

/* ========== 指示点列表 ========== */
.main5_banner .hd .hd-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

/* slide插件自动生成的li指示点 */
.main5_banner .hd .hd-list li {
    width: 12px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 当前激活的指示点（slide插件会自动添加on类名） */
.main5_banner .hd .hd-list li.on {
    width: 20px;
    border-radius: 4px;
    background: #7bd5b7;
}
.main6{
    width: 100%;
    padding: 20px 10px;
    height: auto;
    background-color: #e3fdff;
}
.main6 img{
    width: 100%;
    height: auto;
}
.main7{
    width: 100%;
    padding: 20px 10px;
    height: auto;
    background-color: #e3fdff;
}
.main7 img{
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.main8{
    width: 100%;
    padding: 20px 10px;
    height: auto;
    background-color: #e3fdff;
}
.main8 img{
    width: 100%;
    height: auto;
}
.main8{
    width: 100%;
    padding: 10px 10px 100px 10px;
    height: auto;
    background-color: #e3fdff;
}
.main8_list {
    width: 100%;
    box-sizing: border-box;
}

/* ========== 网格布局（一行两列） ========== */
.main8_ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ========== 单个卡片 ========== */
.main8_li {
    position: relative;         /* 作为文字绝对定位的参照容器 */
    border-radius: 3px;
    overflow: hidden;           /* 裁剪超出圆角的图片和文字 */
}

.main8_li a {
    display: block;
    text-decoration: none;
}

/* ========== 图片样式 ========== */
.main8_li img {
    width: 100%;
    height: 106px;
    display: block;             /* 消除img底部默认间隙 */
    object-fit: cover;          /* 若需固定高度可改为cover裁剪 */
}

/* ========== 悬浮文字（左下角） ========== */
.main8_li h3 {
    position: absolute;
    left: 10px;
    bottom: 10px;
    margin: 0;                  /* 清除h3默认外边距，确保定位精准 */
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    max-width: calc(100% - 20px); /* 防止文字过长溢出右侧 */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); /* 深色阴影增强可读性 */
    pointer-events: none;       /* 避免文字遮挡a标签的点击区域 */
}