/*
 * XFastest Canonical Portal CSS
 * Version 2.6.11-R1 / 2026-08-16
 * REVIEW / INTERVIEW / ON SALE / TRENDS / EVENTS / AWARD / CHOICE / RELEASE
 * plus second/third/fourth-region layouts and final title hover behavior.
 */

.xf-f100-module {
    position: relative;
    width: 1200px;
    margin: 0 auto 18px;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(18,33,52,.05);
    transition: border-color .20s ease, box-shadow .20s ease;
}

.xf-f100-more-btn,
.xf-f100-more-btn:visited {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 20px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 25px;
    padding: 0 9px 0 10px;
    border: 1px solid rgba(242,108,30,.78);
    border-radius: 13px;
    background: #f26c1e;
    color: #fff !important;
    font-family: "Segoe UI",Arial,"Microsoft JhengHei",sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 25px;
    letter-spacing: .08em;
    text-decoration: none !important;
    box-shadow: 0 2px 7px rgba(18,33,52,.07),
        0 0 0 0 rgba(242,108,30,0);
    transition: color .18s ease,
        background-color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.xf-f100-more-btn span {
    position: relative;
    top: -1px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
}

.xf-f100-more-btn:hover {
    border-color: #ff8a3d;
    background: #ff7a22;
    color: #fff !important;
    transform: translateY(-50%) scale(1.035);
    box-shadow: 0 3px 10px rgba(242,108,30,.26),
        0 0 0 4px rgba(242,108,30,.13),
        0 0 18px rgba(242,108,30,.28);
}

.xf-f100-feature-layout {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    align-items: start;
}

.xf-f100-card-main {
    grid-column: span 3;
    min-width: 0;
}

.xf-f100-feature-side {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.xf-f100-bottom-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    margin: 14px 0 0;
}

.xf-f100-card,
.xf-f100-card:visited {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 11px;
    background: #fff;
    color: #152338 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 13px rgba(18,33,52,.05);
    transition: transform .20s ease,
        box-shadow .20s ease,
        border-color .20s ease;
}

.xf-f100-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,108,30,.62);
    box-shadow: 0 8px 22px rgba(18,33,52,.12),
        0 0 0 2px rgba(242,108,30,.10),
        0 0 18px rgba(242,108,30,.16);
}

.xf-f100-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background: #edf1f5;
}

.xf-f100-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .32s cubic-bezier(.2,.7,.2,1),
        filter .32s ease;
}

.xf-f100-card:hover .xf-f100-image img {
    transform: scale(1.045);
    filter: brightness(1.035);
}

.xf-f100-info {
    display: block;
    box-sizing: border-box;
    background: #fff;
}

.xf-f100-card-side .xf-f100-info,
.xf-f100-card-small .xf-f100-info {
    height: 76px;
    padding: 9px 10px 10px;
}

.xf-f100-card-side .xf-f100-subject,
.xf-f100-card-small .xf-f100-subject {
    display: -webkit-box;
    height: 54px;
    overflow: hidden;
    color: #17263a;
    font-family: "Microsoft JhengHei","Segoe UI",Arial,sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.xf-f100-card-main .xf-f100-info {
    height: 44px;
    padding: 0 13px;
    display: flex;
    align-items: center;
}

.xf-f100-card-main .xf-f100-subject {
    display: -webkit-box;
    width: 100%;
    height: 44px;
    overflow: hidden;
    color: #17263a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 1.3em;
    font-weight: 700;
    line-height: 22px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 1220px) {
    .xf-f100-module {
        width: calc(100% - 20px);
        overflow-x: auto;
    }

    .xf-f100-feature-layout,
    .xf-f100-bottom-grid {
        min-width: 1168px;
    }

    .xf-adgrid-v243 {
        width: calc(100% - 20px);
        overflow-x: auto;
    }

    .xf-adgrid3-v253 {
        width: calc(100% - 20px);
        overflow-x: auto;
    }

    .xf-block4-v265 {
        width: calc(100% - 20px);
    }
}

.xf-f100-module:hover {
    border-color: rgba(242,108,30,.18);
    box-shadow: 0 7px 24px rgba(18,33,52,.06),
        0 0 0 1px rgba(242,108,30,.035);
}

.xf-portal-top-diy1 {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#page_contentbox .xf-f100-module {
    margin-top: 0 !important;
}

.xf-f100-image .xf-f100-date {
    top: auto !important;
    left: auto !important;
    position: absolute;
    z-index: 4;
    right: 8px !important;
    bottom: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 8px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 11px;
    background: rgba(10,16,24,.10);
    color: rgba(255,255,255,.94);
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 10px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,.28);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-sizing: border-box;
    pointer-events: none;
}

