@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=fallback');

body {
    font-size: 1rem;
    line-height: 1.5em;
    letter-spacing: 0.5px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -o-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    background-color: #fff;
}

h2, .h2 {
    color: #242424;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.3em;
    margin: 30px 0px;
}

h3, .h3 {
    color: #242424;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.3em;
    margin: 20px 0px;
}

h3 > span,
.h3 > span{
    color: #db3b00;
    margin: 0px;
    font-weight: bold;
}

h4, .h4 {
    color: #242424;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3em;
    margin-bottom: 20px;
}

h5, .h5 {
    color: #242424;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3em;
    margin-bottom: 20px;
}

h5 > span,
.h5 > span {
    color: #db3b00;
    margin: 0px;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    h2, .h2 {
        font-size: 2rem;
    }

    h3, .h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    h2, .h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    h3, .h3 {
        font-size: 1.3rem;
    }

    h4, .h4 {
        font-size: 1.2rem;
    }

    h5, .h5 {
        font-size: 1.2rem;
    }
}

h2:first-child,
h3:first-child,
.h2:first-child,
.h3:first-child {
    margin-top: 0px;
}

p {
    margin-bottom: 1em;
}

a {
    color: #db3b00;
}

@media screen and (min-width: 1025px) {

    a:hover,
    a:focus {
        color: #e06827;
    }

    a:focus {
        outline: none;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
        box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
    }
}

article:not(.tourArticle) {
    padding: 30px;
    margin: 45px 0px;
    background-color: #f1f1f1;
}

article:not(.tourArticle) a{
    color: #c53e00;
}

