@charset "UTF-8";
/* CSS Document */
@import url(public/css/reset.css);
@import url(public/css/font-awesome-4.7.0/font-awesome.min.css);
@import url(public/css/rwdgrid.css);
@import url(public/css/textEditor.css);
@import url(public/css/contentbuilder.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;600;700&family=Noto+Sans+SC:wght@400;500;700&display=swap");
*, *::before, *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

header, header .menuBox,
header .languageBox,
header .searchBox, header .searchLink img, header .menuBtn::before, header .menuBtn span::before, header .menuBtn span::after, .languageBox::before, .languageBox .langWrap, .languageBox .langWrap img, .menuDropdownList li, .menu > li::before, .menu > li.dropDown::after, .nav .dropDown > a::before, .subscribeBox input[type=text], .classLink > li > a::before, .pageBox a.prevBtn::before, .pageBox a.nextBtn::before, .pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after, .pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after, .filterList > li > a::before, .tab a::before, .arrowPrev, .arrowNext, ul.dots li button::before, .copyMessage {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.tab a > span, input[type="text"],
input[type="password"],
textarea,
button, select {
    font-family: "Poppins", "Noto Sans TC", "Noto Sans SC", "微軟正黑體", sans-serif;
}

.menuDropdownList li a, .bannerArea, footer, .mainArea, .searchLightBox {
    font-family: "Montserrat", "Noto Sans TC", "Noto Sans SC", "微軟正黑體", sans-serif;
}

.rightDropdownBox .dropdownBox::-webkit-scrollbar {
    -webkit-appearance: none;
}

.rightDropdownBox .dropdownBox::-webkit-scrollbar:vertical {
    width: 5px;
}

.rightDropdownBox .dropdownBox::-webkit-scrollbar:horizontal {
    height: 8px;
}

.rightDropdownBox .dropdownBox::-webkit-scrollbar-thumb {
    background-color: #59bde6;
    border-radius: 5px;
    border: 0;
}

.rightDropdownBox .dropdownBox::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

::before, ::after {
    pointer-events: none;
}

body {
    font-family: 'Poppins', 'Noto Sans TC', 'Noto Sans SC', Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.2pt;
    color: #060606;
    background-color: #fff;
}

body.popwinOverflow, body.loadingOverflow {
    overflow: hidden;
}

a {
    color: #060606;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover {
    color: #2dacdf;
}

.outerWrap {
    position: relative;
    padding-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
}

@media (max-width: 1180px) {
    .outerWrap {
        padding-top: 60px;
    }
}

.outerWrap > .mainArea {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.outerWrap.noPadding {
    padding: 0;
}

.outerWrap.noPaddingTop {
    padding-top: 0;
}

.outerWrap.noPaddingBottom {
    padding-bottom: 0;
}

.wrap {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 961px) {
    .wrap {
        max-width: 1340px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 401px) and (max-width: 960px) {
    .wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 400px) {
    .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1181px) {
    .pcHide {
        display: none !important;
    }
}

/*module*/
.moduleBox {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1005;
    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;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition-property: top, opacity, visibility;
    transition-property: top, opacity, visibility;
    -webkit-transition-duration: .5s;
            transition-duration: .5s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
}

.moduleBox.show {
    opacity: 1;
    visibility: visible;
}

.moduleBox.show .moduleWrap {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.moduleBox .moduleWrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    background-color: #fff;
    pointer-events: auto;
    padding-top: 60px;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.moduleBox .moduleContent {
    width: 100%;
    max-height: calc(90vh - 50px);
    overflow-y: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.moduleBox .moduleClose {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: none;
    background-color: #2dacdf;
    border: none;
    cursor: pointer;
}

.moduleBox .moduleClose::before, .moduleBox .moduleClose::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -0.5px;
    width: 30px;
    height: 1px;
    background-color: #fff;
}

.moduleBox .moduleClose::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.moduleBox .moduleClose::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.moduleMask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1003;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.moduleMask.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*****loading*****/
@-webkit-keyframes loadLine {
    0% {
        width: 0;
    }
    20% {
        width: 30%;
    }
    60% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}
@keyframes loadLine {
    0% {
        width: 0;
    }
    20% {
        width: 30%;
    }
    60% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes loadLineMove {
    0% {
        height: 8px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        height: 100%;
        -webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
}

@keyframes loadLineMove {
    0% {
        height: 8px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        height: 100%;
        -webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
}

@-webkit-keyframes loadLineMove02 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
}

@keyframes loadLineMove02 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
}

@-webkit-keyframes logoFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes logoFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.loadingArea {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
}

.loadingArea::before {
    content: '';
    width: 0;
    height: 8px;
    background-color: #005bac;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.loadingArea::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.loadingArea .loadLogo {
    width: 260px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.loadingArea .loadLogo img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.loadingArea.show {
    opacity: 1;
    pointer-events: auto;
}

.loadingArea.show::before {
    -webkit-animation: loadLine 3s forwards, loadLineMove .8s 3s forwards;
            animation: loadLine 3s forwards, loadLineMove .8s 3s forwards;
}

.loadingArea.show::after {
    -webkit-animation: loadLineMove02 .8s 3.4s forwards;
            animation: loadLineMove02 .8s 3.4s forwards;
}

.loadingArea.show .loadLogo {
    -webkit-animation: logoFadeOut .3s 3.12s forwards;
            animation: logoFadeOut .3s 3.12s forwards;
}

/*****header*****/
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
}

header, header.shrink {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1181px) {
    header .wrap {
        border-bottom: 1px solid rgba(199, 199, 199, 0.4);
    }
    header .menuBox,
    header .languageBox,
    header .searchBox {
        border-left: 1px solid rgba(199, 199, 199, 0.4);
    }
    header:not(.shrink):not(:hover) {
        background-color: transparent;
    }
    header:not(.shrink):not(:hover) .wrap {
        border-bottom-color: rgba(255, 255, 255, 0.35);
    }
    header:not(.shrink):not(:hover) .menuBox,
    header:not(.shrink):not(:hover) .languageBox,
    header:not(.shrink):not(:hover) .searchBox {
        border-left-color: rgba(255, 255, 255, 0.35);
    }
    header:not(.shrink):not(:hover) .menu > li::before {
        background-color: #fff;
    }
    header:not(.shrink):not(:hover) .menu > li.dropDown::after {
        border-color: #fff;
    }
    header:not(.shrink):not(:hover) .menu > li > a {
        color: #fff;
    }
    header:not(.shrink):not(:hover) .languageBox span {
        color: #fff;
    }
    header:not(.shrink):not(:hover) .languageBox span img {
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1);
    }
    header:not(.shrink):not(:hover) .searchLink {
        color: #fff;
    }
    header:not(.shrink):not(:hover) .searchLink img {
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1);
    }
    header:not(.shrink):not(:hover) .searchLink span {
        color: #fff;
    }
    header:not(.shrink):not(:hover) .logo a {
        background-image: url("../images/logo_w.svg");
    }
}

header .wrap {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 1181px) {
    header .wrap {
        max-width: 100%;
        height: 70px;
        padding: 0;
    }
}

@media (max-width: 1180px) {
    header .wrap {
        height: 60px;
        padding: 0 20px;
    }
}

header .logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}

@media (min-width: 1601px) {
    header .logo {
        padding-left: 50px;
    }
}

@media (min-width: 1301px) and (max-width: 1600px) {
    header .logo {
        padding-left: 30px;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    header .logo {
        padding-left: 20px;
    }
}

@media (min-width: 1601px) {
    header .logo,
    header .leftDropdownBox {
        width: 290px;
    }
}

@media (min-width: 1301px) and (max-width: 1600px) {
    header .logo,
    header .leftDropdownBox {
        width: 220px;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    header .logo,
    header .leftDropdownBox {
        width: 190px;
    }
}

header .rightDropdownBox {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

header .rightBox {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

@media (max-width: 1180px) {
    header .menuBox {
        display: none;
    }
}

header .languageBox {
    margin-left: auto;
}

@media (min-width: 1301px) {
    header .languageBox {
        padding: 0 20px;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    header .languageBox {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    header .languageBox {
        display: none;
    }
}

header .searchBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 1301px) {
    header .searchBox {
        padding: 0 30px;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    header .searchBox {
        padding: 0 20px;
    }
}

@media (min-width: 641px) and (max-width: 1180px) {
    header .searchBox {
        margin-left: 30px;
    }
}

@media (max-width: 640px) {
    header .searchBox {
        -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-left: auto;
        width: 120px;
        height: 40px;
        border: 1px solid #e3e3e3;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(226, 226, 226, 0.7)), to(rgba(226, 226, 226, 0)));
        background: linear-gradient(to top, rgba(226, 226, 226, 0.7) 0%, rgba(226, 226, 226, 0) 100%);
    }
}

@media (max-width: 360px) {
    header .searchBox {
        width: 40px;
    }
    header .searchBox .searchLink {
        font-size: 0;
    }
    header .searchBox .searchLink img {
        margin-right: 0;
    }
}

header .searchLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}

header .searchLink img {
    display: block;
    margin-right: 10px;
}

header .searchLink span {
    font-size: 15px;
    font-weight: 600;
    color: #060606;
}

@media (min-width: 641px) and (max-width: 1679px) {
    header .searchLink img {
        margin-right: 0;
    }
    header .searchLink span {
        display: none;
    }
}

header .menuBtn {
    position: relative;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 30px;
    height: 18px;
    cursor: pointer;
}

@media (min-width: 1181px) {
    header .menuBtn {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 1180px) {
    header .menuBtn {
        margin-left: 30px;
    }
}

@media (max-width: 480px) {
    header .menuBtn {
        margin-left: 20px;
    }
}

header .menuBtn::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #005bac;
}

header .menuBtn span::before, header .menuBtn span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #005bac;
}

header .menuBtn span::before {
    top: 0;
}

header .menuBtn span::after {
    bottom: 0;
}

header .menuBtn.open::before {
    opacity: 0;
}

header .menuBtn.open span::before {
    top: calc(50% - 2px);
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
}

header .menuBtn.open span::after {
    bottom: calc(50% - 2px);
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
}

.logo {
    width: 160px;
}

.logo a {
    display: block;
    width: 100%;
    height: 39px;
    background: url("../images/logo.svg") no-repeat center left;
    background-size: contain;
    text-indent: -9999px;
}

@media (max-width: 1180px) {
    .logo {
        width: 144px;
    }
    .logo a {
        height: 36px;
    }
}

.logo.white a {
    background-image: url("../images/logo_w.svg");
}

.languageBox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}

.languageBox::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    width: 0;
    height: 3px;
    background-color: #2dacdf;
    opacity: 0;
}

.languageBox:hover::before {
    left: 30px;
    width: calc(100% - 50px);
    opacity: 1;
}

@media (max-width: 1679px) {
    .languageBox:hover::before {
        left: 20px;
        width: calc(100% - 40px);
    }
}

.languageBox .langWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.languageBox .langWrap img {
    display: block;
    margin-right: 10px;
}

.languageBox .langWrap .text {
    font-size: 15px;
    font-weight: 600;
    color: #060606;
}

@media (max-width: 1679px) {
    .languageBox .langWrap img {
        margin-right: 0;
    }
    .languageBox .langWrap .text {
        display: none;
    }
}

.languageBox .subItem {
    display: none;
    position: absolute;
    top: 99%;
    left: 0;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-top: 0;
    text-align: center;
}

.languageBox .subItem a {
    display: block;
    padding: 10px;
    border-top: 1px solid #e5e5e5;
    font-size: 15px;
    color: #060606;
    font-weight: 600;
    background-color: #fff;
}

.languageBox .subItem a:hover {
    color: #2dacdf;
}

@media (max-width: 1679px) {
    .languageBox .subItem {
        width: 120px;
        left: calc(50% - 60px);
    }
}

.menuDropdownBox {
    position: absolute;
    top: 0;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    max-width: 1920px;
    height: 540px;
    max-height: 60vh;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    background: url(../images/home/bg_menu.png) no-repeat bottom right, #fff;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: .6s;
    transition: .6s;
}

.menuDropdownBox.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.leftDropdownBox {
    position: relative;
    height: 100%;
}

.leftDropdownBox img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.leftDropdownBox li {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.rightDropdownBox {
    padding-top: 70px;
    height: 100%;
}

.rightDropdownBox .dropdownBox {
    height: 100%;
    overflow: auto;
}

.menuDropdownList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
}

.menuDropdownList li {
    padding: 35px 15px 30px;
}

@media (min-width: 1181px) and (max-width: 1400px) {
    .menuDropdownList li {
        padding: 25px 15px 15px;
    }
}

.menuDropdownList li:hover {
    background-color: #f8f8f8;
}

@media (min-width: 1401px) {
    .menuDropdownList li:first-child {
        padding-left: 25px;
    }
}

.menuDropdownList li a {
    display: block;
    padding: 8px 0;
    font-size: 12px;
    color: #252525;
    letter-spacing: 0;
}

.menuDropdownList li a:hover {
    color: #2dacdf;
}

.menuDropdownMask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 49;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

/*****menu*****/
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.menu > li {
    position: relative;
    display: inline-block;
    padding: 0;
}

.menu > li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 3;
    width: 0;
    height: 3px;
    background-color: #2dacdf;
    opacity: 0;
}

.menu > li.show > a, .menu > li:hover > a {
    color: #2dacdf;
}

.menu > li.show::before, .menu > li:hover::before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.menu > li.dropDown::after {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #2dacdf;
    border-right: 2px solid #2dacdf;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

@media (min-width: 1181px) and (max-width: 1300px) {
    .menu > li.dropDown::after {
        right: 12px;
    }
}

.menu > li.dropDown > a {
    padding-right: 40px;
}

@media (min-width: 1181px) and (max-width: 1300px) {
    .menu > li.dropDown > a {
        padding-right: 25px;
    }
}

.menu > li > a {
    position: relative;
    display: block;
    padding: 24px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #060606;
}

@media (min-width: 1401px) and (max-width: 1500px) {
    .menu > li > a {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1181px) and (max-width: 1400px) {
    .menu > li > a {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.menu .submenu {
    display: none !important;
    position: absolute;
    top: 99%;
    left: calc(50% - 75px);
    width: 150px;
    border: 1px solid #e5e5e5;
    border-top: 0;
    text-align: center;
}

.menu .submenu a {
    display: block;
    padding: 10px;
    border-top: 1px solid #e5e5e5;
    font-size: 15px;
    color: #060606;
    font-weight: 600;
    background-color: #fff;
}

.menu .submenu a:hover {
    color: #2dacdf;
}

/*****手機menu*****/
.m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 49;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: .6s;
    transition: .6s;
}

.m_menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 1181px) {
    .m_menu {
        display: none;
    }
}

.m_menu .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.hideBox {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    width: 100%;
    height: 100vh;
    padding: 60px 30px;
    background: url(../images/home/bg_menu.png) no-repeat 100% 150%, #fff;
    overflow-y: auto;
}

@media (max-width: 360px) {
    .hideBox {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.hideBox .languageBox {
    padding-right: 0;
}

.hideBox .languageBox::before {
    display: none;
}

.hideBox .languageBox .langWrap img {
    margin-right: 10px;
}

@media (max-width: 360px) {
    .hideBox .languageBox .langWrap img {
        width: 20px;
        margin-right: 5px;
    }
}

.hideBox .languageBox .langWrap .text {
    display: block;
}

@media (min-width: 361px) {
    .hideBox .languageBox .langWrap .text {
        margin-right: 10px;
    }
}

.hideBox .languageBox .langWrap .text::after {
    content: ':';
}

.hideBox .languageBox .subItem {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    border: 0;
}

.hideBox .languageBox .subItem a {
    display: inline-block;
    padding: 10px;
    border-top: 0;
    font-size: 15px;
    color: #060606;
    font-weight: 600;
    background-color: transparent;
}

.hideBox .languageBox .subItem a.current {
    color: #2dacdf;
}

.hideBox .languageBox .subItem a:not(:first-child) {
    position: relative;
}

.hideBox .languageBox .subItem a:not(:first-child)::before {
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    left: -1px;
    width: 1px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.3);
}

.nav {
    padding: 25px 0;
}

.nav li {
    display: block;
    border-bottom: 1px solid #ebebeb;
}

.nav a {
    position: relative;
    display: block;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #060606;
}

.nav .dropDown > a {
    position: relative;
}

.nav .dropDown > a::before {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 5px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #2dacdf;
    border-right: 2px solid #2dacdf;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.nav .dropDown.open {
    border-bottom-color: transparent;
}

.nav .dropDown.open > a::before {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}

.nav .submenu {
    display: none;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.nav .submenu a {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
}

.nav .submenu a.current {
    color: #2dacdf;
}

/*****banner*****/
.bannerArea {
    position: relative;
    z-index: 1;
}

.bannerArea .wrap {
    max-width: 100%;
    padding: 0;
}

.bannerArea .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

@media (min-width: 1181px) {
    .bannerArea .Img img {
        min-height: 400px;
    }
}

@media (max-width: 1180px) {
    .bannerArea .Img img {
        min-height: 200px;
    }
}

.bannerArea .mainTitle {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
}

@media (max-width: 1180px) {
    .bannerArea .mainTitle {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

@media (min-width: 1181px) {
    .bannerArea .mainTitle {
        max-width: 1340px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 641px) {
    .bannerArea .mainTitle {
        font-size: 43px;
    }
}

.bannerArea::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bn_border.png) no-repeat top left;
}

@media (min-width: 1181px) and (max-width: 1700px) {
    .bannerArea::after {
        left: -180px;
    }
}

@media (max-width: 960px) {
    .bannerArea::after {
        left: -160px;
    }
}

.bannerArea .bannerItem:not(:first-child) {
    display: none;
}

/*****頁尾資訊*****/
footer {
    padding: 0 0 25px;
    color: #fff;
    background-color: #2dacdf;
}

footer > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

footer .contactInfoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding: 40px 0 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .contactList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

@media (min-width: 961px) {
    footer .contactList {
        width: calc(100% - 380px);
    }
}

@media (max-width: 960px) {
    footer .contactList {
        width: 100%;
    }
}

footer .contactList > li {
    font-size: 13px;
    line-height: calc(20 / 13);
}

footer .contactList > li.twoColumns {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    padding-top: 20px;
}

@media (min-width: 641px) {
    footer .contactList > li {
        width: 50%;
        padding-right: 40px;
    }
}

@media (max-width: 960px) {
    footer .contactList > li {
        margin-bottom: 30px;
    }
    footer .contactList > li.twoColumns {
        padding-top: 0px;
    }
}

footer .contactList .title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 641px) {
    footer .contactList .title {
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    footer .contactList .title {
        margin-bottom: 10px;
    }
}

footer .contactList a {
    display: inline-block;
    color: #ceeaf6;
    -webkit-text-decoration: 1px underline transparent;
            text-decoration: 1px underline transparent;
}

footer .contactList a:hover {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
}

footer .contactList a span {
    color: #fff;
}

footer .contactList .mail,
footer .contactList .address {
    display: block;
}

@media (min-width: 641px) {
    footer .contactList .mail,
    footer .contactList .address {
        margin-top: 15px;
    }
}

@media (max-width: 640px) {
    footer .contactList .mail,
    footer .contactList .address {
        margin-top: 5px;
    }
}

@media (min-width: 501px) {
    footer .linkList {
        width: 380px;
    }
}

@media (max-width: 500px) {
    footer .linkList {
        width: 100%;
    }
}

footer .linkList li {
    padding: 0;
}

footer .linkList .Img img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

@media (min-width: 1181px) {
    footer .copyright {
        margin-left: auto;
        -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
    }
}

@media (max-width: 1180px) {
    footer .copyright {
        width: 100%;
        margin-top: 10px;
    }
}

footer .footerLogo {
    display: block;
    width: 160px;
}

@media (min-width: 1181px) {
    footer .footerLogo {
        margin-right: 25px;
    }
}

@media (min-width: 1181px) {
    footer .downList {
        margin-right: 25px;
    }
}

@media (max-width: 1180px) {
    footer .downList {
        width: 100%;
        margin-top: 20px;
    }
}

.subscribeBox {
    font-size: 13px;
    color: #3a3a3a;
}

.subscribeBox form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 641px) {
    .subscribeBox label {
        margin-right: 25px;
    }
}

@media (max-width: 640px) {
    .subscribeBox label {
        width: 100%;
        margin-bottom: 10px;
    }
}

.subscribeBox input[type=text] {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 270px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid transparent;
    font-size: 12px;
    color: #474747;
    background-color: #fff;
}

.subscribeBox input[type=text]:focus {
    border-color: #b2e0f3;
}

.subscribeBox .submit_btn {
    display: block;
    width: 135px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    background-color: #2dacdf;
}

@media (max-width: 400px) {
    .subscribeBox .submit_btn {
        width: 100px;
    }
}

.subscribeBox .submit_btn:hover {
    background-color: #86cfec;
}

.subscribeBox .error {
    border-color: #2dacdf !important;
    -webkit-box-shadow: 0 0 8px #2dacdf;
            box-shadow: 0 0 8px #2dacdf;
}

.downList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}

.downList li:not(:last-child)::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 12px;
    margin: 0 10px;
    background-color: #fff;
}

.downList a {
    font-size: 13px;
    color: #fff;
    -webkit-text-decoration: 1px underline transparent;
            text-decoration: 1px underline transparent;
}

.downList a:hover {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
}

.copyright {
    font-size: 13px;
    color: #fff;
}

.copyright a {
    color: #fff;
}

.translateIbest {
    display: inline-block;
    vertical-align: middle;
}

.translateIbest .design {
    /*網頁設計‧愛貝斯*/
    display: block;
    line-height: 22px;
    font-size: 13px;
    color: #fff;
}

.translateIbest .design a {
    /*網頁設計‧愛貝斯*/
    color: #fff;
    text-decoration: none;
}

.translateIbest .design a:hover {
    text-decoration: underline;
}

/*****privacyArea*****/
.privacyArea {
    position: fixed;
    z-index: 50;
    display: none;
    width: 100%;
    border: 2px solid #bebebe;
    -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 13px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

@media (min-width: 641px) {
    .privacyArea {
        bottom: 10%;
        right: -1px;
        max-width: 450px;
        padding: 30px 40px 20px 30px;
    }
}

@media (max-width: 640px) {
    .privacyArea {
        bottom: 55px;
        right: 0;
        padding: 20px 20px;
    }
}

.privacyArea.check {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

.privacyArea .title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2dacdf;
    text-transform: uppercase;
}

.privacyArea .text {
    font-size: 13px;
    line-height: calc(20 / 13);
    letter-spacing: 0;
    color: #545454;
}

.privacyArea .text a {
    color: #2dacdf;
    text-decoration: underline;
}

.privacyArea .btn {
    margin-top: 25px;
}

/*手機快捷選單*/
.fixedQuickLink {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 5;
    width: 100%;
    background-color: #000;
}

@media (min-width: 1181px) {
    .fixedQuickLink {
        display: none;
    }
}

.fixedQuickLink ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.fixedQuickLink li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.fixedQuickLink li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fixedQuickLink a {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 55px;
    font-size: 13px;
    color: #fff;
}

.fixedQuickLink i {
    margin-bottom: 5px;
}

/*socialBox*/
.socialBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.socialBox a {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    text-align: center;
}

.socialBox a:last-child {
    margin-right: 0;
}

.socialBox strong {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #3a3a3a;
    text-transform: uppercase;
}

/*****內頁*****/
.mainArea {
    position: relative;
    padding: 0;
}

.mainArea .mainColorDotsList ::marker {
    font-size: 12px;
    color: #2dacdf;
    line-height: 1;
}

.mainArea .subColorDotsList ::marker {
    font-size: 12px;
    color: #2dacdf;
    line-height: 1;
}

.mainArea .textEditor th {
    border-color: #2dacdf;
    font-size: 15px;
    font-weight: 600;
    background-color: #2dacdf;
}

.mainArea .textEditor th:not(:last-child) {
    position: relative;
}

.mainArea .textEditor th:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.4);
}

.mainArea .textEditor td {
    font-size: 14px;
}

.mainArea .textEditor table[border="0"] td {
    border-width: 0;
}

.mainArea .textEditor sup {
    font-size: small;
    vertical-align: super;
}

.mainArea .textEditor sub {
    font-size: small;
    vertical-align: sub;
}

.titleBox {
    position: relative;
    margin-bottom: 30px;
}

.titleBox.center {
    text-align: center;
}

.titleBox .txtExp {
    margin-top: 20px;
}

.mainTitle {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0;
}

.txtExp {
    color: #545454;
    line-height: calc(22 / 14);
}

.bdrTitle {
    padding-bottom: 2px;
}

.bdrTitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #2dacdf;
}

.bdrTitle.center::after {
    margin-left: auto;
    margin-right: auto;
}

.bdrTitle.right::after {
    margin-left: auto;
}

@media (min-width: 641px) {
    .contentBox {
        padding: 60px 0 70px;
    }
}

@media (max-width: 640px) {
    .contentBox {
        padding: 50px 0;
    }
}

.contentBox.noPadding {
    padding: 0;
}

.classBox {
    position: relative;
    z-index: 30;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background-color: rgba(45, 172, 223, 0.9);
}

@media (min-width: 1181px) {
    .classBox {
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
    }
}

.classBox > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: 38px;
}

@media (max-width: 960px) {
    .classBox > .wrap {
        padding-left: 0;
        padding-right: 0;
    }
}

.classBox .btnHome {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 18px;
    color: #fff;
}

@media (max-width: 960px) {
    .classBox .btnHome {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 50px;
    }
}

.classBox .btnHome:hover {
    color: #fff;
}

.classBox .title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: inline-block;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 960px) {
    .classBox .title {
        display: none;
    }
}

.classBox .classRowBox {
    border-right: 1px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 960px) {
    .classBox .classRowBox {
        width: calc(100% - 50px);
    }
}

.classBox .mClassLink .main {
    color: #fff;
}

.classBox .bread {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    display: none;
    margin-left: auto;
}

.bread {
    font-size: 12px;
    color: #545454;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .bread {
        display: none;
    }
}

.bread.mb10 {
    margin-bottom: 10px;
}

.bread a {
    color: #545454;
}

.bread a i {
    font-size: 16px;
}

.bread span {
    padding: 0 3px;
    color: #545454;
}

/*文章標題*/
.articleTitle {
    font-size: 25px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 640px) {
    .articleTitle {
        font-size: 20px;
    }
}

.sectionTitle {
    display: block;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #2dacdf;
}

.sideTitle {
    position: relative;
    display: block;
    padding-left: 18px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
}

.sideTitle::before {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    width: 4px;
    height: 20px;
    background-color: #2dacdf;
}

/*類別*/
.classRowBox {
    position: relative;
    z-index: 3;
}

.classRowBox > ul {
    display: none;
}

.mClassLink {
    position: relative;
    z-index: 3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mClassLink.open > ul {
    display: block;
}

.mClassLink .main {
    position: relative;
    display: block;
    min-width: 230px;
    padding: 18px 40px 18px 20px;
    color: #545454;
    background-color: transparent;
    cursor: pointer;
}

@media (max-width: 960px) {
    .mClassLink .main {
        padding: 10px 40px 10px 15px;
    }
}

.mClassLink .main::before {
    content: '\f107';
    position: absolute;
    right: 15px;
    top: 50%;
    z-index: 1;
    margin-top: -6px;
    line-height: 1;
    font-size: 15px;
    color: currentColor;
    font-family: FontAwesome;
}

.mClassLink > ul {
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 1;
    display: none;
    width: calc(100% + 2px);
    border: 0;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.mClassLink > ul a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 10px 20px;
    border-top: 1px solid #e5e5e5;
    color: #060606;
    font-size: 13px;
}

@media (max-width: 960px) {
    .mClassLink > ul a {
        padding: 8px 15px;
    }
}

.mClassLink > ul ul:hover a.current {
    color: #060606;
    background-color: transparent;
}

.mClassLink > ul a:hover,
.mClassLink > ul a.current,
.mClassLink > ul:hover a.current:hover,
.mClassLink > ul li:hover > a.current {
    color: #fff;
    background-color: #2dacdf;
}

.mClassLink > ul .linkHasItems {
    position: relative;
    padding-right: 30px;
}

.mClassLink > ul .linkHasItems.open::before {
    content: '-';
}

.mClassLink > ul .linkHasItems::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 12px;
    color: currentColor;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.mClassLink > ul ul {
    display: none;
    padding: 4px 0 4px 25px;
    border-top: 1px solid #e5e5e5;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(226, 226, 226, 0.7)), to(rgba(226, 226, 226, 0)));
    background: linear-gradient(to top, rgba(226, 226, 226, 0.7) 0%, rgba(226, 226, 226, 0) 100%);
}

.mClassLink > ul ul a {
    padding: 4px 15px;
    border: 0;
    font-size: 12px;
}

.mClassLink > ul ul a:hover,
.mClassLink > ul ul a.current,
.mClassLink > ul ul:hover a.current:hover {
    color: #2dacdf;
    background-color: transparent;
}

.classLink {
    padding: 8px 0;
    background-color: #f2f2f2;
}

.classLink > li {
    padding: 0;
}

.classLink > li:first-child > a::before {
    display: none;
}

.classLink > li > a.current, .classLink > li > a:hover {
    background-color: #fff;
}

.classLink > li > a.current::before, .classLink > li > a:hover::before {
    background-color: transparent;
}

.classLink > li > a.current::after {
    opacity: 1;
}

.classLink > li > a {
    position: relative;
    display: block;
    padding: 14px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #060606;
}

.classLink > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: calc(100% - 15px * 2);
    height: 1px;
    background-color: #e3e3e3;
}

.classLink > li > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #2dacdf;
    opacity: 0;
}

