 /* ======================
   基础样式重置与变量定义
   ====================== */
:root {
	--primary-color: #087c95;
	/* 主品牌色 */
	--secondary-color: #d9974a;
	/* 次要色 */
	--title-color: #333;
	/* 次要色 */
	--text-color: #1a5a4a;
	/* 正文颜色 */
	--hover-color: #087c95;/
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
    
    body {
	background: #fff;
	font-size: 14px;
	font-family: Alibaba Sans, -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Microsoft YaHei, Hiragino Sans GB, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	color: var(--title-color);
}

body {
      /* 背景图 + 渐变遮罩叠加 */
      background-image: 
        linear-gradient(to bottom, #57d2c4, #a1e8d7),url("images/bacpg?v=1.0.1");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
    
    @font-face {
	font-family: 'Montserrat-reg';
	src: url('/fonts/Montserrat-Regular-8.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat-lig';
	src: url('/fonts/Montserrat-Light-6.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat-ext';
	src: url('/fonts/Montserrat-ExtraLight-5.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

    /* 你指定的媒体查询控制rem基准字号 */
    html {
      font-size: 16px; /* 移动端默认基准 */
    }
    @media (min-width: 768px) {
      html {
        font-size: 18px;
      }
    }
    @media (min-width: 1024px) {
      html {
        font-size: 20px;
      }
    }
    @media (min-width: 1440px) {
      html {
        font-size: 22px;
      }
    }
    
    
a {
	text-decoration: none;
	/* 去掉下划线 */
	color: var(--title-color);
	/* 企业常用的蓝色作为默认链接颜色 */
	transition: color 0.3s ease;
	/* 平滑过渡效果 */
}

a:hover {
	color: var(--hover-color);
	text-decoration: none;
	outline: none;
}

    /* ===================== 你提供的acea flex工具类 ===================== */
    .acea-row {
      display: flex;
      -webkit-box-lines: multiple;
      -moz-box-lines: multiple;
      -o-box-lines: multiple;
      flex-wrap: wrap
    }
    .acea-row.row-middle {
      -o-box-align: center;
      align-items: center
    }
    .acea-row.row-top {
      -o-box-align: start;
      align-items: flex-start
    }
    .acea-row.row-bottom {
      -o-box-align: end;
      align-items: flex-end
    }
    .acea-row.row-center {
      -o-box-pack: center;
      justify-content: center
    }
    .acea-row.row-right {
      -o-box-pack: end;
      justify-content: flex-end
    }
    .acea-row.row-left {
      -o-box-pack: start;
      justify-content: flex-start
    }
    .acea-row.row-between {
      -o-box-pack: justify;
      justify-content: space-between
    }
    .acea-row.row-around {
      justify-content: space-around;
      -webkit-justify-content: space-around
    }
    .acea-row.row-column-around {
      flex-direction: column;
      justify-content: space-around;
      -webkit-justify-content: space-around
    }
    .acea-row.row-column {
      -o-box-orient: vertical;
      flex-direction: column
    }
    .acea-row.row-column-between {
      -o-box-orient: vertical;
      flex-direction: column;
      -o-box-pack: justify;
      justify-content: space-between
    }
    .acea-row.row-center-wrapper {
      -o-box-align: center;
      align-items: center;
      -o-box-pack: center;
      justify-content: center
    }
    .acea-row.row-between-wrapper {
      -o-box-align: center;
      align-items: center;
      -o-box-pack: justify;
      justify-content: space-between
    }
    .row-one {
      flex: 1;
    }
    .hr10 {
	height: 10px;
	clear: both;
	font-size: 1px;
	line-height: 1px;
}

.hr20 {
	height: 20px;
	clear: both;
	font-size: 1px;
	line-height: 1px;
}

.hr30 {
	height: 30px;
	font-size: 1px;
	line-height: 1px;
	clear: both;
}

.hr40 {
	height: 40px;
	clear: both;
	font-size: 1px;
	line-height: 1px;
}
.line1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.container {
      overflow: hidden;
      position: relative;
      min-height: 100vh;
    }

    /* 顶部Logo区域：使用acea-row row-between-wrapper 左右水平并排、垂直居中 */
    .logo-box {
      margin-bottom: 1.5rem; /*24px*/
      padding: 1rem;
    }
    .logo-box img {
        display: block;
      width: 7rem; /*140px*/
      height: auto;
    }
    .logo-right-img {
        display: block;
      width: 6rem; /*100px 右侧配图尺寸可自行修改*/
      height: auto;
    }

    /* 活动标题 */
    .activity-title {
      margin: 1.5rem; /*24px*/
    }
    
    .activity-title img {
      display: block;
      width: 100%;
    }

    /* Grid七格布局 严格匹配示意图 */
    .module-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
      gap: 1rem; /*16px*/
      margin: 1rem;
    padding: 22px 16px 18px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(31, 120, 110, .12);
    backdrop-filter: blur(8px);
    }

    /* 卡片通用样式 全部rem */
    .grid-card {
      background: linear-gradient(140deg, #149f94, #39c5b7);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 15px;
    box-shadow: inset 0 1px rgba(255, 255, 255, .2), 0 8px 18px rgba(26, 145, 134, .13);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: .8rem .6rem;
    color: #fff;
    }
    .grid-card:hover {
      transform: translateY(-0.25rem); /*-4px*/
      box-shadow: 0 0.5rem 1.25rem rgba(88, 220, 207, 0.35);
    }
    /* 左侧跨两行大卡片 */
    .grid-big {
      grid-column: 1 / 2;
      grid-row: 1 / 3;
      background: linear-gradient(140deg, #d99649, #ebad66);
    }
    .card-icon {
      overflow: hidden;
    }
    .card-icon img{
        display: block;
        width: 2.4rem;
        height: auto;
        opacity: .7;
    }
    .card-text {
        text-align: right;
        overflow: hidden;
    }
    
    .card-text .big{
        line-height: 1.4;
      font-size: 1rem; /*17px*/
      color: #fff;
      font-weight: 700;
    }
    
    .card-text .small{
        font-family: 'Montserrat-lig';
      font-size: .7rem; /*17px*/
      color: #fff;
      opacity: .6;
    }

    /* 底部图片区域 */
    .host-img {
        z-index: 3;
        position: relative;
      text-align: center;
      margin-bottom: 6rem; /*30px*/
    }
    .host-img img {
        display: block;
      width: 90%;
      height: auto;
    }
    .time-img {
        position: relative;
        z-index: 2;
      text-align: center;
      margin-bottom: 1.5rem; /*30px*/
    }
    .time-img img {
        display: block;
      width: 50%;
      height: auto;
    }
    
    .foot{
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 0px;
       margin-top: -5rem;
       overflow: hidden;
       z-index: 1;
    }
    
    .foot img{
        display: block;
        width: 100%;
    }


.app-container {
      background: rgba(255, 255, 255, 0.30);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-radius: 1rem;
      padding: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.6);
    }
/* ===== 页面标题 ===== */
    .page-title {
      text-align: center;
      margin-bottom: 1rem;
      padding: .7rem 0 .5rem;
    }
    .page-title h2 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary-color);
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      padding: 0 1rem;
    }

    /* ===== TAB 样式 ===== */
    .tab-bar {
      display: flex;
      gap: 8px;
      margin-bottom: 1rem;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      padding: .3rem .6rem;
      border-radius: 5rem;
      border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .tab-item {
      flex: 1;
      text-align: center;
      padding: .5rem 1rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1rem;
      color: #1b4e43;
      background: transparent;
      transition: all 0.25s;
      cursor: default;
      letter-spacing: 0.3px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(2px);
    }
    .tab-item.active {
      background: #89cdc5;
      color: #236154;
      box-shadow: 0 4px 12px rgba(88, 220, 207, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.5);
      font-weight: 700;
    }
    .tab-item:not(.active) {
      background: rgba(255, 255, 255, 0.2);
    }

    /* ===== 内容面板 ===== */
    .panel {
      display: none;
      animation: fadePanel 0.25s ease;
    }
    .panel.active {
      display: block;
    }

    @keyframes fadePanel {
      0% { opacity: 0.4; transform: translateY(8px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* ===== 表格样式 (日程) ===== */
    .table-wrap,
    .article-content{
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-radius: 1rem;
      padding: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.7);
      overflow-x: auto;
      box-shadow: 0 6px 18px rgba(88, 220, 207, 0.08);
    }
    .table-hd{
        display: block;
        width: max-content;
        margin: 0px auto;
        background: #236154;
        margin-bottom: 1rem;
        border-radius: 1rem;
        text-align: center;
        padding: .5rem 1rem;
      color: #c0f5ef;
      box-shadow: 0 4px 12px rgba(88, 220, 207, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.5);
      font-weight: 700;
    }
    .table-tip{
        margin-bottom: 1rem;
        text-align: left;
        text-indent: 2rem;
      color: #236154;
    }
    .car-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: .5rem;
      overflow: hidden;
    }
    .car-table thead th {
      background: rgba(88, 220, 207, 0.25);
      color: var(--text-color);
      font-weight: 700;
      padding: .8rem .3rem;
      text-align: center;
      border-bottom: 0px solid var(--primary-color);
      font-size: .9rem;
      letter-spacing: 0.3px;
    }
    .car-table tbody{
        background: none;
    }
    .car-table tbody td {
      padding: .6rem .3rem;
      border: 1px solid rgba(88, 220, 207, 0.25);
      text-align: center;
      color: var(--text-color);
      vertical-align: middle;
      line-height: 1.4;
      font-size: .9rem;
    }
    .schedule-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: .5rem;
      overflow: hidden;
    }
    .schedule-table thead th {
      background: rgba(88, 220, 207, 0.25);
      color: var(--text-color);
      font-weight: 700;
      padding: .8rem .3rem;
      text-align: center;
      border-bottom: 0px solid var(--primary-color);
      font-size: .9rem;
      letter-spacing: 0.3px;
    }
    .schedule-table tbody{
        background: none;
    }
    .schedule-table tbody td {
      padding: .6rem .3rem;
      border-top: 1px solid rgba(88, 220, 207, 0.25);
      border-right: 1px solid rgba(88, 220, 207, 0.25);
      text-align: center;
      color: var(--text-color);
      vertical-align: middle;
      line-height: 1.4;
      font-size: .88rem;
    }
    .schedule-table .label-col{
        width: 3.4rem;
    }
    .schedule-table .date-col{
        width: 5rem;
        font-weight:700;
        background:rgba(88,220,207,0.08);
    }
    .schedule-table .weekday{
        font-weight:400;
        font-size:.8rem;
    }
    .schedule-table .time-col {
        width: 3rem;
      font-weight: 600;
      font-family: 'Montserrat-lig';
    }
    .schedule-table .event-col{
        width: 4rem;
    }
    .schedule-table .note-col {
      width: 5rem;
    }
    .schedule-table span{
        display: block;
    }
    .schedule-table tbody tr:last-child td {
      border-bottom: none;
    }
    .schedule-table tbody tr:hover {
      background: rgba(88, 220, 207, 0.08);
    }
    .schedule-table .event-block .section-title{
        font-weight: bold;
       padding-top: .6rem; 
    }
    .schedule-table ul{
        padding-top: .4rem;
        padding-left: 1.5rem;
    }
    .schedule-table ul li{
        margin-bottom: .4rem;
    }
    .schedule-table ul li:last-child{
        margin-bottom: 0;
    }
    .schedule-table .event-block{
        padding: 0px .3rem;
        text-align: left;
    }

    /* ===== 文章样式 ===== */
    .article-content h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: var(--text-color);
      border-left: 4px solid var(--primary-color);
      border-radius: .2rem;
      padding-left: 1rem;
      font-weight: 700;
    }
    .article-content p {
      font-size: .9rem;
      line-height: 1.6;
      margin-bottom: .6rem;
      text-indent: 2rem;
      font-weight: 400;
      color: var(--title-color);
    }
    .article-content p:last-child {
      margin-bottom: 0;
    }
    .article-content img{
        max-width: 100%;
        border-radius: .4rem;
    }
    .article-content .highlight {
      background: linear-gradient(to right, #8bd4d6, rgba(88, 220, 207, 0));
      padding: .3rem .6rem;
      border-radius: 1rem;
      font-weight: 500;
      color: var(--primary-color);
    }
    .article-content .sites{
        background: linear-gradient( to right, rgba(8, 124, 149, 1) 0%, rgba(8, 124, 149, 0.3) 50%, rgba(8, 124, 149, 0) 100% ); text-indent: 0px; padding: .5rem 0px .5rem 1.6rem; border-radius: 1rem; border-left: .2rem solid var(--secondary-color); font-size: 1.1rem; color: #fff;
    }
    /* 遮罩层 */
.pop-mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}
/* 弹窗容器 动画 */
.pop-box{
    width: 100%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem;
    pointer-events: none;
}
/* 弹出激活样式 */
.pop-box.show{
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
/* 指定类名 白色背景 */
.layui-layer-content{
    max-height: 72vh;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem 1rem 1rem 1rem;
    box-sizing: border-box;
    overflow-y: auto;
}
.layui-layer-content .notice{
    margin-bottom: 1rem;
    overflow: hidden;
}
    .layui-layer-content .notice p{
    font-size: .9rem;
        line-height: 1.4;
        margin-bottom: .2rem;
        text-indent: 2rem;
        color: var(--title-color);
}
.layui-layer-content .weather{
    overflow: hidden;
     border-top: #eee 1px solid;
     padding-top: 1rem;
}
.layui-layer-content .weather p,
.layui-layer-content .codes p{
    font-size: 1rem;
        line-height: 1.4;
        margin-bottom: .2rem;
        color: var(--title-color);
}
    .layui-layer-content .weather img{
        width: 100%;
    }
    
    .layui-layer-content .codes{
        overflow: hidden;
        margin-bottom: 1rem;
     border-top: #eee 1px solid;
     padding-top: 1rem;
        gap: 1rem;
    }
    .layui-layer-content .codes img{
        display: block;
        width: 100%;
    }
    /* 我知道了按钮 */
.confirm-btn{
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    text-align: center;
    border-radius: .4rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
    .home-float-btn {
    position: fixed;
    right: -2rem;
    top: 30rem;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(205, 117, 14, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: right 0.3s ease;
}
/* 完整显示状态 */
.home-float-btn.show {
    right: 1rem;
}
.home-float-btn:hover {
    color: #fff;
    box-shadow: 0 4px 15px rgba(205, 117, 14, 0.4);
}