@media screen and (max-width: 1000px) {
    article:not(.tourArticle) {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    article:not(.tourArticle) {
        padding: 10px;
    }
}

.select-blk {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.3em;
}

select {
    background-color: #e6e6e6;
    border-width: 1px;
    border-color: rgba(200, 200, 200, 0.5);
    border-style: solid;
    font-size: 1rem;
    padding: 5px 10px;
}

@media screen and (max-width: 1024px) {
    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

@media screen and (min-width: 1025px) {
    select:focus {
        outline: none;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(219, 59, 0, 1);
                box-shadow: 0 0 0 0.2rem rgba(219, 59, 0, 1);
    }
}

.dropdown {
    float: left;
    margin-right: 10px;
}

.dropdown .dropdown-btn {
    width: 150px;
    height: 40px;
    padding-left: 10px;
    padding-right: 20px;
    display: block;
    position: relative;
    background-color: #e5e5e5;
    color: #000;
}

.dropdown .dropdown-btn::after {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    top: calc((100% - 5px)/2);
    right: 6px;
}

.dropdown .dropdown-menu {
    display: none;
    min-width: 150px;
    height: 120px;
    overflow-x: auto;
    position: absolute;
    background-color: #fff;
    border: 1px #c8c8c8 solid;
}

.dropdown .dropdown-item {
    display: block;
    padding: 0px 10px;
    color: #000;
}

@media screen and (min-width: 1025px) {

    .dropdown .dropdown-item:hover,
    .dropdown .dropdown-item:focus {
        background-color: #db3b00;
        color: #fff;
    }
}

.left-side {
    float: left;
}

.right-side {
    float: right;
}

.main {
    background-color: #f1f1f1;
}

.content {
    background-color: #fff;
}

.wrap {
    margin: auto;
}

@media screen and (min-width: 1440px) {
    .wrap {
        max-width: 1400px;
    }
}

@media screen and (max-width: 1439px) {
    .wrap {
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 480px) {
    .wrap {
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 400px) {
    .wrap {
        width: calc(100% - 20px);
    }
}

input:not(input[type="radio"]),
input:not(input[type="checkbox"]),
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
}

textarea {
    width: 100%;
}

@media screen and (min-width: 1025px) {

    input:not(input[type="radio"]):focus,
    input:not(input[type="checkbox"]):focus{
        outline: none;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
    }

    textarea:focus {
        width: calc(100% - 0.4rem);
        outline: none;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(219, 59, 0, 1);
                box-shadow: 0 0 0 0.2rem rgba(219, 59, 0, 1);
    }
}

/* Grid 格狀欄位 */
ul.grid:not(.section-tour .grid) {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    margin: 0px 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

ul.grid:not(.section-tour .grid)>li {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Grid（卡片） */
.card-list>li {
    width: 25%;
    position: relative;
}

.card-list.carousel {
    display: block;
}

.card-list.carousel li {
    padding: 17px;
    vertical-align: top;
}

.card-list.carousel .card {
    padding: 0px;
}

.no-js .card-list.carousel li {
    width: 24%;
    display: inline-block;
    vertical-align: top;
}

.card {
    display: block;
    padding: 17px;
    margin-bottom: 10px;
    font-size: 1rem;
    height: 100%;
}

.card-list.carousel .slick-slide {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width: 1025px) {
    .card-list.carousel .slick-slide:focus{
        outline: none;
        box-shadow: none;
        /* -webkit-box-shadow: inset 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
                box-shadow: inset 0 0 0 0.2rem rgba(255, 114, 71, 0.5); */
    }

    .card:hover .card-info .en-newstitle >.date,
    .card:focus .card-info .en-newstitle>.date {
        color: #e06827;
    }

    .card:hover .card-info .en-newstitle>.caption,
    .card:focus .card-info .en-newstitle>.caption {
        color: #db3b00;
    }
}

@media screen and (max-width: 767px) {
    .card {
        padding: 0px;
        height: auto;
    }

    .card-list.carousel li {
        padding: 0px;
    }
}

.card .card-wrap {
    position: relative;
    border-width: 1px;
    border-color: rgba(200, 200, 200, 0.5);
    border-style: solid;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-bottom: 10px;
    height: 100%;
}

@media screen and (min-width: 1025px) {
    .card .card-wrap:hover {
        border-color: rgba(200, 200, 200, 1);
        -webkit-box-shadow: 0px 0px 2px 1px rgba(170, 170, 170, .5);
        box-shadow: 0px 0px 2px 1px rgba(170, 170, 170, .5);
    }
}

.card .card-link {
    display: block;
}

.card .card-info {
    overflow: hidden;
    margin-top: 5px;
    padding: 5px 15px 10px 20px;
    line-height: 30px;
}

.card .card-info .date,
.card .card-info .hashtag,
.card .card-info .writer,
.card .card-info .star {
    display: block;
    line-height: 30px;
}

.card .card-info .date {
    font-size: 1.25rem;
    font-weight: bold;
    color: #db3b00;
}

.card .card-info p {
    margin-bottom: 0px;
    line-height: 30px;
}

@media screen and (max-width: 1024px) {
    .card .card-info p.mobile-hide {
        display: none;
    }
}

.card .card-info span {
    color: #db3b00;
}

.card .card-info .hashtag {
    padding-top: 10px;
    margin-bottom: 0px;
}

.card .card-info .hashtag a {
    font-size: 1rem;
    line-height: 1.6em;
    padding: 3px 13px;
    border: none;
    background-color: #e6e6e6;
}

@media screen and (min-width: 1025px) {

    .card .card-info .hashtag a:hover,
    .card .card-info .hashtag a:focus {
        background-color: #db3b00;
        color: #fff;
    }
}

.card .card-info .writer {
    font-weight: bold;
    float: right;
}

.card .card-info .writer .writer-img,
.card .card-info .writer .writer-name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.card .card-info .writer .writer-img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
}

.card .card-info .writer .writer-img>img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.card .card-info .writer .writer-name {
    color: #757575;
}

@media screen and (min-width: 1025px) {

    .card .card-info .writer:hover .writer-name,
    .card .card-info .writer:focus .writer-name {
        color: #db3b00;
    }
}

.card .card-info .distance::before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 50px;
    height: 30px;
    margin-right: 7px;
    background: url('../../images/icon/distance.svg') no-repeat center/contain;
}

.card .card-info .delete-btn {
    display: block;
    float: right;
    font-size: 1rem;
    line-height: 35px;
    color: #000;
}

.card .card-info .delete-btn::after {
    content: '';
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: top;
    border-radius: 100%;
    background-color: #e5e5e5;
    background-image: url('../../images/icon/close.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    margin-left: 5px;
}

@media screen and (min-width: 1025px) {

    .card .card-info .delete-btn:hover,
    .card .card-info .delete-btn:focus {
        color: #db3b00;
    }

    .card .card-info .delete-btn:hover::after,
    .card .card-info .delete-btn:focus::after {
        background-color: #db3b00;
        background-image: url('../../images/icon/close_w.svg');
    }
}

@media screen and (max-width: 480px) {
    .card .card-info .delete-btn {
        line-height: 20px;
    }

    .card .card-info .delete-btn::after {
        width: 20px;
        height: 20px;
    }
}

.card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 30px;
    max-height: 60px;
    margin-bottom: 5px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

html[lang="zh-Hant-TW"] .card .card-title,
html[lang="zh-Hant"] .card .card-title,
html[lang="zh-TW"] .card .card-title {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.card figure {
    position: relative;
}

.card figure>.graphic {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 80%;
    overflow: hidden;
}

.card figure > .graphic > img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    -o-object-fit: cover;
    object-fit: cover;
}

.no-js .card figure > .graphic noscript img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    -o-object-fit: cover;
    object-fit: cover;
}

.card .target {
    position: absolute;
    right: 10px;
    top: 20px;
    color: #fff;
    line-height: 30px;
}

.card .target::after {
    content: '';
    width: 30px;
    height: 30px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.card .target.target-like {
    background-color: rgba(0, 0, 0, 0.6);
    padding-left: 8px;
    padding-right: 7px;
    border-radius: 5px;
}

.card .target.target-like::after {
    background-image: url('../../images/icon/target_view.svg');
    background-size: 70%;
    margin-left: 0px;
}

.card .target.target-star::after {
    background-image: url('../../images/icon/target_star.svg');
}

.card .target.target-love::after {
    background-image: url('../../images/icon/target_love.svg');
}

.card .target-mark {
    position: absolute;
    top: 20px;
    left: -10px;
    color: #fff;
    line-height: 28px;
    background-color: #db3b00;
    padding: 0px 12px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif, '微軟正黑體', 'Microsoft JhengHei', Arial, Helvetica, Sans-Serif;
}

.card .target-mark.color-red {
    color: #fff;
    background-color: #fe6036;
}

.card .target-mark.color-orange {
    color: #fff;
    background-color: #db3b00;
}

.card .target-mark.color-fullred {
    color: #fff;
    background-color: #f22d2d;
}

.card .target-mark.color-skyblue {
    color: #fff;
    background-color: #287aa4;
}

.card .target-mark.color-pinkred {
    color: #fff;
    background-color: #db3b00;
}

.card .target-mark.color-lightgreen {
    color: #fff;
    background-color: #92c62e;
}

.card .target-mark.color-purple {
    color: #fff;
    background-color: #a44cc4;
}

.card .target-mark.color-mint {
    color: #fff;
    background-color: #008181;
}

.card .target-mark.color-green {
    color: #fff;
    background-color: #5a7f0d;
}

.card .target-mark.color-meatred {
    color: #fff;
    background-color: #d57878;
}

.card .target-mark.color-matchabrown {
    color: #fff;
    background-color: #b7b21c;
}

.card .card-info .en-newstitle {
    display: block;
}

.card .card-info .en-newstitle>.caption {
    line-height: 30px;
    height: 60px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: keep-all;
}

@media screen and (max-width: 1000px) {
    .card-list>li {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .card-style-columns.card-list>li {
        width: 100%;
    }

    .card-style-columns .card {
        padding: 0px;
    }

    .card-style-columns .card .card-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 0px;
    }

    .card-style-columns .card .card-link {
        width: 30%;
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .card-style-columns .card .card-info {
        width: 70%;
        padding: 0px 15px;
        margin-top: 0px;
    }

    .card-style-columns .card .target {
        width: 70px;
        position: static;
        display: block;
        color: #000;
        text-align: center;
        word-break: break-word;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .card-style-columns .card .target::after {
        display: none;
    }

    .card-style-columns .card .target::before {
        content: '';
        width: 30px;
        height: 30px;
        display: block;
        margin: auto;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .card-style-columns .card .target.target-like {
        background-color: transparent;
    }

    .card-style-columns .card .target.target-like::before {
        background-image: url('../../images/icon/target_view_b.svg');
    }

    .card-style-columns .card .target.target-star::before {
        background-image: url('../../images/icon/target_star_b.svg');
    }

    .card-style-columns .card .target.target-love::before {
        background-image: url('../../images/icon/target_love_b.svg');
    }

    .card-style-columns .card figure>.graphic {
        width: 100%;
        height: 0px;
        padding-bottom: 100%;
    }

    .card .target-mark {
        top: 5px;
        left: 0px;
        line-height: 25px;
        padding: 0px 10px;
        font-weight: unset;
    }

    .card .card-info .en-newstitle>.caption {
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .card .card-info {
        font-size: 0.9rem;
        line-height: 25px;
    }

    .card .card-title {
        font-size: 1.1rem;
        font-weight: unset;
        line-height: 25px;
        max-height: 50px;
    }

    .card .card-info .date {
        font-size: 0.9rem;
        font-weight: unset;
    }

    .card .card-info .writer {
        font-size: 0.9rem;
        font-weight: unset;
    }

    .card .card-info .hashtag a {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .card .target-mark {
        top: 0px;
        left: 0px;
        line-height: 22px;
        padding: 3px 10px;
        font-size: 0.9rem !important;
    }

    /*------列表頁眼睛調整------*/
    .card .target.target-like {
        padding-left: 0px;
        padding-right: 0px;
    }

    .card-style-columns .card .target {
        width: 60px;
    }

    .card-style-columns .card .card-link {
        width: 40%;
    }

    .card-style-columns .card .card-info {
        padding: 10px 0px 10px 10px;
    }

    .card-style-columns .card .target {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 400px) {
    /* .card-style-columns .card .card-link {
		width: auto;
	} */

    .card-style-columns .card figure>.graphic {
        width: 100%;
        height: 120px;
        padding-bottom: 0px;
    }

    .card-style-columns .card .card-info {
        width: calc(100% - 100px);
        padding: 0px 0px 0px 10px;
    }

    .card-style-columns .card .card-info .hashtag a {
        font-size: 0.7rem;
        font-weight: bold;
        margin-right: 3px;
        margin-bottom: 3px;
    }

    .card-style-columns .card .target {
        width: 50px;
        font-size: 0.7rem;
    }
}

.morebtn {
    width: 200px;
    display: block;
    border: 1px #444 solid;
    padding: 3px 10px;
    margin: 0px auto 20px;
    text-align: center;
    background-color: #fff;
    color: #444;
    font-size: 1.125rem;
    line-height: 30px;
}

@media screen and (min-width: 1025px) {

    .morebtn:hover,
    .morebtn:focus {
        background-color: #444;
        color: #fff;
    }

    .morebtn:focus {
        position: relative;
    }
}

.linkbtn {
    display: inline-block;
    background-color: #db3b00;
    color: #fff;
    padding: 5px 15px;
    margin-bottom: 20px;
}

@media screen and (min-width: 1025px) {

    .linkbtn:hover,
    .linkbtn:focus {
        background-color: #e06827;
        color: #fff;
    }
}

.link-arrow-btn {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    background-color: #db3b00;
}

.link-arrow-btn::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
    top: calc((100% - 10px)/2);
    left: calc((100% - 7px)/2);
}

.distancebtn {
    display: inline-block;
    background-color: #e5e5e5;
    color: #626262;
    padding: 10px 15px;
    line-height: 30px;
}

.content>.wrap .distancebtn>a {
    color: #b1390d;
    border-bottom: none;
}

@media screen and (min-width: 1025px) {
    .content>.wrap .distancebtn>a:hover,
    .content>.wrap .distancebtn>a:focus {
        color: #db3b00;
    }
}

.distancebtn::before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 50px;
    height: 30px;
    margin-right: 10px;
    background: url('../../images/icon/distance.svg') no-repeat center/contain;
}

.tel-link {
    padding: 1px 16px;
    border: 1px #db3b00 solid;
    display: inline-block;
    color: #020202;
    margin-bottom: 5px;
    line-height: 30px;
}

@media screen and (min-width: 1025px) {

    .tel-link:hover,
    .tel-link:focus {
        color: #db3b00;
    }
}

.tel-link::after {
    content: '';
    width: 23px;
    height: 30px;
    display: inline-block;
    vertical-align: top;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    margin-left: 5px;
}

.tel-link.address::after {
    background-image: url('../../images/icon/placeholder.svg');
}

.tel-link.phone::after {
    background-image: url('../../images/icon/phone.svg');
}

.tel-link.webside::after {
    background-image: url('../../images/icon/link.svg');
}

.iframebox {
    width: 100%;
    height: 550px;
    position: relative;
}

.iframebox>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.ui-autocomplete {
    z-index: 2000 !important;
}

/* 輪播 */
.carousel .slick-dots {
    width: 100%;
    text-align: center;
    padding-left: 0px;
    list-style: none;
    margin: 0px;
    margin: 20px 0px;
    line-height: 1em;
    font-size: 0rem;
}

.carousel .slick-dots>li {
    width: auto;
    display: inline-block;
    float: none;
    margin: 0px 5px;
}

.carousel .slick-dots button {
    width: 70px;
    height: 7px;
    background-color: #b5b5b5;
    padding: 0px;
    margin: 0px;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    outline: none;
    display: block;
}

.carousel .slick-dots>li.slick-active button {
    background-color: #db3b00;
}

@media screen and (min-width: 1025px) {
    .carousel .slick-dots button:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
    }
}

/* 分享 */
.share-link-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share-link-item>li {
    margin: 0px 10px;
}

.share-link-item a {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 100%;
    background-color: #bdbdbd;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    text-indent: -9999px;
    color: #000;
}

.share-link-item a.icon-facebook {
    background-color: #3b5998;
    background-image: url('../../images/icon/shareicon_facebook.svg');
    color: #fff;
}

.share-link-item a.icon-twitter {
    background-color: #00aced;
    background-image: url('../../images/icon/shareicon_twitter.svg');
}

.share-link-item a.icon-google {
    background-color: #d64136;
    background-image: url('../../images/icon/shareicon_google.svg');
    color: #000;
}

.share-link-item a.icon-plurk {
    background-color: #c6602b;
    background-image: url('../../images/icon/shareicon_plurk.svg');
}

.share-link-item a.icon-line {
    background-color: #2cbf13;
    background-image: url('../../images/icon/shareicon_line.svg');
}

@media screen and (min-width: 1025px) {

    .share-link-item a.icon-facebook:hover,
    .share-link-item a.icon-facebook:focus {
        background-color: #2a4173;
    }

    .share-link-item a.icon-twitter:hover,
    .share-link-item a.icon-twitter:focus {
        background-color: #1197ca;
    }

    .share-link-item a.icon-google:hover,
    .share-link-item a.icon-google:focus {
        background-color: #af3d35;
    }

    .share-link-item a.icon-plurk:hover,
    .share-link-item a.icon-plurk:focus {
        background-color: #9c4e25;
    }

    .share-link-item a.icon-line:hover,
    .share-link-item a.icon-line:focus {
        background-color: #2f961d;
    }
}

/* colorbox */
#colorbox #cboxClose {
    position: fixed;
    width: 50px;
    height: 50px;
    background-image: url('../../images/icon/close_w.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

/* Lazy load */
img.lazyload {
    opacity: 0;
    background-color: #e6e6e6;
}

@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){
    img.lazyload {
        opacity: 1 !important;
    }
}

img.lazyloading {
    opacity: 1;
    background: #f7f7f7 url('../../images/loader.gif') no-repeat center;
    -webkit-transition: 0.6s opacity;
    -o-transition: 0.6s opacity;
    transition: 0.6s opacity;
}

img.lazyloaded {
    opacity: 1;
    background-color: transparent;
}

.no-js noscript > img {
    width: 100%;
    height: auto;
    display: block;
    position: static;
}

.no-js img.lazyload {
    display: none !important;
}

/* Header */
form {
    padding-top: 136px;
}

.no-js form {
    padding-top: 0px;
}

@media screen and (max-width: 1024px) {
    form {
        padding-top: 60px;
    }
}

header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2000;
}

.no-js header {
    position: static;
}

header .top-zone {
    background-color: #f0f0f0;
    padding: 15px 0px;
}

header .header-zone {
    background-color: #fff;
    border-top: 1px #f1f1f1 solid;
    border-bottom: 1px #f1f1f1 solid;
}

header .search-zone,
.mobile-search-zone {
    background-color: #615b50;
    text-align: center;
    padding: 12px 0px;
    display: none;
}

.no-js header .search-zone {
    display: block;
}

/* Header Top Zone */
header .top-zone .left-side {
    overflow: hidden;
}

header .top-zone .left-side>.logo {
    float: left;
}

/* Header Scrolled */
header.scrolled {
    position: fixed;
    -webkit-box-shadow: 0px 1px 5px #cecece;
    box-shadow: 0px 1px 5px #cecece;
}

header.scrolled .top-zone {
    display: none;
}

header.scrolled #menu {
    -webkit-transition: width 0.2s ease;
    -o-transition: width 0.2s ease;
    transition: width 0.2s ease;
}

header.scrolled #menu>ul>li {
    padding: 10px 0px;
}

/* Header Link */
header .link-list {
    font-size: 0.95rem;
}

header .link-item,
header .link-item>li {
    display: inline-block;
    vertical-align: middle;
}

.no-js header .link-item {
    vertical-align: top;
}

header .link-item>li {
    padding: 0px 20px;
    border-right: 1px #c9c9c9 solid;
}

header .link-item>li:last-child {
    border-right: none;
}

header .link-item>li a {
    color: #020202;
}

header .link-item>li span {
    color: inherit;
}

header .link-item.facebook,
header .link-item.youtube {
    width: 38px;
    height: 38px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    margin: 0px 4px;
    color: #000;
}

header .link-item.facebook {
    background-image: url('../../images/icon/facebook.svg');
    background-size: contain;
}

header .link-item.youtube {
    background-image: url('../../images/icon/youtube.svg');
    background-size: 70%;
}

@media screen and (min-width: 1025px) {

    header .link-item>li a:hover,
    header .link-item>li a:focus {
        color: #db3b00;
    }

    header .link-item.facebook:hover,
    header .link-item.facebook:focus {
        background-image: url('../../images/icon/facebook_active.svg');
    }

    header .link-item.youtube:hover,
    header .link-item.youtube:focus {
        background-image: url('../../images/icon/youtube_active.svg');
    }
}

@media screen and (max-width: 1280px) {
    header .link-item>li {
        padding: 0px 20px;
    }
}

/* Header Language */
header .link-item.language {
    margin: 0px 15px;
    position: relative;
}

.no-js header .link-item.language {
    display: block;
}

header .language-btn {
    color: #020202;
}

header .language-btn.is-active {
    color: #db3b00;
}

header .language-list {
    display: none;
    position: absolute;
    left: -10px;
    top: calc(100% + 15px);
    width: 150px;
    background-color: #666;
    font-size: 0.9rem;
    z-index: 2000;
}

.no-js header .language-list {
    width: auto;
    display: block;
    position: static;
}

.no-js header .language-list > li {
    display: inline;
}

@media screen and (max-width: 1280px) {
    header .language-list {
        left: auto;
        right: -10px;
    }
}

header .language-list a {
    display: block;
    padding: 10px;
    line-height: 1.2em;
    color: #fff;
}

.no-js header .language-list a {
    display: inline-block;
}

@media screen and (min-width: 1025px) {

    header .language-list a:hover,
    header .language-list a:focus {
        color: #db3b00;
    }
}

/* Header Logo */
header .logo {
    width: 110px;
    height: 40px;
    position: relative;
}

header .logo>a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url('../../images/logo.png') no-repeat center/contain;
    text-indent: -9999px;
    color: #000;
}

@media screen and (min-width: 1025px) {
    header .logo>a:focus {
        -webkit-box-shadow: inset 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
                box-shadow: inset 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
    }
}

header .header-zone .logo {
    display: none;
}

/* Header Menu */
header .header-zone>.wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .menu-btn {
    display: none;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
    text-indent: -9999px;
    background-image: url('../../images/icon/menu.svg');
    background-repeat: no-repeat;
    background-size: 48%;
    background-position: center;
}

header #menu {
    width: calc(100% - 150px);
}

header #menu>ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header #menu>ul>li {
    width: 16.6%;
    padding: 10px 0px;
    text-align: center;
}

header #menu .bring-item {
    opacity: 0;
    display: none;
}

