<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* å¿«è¨Š */
/* var */
#marquee {
    --marqueeHeight: 42px;
}
@media screen and (max-width: 960px) {
    #marquee {
        --marqueeHeight: 60px;
    }
}
#marquee {
    display: none;
    width: 100%;
    height: var(--marqueeHeight);
    background: #fff;
    border: 1px solid #bd0202;
    padding-right: 12px;
    margin-bottom: 12px;
    float: left;
    overflow: hidden;
    position: relative;
    /* å…¨ç«™çµ±ä¸€headerç‚º z-index:5; */
    z-index: 4; 
}
#index #marquee {
    max-width:940px;
}
#marquee::before {
    content: "";
    background:#bd0202;
    width: 60px;
    height: var(--marqueeHeight);
    -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
#marquee::after {
    content: "å¿«è¨Š";
    height: var(--marqueeHeight);
    line-height: var(--marqueeHeight);
    color:#fff;
    font-size: 16px;
    letter-spacing: 2px;
    position: absolute;
    left: 7px;
}
#marquee .marqueebox {
    flex: 1;
    vertical-align: middle;
    padding: 0 min(max(1%, 6px), 12px);
}
#marquee .marqueebox ul li {
    display: flex;
    align-items: center;
    height: var(--marqueeHeight);
    line-height: var(--marqueeHeight);
    overflow: hidden;
}
#marquee .marqueebox ul li span /*PR*/{
    font-size: 15px;
    color: #111;
    margin-left: 5px;
    display: inline-block;
}
#marquee .marqueebox ul li a {
    font-size: max(min(2vw, 25px),22px);
    font-family: 'Noto Sans TC', "å¾®è»Ÿæ­£é»‘é«”";
    font-weight: bold;
    color: #bd0202;
    overflow: hidden;
    /*é™åˆ¶ 1è¡Œ+â€¦*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}
#marquee .arrow {
    width: 25px;
    height: var(--marqueeHeight);
    background: url(../fonts/nav_arrow_red.svg) no-repeat center;
    background-size: 10px auto;
    cursor: pointer;
}
#marquee .arrow.up {
    transform: rotate(180deg);
}

/* RWD */
@media screen and (max-width: 1260px) {
    #index #marquee {
        max-width: initial;
    }
}
@media screen and (max-width:960px) {
    #marquee {
        background: #4b4b4b;
        border: none;
    }
    #marquee::before {
        width: max(min(4vw, 35px),26px);
        background: url(../fonts/a4e8e7fc0f5e4ff98554bc4416903b11.svg) no-repeat center;
        background-size: 10px 7.5px;
    }
}
@media screen and (max-width:828px) {
    #marquee .marqueebox ul li {
        line-height: 1.4;
    }
    #marquee .marqueebox ul li a {
        font-size: max(min(3vw, 20px),18px);
    }
}
@media screen and (max-width:700px) {
    #marquee .marqueebox ul li a{
        /*é™åˆ¶ 2è¡Œ+â€¦*/
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}
@media screen and (max-width:500px) {
    #marquee{
        padding-right: 1%;
    }
    #marquee .marqueebox ul li a {
        font-size: 18px;
    }
}</pre></body></html>