.xf-f100-card-main .xf-f100-image .xf-f100-date {
    top: auto !important;
    left: auto !important;
    top: auto !important;
    left: auto !important;
    right: 10px !important;
    bottom: 10px !important;
    height: 24px;
    padding: 0 9px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 24px;
}

.xf-f100-section-button,
.xf-f100-section-button:visited {
    position: absolute;
    z-index: 24;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 13px 0 14px;
    border: 1px solid #f26c1e;
    border-radius: 17px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 34px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.22),
        0 0 0 0 rgba(242,108,30,0);
    transition: transform .18s ease,
        background-color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.xf-f100-section-button:hover {
    transform: translateY(-50%) translateY(-2px) scale(1.025);
    border-color: #ff934d;
    background: #ff7b24;
    box-shadow: 0 6px 16px rgba(242,108,30,.30),
        0 0 0 4px rgba(242,108,30,.11),
        0 0 21px rgba(242,108,30,.23);
}

.xf-f100-section-title-zh {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.xf-f100-section-title-en {
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
}

.xf-f100-section-arrow {
    position: relative;
    top: -1px;
    color: #fff;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: transform .18s ease;
}

.xf-f100-section-button:hover .xf-f100-section-arrow {
    transform: translateX(3px);
}

.xf-f100-module > .xf-f100-more-btn {
    display: none !important;
}

.xf-adgrid-v243 {
    position: relative;
    display: grid;
    grid-template-columns: 850px 300px;
    gap: 16px;
    align-items: start;
    width: 1200px;
    margin: 12px auto 20px;
    padding: 16px;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(18,33,52,.04);
}

.xf-adgrid-left,
.xf-adgrid-right {
    min-width: 0;
}

.xf-adgrid-left {
    width: 850px;
}

.xf-adgrid-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
}

.xf-adslot {
    position: relative;
    display: none;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    box-sizing: border-box;
}

.xf-adslot.xf-adslot-delivered {
    display: block;
}

.xf-adslot-850,
.xf-adslot-850 .xf-adslot-content {
    width: 850px;
    height: 90px;
}

.xf-adslot-300,
.xf-adslot-300 .xf-adslot-content {
    width: 300px;
    height: 100px;
}

.xf-adslot-content {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.xf-adslot-content > div,
.xf-adslot-content > a {
    margin: 0 !important;
    padding: 0 !important;
}

.xf-adslot-850 img,
.xf-adslot-850 iframe,
.xf-adslot-850 object,
.xf-adslot-850 embed {
    display: block !important;
    width: 850px !important;
    max-width: 850px !important;
    height: 90px !important;
    max-height: 90px !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: contain;
}

.xf-adslot-300 img,
.xf-adslot-300 iframe,
.xf-adslot-300 object,
.xf-adslot-300 embed {
    display: block !important;
    width: 300px !important;
    max-width: 300px !important;
    height: 100px !important;
    max-height: 100px !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: contain;
}

.xf-adgrid-left.xf-adgrid-column-empty,
.xf-adgrid-right.xf-adgrid-column-empty {
    min-height: 0;
}

.xf-interview-module {
    position: relative;
    width: 850px;
    margin: 24px 0 0;
    padding: 26px 14px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18,33,52,.05);
}

.xf-interview-section-button,
.xf-interview-section-button:visited {
    position: absolute;
    z-index: 8;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 13px 0 14px;
    border: 1px solid #f26c1e;
    border-radius: 17px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 34px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.22),
        0 0 0 0 rgba(242,108,30,0);
    transition: transform .18s ease,
        background-color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.xf-interview-section-button:hover {
    transform: translateY(-50%) translateY(-2px) scale(1.025);
    border-color: #ff934d;
    background: #ff7b24;
    box-shadow: 0 6px 16px rgba(242,108,30,.30),
        0 0 0 4px rgba(242,108,30,.11),
        0 0 21px rgba(242,108,30,.23);
}