header #menu .menu-link {
    display: block;
    padding: 10px 5px;
    font-size: 1.1rem;
    text-align: center;
}

header #menu .menu-link>span {
    font-weight: bold;
}

@media screen and (min-width: 1600px) {
    /* header #menu .menu-link{
        font-size: 1.25rem;
    } */
}

header #menu .menu-link.current>span {
    color: #db3b00;
}

@media screen and (min-width: 1025px) {

    header #menu .menu-link:hover>span,
    header #menu .menu-link:focus>span {
        color: #db3b00;
    }
}

header #menu .submenu {
    width: 1024px;
    padding: 10px;
    position: absolute;
    top: 100%;
    left: calc((100% - 1024px)/2);
    text-align: left;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    background-color: #f5f5f5;
    -webkit-box-shadow: 1px 3px 5px #cecece;
    box-shadow: 1px 3px 5px #cecece;
}

@media screen and (min-width: 1260px) {
    header #menu .submenu {
        width: 1270px;
        left: calc((100% - 1270px)/2);
    }
}

/* 20180925 暫時調整 */
header #menu>ul>li:nth-child(1)>.submenu {
    width: auto;
    left: 0px;
}

header #menu>ul>li:nth-child(6)>.submenu {
    width: 520px;
    left: calc((100% - 520px)/2);
}

