@import url("reset.css");
*{
    margin:0;
    padding:0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
                box-sizing: border-box;
    font-family: "PingFang TC", "微軟正黑體", "Microsoft JhengHei", "Heiti TC", sans-serif;
}

.h1-seo{
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    transform: scale(0);
}

img { border: 0; max-width: 100%; height: auto; }
html,body{width: 100%;height: 100%;}
ol, ul {list-style: none;}
em{ font-style: normal;}
.em-r{ color: #F8524C;}
.em-g{ color: #00A19B;}

/*各區按鈕*/
.event_btnbody{
    width: 90%;
    max-width: 1200px;
    text-align: center;
    margin: 40px auto 0;
    overflow: hidden;
    padding: 0px 0px 20px 0px;
}

.event_btn1{
    display:inline-block;
    height: 2.76em;
    line-height: 2.8em;
    font-size: 17px;
    text-align: center;
    color: #3cbaad;
    background:#fff ;
    border: 1px solid #3cbaad;
    cursor: pointer;
    width: 250px;
    border-radius: 4px;
    margin: 10px 20px;
}

.event_btn2{
    display:inline-block;
    height: 2.76em;
    line-height: 2.8em;
    font-size: 17px;
    text-align: center;
    color: #fff;
    background: #3cbaad;
    cursor: pointer;
    width: 250px;
    border-radius: 4px;
    margin: 10px 20px;
}

.event_btn2:hover , .event_btn1:hover{
    opacity: 80%;
}

/* header */
header > nav{
    width: 1200px;
    height: 50px;
    margin: 0 auto;
}

header > nav > a{
    line-height: 50px;
    color: #333;
    font-size: 14px;
    float: left;
}

header > nav > a > img{
    width: 250px;
    padding: 12px 0 12px 5px;
}

header > nav > div{
    color: #333;
    font-size: 14px;
    float: right;
    padding-left: 20px;
}

header > nav > div > a{
    display: block;
    line-height: 50px;
    padding: 0 10px;
    float: left;
    font-weight: bold;
    color: #333;
}

header > nav > div > a:hover{
    color: #00a19b;
}

/* ==========================
KV
========================== */
.kv_section{
    position: relative;
    overflow: hidden;
}

/* 限制背景圖最大高度 */
.kv_bg{
    display: block;
    height: auto;
    max-height: 900px; /* 設定你希望的高度上限 */
}

.kv_bg img{
    display: block;
    width: 100%;
    height: 100%;
    max-height: 750px;
    object-fit: cover;
    object-position: center; /* 確保圖片從中間開始裁切，避免偏心 */
}

/* 內容定位 */
.kv_inner{
    position:absolute;
    inset:0;
    width:100%;
    max-width:1200px;
    margin:0 auto;
    left:0;
    right:0;
}

/* 主圖主標 */
.kv_main{
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: min(52%, 650px);
    min-width: 280px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.kv_main img{
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: kvPopIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* 定義彈出並帶有彈性回彈（Bounce）的進場動畫 */
@keyframes kvPopIn {
    0% {opacity: 0;transform: scale(0.7);}
    70% {opacity: 1;transform: scale(1.04);}
    100% {opacity: 1;transform: scale(1);}
}


/* 泡泡 */
.kv_bubble{
    position:absolute;
    z-index:2;
}
.kv_bubble img{
    width:100%;
    display:block;
}

/* 泡泡-左綠 */
.bubble_green{
    width:clamp(80px,12vw,180px);
    left:-10%;
    top:30%;
    animation:floatGreen 6s ease-in-out infinite;
}

/* 泡泡-右藍 */
.bubble_blue{
    width:clamp(100px,14vw,220px);
    right:10%;
    top:-5%;
    animation:floatBlue 8s ease-in-out infinite;
}

/* 泡泡-圈圈 */
.circle_txt{
    position: absolute;
    width: clamp(100px, 10vw, 150px);
    height: clamp(100px, 10vw, 150px);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 1. 加入半透明深色底（毛玻璃效果），有效隔絕明亮背景干擾 */
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    /* 2. 強化陰影，讓圓圈在亮背景前有立體的浮起感 */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        0 0 15px rgba(255, 255, 255, 0.6);
    overflow: visible;
    z-index: 15;
    animation:
        circleGlow 2.5s ease-in-out infinite,
        floatCircle 4s ease-in-out infinite;
}

/* 外圈波紋 */
.circle_txt::before{
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.7); /* 稍微調亮波紋不透明度 */
    border-radius: 50%;
    animation: ringWave 2.5s ease-out infinite;
    pointer-events: none;
}

/* 文字 */
.circle_txt span{
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(14px, 1.8vw, 30px);
    white-space: nowrap;
    line-height: 1;
    /* 3. 加強文字陰影，甚至可配合 text-shadow 製造外發光或深色邊框感 */
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 2px rgba(0, 0, 0, 0.8);
}

/* 泡泡-左圈 */
.circle_left{
    left: 8%;
    top: 14%;
}

/* 泡泡-右圈 */
.circle_right{
    right: 8%;
    top: 14%;
    animation-delay: .8s;
}

.circle_right::before{
    animation-delay: .8s;
}

/* 泡泡-標語 */
.slogan{
    position: absolute;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(12px, 1.5vw, 28px);
    /* 4. 標語同樣加強陰影對比，避免被明亮背景吃掉 */
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(0, 0, 0, 0.4);
    z-index: 15;
}

.slogan_left{
    left: 15%;
    top: 42%;
}

.slogan_right{
    right: 15%;
    top: 42%;
}

/* LOGO 動畫與定位設定 */
.brand_logo{
    position: absolute;
    z-index: 25;
    /* 套用質感淡入上浮動畫：歷時 0.8秒，延遲 0.3秒播放 */
    animation: logoFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.brand_logo img{
    width: 100%;
    display: block;
}


/* 漂浮動畫 ========================== */
@keyframes floatGreen{
    0%{transform:translateY(0);}
    50%{transform:translateY(-45px);}
    100%{transform:translateY(0);}
}
@keyframes floatBlue{
    0%{transform:translateY(0);}
    50%{transform:translateY(55px);}
    100%{transform:translateY(0);}
}

/* 呼吸光暈 ========================== */
@keyframes circleGlow{
    0%{
        box-shadow:
            0 0 8px rgba(255,255,255,.4);
    }
    50%{
        box-shadow:
            0 0 22px rgba(255,255,255,.9),
            0 0 38px rgba(255,255,255,.35);
    }
    100%{
        box-shadow:
            0 0 8px rgba(255,255,255,.4);
    }
}
/* 波紋擴散 ========================== */
@keyframes ringWave{
    0%{
        transform:scale(1);
        opacity:.8;
    }
    100%{
        transform:scale(1.12);
        opacity:0;
    }
}
/* 微漂浮 ========================== */
@keyframes floatCircle{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}

/* ==========================
KV-手機版
========================== */
@media screen and (max-width:767px){
    .kv_section {
        /* 如果手機版需要特別限制高度，可以在這裡調整 */
        max-height: 500px;
    }
    .kv_bg img {
        max-height: 500px; /* 確保手機版高度一致 */
    }
    .kv_main{
        width:50%;
        top:10%;
    }

    /* 綠泡泡 */
    .bubble_green{
        width:90px;
        left:-30px;
        top:38%;
    }
    /* 藍泡泡 */
    .bubble_blue{
        width:110px;
        right:-40px;
        top:-10px;
    }

    /* 白圈圈 */
    .circle_txt{
        width:100px;
        height:100px;
        border-width:2px;
    }
    .circle_txt span{
        font-size:15px;
    }
    .circle_left{
        left:2%;
        top:15%;
    }
    .circle_right{
        right:2%;
        top:15%;
    }

    /* 左圈 */
    .circle_left{
        left:3%;
        top:18%;
    }
    /* 右圈 */
    .circle_right{
        right:3%;
        top:18%;
    }

    /* 標語 */
    .slogan_left{
        left:4%;
        top:45%;
    }

    .slogan_right{
        right:3%;
        top:45%;
    }

}


/*==========================
主活動區
==========================*/
.event_section{
    padding:80px 0;
}
.event_section .container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}

/* 活動卡框 */
.event_card{
    position: relative;
    background: #fff;
    border-radius: 35px;
    padding: 60px 80px;
    z-index: 1;
    overflow: visible; /* 確保凸出的裝飾圖不會被切掉 */
}

/* 覆蓋在卡片上方的 SVG 邊框層 */
.event_border_glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* 確保滑鼠穿透，不影響內部點擊 */
    z-index: 10;          /* 確保在卡片邊線上 */
    border-radius: 50px;
    overflow: visible;
}

/* SVG 矩形光流 */
.event_border_glow rect {
    fill: none;
    stroke: url(#cometGrad); /* 套用剛剛定義的漸層光束 */
    stroke-width: 1px;       /* 邊框光條粗細 */
    /* 關鍵：控制光束長度與空白間距 (光束長度, 空白長度) */
    /* 數值可依卡片實際大小微調，確保是一條尾端漸層透明的光束 */
    stroke-dasharray: 250 1500;
    /* 套用跑動動畫 */
    animation: svgRectOrbit 4s linear infinite;
}

/* 定義沿著矩形邊框繞圈的動畫 */
@keyframes svgRectOrbit {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        /* 數值需等於 stroke-dasharray 兩者的總和 (180 + 800 = 980)，讓它剛好跑完一圈循環 */
        stroke-dashoffset: -1750;
    }
}

/* 標題外層通用設定 */
.event_title,
.event_subtitle {
    text-align: center;
    position: relative;
}

/* 主標題：週三玉山日 */
.event_title{
    margin-bottom: 12px;
}
.event_title .em-g{
    display: inline-block;
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 800;
    letter-spacing: 2px;
    color: #0fb8af;
    /* 質感發光陰影 */
    text-shadow: 0 2px 10px rgba(15, 184, 175, 0.25);
    /* 點綴效果：加上精緻的上下裝飾小橫線 */
    position: relative;
    padding: 0 25px;
}

/* 主標題兩側的裝飾小線條 */
.event_title .em-g::before,
.event_title .em-g::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15px;
    height: 2px;
    background: linear-gradient(90deg, #11d9c9, #5b78ff);
    transform: translateY(-50%);
}
.event_title .em-g::before { left: 0; }
.event_title .em-g::after { right: 0; }


.event_subtitle {
    margin-bottom: 25px;
    font-size: clamp(20px, 3.5vw, 48px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 1px;
    text-align: center; /* 確保整體靠左對齊，無置中 */
}

/* 讓品牌名稱（玉山Unicard）帶有精緻的漸層色與微立體感 */
.event_subtitle .em-g {
    display: inline-block;
    background: linear-gradient(135deg, #11d9c9 0%, #0ab6a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(91, 120, 255, 0.2));
}

/* 副標題整句維持相同的基本色與發光陰影 */
.event_subtitle .em-r {
    display: inline;
    color: #ff4446;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(253, 218, 76, 0.25);
}

/* 品牌 Logo 組合群組，移除斜線並加入適當的間距 */
.event_subtitle .logo-group {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 10px; /* 透過間距區隔兩個 Logo，不使用奇怪的斜線 */
    margin: 0 4px;
}

/* 品牌 Logo 圖片微調，使其高度與周圍文字相符 */
.event_subtitle .brand-logo {
    height: 1.2em; /* 依據字級自動等比例縮放 */
    width: auto;
    vertical-align: middle;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 203, 59, 0.15));
}

/* 讓 10% 維持同色系，但透過極大的粗細與字級來創造強烈對比 */
.event_subtitle .num-highlight {
    display: inline-block;
    font-size: 1.5em; /* 顯著放大 */
    font-weight: 900;    /* 使用最粗的級數，增加視覺厚度 */
    font-style: normal;
    letter-spacing: 1px;
    color: inherit;
    filter: drop-shadow(0 6px 6px rgba(252, 210, 103, 0.35));
    padding: 0 5px;
    vertical-align: baseline;
}

.event_date{
    text-align:center;
    color:#666;
    font-size:clamp(16px,1.2vw,24px);
    margin-bottom:45px;
    letter-spacing: 1px;
}


/* 活動內容 */
.event_content{
    max-width:1050px;
    margin:0 auto;
}

.event_text{
    text-align:center;
    font-size:clamp(20px,1.7vw,34px);
    line-height:1.8;
    color:#555;
    letter-spacing: 1px;
}

.event_text small{
    font-size:70%;
}

.event_note{
    margin-top:40px;
    padding-left:20px;
    color:#666;
    font-size:clamp(16px,1vw,24px);
    line-height:1.8;
    list-style-type: disc;
    letter-spacing: 1px;
}


/* 裝飾圖 */
.event_decoration{
    position:absolute;
}
.event_decoration img{
    display:block;
    width:100%;
}

/* 左上 */
.deco_orange{
    width:140px;
    top:-55px;
    left:55px;
    animation:floatA 5s ease-in-out infinite;
}

/* 左下 */
.deco_bottle{
    width:180px;
    left:-20px;
    bottom:-5px;
    animation:floatB 6s ease-in-out infinite;
}

/* 果醬 */
.deco_milk{
    width:65px;
    right:50px;
    top:60%;
    animation:floatC 4.5s ease-in-out infinite;
}

/* 吐司 */
.deco_bread{
    width:180px;
    right:-35px;
    bottom:130px;
    animation:floatD 5.5s ease-in-out infinite;
}

/* 裝飾圖動畫 ==========================*/
@keyframes floatA{
    0%,100%{transform:translateY(0) rotate(0deg);}
    50%{transform:translateY(-12px) rotate(-4deg);}
}
@keyframes floatB{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(10px);}
}
@keyframes floatC{
    0%,100%{transform:translateY(0) rotate(0deg);}
    50%{transform:translateY(-8px) rotate(5deg);}
}
@keyframes floatD{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
}

@media screen and (max-width:767px){
    .event_section{
        padding:50px 0;
    }
    .event_card{
        padding:35px 20px;
        border-radius:25px;
    }
    .event_subtitle{
        font-size:30px;
        line-height:1.4;
    }
    .event_text{
        text-align:left;
        font-size:18px;
    }
    .event_note{
        font-size:14px;
        line-height: 20px;
    }
    .event_btnbody{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:10px;
    }
    .deco_orange{
        width:70px;
        top:-25px;
        left:15px;
    }
    .deco_bottle{
        width:70px;
        left:-10px;
        bottom:-5px;
    }
    .deco_milk{
        width:40px;
        right:20px;
        top:99%;
    }
    .deco_bread{
        width:90px;
        right:-10px;
        bottom:0px;
    }
}

/*=================================
領取優惠
=================================*/
.guide_section{
    padding: 100px 0;
    background: #dff0ec;
}
.guide_section .container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.guide_title{
    text-align: center;
    font-size: clamp(24px, 2vw, 48px);
    font-weight: 700;
    color: #333;
    letter-spacing: 1.3px;
    margin-bottom: 80px;
}

.guide_wrap{
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* 關鍵修改：將卡片改為 Flex 垂直排版，確保內容自動撐開、圖片完美對齊 */
.guide_card{
    position: relative;
    background: #fff;
    border-radius: 25px;
    width: 100%;
    max-width: 400px;
    padding: 70px 40px 35px;
    overflow: visible; /* 改為 visible 讓頂部 step 標籤微凸出更立體 */
    display: flex;
    flex-direction: column; /* 垂直流向 */
    box-shadow: 0 10px 30px rgba(17, 217, 201, 0.08); /* 柔和的質感陰影 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(17, 217, 201, 0.15);
}

/* 頂部 STEP 標籤亮點設計 */
.guide_step{
    position: absolute;
    top: -15px; /* 稍微往上浮出卡片頂端，增加設計感 */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1cb0b8, #11d9c9); /* 漸層背景呼應主題光流 */
    color: #fff;
    font-size: clamp(13px, 1.3vw, 18px);
    font-weight: 800;
    letter-spacing: 2px;
    width: 130px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 21px; /* 改成漂亮的膠囊圓角按鈕風 */
    box-shadow: 0 4px 12px rgba(17, 217, 201, 0.35);
}

/* 文字區塊：給予固定的最小高度或彈性空間，確保對齊 */
.guide_txt{
    color: #4a4a4a;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    flex-grow: 1; /* 自動填滿剩餘空間，推開下方圖片 */
}

.guide_txt em{
    color: #F8524C;
    font-style: normal;
    font-weight: 800;
}

/* 圖片區塊：固定貼齊底部 */
.guide_pic{
    margin-top: auto; /* 靠 Flex 自動對齊到底部 */
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.guide_pic img{
    width: 100%;
    display: block;
}

/*=================================
優惠指南-手機版
=================================*/
@media screen and (max-width:767px){
    .guide_section{
        padding: 50px 0;
    }
    .guide_title{
        font-size: 28px;
        margin-bottom: 35px;
    }
    .guide_wrap{
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 15px;
        overflow-x: auto;
        padding: 15px 15px 25px; /* 上方留點空間給浮出的 step 標籤 */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .guide_wrap::-webkit-scrollbar{
        display: none;
    }

    .guide_card{
        flex: 0 0 75vw;
        width: 75vw;
        min-width: 75vw;
        max-width: none;
        scroll-snap-align: start;
        padding: 50px 20px 25px;
    }

    .guide_step{
        top: -12px;
        width: 120px;
        height: 38px;
        font-size: 15px;
        border-radius: 19px;
    }

    .guide_txt{
        min-height: auto; /* 手機版依實際文字流動 */
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .guide_pic{
        border-radius: 12px;
    }
}


/*=================================
注意事項
=================================*/
.notice_section{
    padding: 60px 0;
    background: #f5f5f5;
}
.notice_section .container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.notice_box{
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* 摺疊選單主體 */
.notice_toggle {
    width: 100%;
}

/* 點擊標題列 */
.notice_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none; /* 移除瀏覽器預設符號 */
    color: #333;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 700;
    letter-spacing: 1.8px;
    user-select: none;
    transition: color 0.3s ease;
}

/* 隱除 Chrome / Safari 預設的 details 標記 */
.notice_title::-webkit-details-marker {
    display: none;
}

.notice_title:hover {
    color: #11b1a8;
}

/* 右側精緻的「加減號」圖示容器 */
.toggle_icon {
    position: relative;
    width: 32px;
    height: 32px;
    background: #f0f7f6; /* 給個淡淡的圓形底色，提升質感 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* 橫線（永遠存在） */
.toggle_icon::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: background 0.3s ease;
}

/* 直線（展開時會旋轉變成減號） */
.toggle_icon::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 14px;
    background: #333;
    border-radius: 1px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.notice_title:hover .toggle_icon {
    background: #11b1a8;
}
.notice_title:hover .toggle_icon::before,
.notice_title:hover .toggle_icon::after {
    background: #fff;
}

/* 當 details 處於 open（展開）狀態時：直線旋轉 90 度與橫線重合，變成「－」減號 */
.notice_toggle[open] .toggle_icon::after {
    transform: rotate(90deg);
}

/* 內容區塊與展開動畫 */
.notice_content{
    max-width: 1200px;
    margin-top: 40px; 
    animation: fadeInContent 0.4s ease forwards;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notice_content h3{
    color: #11b1a8;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1.3px;
}

.notice_content ol{
    padding-left: 30px;
    list-style-type: decimal;
}

.notice_content li{
    color: #333;
    font-size: clamp(14px, 1.15vw, 20px);
    line-height: 1.8;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
    text-align: justify;
}

.notice_content li:last-child{
    margin-bottom: 0;
}

.notice_content a{
    color: #244dff;
    text-decoration: underline;
}

/*=================================
手機版
=================================*/
@media screen and (max-width: 767px){
    .notice_section{
        padding: 50px 0;
    }
    .notice_box{
        border-radius: 20px;
        padding: 30px 20px;
    }
    .notice_content {
        margin-top: 25px;
    }
    .notice_content h3{
        line-height: 1.5;
        margin-bottom: 15px;
    }
    .notice_content ol{
        padding-left: 20px;
    }
    .notice_content li{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
    }
}