.xf-interview-title-zh {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.xf-interview-title-en {
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
}

.xf-interview-button-arrow {
    position: relative;
    top: -1px;
    color: #fff;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: transform .18s ease;
}

.xf-interview-section-button:hover .xf-interview-button-arrow {
    transform: translateX(3px);
}

.xf-interview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.xf-interview-card,
.xf-interview-card:visited {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 11px;
    background: #fff;
    color: #17263a !important;
    text-decoration: none !important;
    box-shadow: 0 3px 11px rgba(18,33,52,.045);
    transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
}

.xf-interview-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,108,30,.52);
    box-shadow: 0 8px 18px rgba(18,33,52,.09),
        0 0 0 2px rgba(242,108,30,.07),
        0 0 16px rgba(242,108,30,.10);
}

.xf-interview-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background: #edf1f5;
}

.xf-interview-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .34s cubic-bezier(.2,.7,.2,1), filter .34s ease;
}

.xf-interview-card:hover .xf-interview-image img {
    transform: scale(1.045);
    filter: brightness(1.035);
}

.xf-interview-date {
    position: absolute;
    z-index: 3;
    right: 7px;
    bottom: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 7px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(8,14,22,.36);
    color: rgba(255,255,255,.96);
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 9px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.xf-interview-info {
    display: block;
    height: 64px;
    padding: 9px 10px 10px;
    box-sizing: border-box;
    background: #fff;
}

.xf-interview-subject {
    display: -webkit-box;
    height: 42px;
    overflow: hidden;
    color: #17263a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 21px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-onsale-module {
    position: relative;
    width: 850px;
    margin: 16px 0 0;
    padding: 18px 14px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18,33,52,.05);
}

.xf-onsale-title-button,
.xf-onsale-title-button:visited {
    position: absolute;
    z-index: 8;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 30px;
    padding: 0 11px 0 12px;
    border: 1px solid #f26c1e;
    border-radius: 15px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.20);
    transition: transform .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.xf-onsale-title-button:hover {
    transform: translateY(-55%) scale(1.025);
    background: #ff7a22;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(242,108,30,.27),
        0 0 0 4px rgba(242,108,30,.10),
        0 0 19px rgba(242,108,30,.20);
}

.xf-onsale-title-zh {
    font-size: 14px;
    font-weight: 700;
}

.xf-onsale-title-en {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    opacity: .86;
}

.xf-onsale-arrow {
    position: relative;
    left: 0;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: left .18s ease;
}

.xf-onsale-title-button:hover .xf-onsale-arrow {
    left: 3px;
}

.xf-onsale-layout {
    display: grid;
    grid-template-columns: 548px 260px;
    gap: 14px;
    width: 100%;
    align-items: start;
}

.xf-onsale-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 267px);
    gap: 14px;
    width: 548px;
}

.xf-onsale-card,
.xf-onsale-card:visited {
    display: block;
    width: 267px;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 11px;
    background: #fff;
    color: #17263a !important;
    text-decoration: none !important;
    box-shadow: 0 3px 11px rgba(18,33,52,.045);
    transition: transform .20s ease,
        border-color .20s ease,
        box-shadow .20s ease;
}

.xf-onsale-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,108,30,.50);
    box-shadow: 0 8px 18px rgba(18,33,52,.09),
        0 0 0 2px rgba(242,108,30,.07),
        0 0 16px rgba(242,108,30,.10);
}

.xf-onsale-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background: #edf1f5;
}

.xf-onsale-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .34s cubic-bezier(.2,.7,.2,1),
        filter .34s ease;
}

.xf-onsale-card:hover .xf-onsale-image img {
    transform: scale(1.045);
    filter: brightness(1.035);
}

.xf-onsale-card-info {
    display: block;
    height: 58px;
    padding: 9px 10px 10px;
    box-sizing: border-box;
    background: #fff;
}

.xf-onsale-card-title {
    display: -webkit-box;
    height: 38px;
    overflow: hidden;
    color: #17263a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-onsale-text-panel {
    width: 260px;
    min-height: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 11px;
    background: #fafbfd;
    overflow: hidden;
}

.xf-onsale-text-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.xf-onsale-text-item,
.xf-onsale-text-item:visited {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-height: 55px;
    padding: 10px 11px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(24,39,58,.07);
    color: #26374b !important;
    text-decoration: none !important;
    transition: background-color .18s ease,
        color .18s ease;
}