/* 20180925 暫時調整 結束*/
header #menu .submenu>li {
    width: 250px;
    padding: 10px 10px 20px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

header #menu .submenu>li.auto-width {
    width: auto;
}

header #menu .submenu>li>a {
    display: block;
    font-size: 1.1rem;
    color: #db3b00;
    margin: 10px 0px;
}

@media screen and (min-width: 1025px) {

    header #menu .submenu>li>a:hover,
    header #menu .submenu>li>a:focus {
        color: #e06827;
    }
}

header #menu .submenu>li>img {
    width: 230px;
    height: 127px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

header #menu .submenu-level-2 {
    border-left: 1px solid #db3b00;
    margin-top: 10px;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 0.95rem;
    /* max-height: 100px; */
}

header #menu .submenu-level-2 li {
    min-height: 25px;
}

header #menu .submenu-level-2 a {
    color: #020202;
}

@media screen and (min-width: 1025px) {

    header #menu .submenu-level-2 a:hover,
    header #menu .submenu-level-2 a:focus {
        color: #db3b00;
    }
}

/* Megamenu 地圖 */
#megamenu-map {
    width: 368px;
    height: 368px;
    position: relative;
    background-color: #fff;
    background-image: url('../../images/map_taiwan.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#megamenu-map::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#megamenu-map.is-north::after {
    background-image: url('../../images/map_north.png');
}