.classLink ul {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid rgba(227, 227, 227, 0.5);
    background-color: #fff;
}

.classLink ul a {
    display: block;
    padding: 6px 12px;
    border-left: 1px solid #e3e3e3;
    font-size: 13px;
}

.classLink ul a.current, .classLink ul a:hover {
    color: #2dacdf;
    border-left-color: #2dacdf;
}

.classColumnBox .mClassLink {
    display: none;
}

.classColumnBox .sectionTitle {
    margin-bottom: 8px;
}

.pageBox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #cecece;
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.pageBox a {
    border: 1px solid #c2c2c2;
    color: #666;
    display: block;
    font-size: 15px;
}

.pageBox a.prevBtn::before, .pageBox a.nextBtn::before {
    content: '';
    width: 10px;
    height: 10px;
    border-left: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    display: block;
    position: absolute;
}

.pageBox a.prevBtn::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.pageBox a.nextBtn::before {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}

.pageBox a:hover {
    border: 1px solid #2dacdf;
    background-color: #2dacdf;
    color: #fff;
}

.pageBox a:hover.prevBtn::before, .pageBox a:hover.nextBtn::before {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.pageBox.number {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.pageBox.number.oval a {
    width: 50px;
}

.pageBox.number a {
    width: 30px;
    height: 30px;
    font-weight: 400;
    line-height: 30px;
    margin: 0 5px;
    position: relative;
    text-align: center;
}

.pageBox.number a.prevBtn::before, .pageBox.number a.nextBtn::before {
    margin: auto;
    top: 0;
    bottom: 0;
}

.pageBox.number a.prevBtn::before {
    left: 5px;
    right: 0;
}

.pageBox.number a.nextBtn::before {
    left: 0;
    right: 5px;
}

.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after, .pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after {
    content: '';
    width: 10px;
    height: 10px;
    border-left: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.pageBox.number a.firstBtn::before {
    left: -2px;
    right: 0;
}

.pageBox.number a.firstBtn::after {
    left: 12px;
    right: 0;
}

.pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}

.pageBox.number a.lastBtn::before {
    left: 0;
    right: -2px;
}

.pageBox.number a.lastBtn::after {
    left: 0;
    right: 12px;
}

.pageBox.number a.current {
    border: 1px solid #2dacdf;
    background-color: #2dacdf;
    color: #fff;
}

.pageBox.number a:hover.firstBtn::before, .pageBox.number a:hover.firstBtn::after, .pageBox.number a:hover.lastBtn::before, .pageBox.number a:hover.lastBtn::after {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.pageBox.prevnext {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.pageBox.prevnext a {
    width: 180px;
    height: 45px;
    font-weight: 300;
    line-height: 45px;
    padding: 0 20px;
    position: relative;
}

.pageBox.prevnext a.prevBtn::before, .pageBox.prevnext a.nextBtn::before {
    top: calc(50% - 5px);
}

.pageBox.prevnext a.prevBtn {
    text-align: right;
}

.pageBox.prevnext a.prevBtn::before {
    left: 15px;
}

.pageBox.prevnext a.nextBtn {
    margin-left: auto;
    text-align: left;
}

.pageBox.prevnext a.nextBtn::before {
    right: 15px;
}

@media (max-width: 768px) {
    .pageBox.prevnext a {
        width: 125px;
        padding: 0 15px;
    }
}

@media (max-width: 640px) {
    .pageBox.prevnext a {
        width: calc(100%/2 - 15px);
    }
}

@media (max-width: 480px) {
    .pageBox.prevnext a {
        width: calc(100%/2 - 10px);
    }
}

.pageBox.prevnext.circle a {
    width: 45px;
    padding: 0;
}

.pageBox.prevnext.circle a span {
    display: none;
}

.pageBox.prevnext.circle a.prevBtn::before {
    left: calc(50% - 3px);
}

.pageBox.prevnext.circle a.nextBtn::before {
    right: calc(50% - 3px);
}

.pageBox.circle a {
    border-radius: 50%;
    overflow: hidden;
}

.pageBox.oval a {
    border-radius: 30px;
    overflow: hidden;
}

/*標籤*/
.classColumnBox + .filterColumnBox {
    margin-top: 20px;
}

.filterColumnBox .sectionTitle {
    margin-bottom: 8px;
}

.filterList {
    padding: 0;
}

.filterList > li {
    padding: 0;
}

.filterList > li > a.open, .filterList > li > a:hover {
    color: #2dacdf;
    background-color: #f4f4f4;
}

.filterList > li > a.open::before {
    background-color: #2dacdf;
}

.filterList > li > a {
    position: relative;
    display: block;
    padding: 14px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #060606;
}

.filterList > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #e3e3e3;
}

.filterList ul {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid rgba(227, 227, 227, 0.5);
    background-color: #fff;
}

.filterList ul a {
    display: block;
    padding: 6px 12px;
    border-left: 1px solid #e3e3e3;
    font-size: 13px;
}

.filterList ul a.current, .filterList ul a:hover {
    color: #2dacdf;
    border-left-color: #2dacdf;
}

/*頁籤*/
.tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e3e3e3;
}

.tab a {
    position: relative;
    display: block;
    padding: 15px 30px;
    font-size: 15px;
    color: #343434;
    text-align: center;
}

@media (max-width: 960px) {
    .tab a {
        padding: 10px 20px;
    }
}

@media (max-width: 640px) {
    .tab a {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.tab a.current, .tab a:hover {
    color: #2dacdf;
}

.tab a.current::before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.tab a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #2dacdf;
    opacity: 0;
}

.tab a:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    right: 0;
    width: 1px;
    height: 15px;
    background-color: #e3e3e3;
}

.tab a > span {
    padding: 2px 5px;
    margin-left: 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #2dacdf;
}

.tabContent .textEditor {
    margin: 0;
}

/*側邊_相簿*/
.side_album {
    margin: -5px;
}

.side_album li {
    width: 100%;
    max-width: 100px;
    float: left;
    padding: 5px;
}

.side_album a {
    display: block;
    border: 1px solid #e3e3e3;
}

.side_album a img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*側邊_分享*/
.side_share {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 30px;
}

.side_share::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 25px);
    width: 50px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.side_share a {
    display: block;
    margin: 5px 10px;
    font-size: 20px;
    line-height: 1;
    color: #5e5e5e;
}

.side_share a:hover {
    color: #2dacdf;
}

.side_share i.fa-link {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

/*箭頭*/
.arrowBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.arrowBox.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.arrowBox > * {
    margin-right: 10px;
}

.arrowPrev, .arrowNext {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 2px solid #2dacdf;
    border-radius: 50%;
    color: #2dacdf;
    background-color: transparent;
    cursor: pointer;
}

.arrowPrev.light, .arrowNext.light {
    border-color: #fff;
    color: #fff;
}

.arrowPrev.light:hover, .arrowNext.light:hover {
    border-color: #fff;
    color: #2dacdf;
    background-color: #fff;
}

.arrowPrev.small, .arrowNext.small {
    width: 28px;
    height: 28px;
}

.arrowPrev::after, .arrowNext::after {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    -webkit-transform: rotate(45deg) translate(-1px, 1px);
            transform: rotate(45deg) translate(-1px, 1px);
}

.arrowPrev:hover, .arrowNext:hover {
    border-color: #2dacdf;
    color: #fff;
    background-color: #2dacdf;
}

.arrowPrev::after {
    -webkit-transform: rotate(225deg) translate(-1px, 1px);
            transform: rotate(225deg) translate(-1px, 1px);
}

/*dot*/
ul.dots {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    text-align: center;
}

ul.dots.light li button::before {
    background-color: rgba(255, 255, 255, 0.5);
}

ul.dots.light li.slick-active button::before,
ul.dots.light li:hover button::before {
    background-color: #fff;
}

ul.dots li {
    position: relative;
    display: inline-block;
    margin: 0 3px;
    padding: 0 !important;
}

ul.dots li button {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    font-size: 0;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
}

ul.dots li button::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b0b0b0;
}

ul.dots li.slick-active button::before,
ul.dots li:hover button::before {
    background-color: #2dacdf;
}

/*****複製訊息*****/
.copyMessage {
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 150px);
    z-index: 1004;
    width: 300px;
    height: 60px;
    line-height: 60px;
    font-size: 17px;
    font-family: "Poppins", "Noto Sans TC", "Noto Sans SC", "微軟正黑體", sans-serif;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    opacity: 0;
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
}