.xf-onsale-text-item:last-child {
    border-bottom: 0;
}

.xf-onsale-text-item:hover {
    background: rgba(242,108,30,.065);
    color: #d85d17 !important;
}

.xf-onsale-text-title {
    display: -webkit-box;
    flex: 1 1 auto;
    overflow: hidden;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-onsale-cart {
    position: relative;
    display: inline-block;
    flex: 0 0 18px;
    width: 18px;
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    min-height: 18px;
    max-height: 18px;
    margin: 1px 1px 0 0;
    padding: 0;
    color: #f26c1e;
    vertical-align: top;
    line-height: 18px;
    box-sizing: border-box;
    overflow: visible;
    transform: none;
    transition: transform .18s ease, color .18s ease;
}

.xf-onsale-cart::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 10px;
    height: 7px;
    border: 1.5px solid currentColor;
    border-radius: 1px 1px 2px 2px;
    box-sizing: border-box;
    transform: skewX(-7deg);
}

.xf-onsale-cart::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border-top: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    border-radius: 2px 0 0 0;
    background: radial-gradient(circle at 6px 13px, currentColor 0 1.5px, transparent 1.7px),
        radial-gradient(circle at 13px 13px, currentColor 0 1.5px, transparent 1.7px);
}

.xf-onsale-text-item:hover .xf-onsale-cart {
    color: #ff7a22;
    transform: scale(1.08);
}

.xf-adslot-850-pos2 {
    width: 850px;
    height: 90px;
    margin: 14px 0 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.xf-adgrid3-v253 {
    display: grid;
    grid-template-columns: 850px 300px;
    gap: 16px;
    width: 1200px;
    margin: 16px auto 20px;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(18,33,52,.05);
    align-items: start;
}

.xf-adgrid3-left {
    width: 850px;
    min-height: 850px;
    box-sizing: border-box;
}

.xf-adgrid3-left-inner {
    width: 850px;
    min-height: 850px;
    box-sizing: border-box;
}

.xf-adgrid3-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    min-height: 0;
}

.xf-adgrid3-slot {
    position: relative;
    display: none;
    width: 300px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    background: transparent;
}

.xf-adgrid3-slot.xf-adgrid3-delivered {
    display: block;
}

.xf-adgrid3-slot-300x100 {
    height: 100px;
}

.xf-adgrid3-slot-300x250 {
    height: 250px;
}

.xf-adgrid3-content,
.xf-adgrid3-content > div,
.xf-adgrid3-content > a {
    display: block !important;
    width: 300px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
}

.xf-adgrid3-slot-300x100 .xf-adgrid3-content,
.xf-adgrid3-slot-300x100 .xf-adgrid3-content > div,
.xf-adgrid3-slot-300x100 .xf-adgrid3-content > a,
.xf-adgrid3-slot-300x100 img,
.xf-adgrid3-slot-300x100 iframe,
.xf-adgrid3-slot-300x100 object,
.xf-adgrid3-slot-300x100 embed {
    width: 300px !important;
    height: 100px !important;
    max-width: 300px !important;
    max-height: 100px !important;
    border: 0 !important;
}

.xf-adgrid3-slot-300x250 .xf-adgrid3-content,
.xf-adgrid3-slot-300x250 .xf-adgrid3-content > div,
.xf-adgrid3-slot-300x250 .xf-adgrid3-content > a,
.xf-adgrid3-slot-300x250 img,
.xf-adgrid3-slot-300x250 iframe,
.xf-adgrid3-slot-300x250 object,
.xf-adgrid3-slot-300x250 embed {
    width: 300px !important;
    height: 250px !important;
    max-width: 300px !important;
    max-height: 250px !important;
    border: 0 !important;
}

.xf-adgrid3-right.xf-adgrid3-empty {
    display: none !important;
}

.xf-trends-module {
    position: relative;
    width: 850px;
    margin: 0;
    padding: 18px 14px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18,33,52,.05);
}

.xf-trends-title-button,
.xf-trends-title-button:visited {
    position: absolute;
    z-index: 8;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 30px;
    padding: 0 11px 0 12px;
    border: 1px solid #f26c1e;
    border-radius: 15px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.20);
    transition: transform .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.xf-trends-title-button:hover {
    transform: translateY(-55%) scale(1.025);
    background: #ff7a22;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(242,108,30,.27),
        0 0 0 4px rgba(242,108,30,.10),
        0 0 19px rgba(242,108,30,.20);
}