#megamenu-map.is-center::after {
    background-image: url('../../images/map_center.png');
}

#megamenu-map.is-south::after {
    background-image: url('../../images/map_south.png');
}

#megamenu-map.is-east::after {
    background-image: url('../../images/map_east.png');
}

#megamenu-map.is-island::after {
    background-image: url('../../images/map_island.png');
}

@media screen and (max-width: 1024px) {
    .megamenu-item {
        display: none;
    }
}

/* Megamenu 熱門標籤 */
header #menu .submenu>li.nottag-item {
    padding-left: 45px;
    position: relative;
}

header #menu .submenu>li.nottag-item::before {
    content: '';
    width: 2px;
    height: calc(100% - 30px);
    display: block;
    background-color: #e1e1e1;
    position: absolute;
    left: 15px;
    top: 10px;
}

header #menu .submenu>li.nottag-item>ul {
    border: none;
    padding-left: 0px;
    margin-left: 0px;
    width: 300px;
    overflow: hidden;
}

header #menu .submenu>li.nottag-item>ul>li {
    width: 50%;
    float: left;
}

header #menu .submenu>li.nottag-item>ul>li a {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media screen and (min-width: 1025px) {
    header #menu .submenu>li.nottag-item>ul>li a:focus {
        -webkit-box-shadow: inset 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
                box-shadow: inset 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
    }
}

/* Header Share */
header .share {
    display: none;
    position: absolute;
    top: 0;
    right: 60px;
}

header .share .share-btn {
    width: 60px;
    height: 60px;
    display: block;
    background-image: url('../../images/icon/share.svg');
    background-repeat: no-repeat;
    background-size: 55%;
    background-position: center;
    text-indent: -9999px;
}

header .share .share-btn.is-active {
    background-image: url('../../images/icon/share_active.svg');
}

header .share .share-list {
    display: none;
}

header .share .share-list a {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    display: block;
    background-color: #000;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    text-indent: -9999px;
}

header .share .share-list a.icon-facebook {
    background-color: #3b5998;
    background-image: url('../../images/icon/shareicon_facebook.svg');
}

header .share .share-list a.icon-twitter {
    background-color: #00aced;
    background-image: url('../../images/icon/shareicon_twitter.svg');
}

header .share .share-list a.icon-google {
    background-color: #d64136;
    background-image: url('../../images/icon/shareicon_google.svg');
}

header .share .share-list a.icon-plurk {
    background-color: #c6602b;
    background-image: url('../../images/icon/shareicon_plurk.svg');
}

header .share .share-list a.icon-line {
    background-color: #2cbf13;
    background-image: url('../../images/icon/shareicon_line.svg');
}