.copyMessage.show {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}

/*Hover效果1: 放大淡出*/
.imh_opacity {
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.imh_opacity img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.imh_opacity:hover {
    background-color: #000;
    -webkit-transition: all 0s linear;
    transition: all 0s linear;
}

.imh_opacity:hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

/*Hover效果1: 放大淡出Detail*/
.imh_detail {
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.imh_detail img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.imh_detail a:before {
    content: "Details+";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99;
    margin-left: -45px;
    margin-top: -80px;
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.imh_detail:hover {
    background-color: #000;
    -webkit-transition: all 0s linear;
    transition: all 0s linear;
}

.imh_detail:hover a:before {
    opacity: 1;
    margin-top: -20px;
}

.imh_detail:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

/*Hover效果1: 放大淡出zoom*/
.imh_zoom {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.imh_zoom img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
}

.imh_zoom a:before {
    content: "\f002";
    display: block;
    position: absolute;
    left: 50%;
    top: -30px;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 99;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    font-family: FontAwesome;
    text-align: center;
    background-color: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.imh_zoom:hover {
    background-color: #000;
    -webkit-transition: all 0s linear;
    transition: all 0s linear;
}

.imh_zoom:hover a:before {
    top: 50%;
}

.imh_zoom:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

/*最新消息icon*/
.newIcon {
    /*分類小圖示*/
    display: inline-block;
    margin-right: 3px;
    padding: 3px 5px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 400;
    font-family: '微軟正黑體';
    color: #fff;
}

div.titan {
    display: none;
}

[class*='col-'] {
    float: left;
}

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: 33.33%;
}

.col-4 {
    width: 25%;
}

.col-5 {
    width: 20%;
}

@media (max-width: 480px) {
    .col-1, .col-2, .col-3, .col-4, .col-5 {
        float: none;
        width: 100%;
    }
}

.btnBox.center {
    text-align: center;
}

.btn {
    display: inline-block;
    min-width: 200px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border: 1px solid #2dacdf;
    font-size: 13px;
    font-weight: 600;
    color: #2dacdf;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
}

.btn:hover {
    color: #fff;
    background-color: #2dacdf;
}

.btn.btn2 {
    border-color: #2dacdf;
    color: #fff;
    background-color: #2dacdf;
}

.btn.btn2:hover {
    border-color: #2dacdf;
    background-color: #2dacdf;
}

input[type="text"],
input[type="password"],
textarea,
button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-size: 14px;
    outline: none;
    padding: 0;
    margin: 0;
    color: #2f2f2f;
}

select {
    color: #2f2f2f;
}

textarea {
    resize: vertical;
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.tableWrapBox {
    overflow-x: auto;
    cursor: move;
}

.tableWrapBox table {
    min-width: 1000px;
}

/*****搜尋燈箱*****/
.searchLightBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.searchLightBox .box {
    position: relative;
    width: 90%;
    max-width: 400px;
    padding: 40px 20px 30px;
    text-align: center;
    background-color: #fff;
    pointer-events: auto;
}

.searchLightBox .title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.searchLightBox input[type=text] {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    padding: 0 10px;
    border: 1px solid #e3e3e3;
    background-color: #f0f0f0;
}

.searchLightBox ::-webkit-input-placeholder {
    /* Chrome */
    color: #999;
}

.searchLightBox :-ms-input-placeholder {
    /* IE 10+ */
    color: #999;
}

.searchLightBox ::-moz-placeholder {
    /* Firefox 19+ */
    color: #999;
    opacity: 1;
}

.searchLightBox :-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #999;
    opacity: 1;
}