.xf-trends-title-zh {
    font-size: 14px;
    font-weight: 700;
}

.xf-trends-title-en {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .86;
}

.xf-trends-arrow {
    position: relative;
    left: 0;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: left .18s ease;
}

.xf-trends-title-button:hover .xf-trends-arrow {
    left: 3px;
}

.xf-trends-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.xf-trends-card,
.xf-trends-card:visited {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 11px;
    background: #fff;
    color: #17263a !important;
    text-decoration: none !important;
    box-shadow: 0 3px 11px rgba(18,33,52,.045);
    transition: transform .20s ease,
        border-color .20s ease,
        box-shadow .20s ease;
}

.xf-trends-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,108,30,.52);
    box-shadow: 0 8px 18px rgba(18,33,52,.09),
        0 0 0 2px rgba(242,108,30,.07),
        0 0 16px rgba(242,108,30,.10);
}

.xf-trends-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background: #edf1f5;
}

.xf-trends-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .34s cubic-bezier(.2,.7,.2,1),
        filter .34s ease;
}

.xf-trends-card:hover .xf-trends-image img {
    transform: scale(1.045);
    filter: brightness(1.035);
}

.xf-trends-date {
    position: absolute;
    z-index: 3;
    right: 8px;
    bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 21px;
    padding: 0 7px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 11px;
    background: rgba(8,14,22,.30);
    color: rgba(255,255,255,.96);
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 10px;
    font-weight: 500;
    line-height: 21px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.xf-trends-info {
    display: block;
    height: 62px;
    padding: 9px 10px 10px;
    box-sizing: border-box;
    background: #fff;
}

.xf-trends-subject {
    display: -webkit-box;
    height: 40px;
    overflow: hidden;
    color: #17263a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-third-850-pos3 {
    display: none;
    width: 850px;
    height: 90px;
    margin: 14px 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    background: transparent;
}

.xf-third-850-pos3.xf-third-850-pos3-delivered {
    display: block;
}

.xf-third-850-pos3-content,
.xf-third-850-pos3-content > div,
.xf-third-850-pos3-content > a {
    width: 850px !important;
    height: 90px !important;
    max-width: 850px !important;
    max-height: 90px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.xf-third-850-pos3-content img,
.xf-third-850-pos3-content iframe,
.xf-third-850-pos3-content object,
.xf-third-850-pos3-content embed {
    display: block !important;
    width: 850px !important;
    height: 90px !important;
    max-width: 850px !important;
    max-height: 90px !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: contain;
}

.xf-events-module {
    position: relative;
    width: 850px;
    margin: 16px 0 0;
    padding: 18px 14px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18,33,52,.05);
}

.xf-events-title-button,
.xf-events-title-button:visited {
    position: absolute;
    z-index: 8;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 30px;
    padding: 0 11px 0 12px;
    border: 1px solid #f26c1e;
    border-radius: 15px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.20);
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.xf-events-title-button:hover {
    transform: translateY(-55%) scale(1.025);
    background: #ff7a22;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(242,108,30,.27),
        0 0 0 4px rgba(242,108,30,.10),
        0 0 19px rgba(242,108,30,.20);
}

.xf-events-title-zh {
    font-size: 14px;
    font-weight: 700;
}

.xf-events-title-en {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .86;
}

.xf-events-arrow {
    position: relative;
    left: 0;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: left .18s ease;
}

.xf-events-title-button:hover .xf-events-arrow {
    left: 3px;
}

.xf-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.xf-events-card,
.xf-events-card:visited {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 11px;
    background: #fff;
    color: #17263a !important;
    text-decoration: none !important;
    box-shadow: 0 3px 11px rgba(18,33,52,.045);
    transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
}

.xf-events-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,108,30,.52);
    box-shadow: 0 8px 18px rgba(18,33,52,.09),
        0 0 0 2px rgba(242,108,30,.07),
        0 0 16px rgba(242,108,30,.10);
}

.xf-events-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background: #edf1f5;
}

.xf-events-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .34s cubic-bezier(.2,.7,.2,1), filter .34s ease;
}

.xf-events-card:hover .xf-events-image img {
    transform: scale(1.045);
    filter: brightness(1.035);
}