/* Header Zoon 裡面的按鈕 */
header .header-zone .search-btn,
header .header-zone .members-btn {
    width: 40px;
    height: 40px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    text-indent: -9999px;
}

/* Header Member */
header .header-zone .members {
    padding: 0px 20px;
    position: relative;
}

header .header-zone .members .members-btn {
    background-image: url('../../images/icon/member.svg');
}

header .header-zone .members .members-btn>span {
    display: none;
}

header .header-zone .members .members-btn>figure {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    border-radius: 100%;
}

header .header-zone .members .members-btn>figure>img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    -o-object-fit: cover;
    object-fit: cover;
}

header .header-zone .members .members-list {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 90px;
    top: calc(100% + 12px);
    left: calc((100% - 90px)/2);
    border-radius: 0px 0px 10px 10px;
    -webkit-box-shadow: 0px 2px 4px #cecece;
    box-shadow: 0px 2px 4px #cecece;
}

header .header-zone .members .members-list>li {
    padding: 10px 0px;
}

header .header-zone .members .members-list a {
    display: block;
    font-size: 0.95rem;
    line-height: 1em;
    text-align: center;
    color: #000;
}

@media screen and (min-width: 1025px) {

    header .header-zone .members .members-list a:hover,
    header .header-zone .members .members-list a:focus {
        color: #db3b00;
    }
}

header .header-zone .members.is-signin .members-btn {
    border-radius: 100%;
    /* background-color: #db3b00; */
    background-size: 55%;
    position: relative;
    color: #000;
}

