@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=Poppins:wght@400;600;700&display=swap");
*, *::before, *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

header .menuBtn::before, header .menuBtn span::before, header .menuBtn span::after, .languageBox::before, .menu > li::before, .nav .dropDown > a::before, .subscribeBox input[type=text], .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, .arrowPrev, .arrowNext, ul.dots li button::before, .copyMessage {
    -webkit-transition: all .5s;
    transition: all .5s;
}

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

body {
    font-family: 'Poppins', 'Noto Sans TC', 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: #005bac;
}

.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: 1320px;
        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: #005bac;
    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;
    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);
}

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

@media (min-width: 1181px) {
    header .wrap {
        max-width: 1920px;
        height: 70px;
    }
}

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

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

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

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 (min-width: 1401px) {
    header .rightBox {
        padding-left: 90px;
    }
}

@media (max-width: 1400px) {
    header .rightBox {
        padding-left: 30px;
    }
}

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

header .languageBox {
    margin-left: auto;
}

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

header .contactLink {
    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;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #060606;
}

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

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

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: 641px) and (max-width: 1180px) {
    header .menuBtn {
        margin-left: 30px;
    }
}

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

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: 155px;
}

@media (max-width: 1180px) {
    .logo {
        width: 127px;
    }
}

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

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

.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;
    padding-right: 20px;
    cursor: pointer;
}

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

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

.languageBox span {
    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;
    font-size: 15px;
    font-weight: 600;
    color: #060606;
}

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

.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: #d6000f;
}

/*****menu*****/
.menu {
    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;
}

.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: #d6000f;
    opacity: 0;
}

.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 #d6000f;
    border-right: 2px solid #d6000f;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

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

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

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

.menu .submenu {
    display: none;
    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: #d6000f;
}

/*****手機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: #efefef;
}

.hideBox {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    width: 100%;
    height: 100vh;
    padding: 60px 30px;
    background-color: #efefef;
    overflow-y: auto;
}

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

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

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

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

.hideBox .languageBox span::after {
    content: ':';
}

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

.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: #d6000f;
}

.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 #dbdbdb;
}

.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 #d6000f;
    border-right: 2px solid #d6000f;
    -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: #d6000f;
}

/*****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;
}

.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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    text-transform: uppercase;
}

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

.bannerArea .mainTitle::after {
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 640px) {
    .bannerArea .mainTitle::after {
        width: 50px;
        margin-top: 10px;
    }
}

/*****頁尾資訊*****/
footer {
    background-color: #212121;
}

footer .topBox {
    padding: 15px 0;
    background-color: #d7dadf;
}

footer .topBox > .wrap {
    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: 961px) {
    footer .topBox .subscribeBox {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        margin-right: 20px;
    }
}

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

@media (min-width: 961px) {
    footer .topBox .socialBox {
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
}

@media (max-width: 960px) {
    footer .topBox .socialBox {
        width: 100%;
        margin-top: 20px;
    }
}

footer .bottomBox {
    padding: 0 0 25px;
    color: #b1b1b1;
}

@media (max-width: 1180px) {
    footer .bottomBox {
        padding-bottom: 40px;
    }
}

footer .bottomBox > .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 #2e2e2e;
}

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: 0;
    }
}

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: #b1b1b1;
    -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;
}

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

@media (max-width: 640px) {
    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;
    }
}

@media (min-width: 1181px) {
    footer .logo {
        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: #46a8ff;
}

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

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

.subscribeBox .submit_btn:hover {
    background-color: #1390ff;
}

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

.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: #888;
    -webkit-text-decoration: 1px underline transparent;
            text-decoration: 1px underline transparent;
}

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

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

.copyright a {
    color: #aaa;
}

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

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

.translateIbest .design a {
    /*網頁設計‧愛貝斯*/
    color: #aaa;
    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: #005bac;
    text-transform: uppercase;
}

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

.privacyArea .text a {
    color: #005bac;
    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;
    margin-left: auto;
}

.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 {
    padding: 0;
}

.mainArea.hasBg, .mainArea .hasBg {
    background: url(../images/bg.png) no-repeat center top;
}

.mainArea .blueDotsList ::marker {
    font-size: 18px;
    color: #005bac;
    line-height: 1;
}

.mainArea .textEditor .contentBuilder .btn {
    color: #fff;
}

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

.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: #d6000f;
}

.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;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    color: #545454;
    background-color: #fff;
}

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

@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 #e5e5e5;
    font-size: 18px;
    color: #545454;
}

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

.classBox .btnHome:hover {
    color: #005bac;
}

.classBox .title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: inline-block;
    padding: 18px 20px;
    border-right: 1px solid #e5e5e5;
}

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

.classBox .classRowBox {
    border-right: 1px solid #e5e5e5;
}

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

.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;
    }
}

/*類別*/
.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: 1px solid #e5e5e5;
    background-color: #fff;
}

.mClassLink > ul > li:not(:first-child) {
    border-top: 1px solid #e5e5e5;
}

.mClassLink > ul a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 10px 20px;
    color: #000;
    font-size: 14px;
}

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

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

.mClassLink > ul a:hover,
.mClassLink > ul a.current,
.mClassLink > ul:hover a.current:hover {
    color: #fff;
    background-color: #005bac;
}

.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 #005bac;
    background-color: #005bac;
    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 #005bac;
    background-color: #005bac;
    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;
}

/*標籤*/
/*頁籤*/
/*頁籤內容*/
/*側邊_相簿*/
/*側邊_分享*/
.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: #005bac;
}

.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: 30px;
    height: 20px;
    border: 0;
    color: #060606;
    background-color: transparent;
    cursor: pointer;
}

@media (min-width: 641px) {
    .arrowPrev.light, .arrowNext.light {
        color: #adaeb2;
    }
}

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

.arrowPrev::before, .arrowNext::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
}

.arrowPrev:hover, .arrowNext:hover {
    color: #005bac;
}

.arrowPrev::after {
    left: 0;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
}

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

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

ul.dots li button {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    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% - 2px);
    left: calc(50% - 2px);
    width: 4px;
    height: 4px;
    border-radius: 0;
    background-color: rgba(0, 91, 172, 0.4);
}

@media (max-width: 640px) {
    ul.dots li button {
        width: 20px;
        height: 20px;
    }
    ul.dots li button::before {
        top: calc(50% - 4px);
        left: calc(50% - 4px);
        width: 8px;
        height: 8px;
    }
}

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

@media (min-width: 641px) {
    ul.dots li.slick-active {
        width: 70px;
    }
    ul.dots li.slick-active button::before {
        left: 5px;
        width: 60px;
    }
}

/*****複製訊息*****/
.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", "微軟正黑體", 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: #000;
    overflow: hidden;
}

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

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

/*Hover效果1: 放大淡出Detail*/
.imh_detail {
    background-color: #000;
    overflow: hidden;
}

.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 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: #000;
    overflow: hidden;
}

.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 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%;
    }
}

.btn {
    display: inline-block;
    min-width: 200px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    background-color: #d6000f;
}

.btn:hover {
    color: #fff;
    background-color: #005bac;
}

.btn.btn2 {
    background-color: #005bac;
}

.btn.btn2:hover {
    background-color: #d6000f;
}

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: 16px;
    outline: none;
    padding: 0;
    margin: 0;
}

textarea {
    resize: vertical;
}
/*# sourceMappingURL=master.css.map */