.xf-events-date {
    position: absolute;
    z-index: 3;
    right: 8px;
    bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 21px;
    padding: 0 7px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 11px;
    background: rgba(8,14,22,.30);
    color: rgba(255,255,255,.96);
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 10px;
    font-weight: 500;
    line-height: 21px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.xf-events-info {
    display: block;
    height: 62px;
    padding: 9px 10px 10px;
    box-sizing: border-box;
    background: #fff;
}

.xf-events-subject {
    display: -webkit-box;
    height: 40px;
    overflow: hidden;
    color: #17263a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-award-module {
    position: relative;
    width: 300px;
    margin: 18px 0 0;
    padding: 21px 9px 9px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18,33,52,.05);
}

.xf-award-title-button,
.xf-award-title-button:visited {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 12px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 29px;
    padding: 0 10px 0 11px;
    border: 1px solid #f26c1e;
    border-radius: 15px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 29px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.20);
    transition: transform .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.xf-award-title-button:hover {
    transform: translateY(-55%) scale(1.025);
    background: #ff7a22;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(242,108,30,.27),
        0 0 0 4px rgba(242,108,30,.10),
        0 0 19px rgba(242,108,30,.20);
}

.xf-award-title-zh {
    font-size: 13px;
    font-weight: 700;
}

.xf-award-title-en {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .87;
}

.xf-award-title-arrow {
    position: relative;
    left: 0;
    font-family: Arial,sans-serif;
    font-size: 17px;
    font-weight: 700;
    transition: left .18s ease;
}

.xf-award-title-button:hover .xf-award-title-arrow {
    left: 3px;
}

.xf-award-download,
.xf-award-download:visited {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 12px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #d5222e;
    border-radius: 50%;
    background: #d5222e;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(213,34,46,.22);
    transition: transform .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.xf-award-download:hover {
    transform: translateY(-55%) scale(1.06);
    background: #ef3340;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(213,34,46,.30),
        0 0 0 4px rgba(213,34,46,.10),
        0 0 19px rgba(213,34,46,.22);
}

.xf-award-download-tip {
    position: absolute;
    right: 37px;
    top: 50%;
    display: block;
    width: max-content;
    max-width: 90px;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(45,18,22,.94);
    color: #fff;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(4px);
    transition: opacity .16s ease,
        visibility .16s ease,
        transform .16s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.16);
}

.xf-award-download:hover .xf-award-download-tip,
.xf-award-download:focus .xf-award-download-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.xf-award-download-icon {
    position: relative;
    display: block;
    width: 14px;
    height: 15px;
    border-bottom: 2px solid #fff;
    box-sizing: border-box;
}

.xf-award-download-icon::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 3px;
    height: 9px;
    border-radius: 2px;
    background: #fff;
}

.xf-award-download-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    width: 7px;
    height: 7px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.xf-award-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.xf-award-item,
.xf-award-item:visited {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 68px;
    padding: 4px 5px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.06);
    border-radius: 9px;
    background: #fff;
    color: #1b293d !important;
    text-decoration: none !important;
    transition: transform .16s ease,
        border-color .16s ease,
        box-shadow .16s ease,
        background-color .16s ease;
}

.xf-award-item:hover {
    transform: translateY(-1px);
    border-color: rgba(213,34,46,.24);
    background: #fffafa;
    box-shadow: 0 4px 11px rgba(18,33,52,.06),
        0 0 0 2px rgba(213,34,46,.04);
}

.xf-award-seal {
    display: flex;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
    background: #f6f7f9;
}

.xf-award-seal img {
    display: block;
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: contain;
    object-position: center;
}