header .header-zone .members.is-signin .members-btn>span {
    width: 30px;
    height: 30px;
    text-indent: 1px;
    font-size: 0.8rem;
    line-height: 26px;
    display: block;
    position: absolute;
    top: -5px;
    right: -15px;
    background-image: url('../../images/icon/hearts.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: #fff;
    text-align: center;
    opacity: 0;
}

header .header-zone .members.is-signin .members-btn>figure {
    display: block;
}

header .header-zone .members .members-btn::after,
header .header-zone .members .members-btn::before {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    background-image: url('../../images/join.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 100;
    left: -40px;
    top: -20px;
    color: #fff;
    line-height: 50px;
    font-size: 0.8rem;
    text-indent: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

header .header-zone .members .members-btn.is-remove::after {
    content: '已移除';
    -webkit-animation: fadeOutUp 2s;
    animation: fadeOutUp 2s;
}

header .header-zone .members .members-btn.is-add::before {
    content: '已加入';
    -webkit-animation: fadeOutUp 2s;
    animation: fadeOutUp 2s;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        visibility: visible;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, -35%, 0);
        transform: translate3d(0, -35%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        visibility: visible;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, -35%, 0);
        transform: translate3d(0, -35%, 0);
    }
}

/* Header Search */
header .header-zone .search-btn {
    /* display: inline-block;
    vertical-align: middle; */
    background-image: url('../../images/icon/search.svg');
    margin: 0px 5px;
}

header .header-zone .search-btn.is-active {
    background-image: url('../../images/icon/search_close.svg');
}

header .search-zone label,
header .search-zone input,
header .search-zone .keywords,
.mobile-search-zone label,
.mobile-search-zone input,
.mobile-search-zone .keywords {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.1rem;
}

header .search-zone .search-btn,
.mobile-search-zone .search-btn {
    width: 40px;
    height: 40px;
    background-image: url('../../images/icon/search_w.svg');
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    background-size: 70%;
    text-indent: -9999px;
    border: none;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
    header .search-zone .search-btn:focus {
        outline: none;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(255, 114, 71, 0.5);
    }
}

header .search-zone input[type="text"],
.mobile-search-zone input[type="text"] {
    background-color: #fff;
    margin: 5px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

@media screen and (min-width: 1025px) {
    header .search-zone input[type="text"]:focus {
        outline: none;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(219, 59, 0, 1);
                box-shadow: 0 0 0 0.2rem rgba(219, 59, 0, 1);
    }

    header .search-zone input[type="text"]:focus::-webkit-input-placeholder {
        color: #db3b00;
    }

    header .search-zone input[type="text"]:focus:-ms-input-placeholder {
        color: #db3b00;
    }

    header .search-zone input[type="text"]:focus::placeholder {
        color: #db3b00;
    }
}

header .search-zone label,
.mobile-search-zone label {
    color: #fff;
}

header .search-zone .keywords,
.mobile-search-zone .keywords {
    margin: 0px 10px;
    color: #db3b00;
    color: #ffcc81;
}

header .search-zone .keywords>a,
.mobile-search-zone .keywords>a {
    display: inline-block;
    vertical-align: top;
    color: #db3b00;
    color: #ffcc81;
    padding: 0px 5px;
}

@media screen and (min-width: 1025px) {

    header .search-zone .keywords>a:hover,
    header .search-zone .keywords>a:focus,
    .mobile-search-zone .keywords>a:hover,
    .mobile-search-zone .keywords>a:focus {
        color: #fff;
    }
}

/* Header 區塊的按鈕 */
@media screen and (max-width: 1024px) {
    header .header-zone .members {
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        padding: 0px;
    }

    header .header-zone .members-btn {
        width: 60px;
        height: 60px;
        background-size: 55%;
    }

    header .header-zone .members.is-signin .members-btn {
        -webkit-transform: scale(0.7) translateX(-10px);
        -ms-transform: scale(0.7) translateX(-10px);
        transform: scale(0.7) translateX(-10px);
    }

    header .header-zone .members.is-signin .members-btn>span {
        right: -5px;
    }

    header .header-zone .members .members-list {
        left: auto;
        right: 0;
        top: 60px;
    }

    header .header-zone .search-btn {
        display: block;
        position: absolute;
        right: 60px;
        top: 0;
        width: 60px;
        height: 60px;
        background-size: 50%;
    }
}

@media screen and (max-width: 480px) {
    header .header-zone .members .members-list {
        top: 50px;
    }
}

/* Footer */
.footer {
    background-color: #f1f1f1;
}

footer span {
    color: #c53e00;
    font-weight: bold;
}

/* Footer FatFooter */
footer .fatfooter-zone {
    border-top: 1px #c8c8c8 solid;
    border-bottom: 1px #c8c8c8 solid;
}

footer .fatfooter-btn {
    display: block;
    width: 100px;
    text-align: center;
    margin: 10px auto;
    font-weight: bold;
}

footer .fatfooter-btn>span {
    display: none;
    color: #000;
}

footer .fatfooter-btn>span.open {
    display: block;
}

footer .fatfooter-btn::after {
    content: '';
    display: block;
    margin: auto;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../../images/icon/arrow-down.svg');
}

footer .fatfooter-btn.is-active::after {
    background-image: url('../../images/icon/arrow-up.svg');
}

@media screen and (min-width: 1025px) {

    footer .fatfooter-btn:focus,
    footer .fatfooter-btn:hover {
        color: #000;
    }
}

footer .fatfooter-box {
    display: none;
}

.no-js footer .fatfooter-box {
    display: block;
}

footer .fatfooter {
    padding: 10px 0px 20px;
    font-size: 0rem;
}

footer .fatfooter>li {
    width: 16.6%;
    display: inline-block;
    vertical-align: top;
    padding: 15px;
    text-align: left;
}

footer .fatfooter>li>a {
    color: #db3b00;
    font-size: 1rem;
}

@media screen and (min-width: 1025px) {

    footer .fatfooter>li>a:hover,
    footer .fatfooter>li>a:focus {
        color: #e06827;
    }
}

footer .fatfooter .fatfooter-menulist {
    border-left: 1px solid #db3b00;
    margin-top: 10px;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 1rem;
}

footer .fatfooter .fatfooter-menulist a {
    color: #020202;
}

@media screen and (min-width: 1025px) {

    footer .fatfooter .fatfooter-menulist a:hover,
    footer .fatfooter .fatfooter-menulist a:focus {
        color: #db3b00;
    }
}

/* Footer Leaflet Link */
footer .leaflet {
    padding: 10px 0px 20px;
    font-size: 0rem;
    text-align: center;
}

footer .leaflet>li {
    display: inline-block;
    vertical-align: top;
    margin: 0px 12px 10px;
}

@media screen and (max-width: 1440px) {
    footer .leaflet>li {
        margin: 0px 8px 10px;
    }
}

@media screen and (max-width: 1390px) {
    footer .leaflet>li {
        margin: 0px 4px 10px;
    }
}

footer .leaflet>li a {
    display: block;
    width: 172px;
    height: 74px;
    border: 1px #e0dbd0 solid;
    position: relative;
}

footer .leaflet>li a>img {
    display: block;
    width: 100%;
    height: 100%;
}

footer .leaflet>li:last-child a {
    background-color: #db3b00;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    line-height: 74px;
}

@media screen and (min-width: 1025px) {

    footer .leaflet>li:last-child a:hover,
    footer .leaflet>li:last-child a:focus {
        background-color: #e06827;
    }
}

/* Footer MainFooter */
footer .mainfooter-zone {
    padding: 30px 0px 50px;
    font-size: 0.9rem;
}

footer .copyright p {
    line-height: 2em;
    margin-bottom: 0px;
}

footer .copyright p.hard-text {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 10px;
}

footer .copyright p.hard-text span {
    display: inline-block;
    margin-top: 5px;
}

footer .copyright .d-inline>p {
    display: inline;
    margin: 0px 3px;
}

footer .otherlink {
    border-left: 1px #c8c8c8 solid;
    padding-left: 20px;
}

footer .otherlink>a {
    display: block;
    color: #020202;
}

@media screen and (min-width: 1025px) {

    footer .otherlink>a:hover,
    footer .otherlink>a:focus {
        color: #db3b00;
    }
}

footer .badge {
    float: left;
    padding-right: 20px;
}

footer .badge img {
    width: 120px;
    display: block;
    margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
    footer .copyright .d-inline>p {
        display: block;
    }
}

/* TOP與BACK按鈕 */
.float-btn {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 1000;
    display: none;
}

.float-btn.is-show {
    display: block;
}

.float-btn>a {
    width: 45px;
    height: 45px;
    display: block;
    border-radius: 100%;
    background-color: #db3b00;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
    text-indent: -9999px;
    margin: 10px 0px;
    -webkit-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
    opacity: 0.6;
}

@media screen and (min-width: 1025px) {

    .float-btn>a:hover,
    .float-btn>a:focus {
        opacity: 1;
    }
}

.float-btn .top-btn {
    background-image: url('../../images/icon/arrow-up_w.svg');
}

.float-btn .back-btn {
    background-image: url('../../images/icon/arrow-left_w.svg');
}

@media screen and (max-width: 480px) {
    .float-btn {
        right: 15px;
        bottom: 80px;
    }

    .float-btn>a {
        width: 40px;
        height: 40px;
    }
}

/* 台灣燈會倒數計時 */
.taiwanlantern {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
}

.taiwanlantern .logo {
    width: 110px;
    height: 40px;
    position: relative;
    overflow: hidden;
    display: block;
    margin-right: 5px;
}

.taiwanlantern .logo>img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    -o-object-fit: contain;
    object-fit: contain;
}

.taiwanlantern .countdowntimer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.95rem;
}

.taiwanlantern .countdowntimer>a {
    color: #000;
}

@media screen and (min-width: 1025px) {

    .taiwanlantern .countdowntimer>a:hover,
    .taiwanlantern .countdowntimer>a:focus {
        color: #db3b00;
    }

    .taiwanlantern.mobile_item .countdowntimer>a:hover,
    .taiwanlantern.mobile_item .countdowntimer>a:focus {
        color: #f3e927;
    }
}

.taiwanlantern .countdowntimer .countdowntimer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.taiwanlantern .countdowntimer #label_timer {
    color: #F60;
    margin: 0px 5px;
    padding: 5px 8px;
    background-color: #FFF;
    border-radius: 4px;
    border: 1px #CCCCCC solid;
    letter-spacing: 1px;
    line-height: 1em;
    font-size: 1.15rem;
}

