@charset "UTF-8";
/*!
 * * CSS Document
 * * $Subhead: 網站總樣式 $ 
 * * $Date: 2022/05 $ 
 * * */
/*!
 * * * Global - Variable (全域變數、函式)
 * */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Noto+Sans+TC:wght@300;400;500;700&display=swap");

:root {
    --w-container: 1450px;
    --w-container-gap: 25px;
    --gap: 15px;
    --tablet: 769px;
    --desktop: 960px + (2 * var(--gap));
    --widescreen: 1400px + (2 * var(--gap));
    --widescreen-enabled: true;
    --fullhd: 1600px + (2 * var(--gap));
    --fullhd-enabled: true;
    --breakpoints: ("mobile": ("until": var(--tablet)), "tablet": ("from": var(--tablet)), "tablet-only": ("from": var(--tablet), "until": var(--desktop)), "touch": ("from": var(--desktop)), "desktop": ("from": var(--desktop)), "desktop-only": ("from": var(--desktop), "until": var(--widescreen)), "until-widescreen": ("until": var(--widescreen)), "widescreen": ("from": var(--widescreen)), "widescreen-only": ("from": var(--widescreen), "until": var(--fullhd)), "until-fullhd": ("until": var(--fullhd)), "fullhd": ("from": var(--fullhd)));
    --black: #000;
    --white: #fff;
    --blue: #004298;
    --blue-dark: #033257;
    --blue-nav: #0069ba;
    --sky: #eaf4ff;
    --blue-f-bottom: #055999;
    --blue-f-mid: #0665ae;
    --blue-f-top: #1c7ec9;
    --blue-green: #2ab6ad;
    --yellow: #f9c902;
    --orange: #ff6d3b;
    --gray: #333;
    --gray-thin: #666;
    --gray-light: #999;
    --family-main: "Noto Sans TC", "Microsoft JhengHei UI", "Microsoft JhengHei", sans-serif;
    --family-deco: "Century Gothic", "Lato", "Noto Sans TC", "Microsoft JhengHei UI", "Microsoft JhengHei", sans-serif;
    --linear: cubic-bezier(0.250, 0.250, 0.750, 0.750);
    --ease: cubic-bezier(0.250, 0.100, 0.250, 1.000);
    --ease-in: cubic-bezier(0.420, 0.000, 1.000, 1.000);
    --ease-out: cubic-bezier(0.000, 0.000, 0.580, 1.000);
    --ease-in-out: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    --easeInQuad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
    --easeInCubic: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    --easeInQuart: cubic-bezier(0.895, 0.030, 0.685, 0.220);
    --easeInQuint: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    --easeInSine: cubic-bezier(0.470, 0.000, 0.745, 0.715);
    --easeInExpo: cubic-bezier(0.950, 0.050, 0.795, 0.035);
    --easeInCirc: cubic-bezier(0.600, 0.040, 0.980, 0.335);
    --easeInBack: cubic-bezier(0.600, -0.280, 0.735, 0.045);
    --easeOutQuad: cubic-bezier(0.250, 0.460, 0.450, 0.940);
    --easeOutCubic: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    --easeOutQuart: cubic-bezier(0.165, 0.840, 0.440, 1.000);
    --easeOutQuint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
    --easeOutSine: cubic-bezier(0.390, 0.575, 0.565, 1.000);
    --easeOutExpo: cubic-bezier(0.190, 1.000, 0.220, 1.000);
    --easeOutCirc: cubic-bezier(0.075, 0.820, 0.165, 1.000);
    --easeOutBack: cubic-bezier(0.175, 0.885, 0.320, 1.275);
    --easeInOutQuad: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    --easeInOutQuart: cubic-bezier(0.770, 0.000, 0.175, 1.000);
    --easeInOutQuint: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    --easeInOutSine: cubic-bezier(0.445, 0.050, 0.550, 0.950);
    --easeInOutExpo: cubic-bezier(1.000, 0.000, 0.000, 1.000);
    --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    --easeInOutBack: cubic-bezier(0.680, -0.550, 0.265, 1.550);
    --size-default: 17px !important;
    --size-context: 1em;
    --size-sm: 0.94117em;
    --size-lg: 1.0588em;
    --size-nav: 1.1176em;
    --size-kanban-lg: 2.5882em;
    --size-kanban-md: 1.294em;
    --size-kanban-sm: 1.1764em;
    --size-subhead-lg: 2.5294em;
    --size-subhead-md: 1.5294em;
    --size-subhead-sm: 1.0588em;
    --size-article-title: 2.1176em;
    --line-height-default: 2.11;
    --line-height-sm: 1.4;
    --line-height-md: 1.6;
    --line-height-ss: 1.2;
    --txt-right: right;
    --header-height: 120px;
    --nav-height: 70px;
    --btn-height: 60px;
}

[data-fontsize=s] {
    --size-default: 15px !important;
    --line-height-default: 1.5 !important;
    --line-height-sm: 1.3 !important;
    --header-height: 80px;
    --nav-height: 60px;
    --btn-height: 50px;
}

[data-fontsize=m] {
    --size-default: 17px !important;
}

[data-fontsize=l] {
    --size-default: 20px !important;
    --line-height-default: 1.8 !important;
    --line-height-sm: 1.3 !important;
}

@media (max-width: 1280px) {
    :root {
        --size-nav: 1.0588em;
        --size-kanban-lg: 2.1176em;
        --size-kanban-md: 1.1764em;
        --size-kanban-sm: 1.0588em;
        --size-subhead-lg: 2.1176em;
        --size-subhead-md: 1.2941em;
        --size-subhead-sm: 1.0588em;
        --size-article-title: 1.2941em;
        --header-height: 80px;
        --nav-height: 0px;
    }

    [data-fontsize=s] {
        --header-height: 60px;
        --nav-height: 0;
    }
}

@media (max-width: 839px) {
    :root {
        --btn-height: 45px;
    }

    [data-fontsize=s] {
        --btn-height: 45px;
    }
}

@media (max-width: 767px) {
    :root {
        --size-kanban-lg: 1.4705em;
        --size-kanban-md: 1.0588em;
        --size-kanban-sm: 1em;
    }
}

@media (max-width: 449px) {
    :root {
        --header-height: 60px;
    }

    [data-fontsize=s] {
        --header-height: 60px;
    }
}
/*! bulma.io v0.9.3 | MIT License | github.com/jgthms/bulma */
/*!
 * * * Global - Reset (重置樣式)
 * */
/* === Customized RESET === */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(248, 151, 0, 0.25);
}

    *:before, *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

:focus-visible, :focus {
    outline: -webkit-focus-ring-color dashed 3px;
    outline-color: #ff6d3b;
    outline-style: dashed;
    outline-width: 3px;
    outline: 3px dashed #ff6d3b;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
    clear: both;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.disabled, .disabled:hover {
    cursor: not-allowed;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

[role=button] {
    cursor: pointer;
}

a, a:visited, a:hover, a:focus, a:active {
    text-decoration: none;
}

    a[accesskey], .tactile {
        font-size: 0.875em;
        color: inherit;
        position: absolute !important;
        top: 0;
        left: 0;
    }

    img, a img {
        border: none;
        max-width: 100%;
        height: auto !important;
    }

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

img,
input[type=image],
video,
embed,
iframe,
marquee,
object,
table {
    aspect-ratio: attr(width)/attr(height);
}

section, article, aside, footer, header, nav, main {
    display: block;
}

p {
    line-height: 20pt;
    text-indent: 27pt;
}

.newsContent {
    line-height: 30pt !important;
}

ol.reset, ul.reset, li.reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

label {
    font-weight: inherit;
}

input, button, textarea, select, optgroup, option {
    font-family: inherit;
    font-size: inherit;
    *font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

    input:not([type=radio]):not([type=checkbox]), textarea, select, input[type=text] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        select::-ms-expand {
            display: none;
        }

    input:not([type=button]), input:not([type=submit]), input:not([type=reset]) {
        font-size: 1em;
    }

textarea {
    resize: vertical;
}

::-webkit-input-placeholder {
    color: #999;
    font-size: 1em;
}

::-moz-placeholder {
    color: #999;
    font-size: 1em;
}

:-ms-input-placeholder, :-moz-placeholder {
    color: #999;
    font-size: 1em;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #004298;
}

::-moz-selection {
    background: #f9c902;
    color: #000;
}

::selection {
    background: #f9c902;
    color: #000;
}

::-moz-selection {
    background: #f9c902;
    color: #000;
}

hr {
    display: block;
    background: none;
    height: 1px;
    width: 100%;
    margin: 20px auto;
    border: none;
    border-top: 1px solid #ddd;
}

@media (max-width: 767px) {
    hr {
        margin: 15px auto;
    }
}
/*!
 * * * Global - Font (全域字型)
 * */
/*!
 * * * Global - Customized (全域自訂樣式)
 * */
body, html {
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--black);
    font-family: var(--family-main);
    font-size: var(--size-default);
    line-height: var(--line-height-default);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    padding-top: calc(var(--header-height) + var(--nav-height));
}

/*!
 * * * Global - Container (全域容器)
 * */
.container {
    width: 100%;
    position: relative;
    padding-left: var(--w-container-gap);
    padding-right: var(--w-container-gap);
    margin-right: auto;
    margin-left: auto;
    max-width: var(--w-container);
}

.mainwrap {
    overflow: hidden;
    position: relative;
    min-height: max(300px, 100vh - 600px);
}

    .mainwrap.pge-bg {
        background: url(/images/111NewImages/pg_bg.png) no-repeat right top/min(100vw, 1280px) auto;
    }

/*!
 * * * Global - 全寬背景(在非全寬的區域中)
 * */
.full-bg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    top: 0;
    height: 100%;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.has-full-bg {
    position: relative;
}

    .has-full-bg > *:not(.full-bg) {
        z-index: 10;
        position: relative;
    }

    .has-full-bg .full-bg {
        z-index: 0;
    }

/*!
 * * * Global - Button(全域按鈕)
 * */
.g-btn {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
    display: inline-block;
    text-align: center;
    font-size: var(--size-context);
    height: var(--btn-height);
    line-height: calc(var(--btn-height) - 4px);
    white-space: nowrap;
    max-width: 400px;
    width: 100%;
    padding: 0 15px;
    border-radius: 50px;
    -webkit-transition: background 0.15s, color 0.15s;
    -o-transition: background 0.15s, color 0.15s;
    transition: background 0.15s, color 0.15s;
    margin: 0 5px 10px;
    font-size: var(--size-default);
}

    .g-btn:link {
        color: var(--blue);
    }

    .g-btn.ring::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        margin-bottom: 3px;
        width: 1.2em;
        height: 1.2em;
        background: url(/images/111NewImages/arrow.svg) no-repeat center center/contain;
    }

    .g-btn.arrow::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
        margin-bottom: 4px;
        width: 1em;
        height: 1em;
        background: url(/images/111NewImages/arrow.svg) no-repeat center center/contain;
    }

    .g-btn.dark {
        border-color: var(--blue);
        background-color: var(--blue);
        color: var(--white);
    }

        .g-btn.dark.ring::before {
            background-image: url(/images/111NewImages/arrow.svg);
        }

        .g-btn.dark.arrow::after {
            background-image: url(/images/111NewImages/arrow.svg);
        }

.pc .g-btn:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

    .pc .g-btn:hover.ring::before {
        background-image: url(/images/111NewImages/arrow.svg);
    }

    .pc .g-btn:hover.arrow::after {
        background-image: url(/images/111NewImages/arrow.svg);
    }

.pc .g-btn.dark:hover {
    border-color: var(--blue-nav);
    background-color: var(--blue-nav);
    color: var(--white);
}

/*!
 * * * Global - Subhead(全域標題)
 * */
.g-subhead {
    line-height: 1.2;
    position: relative;
    display: block;
    font-weight: 700;
    padding: 0;
    margin: 10px auto 35px;
    font-family: var(--family-deco);
    line-height: var(--line-height-sm);
}

    .g-subhead.text-center {
        text-align: center;
    }

    .g-subhead .sm {
        display: block;
        font-size: var(--size-subhead-sm);
        color: var(--black);
        font-weight: 400;
    }

    .g-subhead .lg {
        display: block;
        font-size: var(--size-subhead-lg);
        color: var(--blue);
        text-transform: uppercase;
    }

.sec-subhead {
    line-height: 1.2;
    position: relative;
    display: block;
    font-weight: 700;
    padding: 0;
    margin: 10px auto 25px;
    font-family: var(--family-deco);
    line-height: var(--line-height-sm);
}

    .sec-subhead.text-center {
        text-align: center;
    }

    .sec-subhead .zh {
        display: block;
        /*font-size: var(--size-kanban-sm);*/
        font-size: 1.8888em;
        color: var(--black);
        font-weight: 800;
        letter-spacing: 0.1em;
    }

    .sec-subhead .en {
        display: block;
        /*font-size: var(--size-subhead-lg);*/
        font-size: 1.1712em;
        color: var(--blue);
        text-transform: uppercase;
    }

/*!
 * * * Header
 * */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
    background: var(--white);
}

    .header > .container {
        height: var(--header-height);
        -webkit-transition: height 0.25s;
        -o-transition: height 0.25s;
        transition: height 0.25s;
    }

    .header .tactile.first {
        z-index: 120;
        color: #555;
        font-size: 1em;
    }

        .header .tactile.first span {
            color: transparent;
        }

        .header .tactile.first:focus {
            color: var(--orange);
        }

            .header .tactile.first:focus span {
                color: var(--orange);
            }

/* Logo */
.logo {
    z-index: 105;
    position: absolute;
    /*left: var(--gap);*/
    left: 0%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    width: 330px;
}

    .logo > * {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 24.2424242424%;
        font-size: 0;
        background: url("/images/111NewImages/logo.svg") no-repeat 0 0/contain;
        z-index: 0;
    }

[data-fontsize=s] .logo {
    width: 280px;
}

.logo-EN {
    z-index: 105;
    position: absolute;
    /*left: var(--gap);*/
    left: 0%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    width: 330px;
}

    .logo-EN > * {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 24.2424242424%;
        font-size: 0;
        background: url("/images/111NewImages/Logo_english.png") no-repeat 0 0/contain;
        z-index: 0;
    }

[data-fontsize=s] .logo-EN {
    width: 280px;
}


/* Navigation */
.nav {
    z-index: 101;
    position: fixed;
}

.menu {
    font-weight: 400;
    z-index: 10;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 696px !important;
}

    .menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

/* Navigation Burger */
.nav__burger {
    position: absolute;
    display: none;
}

.h-func__wrap {
    /*white-space: nowrap;*/
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 102;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    /*right: var(--w-container-gap);*/
    right: -100px;
    line-height: 30px;
    font-size: 1em;
    color: #444;
}

    .h-func__wrap [accesskey] {
        color: inherit;
        line-height: inherit;
        font-size: 0.7647em;
    }

    .h-func__wrap > li {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        /*padding: 0 17px;*/
        padding: 0 8px;
    }

        .h-func__wrap > li:last-child {
            padding-right: 0;
        }

        .h-func__wrap > li::before {
            content: "";
            display: block;
            width: 1px;
            height: 14px;
            position: absolute;
            left: 0;
            top: 9px;
            background: #ddd;
        }

        .h-func__wrap > li > a:not([accesskey]) {
            display: block;
            padding: 0;
            font: inherit;
            color: inherit;
            line-height: inherit;
            white-space: nowrap;
            text-align: center;
        }

.pc .h-func__wrap > li > a:not([accesskey]):hover {
    color: var(--blue-green);
    text-decoration: underline;
}

.h-func__wrap > li:first-of-type::before {
    display: none;
}

.fontsize__switch {
    display: none;
}