.xf-award-copy {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.xf-award-name {
    display: block;
    overflow: hidden;
    color: #d5222e;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 11px;
    font-weight: 800;
    line-height: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.xf-award-subject {
    display: -webkit-box;
    overflow: hidden;
    color: #27364a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 11px;
    font-weight: 600;
    line-height: 15px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-block4-v265 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    width: 1200px;
    margin: 18px auto 20px;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(18,33,52,.05);
    align-items: start;
}

.xf-block4-left,
.xf-block4-right {
    min-width: 0;
    box-sizing: border-box;
}

.xf-block4-right {
    min-height: 1px;
}

.xf-choice-module {
    position: relative;
    width: 100%;
    padding: 20px 12px 12px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18,33,52,.045);
}

.xf-choice-title-button,
.xf-choice-title-button:visited {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 14px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 30px;
    padding: 0 11px 0 12px;
    border: 1px solid #f26c1e;
    border-radius: 15px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.20);
    transition: transform .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.xf-choice-title-button:hover {
    transform: translateY(-55%) scale(1.025);
    background: #ff7a22;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(242,108,30,.27),
        0 0 0 4px rgba(242,108,30,.10),
        0 0 19px rgba(242,108,30,.20);
}

.xf-choice-title-zh {
    font-size: 14px;
    font-weight: 700;
}

.xf-choice-title-en {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .87;
}

.xf-choice-title-arrow {
    position: relative;
    left: 0;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: left .18s ease;
}

.xf-choice-title-button:hover .xf-choice-title-arrow {
    left: 3px;
}

.xf-choice-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
}

.xf-choice-feature-card,
.xf-choice-feature-card:visited {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24,39,58,.075);
    border-radius: 10px;
    background: #fff;
    color: #17263a !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(18,33,52,.04);
    transition: transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.xf-choice-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,108,30,.48);
    box-shadow: 0 7px 16px rgba(18,33,52,.08),
        0 0 0 2px rgba(242,108,30,.06),
        0 0 14px rgba(242,108,30,.09);
}

.xf-choice-feature-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background: #edf1f5;
}

.xf-choice-feature-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .32s cubic-bezier(.2,.7,.2,1),
        filter .32s ease;
}

.xf-choice-feature-card:hover .xf-choice-feature-image img {
    transform: scale(1.045);
    filter: brightness(1.035);
}

.xf-choice-feature-subject {
    display: -webkit-box;
    height: 60px;
    padding: 7px 8px;
    box-sizing: border-box;
    overflow: hidden;
    color: #17263a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-choice-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 8px;
    width: 100%;
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid rgba(24,39,58,.075);
}

.xf-choice-list-item,
.xf-choice-list-item:visited {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    height: 31px;
    padding: 0 7px;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #28374a !important;
    text-decoration: none !important;
    transition: background-color .16s ease,
        border-color .16s ease,
        transform .16s ease;
}

.xf-choice-list-item:hover {
    transform: translateX(2px);
    border-color: rgba(242,108,30,.13);
    background: rgba(242,108,30,.045);
    color: #17263a !important;
}

.xf-choice-pen {
    position: relative;
    display: block;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    transform: rotate(-42deg);
}

.xf-choice-pen::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border-radius: 1px 1px 0 0;
    background: #f26c1e;
}

.xf-choice-pen::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 0;
    height: 0;
    border-left: 2.5px solid transparent;
    border-right: 2.5px solid transparent;
    border-top: 4px solid #f26c1e;
}

.xf-choice-list-item:hover .xf-choice-pen::before {
    background: #ff7a22;
}

.xf-choice-list-item:hover .xf-choice-pen::after {
    border-top-color: #ff7a22;
}

.xf-choice-list-subject {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.xf-release-module {
    position: relative;
    width: 100%;
    padding: 20px 12px 12px;
    box-sizing: border-box;
    border: 1px solid rgba(24,39,58,.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18,33,52,.045);
}

.xf-release-title-button,
.xf-release-title-button:visited {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 14px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 30px;
    padding: 0 11px 0 12px;
    border: 1px solid #f26c1e;
    border-radius: 15px;
    background: #f26c1e;
    color: #fff !important;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    line-height: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 11px rgba(242,108,30,.20);
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.xf-release-title-button:hover {
    transform: translateY(-55%) scale(1.025);
    background: #ff7a22;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(242,108,30,.27),
        0 0 0 4px rgba(242,108,30,.10),
        0 0 19px rgba(242,108,30,.20);
}

.xf-release-title-zh {
    font-size: 14px;
    font-weight: 700;
}

.xf-release-title-en {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .87;
}

.xf-release-title-arrow {
    position: relative;
    left: 0;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: left .18s ease;
}

.xf-release-title-button:hover .xf-release-title-arrow {
    left: 3px;
}

.xf-release-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
}

.xf-release-feature-card,
.xf-release-feature-card:visited {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24,39,58,.075);
    border-radius: 10px;
    background: #fff;
    color: #17263a !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(18,33,52,.04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.xf-release-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,108,30,.48);
    box-shadow: 0 7px 16px rgba(18,33,52,.08),
        0 0 0 2px rgba(242,108,30,.06),
        0 0 14px rgba(242,108,30,.09);
}