.taiwanlantern.mobile_item {
    display: none;
    background-color: #fff;
    padding: 10px 20px;
}

.taiwanlantern.mobile_item .countdowntimer>a {
    color: #000;
}

@media screen and (max-width: 1280px) {
    .taiwanlantern .countdowntimer .countdowntimer-row {
        font-size: 0rem;
    }
}

@media screen and (max-width: 1250px) {
    header .taiwanlantern {
        display: none;
    }

    .taiwanlantern.mobile_item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .taiwanlantern.mobile_item .logo {
        width: 114px;
        height: 35px;
    }

    .taiwanlantern.mobile_item .countdowntimer {
        font-size: 0.9rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .taiwanlantern.mobile_item .countdowntimer .countdowntimer-row {
        font-size: 0rem;
    }

    .taiwanlantern.mobile_item .countdowntimer #label_timer {
        padding: 2px 5px;
        letter-spacing: 1px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .taiwanlantern.mobile_item {
        padding: 10px 15px;
    }
}

@media screen and (max-width: 400px) {
    .taiwanlantern.mobile_item .logo {
        width: 70px;
        height: 27px;
    }

    .taiwanlantern.mobile_item .countdowntimer {
        font-size: 0.8rem;
    }

    .taiwanlantern.mobile_item .countdowntimer #label_timer {
        font-size: 0.8rem;
    }

    .share-link-item>li {
        margin: 0px 5px;
    }
}

@media screen and (max-width: 370px) {
    .taiwanlantern.mobile_item {
        padding: 5px 15px;
    }
}

/* 無障礙定位點 */
.fastFocus>a {
    opacity: 0;
    padding: 0px;
    height: 0px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 5000;
    font-size: 0rem;
}

@media screen and (min-width: 1025px) {
    .fastFocus>a:focus {
        opacity: 1;
        height: auto;
        float: none;
        display: inline-block;
        line-height: 1em;
        border-radius: 5px;
        border-width: 1px;
        border-color: #000000;
        border-style: solid;
        background-color: #ffffff;
        color: #db3b00;
        padding: 5px 10px;
        margin-bottom: 5px;
        font-size: 1rem;
    }
}

header .acc {
    display: inline-block;
    vertical-align: middle;
}

header .acc>a {
    color: #000000;
}

@media screen and (min-width: 1025px) {
    header .acc>a:hover {
        color: #db3b00;
    }
}

footer .acc {
    position: absolute;
    left: 10px;
}

footer .acc>a {
    color: #000000;
}

@media screen and (min-width: 1025px) {
    footer .acc>a:hover {
        color: #db3b00;
    }
}

@media screen and (max-width: 1024px) {
    footer .acc {
        display: none;
    }
}
/*報馬仔*/
.webdegug{
    background-color: #fff;
    overflow: hidden;
    padding: 10px 0px;
}
.webdegug a{
    display: block;
    padding: 10px 20px;
    float: right;
    text-align: center;
    background-color: #f1f1f1;
    color:#c53e00;
}
@media screen and (min-width: 1025px) {
    .webdegug a:hover,
    .webdegug a:focus{
        background-color: #db3b00;
        color: #fff;
    }
}

/*內頁加超連結底線*/
.content>.wrap a {
	text-decoration: none;
	border-bottom: 1px #db3b00 solid;
}
.columnBlock a.columnBlock-title {
	border-bottom: 0px #db3b00 solid;
}
.columnBlock a.columnBlock-link {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap .article-direction a {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap .page-direction a {
	border-bottom: 1px rgba(200, 200, 200, 0.5) solid;
}
.mapside .twmap a {
	border-bottom: 1px #000000 solid;
}
.keypress-instructions a.instructionsmenu {
	border-bottom: 0px #db3b00 solid;
}
.album-model a.album-link {
	border-bottom: 1px rgba(200, 200, 200, 0.5) solid;
}
.content>.wrap a.circularbtn {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap a.card-link {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap .album_window a.album-link {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap .attractions a.attractions-btn {
	border-bottom: 1px rgba(200, 200, 200, 0.5) solid;
}
.navtabs-style-folder a.navtabs-link {
	border-bottom: 1px rgba(200, 200, 200, 0.5) solid;
}
.content>.wrap a.open-btn {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap .pagination a {
	border: 1px #c8c8c8 solid;
}
.content>.wrap .columnBlock a.morebtn {
	border-bottom: 1px #444 solid;
}
.content>.wrap .traffic2014_menu a {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap .traffic_2014_tt2 a {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap a.lattice {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap a.morebtn {
	border: 1px #444 solid;
}
.content>.wrap a.icon-recommend {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap .tourphotoList li a {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap a.guidelink-circular-btn {
	border-bottom: 0px #db3b00 solid;
}
.content>.wrap a.youtube.media-link.cboxElement {
	border-bottom: 0px #db3b00 solid;
}
.media-item .media-download a {
	border-bottom: 0px #db3b00 solid;
}
.site a {
	border-bottom: 0px #db3b00 solid !important;
}
.infoside .hashtag a {
    border-bottom: 1px #c9c9c9 solid;
}
.content>.wrap .sort-personal a {
	border-bottom: 0px #db3b00 solid;
}
.tagcollection .tag-item {
    border-bottom: 1px #c9c9c9 solid !important;
}
.member-model .signin-btn.icon-google {
	border-bottom: 0px #db3b00 solid;
}
.member-model .signin-btn.icon-facebook {
	border-bottom: 0px #db3b00 solid;
}
.member-model .reload-btn {
    border-bottom: 1px #020202 solid !important;
}
.member-model .voice-services-btn {
    border-bottom: 1px #020202 solid !important;	
}
@media screen and (min-width: 1025px) {
    .member-model .voice-services-btn:hover,
    .member-model .voice-services-btn:focus{
        border-bottom: 1px #db3b00 solid !important;
    }
}
.card .card-info .writer {
	border-bottom: 0px #db3b00 solid;
	}
/*內頁加超連結底線 end*/

.noscriptdiv {
    padding: 10px;
    background-color: #f0ede5;
    color: #000;
}