.fontsize__list {
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    padding: 1%;
}

    .fontsize__list::before {
        content: attr(data-tit);
        white-space: nowrap;
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
    }

    .fontsize__list > li {
        display: inline-block;
        vertical-align: middle;
        line-height: 0;
    }

        .fontsize__list > li [type=radio] {
            outline: none;
            z-index: -100 !important;
            width: 1px !important;
            height: 1px !important;
            clip: rect(1px, 1px, 1px, 1px);
            position: absolute;
            opacity: 0;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

            .fontsize__list > li [type=radio] + label {
                display: inline-block;
                vertical-align: middle;
                border-radius: 50px;
                border: 1px solid #888;
                width: 30px;
                height: 30px;
                line-height: 27px;
                text-align: center;
                font-size: 0.9411em;
                color: #444;
                background: #fff;
            }

            .fontsize__list > li [type=radio]:checked + label {
                background: var(--blue-green);
                color: #fff;
                border-color: var(--blue-green);
            }

.pc .fontsize__list > li [type=radio]:hover + label, .pc .fontsize__list > li [type=radio]:active + label {
    background: #eee;
    color: #444;
}

.pc .fontsize__list > li [type=radio]:hover:checked + label, .pc .fontsize__list > li [type=radio]:active:checked + label {
    background: var(--blue-green);
    color: #fff;
    border-color: var(--blue-green);
}

.fontsize__list > li > a {
    border-radius: 50px;
    border: 1px solid #888;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    font-size: 0.9411em;
    color: #444;
    background: #fff;
}

.pc .fontsize__list > li > a:not(.current):hover {
    background: #eee;
    color: #444;
}

.fontsize__list > li > a.current {
    background: var(--blue-green);
    color: #fff;
    border-color: var(--blue-green);
}

/* Header Search */
.search__pop {
    z-index: 10;
    display: block;
    width: 100%;
    max-width: 250px;
    background: blue;
    position: absolute;
    top: 50%;
    left: 330px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 2px solid var(--blue-nav);
    border-radius: 50px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.25s;
    transition: -webkit-transform 0.25s;
    -o-transition: transform 0.25s;
    transition: transform 0.25s;
    transition: transform 0.25s, -webkit-transform 0.25s;
}

    .search__pop:focus-within {
        border-color: var(--blue-f-top);
    }

    .search__pop.is-open {
        display: block;
        -webkit-animation: ani_search_open 0.25s both;
        animation: ani_search_open 0.25s both;
    }

    .search__pop form {
        width: 100%;
        margin: 0 auto;
        position: relative;
        padding-right: 35px;
    }

.search__send {
    position: absolute;
    z-index: 10;
    top: 2px;
    right: 2px;
    width: 36px;
    height: 36px;
    -webkit-transition: background 0.25s;
    -o-transition: background 0.25s;
    transition: background 0.25s;
    font-size: 0;
    border-radius: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

    .search__send::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-image: url(/images/111NewImages/icon_search.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: auto 200%;
    }

    .search__send:active {
        background-color: var(--blue-nav);
    }

        .search__send:active::before {
            background-position: 0 100%;
        }

.pc .search__send:hover {
    background-color: var(--blue-nav);
}

    .pc .search__send:hover::before {
        background-position: 0 100%;
    }

.search__input {
    height: 40px;
    line-height: 42px;
    width: 100%;
    padding: 0 1em;
    color: #000;
    border: none;
    border-radius: 50px;
    background: #fff;
}

input.search__input:not([type=submit])::-webkit-input-placeholder {
    color: #999;
    font-size: inherit;
}

input.search__input:not([type=submit])::-moz-placeholder {
    color: #999;
    font-size: inherit;
}

input.search__input:not([type=submit]):-ms-input-placeholder, input.search__input:not([type=submit]) :-moz-placeholder {
    color: #999;
    font-size: inherit;
}

@-webkit-keyframes ani_fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes ani_fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes ani_search_open {
    0% {
        opacity: 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes ani_search_open {
    0% {
        opacity: 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@-webkit-keyframes ani_nav_open {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ani_nav_open {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes ani_nav_close {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes ani_nav_close {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }
}

@media screen and (min-width: 1281px) {
    .nav {
        left: 0;
        top: var(--header-height);
        width: 100%;
        z-index: 100;
        max-width: 100%;
        display: block !important;
        -webkit-transition: top 0.35s;
        -o-transition: top 0.35s;
        transition: top 0.35s;
        background: var(--blue-nav);
    }

        .nav .menu {
            text-align: center;
            white-space: nowrap;
            width: 100%;
        }

            .nav .menu > li {
                display: inline-block;
                vertical-align: top;
                position: relative;
            }

                .nav .menu > li > a {
                    display: block;
                    color: #fff;
                    font-size: var(--size-nav);
                    position: relative;
                    font-weight: 500;
                    white-space: nowrap;
                    line-height: var(--nav-height);
                    padding-left: 30px;
                    padding-right: 30px;
                    -webkit-transition: line-height 0.1875s;
                    -o-transition: line-height 0.1875s;
                    transition: line-height 0.1875s;
                }

                .nav .menu > li.is-open .menu__sub {
                    display: block !important;
                    -webkit-animation: ani_fadeIn 0.15s both var(--easeInOutQuad);
                    animation: ani_fadeIn 0.15s both var(--easeInOutQuad);
                }

                .nav .menu > li.is-open > a {
                    color: var(--blue-nav);
                    text-decoration: none;
                    background: #e4f3ff;
                }

            .nav .menu .menu__onlymb {
                display: none !important;
            }

            .nav .menu .menu__sub {
                position: fixed;
                left: 50%;
                padding: 30px var(--w-container-gap) 50px;
                top: calc(var(--header-height) + var(--nav-height));
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                width: 100vw;
                min-height: min(220px, 100vh - var(--header-height) - var(--nav-height) * 2);
                max-width: calc(var(--w-container) - var(--w-container-gap) * 2);
                display: none !important;
                -webkit-transition: top 0.35s;
                -o-transition: top 0.35s;
                transition: top 0.35s;
            }

    .is-fixed-header .nav .menu .menu__sub {
        top: var(--nav-height);
    }

    .nav .menu .menu__sub::after {
        content: "";
        display: block;
        z-index: -1;
        width: 100vw;
        position: absolute;
        left: 50%;
        top: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 100%;
        background: #e4f3ff;
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav .menu .menu__sub > ul {
        max-height: calc(100vh - var(--header-height) - var(--nav-height) * 2);
        padding: 0;
        text-align: left;
        white-space: normal;
        overflow-y: auto;
        overflow-x: hidden;
    }

        .nav .menu .menu__sub > ul::-webkit-scrollbar {
            width: 5px;
        }

        .nav .menu .menu__sub > ul::-webkit-scrollbar-track {
            -webkit-box-shadow: none;
            box-shadow: none;
            border-radius: 0;
            margin: 0;
            background: rgba(0, 0, 0, 0.1);
        }

        .nav .menu .menu__sub > ul::-webkit-scrollbar-thumb {
            -webkit-box-shadow: none;
            box-shadow: none;
            border-radius: 0;
            background: var(--blue-nav);
        }

        .nav .menu .menu__sub > ul:hover::-webkit-scrollbar-thumb {
            background: var(--blue-f-top);
        }

        .nav .menu .menu__sub > ul > li {
            z-index: 5;
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: calc(33.3333333333% - 44px);
            margin: 8px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            -webkit-transition: border 0.15s;
            -o-transition: border 0.15s;
            transition: border 0.15s;
            font-size: var(--size-nav);
        }

            .nav .menu .menu__sub > ul > li:first-child {
                border-top: none;
            }

            .nav .menu .menu__sub > ul > li > a {
                display: block;
                position: relative;
                padding: 12px 1.8em 12px 0.4em;
                font-size: 0.9375em;
                font-weight: 500;
                line-height: var(--line-height-sm);
                color: var(--blue-dark);
            }

                .nav .menu .menu__sub > ul > li > a::after {
                    content: "";
                    width: 1.4em;
                    height: 1.4em;
                    background: url(/images/111NewImages/arrow.svg) no-repeat center 48%/0.8em 0.8em;
                    border-radius: 50px;
                    display: block;
                    position: absolute;
                    right: 0.4em;
                    top: 0.6em;
                    -webkit-transition: right 0.15s, background-color 0.15s;
                    -o-transition: right 0.15s, background-color 0.15s;
                    transition: right 0.15s, background-color 0.15s;
                }

    .pc .nav .menu .menu__sub > ul > li:hover {
        border-bottom-color: var(--blue-f-bottom);
    }

        .pc .nav .menu .menu__sub > ul > li:hover > a {
            color: var(--blue-f-bottom);
        }

            .pc .nav .menu .menu__sub > ul > li:hover > a::after {
                right: 0.2em;
                background: #1c7ec9 url(/images/111NewImages/arrow.svg) no-repeat center 48%/0.7em 0.7em;
            }

    .search__switch {
        display: none !important;
    }

    .is-fixed-header .header {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .is-fixed-header .nav {
        top: 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .logo {
        width: 280px;
    }

    .logo-EN {
        width: 280px;
    }

    .nav .menu > li > a {
        padding-left: 15px;
        padding-right: 15px;
    }

    .search__pop {
        left: 308px;
        max-width: 170px;
    }

    [data-fontsize=l] .nav .menu > li > a {
        font-size: 1.0625em;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .search__pop {
        left: 282px;
        max-width: 170px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1299px) {
    .search__pop {
        left: 275px;
        max-width: 170px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1099px) {
    .search__pop {
        left: 270px;
        max-width: 140px;
    }
}

@media screen and (max-width: 1099px) {
    .fontsize__switch {
        white-space: nowrap;
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
    }

        .fontsize__switch.is-open {
            color: var(--blue-green);
        }

    .fontsize__list {
        display: none;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50px;
        padding: 5px !important;
        position: absolute;
        top: 0;
        right: 0;
    }

        .fontsize__list > li {
            vertical-align: top;
        }

        .fontsize__list::before {
            display: none;
        }

        .fontsize__list.is-open {
            display: block;
        }
}

@media screen and (max-width: 1658px) {
}

@media screen and (max-width: 1600px) {
    .logo {
        width: 250px;
    }

    .logo-EN {
        width: 250px;
    }



    .search__pop {
        left: 308px;
        max-width: 170px;
    }
}

@media screen and (max-width: 1512px) {
}

@media screen and (max-width: 1280px) {
    .logo {
        width: 270px;
    }

    .logo-EN {
        width: 270px;
    }

    .h-func__wrap {
        display: none !important;
    }

    .search__switch {
        z-index: 350;
        display: block !important;
        right: var(--header-height);
        top: 0;
        position: absolute;
        width: var(--header-height);
        height: var(--header-height);
        background: #e5f0f8;
        color: transparent;
        -webkit-transition: width 0.25s, background 0.25s;
        -o-transition: width 0.25s, background 0.25s;
        transition: width 0.25s, background 0.25s;
    }

        .search__switch::before {
            content: "";
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            width: calc(var(--header-height) * 0.3);
            height: calc(var(--header-height) * 0.3);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            background-image: url(/images/111NewImages/icon_search.svg);
            background-repeat: no-repeat;
            background-position: 0 0;
            background-size: auto 200%;
            -webkit-transition: opacity 0.25s;
            -o-transition: opacity 0.25s;
            transition: opacity 0.25s;
        }

        .search__switch.is-open {
            width: calc(var(--header-height) * 0.55);
            background: var(--blue-dark);
        }

            .search__switch.is-open::before {
                opacity: 0.3;
                left: 45%;
                width: calc(var(--header-height) * 0.3);
                height: calc(var(--header-height) * 0.3);
                background-image: url(/images/111NewImages/arrow.svg);
                background-size: contain;
            }

    .pc .search__switch:not(.is-open):hover {
        background: #d7e4ee;
    }

    .pc .search__switch.is-open:hover::before {
        opacity: 0.8;
    }

    .search__pop {
        z-index: 350;
        position: fixed;
        top: 0;
        left: 0;
        border: none;
        background: var(--blue-dark);
        border-radius: 0;
        -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
        transform-origin: right top;
        max-width: calc(100% - var(--header-height) - var(--header-height) * 0.55);
        display: none !important;
    }

        .search__pop form {
            padding-right: calc(var(--header-height) * 0.8);
        }

        .search__pop.is-open {
            display: block !important;
        }

    .search__send {
        border-radius: 0;
        top: 0;
        right: 0;
        width: calc(var(--header-height) * 0.8);
        height: 100%;
    }

        .search__send::before {
            left: 55%;
            top: 50%;
            width: calc(var(--header-height) * 0.38);
            height: calc(var(--header-height) * 0.38);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            background-image: url(/images/111NewImages/icon_search.svg);
            background-repeat: no-repeat;
            background-position: 0 100%;
            background-size: auto 200%;
        }

    .pc .search__send:hover {
        background: none;
    }

        .pc .search__send:hover::before {
            width: calc(var(--header-height) * 0.4);
            height: calc(var(--header-height) * 0.4);
        }

    .search__input {
        border-radius: 0;
        color: #fff;
        font-weight: 600;
        font-size: 1.125em !important;
        background: var(--blue-dark);
        height: var(--header-height);
    }

        .search__input::-webkit-input-placeholder {
            color: var(--sky) !important;
        }

        .search__input::-moz-placeholder {
            color: var(--sky) !important;
        }

        .search__input:-ms-input-placeholder, .search__input :-moz-placeholder {
            color: var(--sky) !important;
        }

    .nav__burger {
        z-index: 350;
        display: block;
        right: 0;
        top: 0;
        position: absolute;
        width: var(--header-height);
        height: var(--header-height);
        background: var(--blue-nav);
    }

        .nav__burger div {
            pointer-events: none;
            content: "";
            display: inline-block;
            height: 2px;
            width: calc(var(--header-height) * 0.375);
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: calc(var(--header-height) * -0.1875);
            background: #fff;
            -webkit-transform-origin: center center;
            -ms-transform-origin: center center;
            transform-origin: center center;
            -webkit-transition: all 0.25s var(--easeInOutCubic);
            -o-transition: all 0.25s var(--easeInOutCubic);
            transition: all 0.25s var(--easeInOutCubic);
        }

            .nav__burger div:nth-child(1) {
                margin-top: calc(var(--header-height) * -0.1125);
            }

            .nav__burger div:nth-child(2) {
                margin-top: -1px;
                width: calc(var(--header-height) * 0.375 - 4px);
                margin-left: calc(var(--header-height) * -0.1875 + 4px);
            }

            .nav__burger div:nth-child(3) {
                margin-top: calc(var(--header-height) * 0.0875);
                width: calc(var(--header-height) * 0.375 - 8px);
                margin-left: calc(var(--header-height) * -0.1875 + 8px);
            }

    .pc .nav__burger:hover > div:nth-child(2), .pc .nav__burger:hover > div:nth-child(3) {
        width: calc(var(--header-height) * 0.375);
        margin-left: calc(var(--header-height) * -0.1875);
    }

    .nav {
        background: var(--blue-nav);
        padding: 10px 0 60px;
        top: var(--header-height);
        right: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: 100%;
        max-width: 350px;
        display: none;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

        .nav::-webkit-scrollbar {
            width: 5px;
        }

        .nav::-webkit-scrollbar-track {
            -webkit-box-shadow: none;
            box-shadow: none;
            border-radius: 0;
            margin: 0;
            background: var(--blue-nav);
        }

        .nav::-webkit-scrollbar-thumb {
            -webkit-box-shadow: none;
            box-shadow: none;
            border-radius: 0;
            background: var(--blue-f-mid);
        }

        .nav:hover::-webkit-scrollbar-thumb {
            background: var(--blue-f-top);
        }

        .nav .menu > li {
            display: block;
            border-top: 1px solid var(--blue-f-top);
        }

            .nav .menu > li:first-child {
                border-top: none;
            }

            .nav .menu > li.has-ul > a {
                position: relative;
            }

                .nav .menu > li.has-ul > a::after {
                    content: "";
                    width: 18px;
                    height: 18px;
                    display: block;
                    position: absolute;
                    right: 10px;
                    top: 50%;
                    margin-top: -8px;
                    background: url(/images/111NewImages/arrow.svg) no-repeat center center/90% 90%;
                    -webkit-transition: all 0.25s;
                    -o-transition: all 0.25s;
                    transition: all 0.25s;
                }

            .nav .menu > li > a {
                padding: 15px;
                display: block;
                text-align: left;
                font-size: var(--size-nav);
                line-height: var(--line-height-sm);
                font-weight: 500;
                color: #fff;
            }

            .nav .menu > li.is-open.has-ul > a {
                border-radius: 15px 0 0 0;
            }

                .nav .menu > li.is-open.has-ul > a::after {
                    right: 12px;
                    background-image: url(/images/111NewImages/arrow.svg);
                    -webkit-transform: rotate(90deg);
                    -ms-transform: rotate(90deg);
                    transform: rotate(90deg);
                }

            .nav .menu > li.is-open > a {
                background: #bae0fd;
                color: var(--blue-nav);
            }

            .nav .menu > li.is-open .menu__sub {
                display: block !important;
                position: relative;
            }

        .nav .menu .menu__onlymb {
            display: block;
        }

        .nav .menu .menu__sub {
            display: none;
            border-radius: 0 0 15px 0;
            background: var(--sky);
        }

            .nav .menu .menu__sub > ul {
                padding: 0;
                margin: 0 auto;
                z-index: 15;
                position: relative;
            }

                .nav .menu .menu__sub > ul > li {
                    display: block;
                    position: relative;
                    border-top: 1px solid rgba(0, 0, 0, 0.1);
                }

                    .nav .menu .menu__sub > ul > li > a {
                        display: block;
                        padding: 0.8em 0.8em 0.8em 2.8em;
                        font-size: 96%;
                        line-height: 1.5;
                        color: var(--blue-f-top);
                        -webkit-transition: padding 0.25s, color 0.25s;
                        -o-transition: padding 0.25s, color 0.25s;
                        transition: padding 0.25s, color 0.25s;
                    }

                        .nav .menu .menu__sub > ul > li > a::after {
                            content: "";
                            width: 1.4em;
                            height: 1.4em;
                            opacity: 0.2;
                            background: url(/images/111NewImages/arrow.svg) no-repeat center 48%/0.8em 0.8em;
                            border-radius: 50px;
                            display: block;
                            position: absolute;
                            left: 1em;
                            top: 0.8em;
                            -webkit-transition: right 0.15s, background-color 0.15s;
                            -o-transition: right 0.15s, background-color 0.15s;
                            transition: right 0.15s, background-color 0.15s;
                        }

                        .nav .menu .menu__sub > ul > li > a:focus {
                            color: var(--blue-nav);
                            padding-left: 3em;
                        }

                            .nav .menu .menu__sub > ul > li > a:focus::after {
                                opacity: 1;
                            }

    .pc .nav .menu > li:not(.is-open):hover > a {
        background: #1276c2;
    }

    .pc .nav .menu .menu__sub > ul > li:hover > a {
        color: var(--blue-nav);
        padding-left: 3em;
    }

        .pc .nav .menu .menu__sub > ul > li:hover > a::after {
            opacity: 1;
        }

    .is-open-nav .header {
        -webkit-box-shadow: 0 0 100vh 100vh rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 100vh 100vh rgba(0, 0, 0, 0.3);
    }

    .is-open-nav .nav {
        display: block;
        -webkit-animation: ani_nav_open 0.1875s both;
        animation: ani_nav_open 0.1875s both;
    }

    .is-open-nav .nav__burger div:nth-child(1) {
        margin-top: -1px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s;
    }

    .is-open-nav .nav__burger div:nth-child(2) {
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition-duration: 0.1s;
        -o-transition-duration: 0.1s;
        transition-duration: 0.1s;
    }

    .is-open-nav .nav__burger div:nth-child(3) {
        margin-top: -1px;
        width: calc(var(--header-height) * 0.375);
        margin-left: calc(var(--header-height) * -0.1875);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s;
    }

    .is-close-nav .nav {
        -webkit-animation: ani_nav_close 0.1875s both;
        animation: ani_nav_close 0.1875s both;
    }
}

@media screen and (max-width: 449px) {
    .logo {
        width: 220px;
    }

    .logo-EN {
        width: 220px;
    }

    [data-fontsize=s] .logo {
        width: 220px;
    }

    [data-fontsize=s] .logo-EN {
        width: 220px;
    }

    .search__input {
        font-size: 1em !important;
        padding-right: 0.2em;
        padding-left: 0.8em;
    }
}

@media screen and (max-width: 359px) {
    .logo {
        width: 180px;
    }

    [data-fontsize=s] .logo {
        width: 180px;
    }

    .logo-EN {
        width: 180px;
    }

    [data-fontsize=s] .logo-EN {
        width: 180px;
    }
}
/* Footer */
.footer {
    color: #fff;
}

    .footer a {
        color: inherit;
    }

        .footer a[accesskey], .footer .tactile {
            color: #fff;
        }

.pc .footer a:hover {
    text-decoration: underline;
}

.f-nav, .f-middle, .f-bottom {
    position: relative;
}

    .f-nav .full-bg, .f-middle .full-bg, .f-bottom .full-bg {
        z-index: 0;
    }

    .f-nav > *:not(.full-bg), .f-middle > *:not(.full-bg), .f-bottom > *:not(.full-bg) {
        z-index: 10;
        position: relative;
    }

.f-nav {
    display: none;
}

    .f-nav .full-bg {
        background: var(--blue-f-top);
    }

.f-middle {
    position: relative;
    padding-top: calc(var(--header-height) * 0.75);
    padding-bottom: calc(var(--header-height) * 0.5625);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .f-middle .full-bg {
        background: var(--blue-f-mid);
    }

.f-bottom {
    padding-top: 23px;
    padding-bottom: 23px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1.3;
    font-size: var(--size-sm);
}

    .f-bottom .full-bg {
        background: var(--blue-f-bottom);
    }

.f-info {
    font-size: 1em;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-style: normal;
}

    .f-info ul {
        padding-left: calc(3 * var(--w-container-gap));
    }

        .f-info ul li {
            display: inline-block;
            padding-right: 25px;
        }

            .f-info ul li.full {
                display: block;
                padding-right: 0;
            }

    .f-info .map {
        display: inline-block;
        vertical-align: top;
        border-radius: 5px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        font-size: 0.9375em;
        line-height: 1.3;
        white-space: nowrap;
        padding: 5px 8px 4px 5px;
        margin-left: 10px;
        font-style: normal;
        border: none;
    }

        .f-info .map::before {
            content: "";
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px;
            margin-bottom: 4px;
            width: 1.12em;
            height: 1.12em;
            background: url(/images/111NewImages/arrow.svg)no-repeat center center/contain;
        }

.pc .f-info .map:hover {
    background-color: var(--sky);
    color: var(--blue);
}

    .pc .f-info .map:hover::before {
        background-image: url(/images/111NewImages/arrow.svg);
    }

.pc .f-info a:hover {
    text-decoration: underline;
}

.f-mid-links {
    max-width: 300px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    white-space: nowrap;
    text-align: right;
}

    .f-mid-links a {
        display: inline-block;
        vertical-align: middle;
        margin: 0 10px;
        line-height: 1;
    }

.f-logo {
    position: absolute;
    left: var(--gap);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    width: 330px;
    top: 0;
    left: 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    -webkit-transform: translateY(-15%);
    -ms-transform: translateY(-15%);
    transform: translateY(-15%);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
}

    .f-logo > * {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 24.2424242424%;
        font-size: 0;
        background: url("/images/111NewImages/logo_white.svg") no-repeat 0 0/contain;
        z-index: 0;
    }

.f-logo-EN {
    position: absolute;
    left: var(--gap);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    width: 330px;
    top: 0;
    left: 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    -webkit-transform: translateY(-15%);
    -ms-transform: translateY(-15%);
    transform: translateY(-15%);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
}

    .f-logo-EN > * {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 24.2424242424%;
        font-size: 0;
        background: url("/images/111NewImages/logo-en-white.png") no-repeat 0 0/contain;
        z-index: 0;
    }

[data-fontsize=s] .f-logo {
    width: 280px;
}

[data-fontsize=s] .f-logo-EN {
    width: 280px;
}

.f-btm-links {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}

    .f-btm-links a {
        position: relative;
        display: inline-block;
        vertical-align: top;
        padding: 0 17px;
        margin: 4px 0;
    }

        .f-btm-links a::before {
            content: "";
            width: 1px;
            height: 0.9em;
            background: rgba(255, 255, 255, 0.5);
            position: absolute;
            top: 50%;
            margin-top: -0.45em;
            left: 0;
        }

        .f-btm-links a:first-child {
            padding-left: 0;
        }

            .f-btm-links a:first-child::before {
                display: none;
            }

.pc .f-btm-links a:hover {
    text-decoration: underline;
    color: #fff;
}

.f-copyright {
    justify-self: flex-end;
}

.f-grnet {
    justify-self: flex-end;
    margin-left: 10px;
    opacity: 0.6;
}

.g-top {
    position: fixed;
    right: var(--w-container-gap);
    bottom: 20px;
}

.gotop {
    width: 50px;
    height: 50px;
    display: none;
    cursor: pointer;
    z-index: 250;
    position: fixed;
    border-radius: 50px;
    font-size: 0;
    right: var(--w-container-gap);
    bottom: calc(2 * var(--w-container-gap));
    background: var(--blue-green);
}

    .gotop:before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-90deg);
        -ms-transform: translate(-50%, -50%) rotate(-90deg);
        transform: translate(-50%, -50%) rotate(-90deg);
        width: 46%;
        height: 46%;
        background: url(/images/111NewImages/arrow.svg)no-repeat center center/contain;
    }

.pc .gotop:hover {
    background: #34d6cb;
}

.goOldSA {
    width: 90px;
    height: 64px;
    cursor: pointer;
    z-index: 250;
    position: fixed;
    border-radius: 18px;
    font-size: 0;
    right: var(--w-container-gap);
    bottom: calc(30 * var(--w-container-gap));
    /*background: #f9c902;*/
    background: url(/images/111NewImages/GoOldSAInter.png)no-repeat center center/contain;
}

.goOldSAEnglish {
    background: url(/images/111NewImages/Visit_old_version_of_website.png)no-repeat center center/contain;
}

/*    .goOldSA:before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); 
        width: 46%;
        height: 46%;
        background: url(/images/111NewImages/GoOldSAInter.png)no-repeat center center/contain;
    }*/

.pc .goOldSA:hover {
    /*background: #ffba00;*/
    width: 120px;
    height: 80px;
}

@media (max-width: 991px) {
    .gotop {
        width: 40px;
        height: 40px;
        bottom: 30px;
    }

    .goOldSA {
        width: 70px;
        height: 45px;
        bottom: 100px;
    }
}

@media screen and (min-width: 1100px) {
    .f-nav {
        padding-top: calc(var(--header-height) * 0.875);
        padding-bottom: calc(var(--header-height) * 0.875);
        display: block;
        position: relative;
    }

        .f-nav .menu {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            max-height: 15%;
        }

            .f-nav .menu > li {
                display: inline-block;
                vertical-align: top;
                position: relative;
                width: 50%;
                padding-left: 55px;
                padding-right: 55px;
                margin-bottom: 25px;
            }

                .f-nav .menu > li > a {
                    display: block;
                    color: #fff;
                    font-size: var(--size-kanban-sm);
                    line-height: var(--line-height-sm);
                    position: relative;
                    font-weight: 500;
                    white-space: nowrap;
                    margin: 0 0 10px;
                    letter-spacing: 0.075em;
                }

                    .f-nav .menu > li > a::before {
                        content: "";
                        display: inline-block;
                        vertical-align: middle;
                        position: absolute;
                        left: -40px;
                        top: 0.3em;
                        width: 1em;
                        height: 1em;
                        background: url(/images/111NewImages/arrow.svg) no-repeat center center/contain;
                    }

            .f-nav .menu .menu__onlymb {
                display: none !important;
            }

            .f-nav .menu .menu__sub > ul > li {
                position: relative;
                display: inline-block;
                vertical-align: top;
                padding-right: 16px;
                color: #deeffd;
                font-size: var(--size-sm);
                line-height: 1.3;
            }

                .f-nav .menu .menu__sub > ul > li::before {
                    content: "/";
                    font-size: 0.9em;
                    position: absolute;
                    color: inherit;
                    top: 0;
                    right: 3px;
                }

                .f-nav .menu .menu__sub > ul > li:last-child {
                    padding-right: 0;
                }

                    .f-nav .menu .menu__sub > ul > li:last-child::before {
                        display: none;
                    }

                .f-nav .menu .menu__sub > ul > li > a {
                    display: block;
                    color: inherit;
                }

    .pc .f-nav .menu .menu__sub > ul > li:hover > a {
        text-decoration: underline;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1399px) {
    .f-nav {
        padding-top: calc(var(--header-height) * 0.5);
        padding-bottom: calc(var(--header-height) * 0.5);
    }
}

@media screen and (max-width: 1299px) {
    .f-middle {
        padding-top: calc(var(--header-height) * 0.4);
        padding-bottom: calc(var(--header-height) * 0.4);
    }

    .f-logo {
        width: 250px;
        -ms-flex-preferred-size: 250px;
        flex-basis: 250px;
        -webkit-transform: translateY(-5%);
        -ms-transform: translateY(-5%);
        transform: translateY(-5%);
    }

    [data-fontsize=s] .f-logo {
        width: 250px;
    }

    .f-logo-EN {
        width: 250px;
        -ms-flex-preferred-size: 250px;
        flex-basis: 250px;
        -webkit-transform: translateY(-5%);
        -ms-transform: translateY(-5%);
        transform: translateY(-5%);
    }

    [data-fontsize=s] .f-logo-EN {
        width: 250px;
    }

    .f-info ul {
        padding-left: calc(1.5 * var(--w-container-gap));
    }

    .f-btm-links a {
        padding: 0 12px;
    }
}

@media screen and (max-width: 1099px) {
    .f-middle {
        padding-top: 40px;
        padding-bottom: 40px;
        display: block;
    }

    .f-info {
        display: block;
        margin-bottom: 15px;
    }

        .f-info ul {
            padding-left: 90px;
        }

    .f-mid-links {
        position: absolute !important;
        top: 50px;
        right: var(--w-container-gap);
    }

    .f-bottom {
        display: block;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .f-btm-links {
        margin-bottom: 15px;
        width: 100%;
    }
}

@media screen and (max-width: 639px) {
    .footer {
        font-size: 0.875em;
    }

    .f-middle {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .f-logo {
        max-width: 260px;
        width: 100%;
        margin: 0 auto 20px;
        display: block;
        left: auto;
        position: relative;
    }

    .f-logo-EN {
        max-width: 260px;
        width: 100%;
        margin: 0 auto 20px;
        display: block;
        left: auto;
        position: relative;
    }

    .f-info .map {
        font-size: 0.75em;
        line-height: 1.2;
        vertical-align: middle;
    }

    .f-info ul {
        padding-left: 0;
    }

        .f-info ul li {
            display: block;
            padding: 5px 0;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

    .f-mid-links {
        position: relative !important;
        top: auto;
        right: auto;
        text-align: center;
        margin: 15px auto 0;
    }

    .f-copyright {
        display: block;
    }

    .f-grnet {
        display: block;
        margin: 10px auto 0;
    }

    .f-bottom {
        margin-left: calc(-0.8 * var(--w-container-gap));
        margin-right: calc(-0.8 * var(--w-container-gap));
    }
}
/*!
 * * * 全站社群連結
 * */
.footer .g-community {
    width: 230px;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    margin-top: -10px;
    margin-right: -20px;
}

.g-community .clink {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 34px;
    margin: 2px 8px;
    color: inherit;
    font-size: 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0;
}

    .g-community .clink::before {
        content: "";
        display: block;
        padding-bottom: 100%;
        pointer-events: none;
    }

    .g-community .clink.facebook {
        background-image: url(/images/111NewImages/clink_facebook.svg);
    }

    .g-community .clink.youtube {
        background-image: url(/images/111NewImages/clink_youtube.svg);
    }

    .g-community .clink.ig {
        background-image: url(/images/111NewImages/clink_instagram.svg);
    }

    .g-community .clink.line {
        background-image: url(/images/111NewImages/clink_line.svg);
    }

.pc .g-community .clink:hover.facebook {
    background-position: 0 100%;
}

.pc .g-community .clink:hover.youtube {
    background-position: 0 100%;
}

.pc .g-community .clink:hover.ig {
    background-position: 0 100%;
}

.pc .g-community .clink:hover.line {
    background-position: 0 100%;
}

@media screen and (max-width: 839px) {
    .footer .g-community {
        display: block;
        margin: 0 0 25px;
    }

        .footer .g-community .clink {
            display: inline-block;
            vertical-align: top;
        }
}

@media screen and (max-width: 639px) {
    .footer .g-community {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

        .footer .g-community .clink {
            max-width: calc(50% - 8px);
            min-width: 125px;
            margin: 2px 4px;
        }
}
/*!
 * * * 單張圖文橫幅
 * */
.slider-photo__wrap {
    position: relative;
    z-index: 0;
    background: #000;
    line-height: 0;
}

    .slider-photo__wrap .slick-dots {
        position: absolute;
        list-style: none;
        left: 50%;
        bottom: 30px;
        text-align: center;
        padding: 0;
        margin: 0;
        line-height: 1;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .slider-photo__wrap .slick-dots li {
            display: inline-block;
            padding: 0 4px;
        }

            .slider-photo__wrap .slick-dots li button {
                outline: none;
                position: relative;
                width: 10px;
                height: 10px;
                margin: 0;
                padding: 0;
                display: inline-block;
                vertical-align: middle;
                border: 2px solid #fff;
                font-size: 0;
                line-height: 0;
                background-color: transparent;
                border-radius: 20px;
                -webkit-transition: background 0.25s, border 0.25s;
                -o-transition: background 0.25s, border 0.25s;
                transition: background 0.25s, border 0.25s;
            }

            .slider-photo__wrap .slick-dots li.slick-active button {
                background-color: #fff;
            }

.pc .slider-photo__wrap .slick-dots li button:hover {
    background-color: #ddd;
}

.pc .slider-photo__wrap .slick-dots li button.slick-active button:hover {
    background-color: #fff;
}

.slider-photo__list {
    position: relative;
    overflow: hidden;
}

    .slider-photo__list.is-playing .slider-photo__pic {
        opacity: 0 !important;
        pointer-events: none;
    }

    .slider-photo__list .slick-slide {
        overflow: hidden;
    }

.slider-photo__item {
    position: relative;
}

    .slider-photo__item::before {
        content: "";
        display: block;
        padding-bottom: 32.29%;
    }

    .slider-photo__item > .container {
        position: absolute;
        z-index: 6;
        left: 50%;
        top: 0;
        height: 100%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.slider-photo__wrap .slick-prev, .slider-photo__wrap .slick-next {
    opacity: 0 !important;
    margin: 0;
    display: block;
    z-index: 150;
    border-radius: 0;
    position: absolute;
    width: 15vw;
    height: 85%;
    top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    cursor: url("/images/111NewImages/blank.png"), auto;
    outline: 3px dashed #ff6d3b;
}

    .slider-photo__wrap .slick-prev *, .slider-photo__wrap .slick-next * {
        cursor: url("/images/111NewImages/blank.png"), auto !important;
    }

    .slider-photo__wrap .slick-prev::after, .slider-photo__wrap .slick-next::after {
        content: "";
    }

    .slider-photo__wrap .slick-prev::before, .slider-photo__wrap .slick-next::before {
        display: none;
    }

.pc .slider-photo__wrap .slick-prev {
    left: 0;
    cursor: url(/images/111NewImages/arrow3.svg) 40 26, auto !important;
}

.pc .slider-photo__wrap .slick-next {
    left: auto;
    right: 0;
    cursor: url(/images/111NewImages/arrow2.svg) 40 26, auto !important;
}

.mb .slider-photo__wrap .slick-prev, .mb .slider-photo__wrap .slick-next {
    width: 10vw;
    min-width: 60px;
}

    .mb .slider-photo__wrap .slick-prev::after, .mb .slider-photo__wrap .slick-next::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        width: 80px;
        height: 52px;
        margin-top: -26px;
        border: none;
    }

    .mb .slider-photo__wrap .slick-prev::after {
        left: 50%;
        margin-left: -40px;
        background: url(/images/111NewImages/arrow3.svg) 80 52, auto;
    }

    .mb .slider-photo__wrap .slick-next::after {
        left: auto;
        right: 50%;
        margin-right: -40px;
        background: url(/images/111NewImages/arrow2.svg) 80 52, auto;
    }

.slider-photo__pic {
    pointer-events: none;
    display: block;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    height: 100%;
    width: 100%;
    line-height: 0;
}

    .slider-photo__pic img {
        will-change: transform;
        position: absolute;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center center;
        object-position: center center;
        max-width: none !important;
        width: 100%;
        height: 100% !important;
    }

.slider-photo__front {
    position: absolute;
    top: 50%;
    left: var(--w-container-gap);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: left;
    opacity: 0;
    margin-top: 15px;
    width: max(32vw, 200px);
    -webkit-transition: opacity 0.35s, margin 0.75s;
    -o-transition: opacity 0.35s, margin 0.75s;
    transition: opacity 0.35s, margin 0.75s;
}

    .slider-photo__front img {
        display: inline-block;
        vertical-align: middle;
    }

    .slider-photo__front.center {
        text-align: center;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.slick-current .slider-photo__front {
    opacity: 1;
    margin-top: 0;
    -webkit-transition-delay: 0.15s, 0.3s;
    -o-transition-delay: 0.15s, 0.3s;
    transition-delay: 0.15s, 0.3s;
}

.slick-current .slider-photo__pic {
    -webkit-animation-name: scaleDraw; /*關鍵幀名稱*/
    -webkit-animation-timing-function: ease-in-out; /*動畫的速度曲線*/
    -webkit-animation-iteration-count: 1; /*動畫播放的次數*/
    -webkit-animation-duration: 2s; /*動畫所花費的時間*/
}

.slider-photo__video {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

    .slider-photo__video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

@media (max-width: 991px) {
    .slider-photo__item::before {
        content: "";
        display: block;
        /* padding-bottom: 320px;*/
        padding-bottom: 270px;
    }
}

@media (max-width: 540px) {
    .slider-photo__item::before {
        content: "";
        display: block;
        padding-bottom: 200px;
    }
}

@media (max-width: 414px) {
    .slider-photo__item::before {
        content: "";
        display: block;
        padding-bottom: 150px;
    }
}
/*!
 * * * 內頁橫幅
 * */
.p-kanban {
    height: 180px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    background: #111;
    z-index: 1;
    margin: 0;
    border-radius: 0 0 100px 0;
    overflow: hidden;
}

.p-kanban__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

    .p-kanban__bg img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none !important;
        height: 100% !important;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center center;
        object-position: center center;
    }

.p-kanban__text {
    z-index: 10;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: 1.2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 500;
    margin: 0;
    padding: 0;
    font-size: var(--size-default);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    max-width: calc(var(--w-container) - var(--w-container-gap) * 2);
}

    .p-kanban__text .sm, .p-kanban__text .lg {
        -webkit-transition-property: opacity, -webkit-transform;
        transition-property: opacity, -webkit-transform;
        -o-transition-property: transform, opacity;
        transition-property: transform, opacity;
        transition-property: transform, opacity, -webkit-transform;
        -webkit-transition-duration: 0.15s, 0.15s;
        -o-transition-duration: 0.15s, 0.15s;
        transition-duration: 0.15s, 0.15s;
    }

    .p-kanban__text .sm {
        font-size: var(--size-kanban-sm);
        white-space: nowrap;
        display: block;
        margin-top: 15px;
        letter-spacing: 0.1em;
        font-weight: 400;
    }

    .p-kanban__text .lg {
        font-size: var(--size-kanban-lg);
        white-space: nowrap;
        display: block;
    }

.p-kanban[data-aos] .p-kanban__bg img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 1.7s var(--easeInOutQuad);
    transition: opacity 0.5s ease, -webkit-transform 1.7s var(--easeInOutQuad);
    -o-transition: transform 1.7s var(--easeInOutQuad), opacity 0.5s ease;
    transition: transform 1.7s var(--easeInOutQuad), opacity 0.5s ease;
    transition: transform 1.7s var(--easeInOutQuad), opacity 0.5s ease, -webkit-transform 1.7s var(--easeInOutQuad);
}

.p-kanban[data-aos] .p-kanban__text .sm, .p-kanban[data-aos] .p-kanban__text .lg {
    -webkit-transform: translateY(30%);
    -ms-transform: translateY(30%);
    transform: translateY(30%);
    opacity: 0;
}

.p-kanban.aos-animate .p-kanban__bg img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.p-kanban.aos-animate .p-kanban__text .sm, .p-kanban.aos-animate .p-kanban__text .lg {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-duration: 0.85s;
    -o-transition-duration: 0.85s;
    transition-duration: 0.85s;
}

.p-kanban.aos-animate .p-kanban__text .lg {
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.p-kanban.aos-animate .p-kanban__text .sm {
    -webkit-transition-delay: 0.45s;
    -o-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

@media screen and (max-width: 767px) {
    .p-kanban {
        height: 150px;
    }
}
/*!
 * * * 麵包屑
 * */
.p-breadcrumb {
    line-height: 1.2;
    z-index: 10;
    padding-top: 25px;
    padding-bottom: 25px;
}

    .p-breadcrumb[data-aos] {
        opacity: 0;
        -webkit-transition: opacity 0.35s;
        -o-transition: opacity 0.35s;
        transition: opacity 0.35s;
    }

        .p-breadcrumb[data-aos].aos-animate {
            opacity: 1;
        }

    .p-breadcrumb > ul {
        width: 100%;
        position: relative;
        max-width: var(--w-container);
        margin: 0 auto !important;
        padding: 0 var(--w-container-gap);
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .p-breadcrumb > ul li {
            -ms-flex-negative: 0;
            flex-shrink: 0;
            position: relative;
            display: inline-block;
            vertical-align: top;
            color: #777;
            padding-left: 20px;
            font-weight: 400;
            font-size: 0.8823em;
            white-space: nowrap;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
        }

            .p-breadcrumb > ul li::before {
                content: "";
                display: block;
                position: absolute;
                width: 8px;
                height: 8px;
                border-style: solid;
                border-width: 1px 1px 0 0;
                border-color: #aaa;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                left: 4px;
                top: 5px;
            }

            .p-breadcrumb > ul li:last-child {
                -ms-flex-negative: 1;
                flex-shrink: 1;
                color: #555;
            }

            .p-breadcrumb > ul li:first-child {
                padding-left: 0;
                min-width: 50px;
            }

                .p-breadcrumb > ul li:first-child::before {
                    display: none;
                }

            .p-breadcrumb > ul li a {
                color: inherit;
                text-decoration: none;
                display: block;
            }

                .p-breadcrumb > ul li a.p-breadcrumb-home {
                    position: relative;
                    padding-left: 25px;
                }

                    .p-breadcrumb > ul li a.p-breadcrumb-home::before {
                        content: "";
                        width: 20px;
                        height: 20px;
                        display: block;
                        background: url(/images/111NewImages/icon_home.png) no-repeat 0 0/contain;
                        position: absolute;
                        left: 0;
                        top: 0;
                    }

.pc .p-breadcrumb > ul li a:hover {
    text-decoration: underline !important;
    color: #333;
}

@media screen and (max-width: 767px) {
    .p-breadcrumb {
        margin: 0 auto 10px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}


/*!
 * * * 社群分享列表
 * */
.share-group {
    font-size: 0;
}

.sharebox__list .clink {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 38px;
    height: 38px;
    margin: 3px;
    color: inherit;
    background-color: transparent;
    border: none;
    font-size: 0;
    border-radius: 50px;
    -webkit-transition: background 0.25s;
    -o-transition: background 0.25s;
    transition: background 0.25s;
}

    .sharebox__list .clink::before {
        content: "";
        width: 18px;
        height: 18px;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        pointer-events: none;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    }

    .sharebox__list .clink.fb {
        background-color: #073e98;
    }

        .sharebox__list .clink.fb::before {
            background: url(/images/111NewImages/icon_fb.svg) no-repeat center center/contain;
        }

    .sharebox__list .clink.plurk {
        background-color: #e9443d;
    }

        .sharebox__list .clink.plurk::before {
            background: url(/images/111NewImages/icon_plurk.png) no-repeat center center/contain;
        }

    .sharebox__list .clink.twitter {
        background-color: #2ba9e1;
    }

        .sharebox__list .clink.twitter::before {
            background: url(/images/111NewImages/icon_twitter.svg) no-repeat center center/contain;
        }

    .sharebox__list .clink.line {
        background-color: #00c300;
    }

        .sharebox__list .clink.line::before {
            background: url(/images/111NewImages/icon_line.png)no-repeat center center/contain;
        }

    .sharebox__list .clink.print {
        background-color: #939598;
    }

        .sharebox__list .clink.print::before {
            background: url(/images/111NewImages/icon_print.png) no-repeat 0 0/cover;
        }

.pc .sharebox__list .clink:hover {
    border-color: transparent;
}

    .pc .sharebox__list .clink:hover::before {
        -webkit-filter: none;
        filter: none;
    }

.pc .sharebox__list .clink.fb:hover {
    background-color: #3b5998;
}

.pc .sharebox__list .clink.plurk:hover {
    background-color: #f25a54;
}

.pc .sharebox__list .clink.twitter:hover {
    background-color: #52b8e5;
}

.pc .sharebox__list .clink.line:hover {
    background-color: #3cd93c;
}

.pc .sharebox__list .clink.print:hover {
    background-color: #abaeb2;
}

/*!
 * * * 頁碼
 * */
.p-pagination {
    display: block;
    position: relative;
    z-index: 5;
    margin: 2vw auto 0;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
}

    .p-pagination a {
        display: inline-block;
        position: relative;
        margin: 0 2px;
        min-width: 20px;
        font-size: 0.9411rem;
        color: #222;
        text-align: center;
        vertical-align: middle;
        line-height: 50px;
        border-radius: 50px;
        border: none;
        background-color: transparent;
        -webkit-transition: color 0.1s, background 0.1s, border 0.1s;
        -o-transition: color 0.1s, background 0.1s, border 0.1s;
        transition: color 0.1s, background 0.1s, border 0.1s;
    }

    .p-pagination .num:hover {
        color: var(--blue);
    }

    .p-pagination .num.current {
        color: var(--blue);
        text-decoration: underline !important;
    }

    .p-pagination .prev, .p-pagination .next {
        width: 50px;
        height: 50px;
        font-size: 0;
        border: var(--blue) solid 2px;
        border-radius: 100%;
        background: var(--white);
    }

        .p-pagination .prev::before, .p-pagination .next::before {
            display: block;
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -5px 0 0 -7px;
            width: 14px;
            height: 9px;
            background: url(/images/111NewImages/page_aw.svg) no-repeat 0 0;
            background-size: cover;
        }

        .p-pagination .prev:hover, .p-pagination .next:hover {
            background-color: var(--blue);
        }

            .p-pagination .prev:hover::before, .p-pagination .next:hover::before {
                background-position: -14px 0;
            }

        .p-pagination .prev.disabled, .p-pagination .next.disabled {
            opacity: 0.5;
        }

        .p-pagination .next::before {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    .p-pagination .prev {
        margin-left: 40px;
    }

    .p-pagination .next {
        margin-right: 40px;
    }

@media screen and (max-width: 991px) {
    .p-pagination a {
        line-height: 30px;
    }

    .p-pagination .prev, .p-pagination .next {
        width: 30px;
        height: 30px;
        border-width: 1px;
    }

        .p-pagination .prev::before, .p-pagination .next::before {
            margin: -3px 0 0 -5px;
            width: 10px;
            height: 6px;
        }
}

@media screen and (max-width: 767px) {
    .p-pagination .prev {
        margin-right: 15px;
    }

    .p-pagination .next {
        margin-left: 15px;
    }
}

@media screen and (max-width: 991px) {
    .p-pagination a {
        line-height: 30px;
    }

    .p-pagination .prev, .p-pagination .next {
        width: 30px;
        height: 30px;
        border-width: 1px;
    }

        .p-pagination .prev::before, .p-pagination .next::before {
            margin: -3px 0 0 -5px;
            width: 10px;
            height: 6px;
        }
}

@media screen and (max-width: 767px) {
    .p-pagination .prev {
        margin-right: 15px;
    }

    .p-pagination .next {
        margin-left: 15px;
    }
}

/* index service */
.i-service {
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    background: url(/images/111NewImages/i_service_bg.jpg) no-repeat 0 0;
    background-size: 100% auto;
}

    .i-service > .container {
        position: absolute;
        top: 10%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .i-service .bg-road {
        position: relative;
        padding-bottom: 42.565%;
        width: 100%;
        background: url(/images/111NewImages/i_service_road1.png) no-repeat center center;
        background-size: cover;
    }

.i-service-list {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .i-service-list .point {
        display: block;
        position: absolute;
        width: 9.985%;
        max-width: 190px;
        -webkit-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

        .i-service-list .point::before {
            display: block;
            content: "";
            padding-bottom: 107.895%;
            width: 100%;
        }

        .i-service-list .point .bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(/images/111NewImages/i_service_point_bg.png) no-repeat center center;
            background-size: cover;
        }

        .i-service-list .point svg {
            position: absolute;
            z-index: 1;
            top: 2.25%;
            left: 3.3%;
            width: 86.316%;
            max-width: 164px;
        }

        .i-service-list .point .txt {
            position: absolute;
            z-index: 2;
            width: 100%;
            top: 6.4%;
            left: 46.5%;
            width: 76.316%;
            max-width: 145px;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
        }

            .i-service-list .point .txt > div {
                position: relative;
                padding-bottom: 100%;
                width: 100%;
                border-radius: 100%;
                background-color: #fff;
                -webkit-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
                box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
            }

            .i-service-list .point .txt .txth3 {
                position: absolute;
                top: 50%;
                left: 0;
                margin: 0;
                width: 100%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            }

                .i-service-list .point .txt .txth3 > span {
                    display: block;
                    font-size: 1.25em;
                    font-weight: 600;
                    letter-spacing: 0.03em;
                    text-align: center;
                    line-height: 1.35;
                }

                    .i-service-list .point .txt .txth3 > span:nth-child(1) {
                        position: relative;
                        z-index: 1;
                    }

                    .i-service-list .point .txt .txth3 > span:nth-child(2) {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        width: 100%;
                        color: var(--white);
                        -webkit-text-stroke: 2.5px var(--white);
                        text-stroke: 2.5px var(--white);
                        -webkit-transform: translate(-50%, -50%);
                        -ms-transform: translate(-50%, -50%);
                        transform: translate(-50%, -50%);
                        text-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
                    }

            .i-service-list .point .txt.less-word .txth3 > span {
                font-size: 1.38em;
            }

        .i-service-list .point.reverse .bg, .i-service-list .point.reverse svg {
            -webkit-transform: scaleX(-1);
            -ms-transform: scaleX(-1);
            transform: scaleX(-1);
        }

        .i-service-list .point.reverse svg {
            left: 10.5%;
        }

        .i-service-list .point.reverse .txt {
            left: 54%;
        }

        .i-service-list .point:hover {
            -webkit-transform: translateY(-10px);
            -ms-transform: translateY(-10px);
            transform: translateY(-10px);
        }

        .i-service-list .point:nth-child(1) {
            top: 37.5%;
            left: 9%;
        }

            .i-service-list .point:nth-child(1) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#1454a3), to(#1869d2));
                background: -o-linear-gradient(bottom, #1454a3, #1869d2);
                background: linear-gradient(to top, #1454a3, #1869d2);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(2) {
            top: 40%;
            left: 22%;
        }

            .i-service-list .point:nth-child(2) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#334ac5), to(#3756f9));
                background: -o-linear-gradient(bottom, #334ac5, #3756f9);
                background: linear-gradient(to top, #334ac5, #3756f9);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(3) {
            top: 18.5%;
            left: 31.5%;
        }

            .i-service-list .point:nth-child(3) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#6e4fe5), to(#475cdf));
                background: -o-linear-gradient(bottom, #6e4fe5, #475cdf);
                background: linear-gradient(to top, #6e4fe5, #475cdf);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(4) {
            top: 0;
            left: 41%;
        }

            .i-service-list .point:nth-child(4) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#f753a0), to(#f96a89));
                background: -o-linear-gradient(bottom, #f753a0, #f96a89);
                background: linear-gradient(to top, #f753a0, #f96a89);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(5) {
            top: 2.5%;
            left: 56%;
        }

            .i-service-list .point:nth-child(5) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#f93954), to(#fa7310));
                background: -o-linear-gradient(bottom, #f93954, #fa7310);
                background: linear-gradient(to top, #f93954, #fa7310);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(6) {
            top: 6%;
            left: 69%;
        }

            .i-service-list .point:nth-child(6) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#fb6225), to(#ffa800));
                background: -o-linear-gradient(bottom, #fb6225, #ffa800);
                background: linear-gradient(to top, #fb6225, #ffa800);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(7) {
            top: 26%;
            left: 77%;
        }

            .i-service-list .point:nth-child(7) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#fd9500), to(#ffba00));
                background: -o-linear-gradient(bottom, #fd9500, #ffba00);
                background: linear-gradient(to top, #fd9500, #ffba00);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(8) {
            top: 37.5%;
            left: 64%;
        }

            .i-service-list .point:nth-child(8) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#84a500), to(#71b62e));
                background: -o-linear-gradient(bottom, #84a500, #71b62e);
                background: linear-gradient(to top, #84a500, #71b62e);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(9) {
            top: 30.5%;
            left: 50.5%;
        }

            .i-service-list .point:nth-child(9) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#44a200), to(#04bc81));
                background: -o-linear-gradient(bottom, #44a200, #04bc81);
                background: linear-gradient(to top, #44a200, #04bc81);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(10) {
            top: 52.5%;
            left: 41.5%;
        }

            .i-service-list .point:nth-child(10) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#1dbd92), to(#02b3bd));
                background: -o-linear-gradient(bottom, #1dbd92, #02b3bd);
                background: linear-gradient(to top, #1dbd92, #02b3bd);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(11) {
            top: 66.5%;
            left: 57%;
        }

            .i-service-list .point:nth-child(11) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#00bdc8), to(#02a5e9));
                background: -o-linear-gradient(bottom, #00bdc8, #02a5e9);
                background: linear-gradient(to top, #00bdc8, #02a5e9);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .i-service-list .point:nth-child(12) {
            top: 72%;
            left: 72%;
        }

            .i-service-list .point:nth-child(12) .txt .txth3 > span:nth-child(1) {
                background: -webkit-gradient(linear, left bottom, left top, from(#0097d6), to(#2e87fc));
                background: -o-linear-gradient(bottom, #0097d6, #2e87fc);
                background: linear-gradient(to top, #0097d6, #2e87fc);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

@media (max-width: 1679px) {
    .i-service .bg-road {
        padding-bottom: 46.3%;
        background-position: 45% 0;
        background-size: 110% auto;
    }

    .i-service-list .point {
        width: 11.5%;
    }

        .i-service-list .point .txt .txth3 > span {
            font-size: 1.15em;
        }

        .i-service-list .point .txt.less-word .txth3 > span {
            font-size: 1.28em;
        }

        .i-service-list .point:nth-child(3) {
            top: 16%;
            left: 30.5%;
        }

        .i-service-list .point:nth-child(4) {
            top: -3%;
            left: 41%;
        }

        .i-service-list .point:nth-child(5) {
            top: 1.5%;
            left: 56.5%;
        }

        .i-service-list .point:nth-child(6) {
            top: 4.5%;
            left: 71%;
        }

        .i-service-list .point:nth-child(7) {
            top: 28%;
            left: 78.5%;
        }

        .i-service-list .point:nth-child(8) {
            top: 36.5%;
            left: 64.5%;
        }

        .i-service-list .point:nth-child(9) {
            top: 29.5%;
            left: 50%;
        }

        .i-service-list .point:nth-child(10) {
            top: 50.5%;
            left: 40%;
        }

        .i-service-list .point:nth-child(11) {
            top: 63.5%;
            left: 55%;
        }

        .i-service-list .point:nth-child(12) {
            top: 67.5%;
            left: 70%;
        }
}

@media (max-width: 1365px) {
    .i-service > .container {
        top: 8%;
    }

    .i-service .bg-road {
        padding-bottom: 49%;
        background-position: 32% 100%;
        background-size: 115% auto;
    }

    .i-service-list .point {
        width: 13%;
    }

        .i-service-list .point:nth-child(1) {
            top: 34%;
            left: 25px;
        }

        .i-service-list .point:nth-child(2) {
            top: 36%;
            left: 17%;
        }

        .i-service-list .point:nth-child(3) {
            top: 17%;
            left: 30%;
        }

        .i-service-list .point:nth-child(4) {
            top: -3%;
            left: 41%;
        }

        .i-service-list .point:nth-child(5) {
            top: 0.5%;
            left: 57.5%;
        }

        .i-service-list .point:nth-child(6) {
            top: 3%;
            left: 73%;
        }

        .i-service-list .point:nth-child(7) {
            top: 20%;
            left: 85%;
        }

        .i-service-list .point:nth-child(8) {
            top: 33%;
            left: 69%;
        }

        .i-service-list .point:nth-child(9) {
            top: 29%;
            left: 53%;
        }

        .i-service-list .point:nth-child(10) {
            top: 47%;
            left: 41%;
        }

        .i-service-list .point:nth-child(11) {
            top: 63%;
            left: 58%;
        }

        .i-service-list .point:nth-child(12) {
            top: 67.5%;
            left: 75%;
        }
}

@media (max-width: 1199px) {
    .i-service-list .point .txt {
        top: 4.51%;
        width: 81%;
    }

        .i-service-list .point .txt .txth3 > span {
            font-size: 1.1em;
        }

        .i-service-list .point .txt.less-word .txth3 > span {
            font-size: 1.2em;
        }

    .i-service-list .point:nth-child(12).reverse .txt {
        top: 4.51%;
    }
}

@media (max-width: 1079px) {
    .i-service-list .point .txt .txth3 > span {
        font-size: 1em;
    }

    .i-service-list .point .txt.less-word .txth3 > span {
        font-size: 1.1em;
    }
}

@media (max-width: 991px) {
    .i-service {
        padding: 40px 0;
    }

        .i-service > .container {
            position: static;
            top: auto;
            left: auto;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }

        .i-service .sec-subhead {
            text-align: center;
        }

        .i-service .bg-road {
            padding-bottom: 58.522%;
            background-position: 80% 100%;
            background-size: 135% auto;
        }

    .i-service-list .point {
        width: 15%;
    }

        .i-service-list .point:nth-child(1) {
            top: 35%;
            left: 3%;
        }

        .i-service-list .point:nth-child(2) {
            top: 15.5%;
            left: 16%;
        }

            .i-service-list .point:nth-child(2).reverse .bg, .i-service-list .point:nth-child(2).reverse svg {
                -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                transform: scaleX(1);
            }

            .i-service-list .point:nth-child(2).reverse svg {
                top: 2.25%;
                left: 3.3%;
            }

            .i-service-list .point:nth-child(2).reverse .txt {
                left: 46.5%;
            }

        .i-service-list .point:nth-child(3) {
            top: -3%;
            left: 28.5%;
        }

        .i-service-list .point:nth-child(4) {
            top: 3%;
            left: 46%;
        }

        .i-service-list .point:nth-child(5) {
            top: 10.5%;
            left: 62%;
        }

        .i-service-list .point:nth-child(6) {
            top: 34%;
            left: 72%;
        }

        .i-service-list .point:nth-child(7) {
            top: 32.5%;
            left: 55.5%;
        }

        .i-service-list .point:nth-child(8) {
            top: 30%;
            left: 38%;
        }

        .i-service-list .point:nth-child(9) {
            top: 53%;
            left: 29%;
        }

        .i-service-list .point:nth-child(10) {
            top: 64%;
            left: 46%;
        }

        .i-service-list .point:nth-child(11) {
            top: 71%;
            left: 63%;
        }

        .i-service-list .point:nth-child(12) {
            top: 62%;
            left: 80%;
        }
}

@media (max-width: 839px) {
    .i-service-list .point .txt .txth3 > span {
        font-size: 0.85em;
    }

    .i-service-list .point .txt.less-word .txth3 > span {
        font-size: 0.9em;
    }
}

@media (max-width: 767px) {
    .i-service {
        padding-bottom: 0;
        background-size: 260% auto;
    }

        .i-service .bg-road {
            padding-bottom: 1550px;
            background: url(/images/111NewImages/i_service_road1-2.png) no-repeat 53% top;
        }

    .i-service-list {
        left: 50%;
        margin: 0 auto;
        max-width: 350px;
        text-align: center;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .i-service-list .point {
            display: inline-block;
            position: relative;
            width: calc(50% - 3px) !important;
            max-width: 155px !important;
            vertical-align: top;
        }

            .i-service-list .point .txt .txth3 > span {
                font-size: 1em;
            }

            .i-service-list .point .txt.less-word .txth3 > span {
                font-size: 1.1em;
            }

            .i-service-list .point:nth-child(odd) .bg, .i-service-list .point:nth-child(odd) svg {
                -webkit-transform: scaleX(1) !important;
                -ms-transform: scaleX(1) !important;
                transform: scaleX(1) !important;
            }

            .i-service-list .point:nth-child(odd) svg {
                left: 3.3% !important;
            }

            .i-service-list .point:nth-child(odd) .txt {
                left: 46.5% !important;
            }

            .i-service-list .point:nth-child(even) .bg, .i-service-list .point:nth-child(even) svg {
                -webkit-transform: scaleX(-1) !important;
                -ms-transform: scaleX(-1) !important;
                transform: scaleX(-1) !important;
            }

            .i-service-list .point:nth-child(even) svg {
                left: 10.5% !important;
            }

            .i-service-list .point:nth-child(even) .txt {
                left: 53.5% !important;
            }

            .i-service-list .point:nth-child(1) {
                top: 4%;
                left: -1%;
            }

            .i-service-list .point:nth-child(2) {
                top: 9%;
                left: 7%;
            }

            .i-service-list .point:nth-child(3) {
                top: 8%;
                left: -1%;
            }

            .i-service-list .point:nth-child(4) {
                top: 14%;
                left: 7%;
            }

            .i-service-list .point:nth-child(5) {
                top: 12%;
                left: -1%;
            }

            .i-service-list .point:nth-child(6) {
                top: 17%;
                left: 7%;
            }

            .i-service-list .point:nth-child(7) {
                top: 16%;
                left: -1%;
            }

            .i-service-list .point:nth-child(8) {
                top: 21%;
                left: 7%;
            }

            .i-service-list .point:nth-child(9) {
                top: 20%;
                left: -1%;
            }

            .i-service-list .point:nth-child(10) {
                top: 25%;
                left: 7%;
            }

            .i-service-list .point:nth-child(11) {
                top: 24%;
                left: -1%;
            }

            .i-service-list .point:nth-child(12) {
                top: 29%;
                left: 7%;
            }
}
/* index news & schdule */
.i-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

    .i-half .g-btn {
        display: block;
        margin: 2em auto 0;
    }

.i-news {
    position: relative;
    width: 57%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 57%;
    flex: 1 1 57%;
    padding-right: 4%;
    padding-top: 60px;
    padding-bottom: 60px;
}

    .i-news > * {
        position: relative;
        z-index: 10;
    }

    .i-news::after {
        content: "";
        z-index: 0;
        width: 100vw;
        background: #eaf4ff;
        border-radius: 0 100px 100px 0;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: auto;
    }

.i-schdule {
    width: 43%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 43%;
    flex: 1 1 43%;
    padding-left: 4%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.i-schdule-head {
    position: relative;
}

.i-schdule-btns {
    position: absolute;
    bottom: 0.5em;
    right: 0;
}


    .i-schdule-btns > a {
        display: inline-block;
        vertical-align: top;
        margin: 0 5px 5px;
        border-radius: 50px;
        background-color: #eee;
        font-size: var(--size-sm);
        color: var(--blue);
        line-height: 38px;
        padding: 0 12px;
        white-space: nowrap;
    }

        .i-schdule-btns > a::before {
            content: "";
            display: inline-block;
            vertical-align: middle;
            margin: -0.25em 8px 0 0;
            width: 1.25em;
            height: 1.25em;
            background-repeat: no-repeat;
            background-position: 0 0;
            background-size: auto 200%;
        }

        .i-schdule-btns > a.month::before {
            background-image: url(/images/111NewImages/icon_calendar1.svg);
        }

        .i-schdule-btns > a.day::before {
            background-image: url(/images/111NewImages/icon_calendar2.svg);
        }

.pc .i-schdule-btns > a:hover {
    background-color: var(--blue);
    color: #fff;
}

    .pc .i-schdule-btns > a:hover::before {
        background-position: 0 100%;
    }

.i-schdule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .i-schdule-list > li {
        display: block;
        padding: 0.9em 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }

        .i-schdule-list > li .date {
            color: #005ba8;
            font-style: normal;
            position: relative;
            font-family: var(--family-deco);
            font-weight: 300;
            display: block;
            white-space: nowrap;
            line-height: 1;
            margin-bottom: 0.5em;
        }

        .i-schdule-list > li .title {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            overflow: hidden;
            color: inherit;
            line-height: var(--line-height-md);
            padding: 0;
            margin: 0;
        }

.pc .i-schdule-list > li .title:hover {
    color: var(--blue-f-top);
}

.i-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .i-news-list > li {
        display: block;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }

        .i-news-list > li .date {
            color: #005ba8;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 105px;
            flex: 0 0 105px;
            font-style: normal;
            position: relative;
            padding-top: 0.9em;
            padding-bottom: 0.9em;
            font-family: var(--family-deco);
            font-weight: 300;
            text-align: center;
            white-space: nowrap;
        }

            .i-news-list > li .date::after {
                content: "";
                position: absolute;
                z-index: 10;
                display: block;
                height: 1px;
                width: 100%;
                bottom: -1px;
                background: #005ba8;
            }

        .i-news-list > li .title {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            overflow: hidden;
            color: inherit;
            padding: 0.9em 1em;
            line-height: var(--line-height-md);
        }

.pc .i-news-list > li .title:hover {
    color: var(--blue-f-top);
}

.tabs-nav__list > .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

    .tabs-nav__list > .list > .item {
        display: inline-block;
        vertical-align: top;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        padding-left: 5px;
        padding-right: 5px;
    }

        .tabs-nav__list > .list > .item.current button {
            border-color: var(--blue);
            background: var(--blue);
            color: #fff;
        }

    .tabs-nav__list > .list button {
        width: 100%;
        display: block;
        line-height: 48px;
        height: 50px;
        text-align: center;
        white-space: nowrap;
        border-radius: 5px;
        border: 1px solid #ddd;
        background: #fff;
        color: #333;
    }

.tabs-nav__content {
    position: relative;
    margin-top: 0.6em;
}

.tabs-nav__panel {
    display: none;
}

    .tabs-nav__panel.current {
        display: block;
        -webkit-animation: ani_tabs_show 0.6s both;
        animation: ani_tabs_show 0.6s both;
    }

@-webkit-keyframes ani_tabs_show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes ani_tabs_show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (min-width: 1100px) and (max-width: 1399px) {
    .i-schdule-btns {
        bottom: auto;
        top: 0;
    }

    .i-schdule-btns-2 {
        bottom: auto;
        top: 0;
    }
}

@media (max-width: 1099px) {
    .i-half {
        display: block;
    }

    .i-news {
        padding-right: 0;
        display: block;
        width: 100%;
    }

        .i-news::after {
            border-radius: 0;
            width: auto;
            left: calc(-1 * var(--w-container-gap));
            right: calc(-1 * var(--w-container-gap));
        }

    .i-schdule {
        padding-left: 0;
        display: block;
        width: 100%;
    }
}

@media (max-width: 489px) {
    .i-news .sec-subhead {
        text-align: center;
    }

    .tabs-nav__list > .list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .tabs-nav__list > .list .item {
            margin-bottom: 10px;
            width: 50%;
            -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        }

    .i-schdule-head {
        text-align: center;
    }

    .i-schdule-btns {
        top: auto;
        position: relative;
        display: block;
        text-align: center;
        margin: 0.5em auto 0;
    }

    .i-schdule-btns-2 {
        top: auto;
        position: relative;
        display: block;
        text-align: center;
        margin: 0.5em auto 0;
    }
}
/* index event */
.i-event {
    padding-top: 100px;
    padding-bottom: 40px;
    background-image: url(/images/111NewImages/i_event_bg1.png), url(/images/111NewImages/i_event_bg2.png), url(/images/111NewImages/i_event_bg3.png);
    background-position: 0 0, center 0, 101% 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.i-event__controller {
    position: absolute;
    bottom: 0;
    right: var(--w-container-gap);
}

.i-event__prev, .i-event__next {
    z-index: 5;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    font-size: 0;
    margin: 0 5px;
    border: var(--blue) solid 2px;
    border-radius: 100%;
    background: var(--white);
}

    .i-event__prev::before, .i-event__next::before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -5px 0 0 -7px;
        width: 14px;
        height: 9px;
        background: url(/images/111NewImages/page_aw.svg) no-repeat 0 0;
        background-size: cover;
    }

    .i-event__prev:hover, .i-event__next:hover {
        background-color: var(--blue);
    }

        .i-event__prev:hover::before, .i-event__next:hover::before {
            background-position: -14px 0;
        }

    .i-event__prev.slick-disabled, .i-event__next.slick-disabled {
        opacity: 0.5;
    }

    .i-event__next::before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.i-event__pages {
    margin-right: 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
    z-index: 0;
}

    .i-event__pages .cur {
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
        color: #666;
        font-size: max(14px, 0.823em);
    }

    .i-event__pages .total {
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
        color: #666;
        font-size: max(14px, 0.823em);
    }

        .i-event__pages .total::before {
            content: "";
            display: inline-block;
            vertical-align: middle;
            margin: 0 10px 2px 6px;
            height: 1px;
            width: 25px;
            background: #333;
        }

.i-event__list {
    margin: 0 auto;
    padding: 2px;
    text-align: center;
}

    .i-event__list .slick-track, .i-event__list .slick-list {
        margin: auto;
        overflow: visible;
    }

    .i-event__list .slick-slide > div {
        -webkit-transition: all 0.35s;
        -o-transition: all 0.35s;
        transition: all 0.35s;
    }

    .i-event__list .slick-slide.slick-current .i-event__item {
        max-width: 700px;
    }

        .i-event__list .slick-slide.slick-current .i-event__item img {
            opacity: 1;
        }

        .i-event__list .slick-slide.slick-current .i-event__item a {
            margin-left: auto;
            margin-right: auto;
        }

    .i-event__list .slick-slide:not(.slick-current) .i-event__item a {
        width: auto;
    }

.i-event__item {
    display: block;
    max-width: 500px;
}

    .i-event__item a {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 25px 0 25px 0;
        -webkit-transition: -webkit-transform 0.35s;
        transition: -webkit-transform 0.35s;
        -o-transition: transform 0.35s;
        transition: transform 0.35s;
        transition: transform 0.35s, -webkit-transform 0.35s;
        background: #000;
    }

    .i-event__item img {
        position: relative;
        z-index: 0;
        width: 100%;
        /*opacity: 0.7;*/
        -webkit-transition: opacity 0.25s, -webkit-transform 0.35s;
        transition: opacity 0.25s, -webkit-transform 0.35s;
        -o-transition: transform 0.35s, opacity 0.25s;
        transition: transform 0.35s, opacity 0.25s;
        transition: transform 0.35s, opacity 0.25s, -webkit-transform 0.35s;
    }

    .i-event__item .text {
        text-align: left;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(14, 122, 178, 0.7);
        padding: 0.8em;
        color: #fff;
        font-size: 1em;
        line-height: var(--line-height-sm);
        /*display: -webkit-box;*/
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-transition: background 0.35s;
        -o-transition: background 0.35s;
        transition: background 0.35s;
    }

.pc .i-event__item a:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.pc .i-event__item a:hover .text {
    background: rgb(14, 122, 178);
}

@media (min-width: 1800px) {
    .i-event__list.more-type .type-prev > div {
        -webkit-transform: translate(50%, 5%) scale(0.6857);
        -ms-transform: translate(50%, 5%) scale(0.6857);
        transform: translate(50%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-prev.type-closet > div {
        -webkit-transform: translate(14%, 5%) scale(0.6857);
        -ms-transform: translate(14%, 5%) scale(0.6857);
        transform: translate(14%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-next > div {
        -webkit-transform: translate(-50%, 5%) scale(0.6857);
        -ms-transform: translate(-50%, 5%) scale(0.6857);
        transform: translate(-50%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-next.type-closet > div {
        -webkit-transform: translate(-14%, 5%) scale(0.6857);
        -ms-transform: translate(-14%, 5%) scale(0.6857);
        transform: translate(-14%, 5%) scale(0.6857);
    }
}

@media (min-width: 1600px) and (max-width: 1799px) {
    .i-event__list.more-type .type-prev > div {
        -webkit-transform: translate(45%, 5%) scale(0.6857);
        -ms-transform: translate(45%, 5%) scale(0.6857);
        transform: translate(45%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-prev.type-closet > div {
        -webkit-transform: translate(12%, 5%) scale(0.6857);
        -ms-transform: translate(12%, 5%) scale(0.6857);
        transform: translate(12%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-next > div {
        -webkit-transform: translate(-45%, 5%) scale(0.6857);
        -ms-transform: translate(-45%, 5%) scale(0.6857);
        transform: translate(-45%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-next.type-closet > div {
        -webkit-transform: translate(-12%, 5%) scale(0.6857);
        -ms-transform: translate(-12%, 5%) scale(0.6857);
        transform: translate(-12%, 5%) scale(0.6857);
    }
}

@media (min-width: 550px) and (max-width: 1599px) {
    .i-event__list.more-type .type-prev > div {
        -webkit-transform: translate(40%, 5%) scale(0.6857);
        -ms-transform: translate(40%, 5%) scale(0.6857);
        transform: translate(40%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-prev.type-closet > div {
        -webkit-transform: translate(12%, 5%) scale(0.6857);
        -ms-transform: translate(12%, 5%) scale(0.6857);
        transform: translate(12%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-next > div {
        -webkit-transform: translate(-40%, 5%) scale(0.6857);
        -ms-transform: translate(-40%, 5%) scale(0.6857);
        transform: translate(-40%, 5%) scale(0.6857);
    }

    .i-event__list.more-type .type-next.type-closet > div {
        -webkit-transform: translate(-12%, 5%) scale(0.6857);
        -ms-transform: translate(-12%, 5%) scale(0.6857);
        transform: translate(-12%, 5%) scale(0.6857);
    }
}

@media (max-width: 1023px) {
    .i-event {
        padding-top: 70px;
    }
}

@media (max-width: 639px) {
    .i-event {
        padding-top: 50px;
    }

    .i-event__head {
        text-align: center;
    }

    .i-event__controller {
        width: 200px;
        display: block;
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0.5em auto 1em;
        text-align: center;
    }

        .i-event__controller::after {
            content: "";
            clear: both;
            display: block;
        }

    .i-event__prev {
        float: left;
        margin: 0;
    }

    .i-event__next {
        float: right;
        margin: 0;
    }

    .i-event__pages {
        position: absolute;
        text-align: center;
        display: block;
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 549px) {
    .i-event {
        padding-bottom: 20px;
    }

    .i-event__item {
        padding-left: var(--w-container-gap);
        padding-right: var(--w-container-gap);
    }
}
/* index video */
.i-video {
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

    .i-video > .full-bg {
        background: #bcdeff, #ddf3f2;
        /* Horizontal gradient */
        background: -webkit-gradient(linear, left top, right top, from(#bcdeff), to(#ddf3f2));
        background: -o-linear-gradient(left, #bcdeff, #ddf3f2);
        background: linear-gradient(to right, #bcdeff, #ddf3f2);
    }

.i-video__left {
    position: relative;
    z-index: 4;
    -ms-flex-preferred-size: max(350px, 28.5%);
    flex-basis: max(350px, 28.5%);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 30px;
}

    .i-video__left p {
        display: block;
        padding-right: 4vw;
        margin: 2em 0;
    }

.i-video__right {
    position: relative;
    z-index: 5;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.i-video__controller {
    position: relative;
}

.i-video__prev, .i-video__next {
    z-index: 5;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    font-size: 0;
    margin: 0 5px;
    border: var(--blue) solid 2px;
    border-radius: 100%;
    background: var(--white);
}

    .i-video__prev::before, .i-video__next::before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -5px 0 0 -7px;
        width: 14px;
        height: 9px;
        background: url(/images/111NewImages/page_aw.svg) no-repeat 0 0;
        background-size: cover;
    }

    .i-video__prev:hover, .i-video__next:hover {
        background-color: var(--blue);
    }

        .i-video__prev:hover::before, .i-video__next:hover::before {
            background-position: -14px 0;
        }

    .i-video__prev.slick-disabled, .i-video__next.slick-disabled {
        opacity: 0.5;
    }

    .i-video__next::before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.i-video__pages {
    margin-right: 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
    z-index: 0;
}

    .i-video__pages .cur {
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
        color: #666;
        font-size: max(14px, 0.823em);
    }

    .i-video__pages .total {
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
        color: #666;
        font-size: max(14px, 0.823em);
    }

        .i-video__pages .total::before {
            content: "";
            display: inline-block;
            vertical-align: middle;
            margin: 0 10px 2px 6px;
            height: 1px;
            width: 25px;
            background: #333;
        }

.i-video__list {
    margin: 0 auto;
    padding: 2px;
    /*text-align: center;*/
}

    .i-video__list .slick-track, .i-video__list .slick-list {
        margin: auto;
    }

    .i-video__list .slick-slide > div {
        -webkit-transition: all 0.35s;
        -o-transition: all 0.35s;
        transition: all 0.35s;
    }

    .i-video__list .slick-slide.slick-current .i-video__item {
        max-width: 700px;
    }

        .i-video__list .slick-slide.slick-current .i-video__item a {
            margin-left: auto;
            margin-right: auto;
        }

    .i-video__list .slick-slide:not(.slick-current) .i-video__item a {
        width: auto;
    }

.i-video__item {
    text-align: center;
    max-width: 500px;
}

    .i-video__item .text {
        display: block;
        padding: 0;
        font-size: 1em;
        line-height: var(--line-height-sm);
    }

    .i-video__item .img {
        line-height: 0;
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 25px 0 25px 0;
        border: 4px solid #fff;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

        .i-video__item .img img {
            position: relative;
            z-index: 1;
            width: 100%;
            -webkit-transition: -webkit-transform 0.35s;
            transition: -webkit-transform 0.35s;
            -o-transition: transform 0.35s;
            transition: transform 0.35s;
            transition: transform 0.35s, -webkit-transform 0.35s;
        }

        .i-video__item .img::before {
            content: "";
            z-index: 5;
            pointer-events: none;
            display: block;
            position: absolute;
            bottom: 5%;
            left: 5%;
            width: min(20%, 102px);
            padding-bottom: min(20%, 102px);
            background: url(/images/111NewImages/video_play.png) no-repeat 0 0/contain;
            -webkit-transition: -webkit-transform 0.35s;
            transition: -webkit-transform 0.35s;
            -o-transition: transform 0.35s;
            transition: transform 0.35s;
            transition: transform 0.35s, -webkit-transform 0.35s;
        }

.pc .i-video__item .img:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.pc .i-video__item .img:hover::before {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.pc .i-video__item .img:hover + .text {
    color: var(--blue);
}

.mfp-block-media.mfp-bg {
    background-color: #000000;
    opacity: 0.8;
}

.mfp-block-media .mfp-container {
    cursor: auto !important;
    opacity: 0;
    -webkit-transform: scale(0.96);
    -ms-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, opacity 0.3s;
    transition: transform 0.3s ease-in-out, opacity 0.3s;
    transition: transform 0.3s ease-in-out, opacity 0.3s, -webkit-transform 0.3s ease-in-out;
}

.mfp-block-media.mfp-ready .mfp-container {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mfp-block-media.mfp-removing .mfp-container {
    opacity: 0;
    -webkit-transform: scale(0.96);
    -ms-transform: scale(0.96);
    transform: scale(0.96);
}

.mfp-block-media .mfp-close, .mfp-block-media button.mfp-close {
    right: 5px;
    top: 5px;
    cursor: pointer !important;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: inline-block;
    opacity: 1;
    position: absolute;
    font-size: 0;
    background: var(--blue);
}

    .mfp-block-media .mfp-close::before, .mfp-block-media .mfp-close::after, .mfp-block-media button.mfp-close::before, .mfp-block-media button.mfp-close::after {
        content: "";
        width: 18px;
        height: 3px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -1px;
        border-radius: 5px;
        margin-left: -9px;
        background: #fff;
        -webkit-transition: background 0.25s;
        -o-transition: background 0.25s;
        transition: background 0.25s;
    }

    .mfp-block-media .mfp-close::before, .mfp-block-media button.mfp-close::before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .mfp-block-media .mfp-close::after, .mfp-block-media button.mfp-close::after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .mfp-block-media .mfp-close:hover, .mfp-block-media button.mfp-close:hover {
        background: var(--blue-nav);
    }

        .mfp-block-media .mfp-close:hover::before, .mfp-block-media .mfp-close:hover::after, .mfp-block-media button.mfp-close:hover::before, .mfp-block-media button.mfp-close:hover::after {
            background: #fff;
        }

.mfp-block-media .mfp-content {
    position: relative;
    width: 100% !important;
    max-width: min(95vw, 168.8888888889vh);
    margin: 0 auto;
    padding: 0;
    background: url(/images/111NewImages/loading.gif) no-repeat center center/15vh 15vh;
}

    .mfp-block-media .mfp-content::before {
        content: "";
        display: block;
        padding-bottom: 56.25%;
    }

    .mfp-block-media .mfp-content > *, .mfp-block-media .mfp-content iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        line-height: 0;
    }

@media (min-width: 840px) {
    .i-video__wrap {
        width: 97vw;
    }

    .i-video__head {
        padding-top: 50px;
        position: relative;
    }

        .i-video__head > .full-bg {
            left: 120%;
            width: 150vw;
            background: #fff;
        }
}

@media (min-width: 1800px) {
    .i-video__list.more-type .type-next > div {
        -webkit-transform: translate(-15%, 5%) scale(0.6857);
        -ms-transform: translate(-15%, 5%) scale(0.6857);
        transform: translate(-15%, 5%) scale(0.6857);
    }

    .i-video__list.more-type .type-next + .type-next > div {
        -webkit-transform: translate(-53%, 5%) scale(0.6857);
        -ms-transform: translate(-53%, 5%) scale(0.6857);
        transform: translate(-53%, 5%) scale(0.6857);
    }
}

@media (min-width: 840px) and (max-width: 1799px) {
    .i-video__list.more-type .type-next > div {
        -webkit-transform: translate(-12%, 5%) scale(0.6857);
        -ms-transform: translate(-12%, 5%) scale(0.6857);
        transform: translate(-12%, 5%) scale(0.6857);
    }

    .i-video__list.more-type .type-next + .type-next > div {
        -webkit-transform: translate(-45%, 5%) scale(0.6857);
        -ms-transform: translate(-45%, 5%) scale(0.6857);
        transform: translate(-45%, 5%) scale(0.6857);
    }
}

@media (max-width: 839px) {
    .i-video {
        padding-top: 50px;
        display: block;
    }

        .i-video > .full-bg::after {
            content: "";
            display: block;
            top: 0;
            left: 0;
            height: 65%;
            width: 100%;
            background: #fff;
        }

        .i-video .sec-subhead {
            margin-bottom: 1em;
        }

    .i-video__left {
        display: block;
        padding-bottom: 0;
        width: 100%;
        text-align: center;
    }

        .i-video__left p {
            margin: 0.5em auto 1em;
            padding: 0;
        }

    .i-video__right {
        width: 100%;
    }

    .i-video__wrap {
        width: auto;
        margin-left: -10px;
        margin-right: -10px;
    }

    .i-video__item {
        padding-left: 10px;
        padding-right: 10px;
    }

    .i-video__controller {
        width: 200px;
        display: block;
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0.5em auto 0.8em;
        text-align: center;
    }

        .i-video__controller::after {
            content: "";
            clear: both;
            display: block;
        }

    .i-video__prev {
        float: left;
        margin: 0;
    }

    .i-video__next {
        float: right;
        margin: 0;
    }

    .i-video__pages {
        position: absolute;
        text-align: center;
        display: block;
        width: 100%;
        margin: 0;
    }
}
/* index links */
.i-links {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 50px;
}

    .i-links .slick-arrow {
        width: 50px;
        height: 50px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 0;
        border: none;
        background: none;
    }

        .i-links .slick-arrow::before {
            content: "";
            display: block;
            width: 18px;
            height: 18px;
            position: absolute;
            top: 50%;
            margin-top: -9px;
            border-color: var(--blue);
            border-style: solid;
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .i-links .i-links__prev {
        left: -50px;
    }

        .i-links .i-links__prev::before {
            left: 50%;
            margin-left: -7px;
            border-width: 2px 0 0 2px;
        }

    .i-links .i-links__next {
        right: -50px;
    }

        .i-links .i-links__next::before {
            right: 50%;
            margin-right: -7px;
            border-width: 0 2px 2px 0;
        }

.i-links__item {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    text-align: center;
}

    .i-links__item::before {
        content: "";
        display: block;
        position: absolute;
        left: -1px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #eee;
    }

    .i-links__item a {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

        .i-links__item a img {
            display: inline-block;
        }

@media (max-width: 1549px) {
    .i-links {
        padding-left: 50px;
        padding-right: 50px;
    }
}
/* ------ 開源資料頁 */
#service.mainwrap {
    position: relative;
}

    #service.mainwrap > * {
        position: relative;
        z-index: 10;
    }

    #service.mainwrap::before {
        content: "";
        display: block;
        z-index: 0;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 50vh;
        background: #ddeeff, #fefefe;
        /* Vertical gradient */
        background: -webkit-gradient(linear, left top, left bottom, from(#ddeeff), to(#fefefe));
        background: -o-linear-gradient(top, #ddeeff, #fefefe);
        background: linear-gradient(to bottom, #ddeeff, #fefefe);
    }

#service .i-service {
    background: none;
}

#service .i-service-list li {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
}

#service .i-half {
    margin-bottom: 120px;
}

@media (max-width: 1099px) {
    #service .i-service-list li {
        width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    }

    #service .i-half {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    #service .i-half {
        margin-bottom: 0;
    }
}

@media (max-width: 639px) {
    #service .i-service-list li {
        width: 33.3333333333%;
        -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    }
}

@media (max-width: 499px) {
    #service .i-service-list li {
        width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}
/* ------ ⭐內頁樣式開始 */
/* ---- 內頁共用樣式 ---- */
/* 沒有資料提示區塊 */
.block-nodata {
    margin: auto;
    padding: 60px 0;
    text-align: center;
}

    .block-nodata .img {
        display: block;
        position: relative;
        margin: 0 auto 15px auto;
        width: 85px;
        height: 85px;
        border-radius: 50%;
        border: 3px dashed var(--blue-green);
    }

        .block-nodata .img::before {
            content: "!";
            position: absolute;
            top: 50%;
            left: 50%;
            font-family: var(--family-deco);
            font-size: 2.25em;
            color: var(--blue-green);
            font-style: normal;
            font-weight: 900;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .block-nodata .text {
        margin: 20px auto 30px;
        color: #555;
        letter-spacing: 0.05em;
        text-align: center;
        text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    }

        .block-nodata .text .t-cut {
            display: block;
        }

        .block-nodata .text strong {
            display: block;
            margin: 0 auto 10px;
            font-weight: 500;
        }

    .block-nodata .btns {
        text-align: center;
    }

    .block-nodata[data-aos] .img {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
        -o-transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    }

    .block-nodata[data-aos] .text {
        opacity: 0;
        -webkit-transform: translate(0, -20px);
        -ms-transform: translate(0, -20px);
        transform: translate(0, -20px);
        -webkit-transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
        transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
        -o-transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
        transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
        transition: opacity 0.3s 0.2s, transform 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
    }

    .block-nodata[data-aos] .btns {
        opacity: 0;
        -webkit-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        transform: translate(0, 10px);
        -webkit-transition: opacity 0.3s 0.22s, -webkit-transform 0.3s 0.22s;
        transition: opacity 0.3s 0.22s, -webkit-transform 0.3s 0.22s;
        -o-transition: opacity 0.3s 0.22s, transform 0.3s 0.22s;
        transition: opacity 0.3s 0.22s, transform 0.3s 0.22s;
        transition: opacity 0.3s 0.22s, transform 0.3s 0.22s, -webkit-transform 0.3s 0.22s;
    }

    .block-nodata[data-aos].aos-animate .img {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .block-nodata[data-aos].aos-animate .text, .block-nodata[data-aos].aos-animate .btns {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

@media screen and (max-width: 1199px) {
    .block-nodata {
        padding: 50px 0;
    }

        .block-nodata .text {
            margin-bottom: 35px;
        }
}
/* hover */
.hover-style .pic {
    position: relative;
}

.hover-style .more {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

    .hover-style .more::before {
        display: block;
        content: "VIEW MORE";
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: var(--size-sm);
        color: #fff;
        font-weight: 300;
        letter-spacing: -0.05em;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.5s 0.15s ease-in-out;
        -o-transition: all 0.5s 0.15s ease-in-out;
        transition: all 0.5s 0.15s ease-in-out;
    }

.hover-style .view {
    background-color: #f4f4f4;
}

.hover-style:hover .more {
    opacity: 1;
    visibility: visible;
}

    .hover-style:hover .more::before {
        letter-spacing: 0.18em;
        opacity: 1;
    }

.hover-style:hover .view {
    color: var(--white);
    background-color: var(--blue);
}

/* ---- 內頁架構間距 ---- */
.mainwrap.pge-bg {
    padding-bottom: 9.5vw;
}

.p-breadcrumb {
    padding-bottom: 3vw;
}

@media screen and (max-width: 991px) {
    .mainwrap.pge-bg {
        padding-bottom: 40px;
    }
}
/* ---- 編輯器框架 ---- */
.article-editor p {
    margin: 5px 0;
}

/* ---- 內頁左右欄，加上flex-block ---- */
.container.flex-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sidebar {
    width: 17.858%;
    max-width: 250px;
}

.right-main {
    padding-left: 3.7vw;
    width: 82.142%;
}

@media screen and (max-width: 1079px) {
    .sidebar, .right-main {
        width: 100%;
        max-width: 100%;
    }

    .right-main {
        padding-left: 0;
    }
}
/* ---- 內頁選單 ---- */
.side-title {
    position: relative;
    padding: 19px 20px 19px 1vw;
    max-height: 75px;
    font-size: 1.5294em;
    color: var(--white);
    font-weight: 500;
    line-height: 62px;
    border-radius: 0 0 30px 0;
    background: url(/images/111NewImages/side_ti_bg.svg) no-repeat 90% center #1187bc;
    background-size: 60px auto;
}

    .side-title a {
        padding: 0.4vw 0 0 1vw;
        width: 100%;
        height: 100%;
        font-size: 0.55em;
        color: rgba(255, 255, 255, 0.5);
        line-height: var(--line-height-ss);
    }

    .side-title span {
        display: inline-block;
        z-index: 2;
        height: auto;
        line-height: var(--line-height-ss);
    }

.accordion-body a {
    padding: 5px 10px 5px 40px !important;
    font-size: medium;
}

.sidemenu {
    font-size: var(--size-lg);
}

    .sidemenu li {
        border-bottom: #ddd solid 1px;
    }

    .sidemenu a {
        display: block;
        position: relative;
        padding: 10px 10px 5px 0px;
        color: var(--gray) !important;
        line-height: var(--line-height-md);
    }

        .sidemenu a:hover {
            color: var(--blue-nav);
        }

        .sidemenu a::before {
            display: block;
            content: "";
            position: absolute;
            top: 25px;
            left: 20px;
            margin-top: -6px;
            width: 8px;
            height: 12px;
            /*background: url(/images/111NewImages/sidemenu_aw.svg) no-repeat 0 0;*/
            background-size: cover;
            overflow: hidden;
            -webkit-transition: all 0.25s var(--ease-in-out);
            -o-transition: all 0.25s var(--ease-in-out);
            transition: all 0.25s var(--ease-in-out);
        }

        .sidemenu a:hover::before {
            background-position: -8px 0;
        }


    .sidemenu li.current a {
        color: var(--blue-nav);
        background-color: var(--sky);
    }

        .sidemenu li.current a::before {
            background-position: -8px 0;
        }


    .sidemenu li::marker {
        content: "";
    }



    /*-------------------------------------------------------*/
    .sidemenu button {
        display: block;
        position: relative;
        padding: 10px 10px 10px 30px;
        color: var(--gray);
        line-height: var(--line-height-md);
    }

    .sidemenu span :focus-visible {
        outline-style: dashed;
        outline-width: 3px;
        outline: 3px dashed #ff6d3b;
    }

    .sidemenu button:hover {
        color: var(--blue-nav);
    }

    .sidemenu button::before {
        display: block;
        content: "";
        position: absolute;
        top: 25px;
        left: 10px;
        margin-top: -6px;
        width: 8px;
        height: 12px;
        background: url(/images/111NewImages/sidemenu_aw.svg) no-repeat 0 0;
        background-size: cover;
        overflow: hidden;
        -webkit-transition: all 0.25s var(--ease-in-out);
        -o-transition: all 0.25s var(--ease-in-out);
        transition: all 0.25s var(--ease-in-out);
    }

    .sidemenu button:hover::before {
        background-position: -8px 0;
    }


    .sidemenu li.current button {
        color: var(--blue-nav);
        background-color: var(--sky);
    }

        .sidemenu li.current button::before {
            background-position: -8px 0;
        }
/*-------------------------------------------------------*/



@media screen and (min-width: 1080px) {
    .sidemenu {
        display: block !important;
    }
}

@media screen and (max-width: 1279px) {
    .side-title {
        font-size: 1.294em;
        background-size: 60px auto;
    }
}

@media screen and (max-width: 1079px) {
    .side-title a {
        padding: 0 0 0 0.5vw;
    }

    .sidebar {
        margin-bottom: 20px;
    }

    .side-title {
        position: relative;
        padding: 10px 15px;
        font-size: 1.176em;
        letter-spacing: 0.1em;
        cursor: pointer;
        line-height: var(--line-height-md);
        background-position: 93% center;
        background-size: 45px auto;
    }

        .side-title > i {
            display: block;
            position: absolute;
            top: 50%;
            right: 20px;
            margin-top: -10px;
            width: 20px;
            height: 20px;
        }

            .side-title > i::before, .side-title > i::after {
                display: block;
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 2px;
                background-color: #fff;
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                -webkit-transition: all 0.25s ease-in-out;
                -o-transition: all 0.25s ease-in-out;
                transition: all 0.25s ease-in-out;
            }

            .side-title > i::after {
                -webkit-transform: translate(-50%, -50%) rotate(90deg);
                -ms-transform: translate(-50%, -50%) rotate(90deg);
                transform: translate(-50%, -50%) rotate(90deg);
            }

        .side-title.is-open i::before {
            opacity: 0;
        }

        .side-title.is-open i::after {
            -webkit-transform: translate(-50%, -50%) rotate(0deg);
            -ms-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
        }

    .sidemenu {
        display: none;
    }

        .sidemenu a {
            padding: 5px 10px 5px 25px;
        }

            .sidemenu a::before {
                top: 20px;
            }
}

@media screen and (max-width: 575px) {
    .sidebar {
        margin-bottom: 15px;
    }

    .side-title {
        border-radius: 0 0 15px 0;
        background-position: 82% center;
    }
}
/* ---- article-title ---- */
.article-title {
    margin-bottom: 2.5vw;
    padding-bottom: 1vw;
    border-bottom: #333 solid 2px;
}

    .article-title .category {
        color: var(--blue-nav);
    }

    .article-title .headline {
        position: relative;
        margin: 0;
        padding-left: 1.8vw;
        font-size: var(--size-article-title);
        color: var(--black);
        font-weight: 500;
        line-height: var(--line-height-md);
    }

        .article-title .headline::before {
            display: block;
            content: "";
            position: absolute;
            top: 3px;
            left: 0;
            width: 8px;
            height: 100%;
            background-color: var(--blue-nav);
        }

    .article-title ul.data {
        margin-top: 10px;
        font-size: 0;
        line-height: var(--line-height-md);
    }

        .article-title ul.data > li {
            display: inline-block;
            padding-right: 30px;
            font-size: var(--size-sm);
            color: var(--gray-thin);
            vertical-align: middle;
        }

            .article-title ul.data > li > i {
                padding-right: 8px;
                color: var(--gray-light);
            }

    .article-title.has-share {
        position: relative;
    }

        .article-title.has-share .headline {
            padding-right: 260px;
        }

        .article-title.has-share .sharebox__wrap {
            position: absolute;
            top: 42%;
            right: 0;
        }

@media screen and (max-width: 1279px) {
    .article-title {
        margin-bottom: 40px;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 1079px) {
    .article-title .headline {
        padding-left: 20px;
    }

    .article-title ul.data {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .sharebox__list .clink {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 575px) {
    .article-title {
        margin-bottom: 25px;
    }

        .article-title .data > li:nth-child(1) {
            padding-right: 0;
            width: 100%;
        }

        .article-title.has-share {
            padding-bottom: 8px;
        }

            .article-title.has-share .headline {
                padding-right: 0;
            }

            .article-title.has-share .sharebox__wrap {
                position: static;
                top: 0;
                right: auto;
                margin-top: 10px;
            }

                .article-title.has-share .sharebox__wrap .share-group {
                    text-align: right;
                }
}

@media screen and (max-width: 413px) {
    .article-title.has-share .sharebox__wrap {
        padding-left: 16px;
    }

        .article-title.has-share .sharebox__wrap .share-group {
            text-align: left;
        }
}
/* ---- 消息view 下載+相簿 ---- */
.feature {
    margin-top: 3vw;
    /*border-top: var(--gray) solid 1px;*/
}

.download .ti {
    margin: 10px 0;
    font-size: 1.294em;
    color: var(--black);
    font-weight: 500;
    line-height: var(--line-height-md);
}

    .download .ti i {
        padding-right: 6px;
        color: var(--gray);
    }

.download .box {
    padding: 13px 1.6vw;
    line-height: 3rem;
    font-size: 0;
    background-color: #f4f4f4;
    border-radius: 3%;
}

    .download .box a {
        display: inline-block;
        position: relative;
        padding: 5px 30px 5px 45px;
        font-size: var(--size-default);
        color: var(--gray);
        vertical-align: middle;
        line-height: var(--line-height-md);
        max-width: 19em;
        min-width: 19em;
    }

        .download .box a:hover {
            color: var(--blue-green);
        }

        .download .box a::before {
            display: block;
            content: "";
            position: absolute;
            /*top: 0;*/
            left: 0;
            width: 30px;
            height: 40px;
            background: url(/images/111NewImages/icon_file.svg) no-repeat 0 0;
            background-size: cover;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

.album {
    margin: 3vw auto 0;
    padding: 0 4.85vw;
    max-width: 850px;
}

    .album .slick-slide {
        margin-bottom: 0;
        line-height: 0;
    }

    .album img {
        width: 100%;
    }

.pic-slick {
    position: relative;
    margin: 0 auto;
    padding: 6px;
    max-width: 662px;
    background-color: var(--white);
    border-radius: 6px;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.small-pic {
    margin: 20px auto 0;
    max-width: 650px;
}

    .small-pic .thumb-slick {
        margin: 0 -6px;
    }

        .small-pic .thumb-slick .item {
            padding: 6px;
        }

            .small-pic .thumb-slick .item a {
                display: block;
                padding: 1px;
            }

        .small-pic .thumb-slick img {
            display: block;
            border: transparent solid 3px;
            border-radius: 4px;
        }

        .small-pic .thumb-slick .slick-current img {
            border-color: #1593eb;
        }

.slick-aw .slick-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 54px;
    height: 54px;
    text-indent: -9999px;
    cursor: pointer;
    border: var(--blue) solid 1px;
    border-radius: 100%;
    background-color: var(--white);
    overflow: hidden;
}

    .slick-aw .slick-arrow::before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 52%;
        width: 10px;
        height: 10px;
        border-style: solid;
        border-width: 2px 2px 0 0;
        border-color: var(--blue) var(--blue) transparent transparent;
        -webkit-transform: translate(-50%, -50%) rotate(-135deg);
        -ms-transform: translate(-50%, -50%) rotate(-135deg);
        transform: translate(-50%, -50%) rotate(-135deg);
    }

    .slick-aw .slick-arrow.slick-prev {
        left: -95px;
    }

    .slick-aw .slick-arrow.slick-next {
        right: -95px;
    }

        .slick-aw .slick-arrow.slick-next::before {
            left: 48%;
            -webkit-transform: translate(-50%, -50%) rotate(45deg);
            -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
        }

    .slick-aw .slick-arrow:hover {
        background-color: var(--blue);
    }

        .slick-aw .slick-arrow:hover::before {
            border-color: var(--white) var(--white) transparent transparent;
        }

@media screen and (max-width: 1279px) {
    .feature {
        margin-top: 40px;
    }

    .download .box {
        padding: 18px 15px;
    }

    .album {
        margin-top: 40px;
    }

    .slick-aw .slick-arrow {
        width: 40px;
        height: 40px;
    }

        .slick-aw .slick-arrow.slick-prev {
            left: -70px;
        }

        .slick-aw .slick-arrow.slick-next {
            right: -70px;
        }
}

@media screen and (max-width: 991px) {
    .album {
        padding: 0 10px;
    }

    .small-pic {
        margin-top: 15px;
    }

        .small-pic .thumb-slick .item {
            padding: 4px;
        }

    .slick-aw .slick-arrow {
        width: 34px;
        height: 34px;
    }

        .slick-aw .slick-arrow.slick-prev {
            left: -10px;
        }

        .slick-aw .slick-arrow.slick-next {
            right: -10px;
        }
}

@media screen and (max-width: 767px) {
    .download .box {
        padding: 10px 15px;
    }

        .download .box a {
            padding-left: 30px;
        }

            .download .box a::before {
                top: 7px;
                width: 20px;
                height: 27px;
            }
}

@media screen and (max-width: 575px) {
    .feature, .album {
        margin-top: 30px;
    }

    .download .ti {
        font-size: 1.0588em;
    }

    .small-pic {
        margin-top: 5px;
    }
}
/* ---- 消息view 分享 ---- */
.down-bar {
    margin-top: 3vw;
    padding-top: 1.2vw;
    font-size: 0;
    border-top: var(--gray) solid 1px;
}

    .down-bar > div {
        display: inline-block;
        vertical-align: middle;
    }

    .down-bar .sharebox__wrap {
        width: calc(100% - 210px);
    }

    .down-bar .txt-right {
        width: 210px;
        text-align: right;
    }

    .down-bar .g-btn {
        margin-bottom: 0;
    }

@media screen and (min-width: 839px) {
    .down-bar .g-btn {
        height: calc(var(--btn-height) - 10px);
        line-height: calc(var(--btn-height) - 14px);
    }
}

@media screen and (max-width: 1279px) {
    .down-bar {
        margin-top: 40px;
        padding-top: 20px;
    }
}

@media screen and (max-width: 575px) {
    .down-bar {
        margin-top: 30px;
    }

        .down-bar .sharebox__wrap, .down-bar .txt-right {
            width: 100%;
        }

        .share-group, .down-bar .txt-right {
            text-align: center;
        }

        .down-bar .sharebox__wrap {
            margin-bottom: 10px;
        }
}
/* ---- 電子櫃列表 ---- */
.bookcase-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

    .bookcase-list .col-4 {
        width: 33.333%;
    }

    .bookcase-list .col-3 {
        width: 25%;
    }

    .bookcase-list .item {
        margin-bottom: 35px;
    }

        .bookcase-list .item a {
            display: block;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .bookcase-list .item .name {
            margin: 20px 0;
            padding: 0 10px;
            font-size: 1.1764em;
            color: var(--gray);
            line-height: var(--line-height-ss);
        }

            .bookcase-list .item .name span {
                display: block;
                margin-top: 5px;
                font-size: var(--size-sm);
            }

        .bookcase-list .item img {
            width: 100%;
            vertical-align: top;
        }

        .bookcase-list .item .g-btn {
            max-width: 88px;
            height: calc(var(--btn-height) - 22px);
            font-size: 0.8235em;
            font-weight: 300;
            line-height: calc(var(--btn-height) - 23px);
            border: none;
        }

@media screen and (min-width: 440px) {
    .bookcase-list .item .name {
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media screen and (max-width: 1279px) {
    .bookcase-list .item .name {
        font-size: 1.0588em;
    }
}

@media screen and (max-width: 991px) {
    .bookcase-list .item {
        margin-bottom: 25px;
    }

        .bookcase-list .item .name {
            font-size: var(--size-default);
        }

    .bookcase-list .col-3 {
        width: 33.3333%;
    }
}

@media screen and (max-width: 839px) {
    .bookcase-list .item .g-btn {
        height: calc(var(--btn-height) - 12px);
        line-height: calc(var(--btn-height) - 13px);
    }
}

@media screen and (max-width: 767px) {
    .bookcase-list .col-4 {
        width: 50%;
    }

    .bookcase-list .col-3 {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .bookcase-list .item a {
        max-width: 312px;
    }

    .bookcase-list .col-4, .bookcase-list .col-3 {
        width: 100%;
    }
}
/* index */
#bookcase-index .bookcase-list {
    margin: 0 -1.158vw;
}

    #bookcase-index .bookcase-list .item {
        padding: 0 1.158vw;
    }

        #bookcase-index .bookcase-list .item a {
            padding: 13px 13px 18px 13px;
            border: #eee solid 1px;
            background-color: var(--white);
            -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
        }

#bookcase-index .g-btn.ring {
    margin-bottom: 35px;
    max-width: 290px;
}

@media screen and (max-width: 991px) {
    #bookcase-index .bookcase-list .item a {
        padding: 6px 6px 18px 6px;
    }
}

@media screen and (max-width: 767px) {
    #bookcase-index .g-btn.ring {
        display: block;
        margin: 0 auto 25px;
    }
}
/* list */
#bookcase .bookcase-list {
    padding: 0 32px;
}

    #bookcase .bookcase-list .item {
        position: relative;
    }

        #bookcase .bookcase-list .item a {
            position: relative;
            z-index: 2;
        }

        #bookcase .bookcase-list .item .pic {
            position: relative;
            padding: 0 0.7vw 16px;
            background: url(/images/111NewImages/bookcase_pic_bg.jpg) repeat-x left bottom;
        }

        #bookcase .bookcase-list .item .more {
            top: 0;
            left: 0.7vw;
            width: calc(100% - 1.4vw);
            height: calc(100% - 16px);
        }

        #bookcase .bookcase-list .item .name {
            margin-top: 1.2vw;
            font-size: var(--size-lg);
        }

@media screen and (min-width: 576px) {
    #bookcase .bookcase-list .item:last-child .pic::after {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        right: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-r.jpg) no-repeat 0 0;
    }
}

@media screen and (min-width: 992px) {
    #bookcase .bookcase-list .item:nth-of-type(20n+1) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+5) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+9) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+13) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+17) .pic::before {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        left: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-l.jpg) no-repeat 0 0;
    }

    #bookcase .bookcase-list .item:nth-of-type(20n+4) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+8) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+12) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+16) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+20) .pic::before {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        right: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-r.jpg) no-repeat 0 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #bookcase .bookcase-list .item:nth-of-type(20n+1) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+4) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+7) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+10) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+13) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+16) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+19) .pic::before {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        left: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-l.jpg) no-repeat 0 0;
    }

    #bookcase .bookcase-list .item:nth-of-type(20n+3) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+6) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+9) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+12) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+15) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+18) .pic::before {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        right: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-r.jpg) no-repeat 0 0;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    #bookcase .bookcase-list .item:nth-of-type(20n+1) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+3) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+5) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+7) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+9) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+11) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+13) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+15) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+17) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+19) .pic::before {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        left: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-l.jpg) no-repeat 0 0;
    }

    #bookcase .bookcase-list .item:nth-of-type(20n+2) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+4) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+6) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+8) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+10) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+12) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+14) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+16) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+18) .pic::before, #bookcase .bookcase-list .item:nth-of-type(20n+20) .pic::before {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        right: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-r.jpg) no-repeat 0 0;
    }
}

@media screen and (max-width: 991px) {
    #bookcase .bookcase-list .item .name {
        margin-top: 15px;
        font-size: var(--size-default);
    }
}

@media screen and (max-width: 575px) {
    #bookcase .bookcase-list .item .pic::before, #bookcase .bookcase-list .item .pic::after {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        left: -32px;
        width: 32px;
        height: 18px;
        background: url(/images/111NewImages/bookcase_pic_bg-l.jpg) no-repeat 0 0;
    }

    #bookcase .bookcase-list .item .pic::after {
        left: auto;
        right: -32px;
        background: url(/images/111NewImages/bookcase_pic_bg-r.jpg) no-repeat 0 0;
    }
}
/* ---- 教練證照查詢系統 ---- */
.license-bg {
    background: #e4f2fc;
}

#license.mainwrap.pge-bg {
    background: none;
    background: rgb(230, 243, 251);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(230, 243, 251)), color-stop(57%, rgb(255, 255, 255)));
    background: -o-linear-gradient(top, rgb(230, 243, 251) 0%, rgb(255, 255, 255) 57%);
    background: linear-gradient(to bottom, rgb(230, 243, 251) 0%, rgb(255, 255, 255) 57%);
}

#license .box {
    padding: 3vw 4.3vw;
    border-radius: 50px;
    background-color: #fff;
}

#license .ti {
    margin: 0 0 2vw;
    padding-bottom: 0.3vw;
    border-bottom: var(--blue) solid 2px;
}

    #license .ti .tw {
        display: block;
        font-size: var(--size-lg);
        letter-spacing: 0.15em;
        line-height: var(--line-height-sm);
    }

    #license .ti .en {
        font-size: var(--size-subhead-lg);
        color: var(--blue);
        font-weight: 600;
        line-height: var(--line-height-ss);
    }

#license .btn-group {
    margin: 2vw auto 0;
    max-width: 840px;
}

    #license .btn-group > ul {
        margin: 0 -10px;
        font-size: 0;
        text-align: center;
    }

        #license .btn-group > ul > li {
            display: inline-block;
            padding: 0 10px;
            width: 50%;
            vertical-align: middle;
        }

@media screen and (max-width: 1279px) {
    #license .box {
        padding: 4vw;
    }
}

@media screen and (max-width: 991px) {
    #license .box {
        padding: 30px;
        border-radius: 25px;
    }

    #license .btn-group {
        margin-top: 10px;
    }

        #license .btn-group ul {
            margin: 0 -5px;
        }

            #license .btn-group ul > li {
                padding: 0 5px;
            }
}

@media screen and (max-width: 575px) {
    #license .box {
        padding: 30px 20px;
    }

    #license .btn-group > ul > li {
        margin-bottom: 10px;
        width: 100%;
    }

    #license .btn-group a {
        margin: 0;
    }
}
/* ---- 列印 ---- */
@media print {
    .print-no {
        display: none;
    }
}
/* 以下套程式後可刪除 */
.article-editor .pic {
    margin-left: 2.5vw;
    float: right;
}

@media screen and (max-width: 991px) {
    .article-editor .pic {
        margin: 0;
        float: none;
        text-align: center;
    }
}

.list-temp > li:not(:last-child) {
    margin-bottom: 5px;
}

.list-temp > li {
    position: relative;
    padding-left: 40px;
}

    .list-temp > li span {
        position: absolute;
        top: 0;
        left: 0;
    }

.btn-blue {
    background-color: #0069BA;
    color: white;
    cursor: pointer;
}

.btn-outline-blue {
    border: solid 1px #0069BA;
    color: #0069BA;
    cursor: pointer;
}

.btn-rounded {
    border-radius: 0.5rem;
}

.table-blue {
    background-color: #2980B9;
    color: white;
}

tbody tr:nth-child(even) {
    background-color: #fffcf1;
}

.submenu_li {
    list-style-type: none;
    background-color: #eeeeee;
}

    .submenu_li a {
        color: #000;
    }

.submenu_li {
    border-left: solid 4px #0069BA;
    transition-duration: 0.2s;
}

    .submenu_li:hover {
        border-left: solid 8px #005a9f;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    }

.dataset-list {
    border-bottom: 1px solid #e9edf2;
}

    h4,
    .dataset-list h4 a {
        color: #005a9f;
    }

        .dataset-list h4 a:hover {
            color: #004e89;
            text-decoration: underline;
        }

.file-type {
    background-color: white;
}

.CSV {
    border: solid 1px #0D6EFD;
    color: #0D6EFD;
}

.JSON {
    border: solid 1px #198754;
    color: #198754;
}

.XML {
    border: solid 1px #FFC107;
    color: #FFC107;
}

.accordion-body a {
    color: #000;
}

.fa-facebook-square {
    color: #1877F2;
    font-size: 1.5rem;
}

.fa-twitter-square {
    color: #1D9BF0;
    font-size: 1.5rem;
}

.feedback a {
    background-color: #005a9f;
    color: white;
    border-radius: 2px;
}

.star {
    color: #ffdd03;
    font-size: 1rem;
}

.open-data-content-table tr {
    background-color: white !important;
}

    .open-data-content-table tr th {
        background-color: #F1F1F1;
    }

.race-list-content {
    color: black;
    text-align: left;
}

.race-list .item a {
    padding: 13px 13px 18px 13px;
    border: #eee solid 1px;
    background-color: var(--white);
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.race-list .item {
    padding: 0 1.158vw;
}

.announcement-item {
    background: #7e7f80;
    color: white;
    border-radius: 4px;
    padding: 2px 16px;
    margin: 0px 8px;
}

.active {
    background: #1796d5;
}

.form-check-input-radio {
    width: 1em !important;
    height: 1em !important;
    margin-top: 0.25em !important;
    vertical-align: top !important;
    background-color: #fff !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    border: 1px solid rgba(0, 0, 0, .25) !important;
}

    .form-check-input-radio:checked[type=radio] {
        background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e) !important;
    }

    .form-check-input-radio:checked {
        background-color: #0d6efd !important;
        border-color: #0d6efd !important;
    }





/*///////*/
.pagination {
    display: block;
    position: relative;
    z-index: 5;
    margin: 2vw auto 0;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
}

    .pagination a {
        display: inline-block;
        position: relative;
        margin: 0 2px;
        min-width: 20px;
        font-size: 0.9411rem;
        color: #222;
        text-align: center;
        vertical-align: middle;
        line-height: 50px;
        border-radius: 50px;
        border: none;
        background-color: transparent;
        -webkit-transition: color 0.1s, background 0.1s, border 0.1s;
        -o-transition: color 0.1s, background 0.1s, border 0.1s;
        transition: color 0.1s, background 0.1s, border 0.1s;
    }

        .pagination a:hover {
            color: var(--blue);
            font-size: large;
        }

        .pagination a.active {
            color: var(--blue);
            text-decoration: underline !important;
        }

        .pagination a:first-child,
        .pagination a:last-child {
            width: 50px;
            height: 50px;
            font-size: 0;
            border: var(--blue) solid 2px;
            border-radius: 100%;
            background: var(--white);
        }

            .pagination a:first-child::before,
            .pagination a:last-child::before {
                display: block;
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                margin: -5px 0 0 -7px;
                width: 14px;
                height: 9px;
                background: url(/images/111NewImages/page_aw.svg) no-repeat 0 0;
                background-size: cover;
            }

            .pagination a:first-child:hover,
            .pagination a:last-child:hover {
                background-color: var(--blue);
            }

                .pagination a:first-child:hover::before,
                .pagination a:last-child:hover::before {
                    background-position: -14px 0;
                }

            .pagination a:last-child::before {
                -webkit-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                transform: rotate(180deg);
            }

        .pagination a:first-child {
            margin-right: 40px;
        }

        .pagination a:last-child {
            margin-left: 40px;
        }


        .pagination a.active {
            background-color: #777777;
        }

        .pagination a.active {
            color: #FFF;
        }


    .pagination > a > img {
        display: none;
    }

    .pagination a:active {
        color: var(--blue);
        text-decoration: underline !important;
    }

@media screen and (max-width: 991px) {
    .pagination a {
        line-height: 30px;
    }

        .pagination a:first-child, .pagination a:last-child {
            width: 30px;
            height: 30px;
            border-width: 1px;
        }

            .pagination a:first-child::before, .pagination a:last-child::before {
                margin: -3px 0 0 -5px;
                width: 10px;
                height: 6px;
            }
}

@media screen and (max-width: 767px) {
    .pagination a:first-child {
        margin-right: 15px;
    }

    .pagination a:last-child {
        margin-left: 15px;
    }
}

@media screen and (max-width: 991px) {
    .pagination a {
        line-height: 30px;
    }

        .pagination a:first-child, .pagination a:last-child {
            width: 30px;
            height: 30px;
            border-width: 1px;
        }

            .pagination a:first-child::before, .pagination a:last-child::before {
                margin: -3px 0 0 -5px;
                width: 10px;
                height: 6px;
            }
}

@media screen and (max-width: 767px) {
    .pagination a:first-child {
        margin-right: 15px;
    }

    .pagination a:last-child {
        margin-left: 15px;
    }
}


/*行事曆*/
/*#scheduleSwitchBtn {
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
}

    #scheduleSwitchBtn a {
        background: none;
        padding: 0;
        -webkit-clip-path: none;
        clip-path: none;
        display: inline-block;
        margin-right: 0.5rem;
        width: 2rem;
        line-height: 2rem;
        background: white no-repeat;
        background-size: cover;
        font-size: 0;
        height: 2rem;
    }*/

/* #scheduleSwitchBtn #daily {
        background-image: url(../../images/daily.png);
    }

        #scheduleSwitchBtn #daily.active {
            background-image: url(../../images/daily_2.png);
        }

    #scheduleSwitchBtn #monthly {
        background-image: url(../../images/monthly.png);
    }

        #scheduleSwitchBtn #monthly.active {
            background-image: url(../../images/monthly_2.png);
        }*/

#schedule {
    min-height: 300px;
    font-size: 0;
}

    #schedule .year_month {
        font-size: 1rem;
        text-indent: 1rem;
        position: relative;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1rem;
        padding-top: 1rem;
    }

        #schedule .year_month span {
            line-height: 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        #schedule .year_month figure {
            position: absolute;
            right: 0rem;
            top: 0.5rem;
            display: inline-block;
        }

    /*#schedule .year_month figure button {
                font-size: 0.8rem;
                padding: 0.2rem;
                margin-right: 0.4rem;
            }*/

    #schedule[data-type="monthly"] table {
        width: calc(100% - 1px);
    }

        #schedule[data-type="monthly"] table thead tr th {
            font-size: 1rem;
            width: calc(100% / 7);
            text-align: center;
            line-height: 2.5rem;
            border: 1px solid #333;
        }

        #schedule[data-type="monthly"] table tbody {
            background: -webkit-gradient(linear, left top, left bottom, from(#f1f8f6), to(#e3f5fc));
            background: linear-gradient(#f1f8f6, #e3f5fc);
        }

            #schedule[data-type="monthly"] table tbody tr td {
                border: 1px solid #333;
                height: 150px;
                overflow-y: auto;
                position: relative;
                font-size: 1rem;
            }

                #schedule[data-type="monthly"] table tbody tr td[data-date=""] {
                    background: #fff !important;
                }

                    #schedule[data-type="monthly"] table tbody tr td[data-date=""]::before {
                        background: #fff !important;
                    }

                #schedule[data-type="monthly"] table tbody tr td::before {
                    content: attr(data-date);
                    position: absolute;
                    top: 0;
                    left: 0;
                    padding: 5px;
                    z-index: 1;
                }

                #schedule[data-type="monthly"] table tbody tr td:hover {
                    background: #fde9ec;
                }

                    #schedule[data-type="monthly"] table tbody tr td:hover::before {
                        background: #ca2628;
                        color: white;
                    }

                #schedule[data-type="monthly"] table tbody tr td > ul::-webkit-scrollbar {
                    width: 0;
                    background-color: transparent;
                }

                #schedule[data-type="monthly"] table tbody tr td > ul {
                    height: 150px;
                    overflow-y: auto;
                    padding: 0 3px;
                    padding-top: 25px;
                    padding-bottom: 15px;
                    padding-left: 13px;
                    list-style-position: inside;
                }

                    #schedule[data-type="monthly"] table tbody tr td > ul li {
                        font-size: 0.8rem;
                        line-height: 1rem;
                        position: relative;
                    }

                        #schedule[data-type="monthly"] table tbody tr td > ul li::before {
                            content: "";
                            width: 5px;
                            height: 5px;
                            background: #000;
                            border-radius: 50%;
                            margin: 3px;
                            position: absolute;
                            right: 100%;
                            top: calc(0.4rem - 2.5px);
                        }

                        #schedule[data-type="monthly"] table tbody tr td > ul li a {
                            display: block;
                            background: rgba(255, 255, 255, 0.5);
                        }

    #schedule[data-type="daily"] {
        font-size: 1rem;
    }

@media screen and (max-width: 960px) {
    #schedule[data-type="daily"] table {
        width: 90%;
        margin: 0 auto;
    }
}

#schedule[data-type="daily"] thead {
    display: none;
}

#schedule[data-type="daily"] tbody tr td {
    width: 100%;
    display: block;
    position: relative;
    padding-top: 2rem;
    border: none;
}

    #schedule[data-type="daily"] tbody tr td::before {
        content: attr(data-fulldate);
        position: absolute;
        font-size: 1rem;
        width: 100%;
        top: 0;
        left: 1rem;
        padding-left: 1rem;
        z-index: 1;
        color: #0c73ae;
        line-height: 2rem;
        font-weight: 600;
    }

@media screen and (max-width: 960px) {
    #schedule[data-type="daily"] tbody tr td::before {
        left: 0rem;
    }

    #scheduleSwitchBtn > a#monthly {
        display: none;
    }
}

#schedule[data-type="daily"] tbody tr td ul {
    margin-bottom: 1rem;
}

@media screen and (max-width: 960px) {
    #schedule[data-type="daily"] tbody tr td ul {
        padding-left: 0;
    }
}

#schedule[data-type="daily"] tbody tr td ul li {
    border-top: 1px solid #666;
}

    #schedule[data-type="daily"] tbody tr td ul li a {
        display: block;
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.5);
        line-height: 1.5rem;
    }

#schedule[data-type="daily"] tbody tr td:hover::before {
    background: #ddeff5;
}

#schedule[data-type="daily"] tbody tr td:hover ul li {
    background: #ffffe3;
}

#schedule[data-type="daily"] tbody tr td[data-fulldate=""] {
    display: none;
}

#schedule tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.i-schdule-btns-2 {
    /*    position: absolute;
    bottom: 0.5em;*/
    right: 0;
}


    .i-schdule-btns-2 > a {
        display: inline-block;
        vertical-align: top;
        margin: 0 5px 5px;
        border-radius: 50px;
        background-color: #eee;
        font-size: var(--size-sm);
        color: var(--blue);
        line-height: 38px;
        padding: 0 12px;
        white-space: nowrap;
    }

        .i-schdule-btns-2 > a::before {
            content: "";
            display: inline-block;
            vertical-align: middle;
            margin: -0.25em 8px 0 0;
            width: 1.25em;
            height: 1.25em;
            background-repeat: no-repeat;
            background-position: 0 0;
            background-size: auto 200%;
        }

        .i-schdule-btns-2 > a.month::before {
            background-image: url(/images/111NewImages/icon_calendar1.svg);
        }

        .i-schdule-btns-2 > a.day::before {
            background-image: url(/images/111NewImages/icon_calendar2.svg);
        }

.pc .i-schdule-btns-2 > a:hover {
    background-color: var(--blue);
    color: #fff;
}

    .pc .i-schdule-btns-2 > a:hover::before {
        background-position: 0 100%;
    }


/*.pic {
    display: inline-block;
    width: 46%;
    margin: 10px;
    font-size: 0;
    vertical-align: top;
}
*/
.pic .pic_area {
    background-color: #ddd !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
    background-size: contain !important;
    width: 100%;
    height: 300px;
    display: inline-block;
    position: relative;
    -webkit-print-color-adjust: exact;
}

.pic p {
    text-align: center;
    width: 100%;
    position: relative;
    background: #0c73ae !important;
    color: white !important;
    font-weight: 600;
    top: 0;
    padding: 1rem;
    font-size: 1rem;
    -webkit-print-color-adjust: exact;
}

@media screen and (max-width: 640px) {
    .pic {
        width: 90%;
        margin: 10px auto;
    }
}


a.file::after {
    /*position: absolute;*/
    margin: 0 5px;
    left: calc(100% + 5px);
    line-height: 2.4rem;
}

a.file.file_csv::after {
    content: url(../../images/file_icon/file_ext_csv.gif);
}

a.file.file_docx::after {
    content: url(../../images/file_icon/file_ext_doc.gif);
}

a.file.file_doc::after {
    content: url(../../images/file_icon/file_ext_doc.gif);
}

a.file.file_odp::after {
    content: url(../../images/file_icon/file_ext_odp.gif);
}

a.file.file_ods::after {
    content: url(../../images/file_icon/file_ext_ods.gif);
}

a.file.file_odt::after {
    content: url(../../images/file_icon/file_ext_odt.gif);
}

a.file.file_other::after {
    content: url(../../images/file_icon/file_ext_other.gif);
}

a.file.file_pdf::after {
    content: url(../../images/file_icon/file_ext_pdf.gif);
}

a.file.file_pps::after {
    content: url(../../images/file_icon/file_ext_ppt.gif);
}

a.file.file_ppt::after {
    content: url(../../images/file_icon/file_ext_ppt.gif);
}

a.file.file_pptx::after {
    content: url(../../images/file_icon/file_ext_ppt.gif);
}

a.file.file_xlsx::after {
    content: url(../../images/file_icon/file_ext_xls.gif);
}

a.file.file_xls::after {
    content: url(../../images/file_icon/file_ext_xls.gif);
}

a.file.file_xml::after {
    content: url(../../images/file_icon/file_ext_xml.gif);
}

a.file.file_7z::after {
    content: url(../../images/file_icon/file_ext_zip.gif);
}

a.file.file_zip::after {
    content: url(../../images/file_icon/file_ext_zip.gif);
}




@keyframes scaleDraw { /*定義關鍵幀、scaleDrew是需要繫結到選擇器的關鍵幀名稱*/
    0% {
        transform: scale(1.1); /*開始為原始大小*/
    }

    100% {
        transform: scale(1);
    }
}

#spanTitleTest {
    font-size: 3em;
    top: -0.3em;
    left: 1em;
}

@media screen and (max-width: 1280px) {
    #spanTitleTest {
        top: -0.3em;
        left: 6em;
    }
}

@media screen and (max-width: 820px) {
    #spanTitleTest {
        font-size: 3em;
        top: -0.3em;
        left: 6em;
    }
}

@media screen and (max-width: 540px) {
    #spanTitleTest {
        font-size: 1em;
        top: 0.7em;
        left: 18em;
    }
}

@media screen and (max-width: 414px) {
    #spanTitleTest {
        font-size: 1em;
        top: 2.7em;
        left: 1em;
    }
}

@media print {
    header,
    nav,
    .p-kanban,
    .p-breadcrumb,
    .sidebar,
    .album,
    .down-bar,
    .footer,
    .f-info,
    .g-btn {
        display: none !important;
    }

    .right-main {
        width: 100%
    }

    p {
        line-height: 15pt;
        font-size: 90%;
    }

    .newsContent {
        line-height: 30pt;
        font-size: 90%;
        text-indent: 24pt;
    }
}

.form-control:focus {
    outline: 3px dashed #ff6d3b;
}

.btn:focus {
    outline: 3px dashed #ff6d3b !important;
}


.i-links__wrap {
    position: relative;
}

.videotitle {
    font-size: 1.5em;
}