.xf-release-feature-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    background: #edf1f5;
}

.xf-release-feature-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .32s cubic-bezier(.2,.7,.2,1), filter .32s ease;
}

.xf-release-feature-card:hover .xf-release-feature-image img {
    transform: scale(1.045);
    filter: brightness(1.035);
}

.xf-release-feature-subject {
    display: -webkit-box;
    height: 60px;
    padding: 7px 8px;
    box-sizing: border-box;
    overflow: hidden;
    color: #17263a;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xf-release-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 8px;
    width: 100%;
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid rgba(24,39,58,.075);
}

.xf-release-list-item,
.xf-release-list-item:visited {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    height: 31px;
    padding: 0 7px;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #28374a !important;
    text-decoration: none !important;
    transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.xf-release-list-item:hover {
    transform: translateX(2px);
    border-color: rgba(242,108,30,.13);
    background: rgba(242,108,30,.045);
    color: #17263a !important;
}

.xf-release-mail {
    position: relative;
    display: block;
    flex: 0 0 15px;
    width: 15px;
    height: 11px;
    box-sizing: border-box;
    border: 2px solid #f26c1e;
    border-radius: 2px;
    background: transparent;
    transition: border-color .16s ease,
        background-color .16s ease;
}

.xf-release-mail::before,
.xf-release-mail::after {
    content: "";
    position: absolute;
    top: 1px;
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: #f26c1e;
    transform-origin: center;
    transition: background-color .16s ease;
}

.xf-release-mail::before {
    left: 0;
    transform: rotate(32deg);
}

.xf-release-mail::after {
    right: 0;
    transform: rotate(-32deg);
}

.xf-release-list-item:hover .xf-release-mail {
    border-color: #ff7a22;
}

.xf-release-list-item:hover .xf-release-mail::before,
.xf-release-list-item:hover .xf-release-mail::after {
    background: #ff7a22;
}

.xf-release-list-subject {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.xf-f100-subject,
.xf-interview-subject,
.xf-onsale-card-title,
.xf-onsale-text-title,
.xf-trends-subject,
.xf-events-subject,
.xf-award-subject,
.xf-choice-feature-subject,
.xf-choice-list-subject,
.xf-release-feature-subject,
.xf-release-list-subject {
    transition: color .18s ease;
}

a:hover .xf-f100-subject,
a:hover .xf-interview-subject,
a:hover .xf-onsale-card-title,
a:hover .xf-onsale-text-title,
a:hover .xf-trends-subject,
a:hover .xf-events-subject,
a:hover .xf-award-subject,
a:hover .xf-choice-feature-subject,
a:hover .xf-choice-list-subject,
a:hover .xf-release-feature-subject,
a:hover .xf-release-list-subject {
    color: #f26c1e !important;
}

/* XFASTEST_HOMEPAGE_EVENTS_HF83_R1 — Activity plugin feed metadata */
.xf-events-info {
    height: 84px;
    padding: 9px 10px 8px;
}
.xf-events-subject { height: 40px; }
.xf-events-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    min-width: 0;
    margin-top: 5px;
    white-space: nowrap;
}
.xf-events-category,
.xf-events-status {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    height: 18px;
    box-sizing: border-box;
    padding: 0 6px;
    border-radius: 9px;
    font-family: var(--xf-apple-font, "SF Pro TC","PingFang TC","Microsoft JhengHei",sans-serif);
    font-size: 9px;
    font-weight: 700;
    line-height: 18px;
}
.xf-events-category {
    max-width: 96px;
    overflow: hidden;
    border: 1px solid #ffd4ba;
    background: #fff4ec;
    color: #e86518;
    text-overflow: ellipsis;
}
.xf-events-status {
    gap: 4px;
    border: 1px solid #cfd3d7;
    background: #f3f4f5;
    color: #62686e;
}
.xf-events-status i {
    display: block;
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: currentColor;
}
.xf-events-status.is-active { border-color:#a8d8b7; background:#edf8f0; color:#247d46; }
.xf-events-status.is-upcoming { border-color:#e8cf82; background:#fff8df; color:#84630b; }
.xf-events-status.is-ended { border-color:#484e54; background:#484e54; color:#fff; }
