@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,200,300,400,500,700,900|Noto+Serif+TC:500,700&display=swap');

/*
    _黑體
    font-family: 'Noto Sans TC', sans-serif;
    _明體
    font-family: 'Noto Serif TC', serif;
*/
* {
    position: relative;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
	font-weight: 300;
	color: #222;
}


a {
    color: #333;
}

a:hover,
a:focus {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

button:focus,
a:focus {
    outline: none;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}


.fancybox-navigation {
    height: 100vh;
}

a .Imgiofo {
	position: relative;
	top: 5px;
	margin-top: 10px;
	margin-left: 0;
    padding-left: 15px;
	height: 32px;
    border-left: 1px solid #000;
	z-index: 10;
}

a .Imgiofo h5 {
    display: inline-block;
	font-size: 14px;
	letter-spacing: 0.4rem;
	margin-top: 5px;
	font-weight: 400;
}

a .Imgiofo span {
	display: inline-block;
	margin-top: 10px;
	padding-right: 20px;
	font-size: 16px;
	line-height: 24px;
}

.bg_orange {
    background-color: #cd941a;
    color: #fff;
}

.bg_orange a:hover {
    color: #eee;
}

.caption_icon {
    display: inline-block;
    /* position: absolute;
    top: 15px;
    left: 0;*/
    margin: 0;
    margin-right: 7px;
    width: 13px;
    height: 13px;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    background: #cd941a;
}

.caption_icon:before,
.caption_icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 70%;
    height: 1px;
    background: #fff;
}

a.Img:hover .caption_icon {
    -webkit-transform: rotate(90deg) scale(1.53846);
    -ms-transform: rotate(90deg) scale(1.53846);
    transform: rotate(90deg) scale(1.53846);
}



a .caption_icon:after,
.caption_icon:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}


.innerImg {
    width: 100%;
    padding-top: 55%;
}


.innerImg .image {
    width: 100%;
    height: calc(100% * 0.85);
    position: absolute;
    bottom: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.btn {
    border-radius: 0;

}

.btn-primary {
    color: #fff;
    background-color: #cd941a;
    border-color: #cd941a;
}


.btn-primary:hover {
    color: #fff;
    background-color: #4f5358;
    border-color: #4f5358;
}

.slick-dots li {
    width: 50px;
}

.slick-dots li:before {
    text-align: center;
    width: 100%;
    display: block;
}


.slick-dots {
    bottom: auto;
    top: 110%;
}

.slick-dots li button {
    width: 50px
}


.slick-dots li.slick-active button:before {
    background-color: #cd941a;
}

.slick-prev {
    left: 0;
	z-index: 10;
}

.slick-next {
    right: 0;
	z-index: 10;
}

.slick-next, .slick-prev {
	top: 55%;
	width: 70px;
    height: 70px;
}

.bg_orange .slick-dots li.slick-active button:before {
    background-color: #fff;
}


.slick-dots li button:before {
    content: '';
    width: 100%;
    display: inline-block;
    height: 5px;
    background-color: #777;
}

.bg_orange .slick-dots li button:before{
    background-color: #fff;

}

/*============map===============*/
.position-relative {
    position: relative!important;
}

.over-flow-x {
	width: 100vw !important;
	height: 100vh !important;
    overflow-x: auto;
	overflow-y: hidden;
}

.over-flow-x img {
	height: 100vh !important;
}

.mask-scroll {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.66);
    cursor: pointer;
}

.mask-scroll-icon {
	flex: 0 0 25%;
	padding-left: 0 !important;
	padding-right: 0 !important;
    max-width: 80px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: fade-lr;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.photo_alert {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
	z-index: 10;
}

@keyframes fade-lr{
    0% {
        transform: translateX(-10px);
    }
    25%{
        transform: translateX(10px);
    }
    50%{
        transform: translateX(-10px);
    }
    75%{
        transform: translateX(10px);
    }
    100% {
        transform: translateX(-10px);
    }
}