

/*========================================================
                         動畫設定
=========================================================*/

.amin-01 {
    transform-origin: left top;
    animation: amin-01 2.5s infinite alternate-reverse ease-in-out;
}
@keyframes amin-01 {
    0% {
        transform: skewY(-3deg);
    }
    100% {
        transform: skewY(0);
    }
}

.amin-02 {
    transform-origin: 60% 80%;
    animation: amin-02 1.5s ease-in-out infinite alternate;
}
@keyframes amin-02 {
    0% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(0);
    }
}

.amin-03 {
    transform: skew(-3deg);
    transform-origin: 60% 100%;
    animation: amin-03 0.7s ease-in-out infinite alternate;
}
@keyframes amin-03 {
    to {
        transform: rotate(0);
    }
}


.amin-04 {
    -webkit-transform: translateY(2px) scaleX(1);
    transform: translateY(2px) scaleX(1);
    -webkit-animation: amin-04 1s ease-in-out infinite alternate;
    animation: amin-04 1s ease-in-out infinite alternate
}
@keyframes amin-04 {
    to {
        -webkit-transform: translateY(-2px) scaleX(.7);
        transform: translateY(-2px) scaleX(.7)
    }
}

.amin-05 {
    transform: rotate(-1deg) skew(1deg);
    transform-origin: 60% 95%;
    -webkit-animation: amin-05 1.5s ease-in-out infinite alternate;
    animation: amin-05 1.5s ease-in-out infinite alternate;
}
@keyframes amin-05 {
    to {
        transform: rotate(0);
    }
}

.amin-06 {
    animation: amin-06 10s linear 0s infinite;
}
@keyframes amin-06 {
    0% {
        transform: translate(20px);
    }
    25% {
        transform: translate(-20px);
    }
    50% {
        transform: translate(20px);
    }
    75% {
        transform: translate(-20px);
    }
    100% {
        transform: translate(20px);
    }
}
.amin-07 {
    animation: amin-07 10s linear 0s infinite;
}
@keyframes amin-07 {
    0% {
        transform: translate(-10px);
    }
    25% {
        transform: translate(10px);
    }
    50% {
        transform: translate(-10px);
    }
    75% {
        transform: translate(10px);
    }
    100% {
        transform: translate(-10px);
    }
}



/*========================================================
                         共用版型設定
=========================================================*/

/* 電腦版,手機版關開設定 */
.pc-wrap {
    position: relative;
    display: none;
}
.m-wrap {
    position: relative;
    display: block;
}
@media (min-width: 992px) {
    .pc-wrap {
        display: block;
    }
    .m-wrap {
        display: none;
    }
}
/* 定位統一設定 */
.pos-style1 {
    position: relative;
    z-index: 1;
}
.pos-style2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.pos-style3 {
    position: absolute;
    right: 20px;
    bottom: 10px;
    margin: 0;
    z-index: 999;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    text-shadow: 0 0 5px #000;
}
.pos-style4 {
    position: absolute;
    right: 10px;
    top: 15px;
    margin: 0;
    z-index: 999;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    text-shadow: 0 0 5px #000;
	writing-mode: vertical-rl;
}
.pos-style5 {
    position: absolute;
    left: 20px;
    bottom: 10px !important;
    margin: 0;
    z-index: 999;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    text-shadow: 0 0 5px #000;
}
.pos-style6 {
    position: absolute;
    right: 30px;
    bottom: 0px;
    margin: 0;
    z-index: 999;
    color: #fff;
    font-weight: bold;
    font-size: 0.7rem;
    text-shadow: 0 0 3px #000;
}
@media (min-width: 992px) {
    .pos-style3 {
        right: 30px;
        bottom: 20px;
        font-size: 1rem;
    }
    .pos-style4 {
        right: 10px;
        top: 20px;
        font-size: 1rem;
    }
    .pos-style5 {
        left: 30px;
        bottom: 20px !important;
        font-size: 1rem;
    }
    .pos-style6 {
        right: 30px;
        bottom: 5px;
        font-size: 0.9rem;
    }
}

.text-b {
	color: #595757 !important;
	text-shadow: 0 0 5px #fff !important;
}


/*========================================================
                       區塊統一設定
=========================================================*/

.section-box {
    position: relative;
    overflow: hidden;
}
.section-box img {
	max-width: 100%;
	max-height: 100%;
}
.section-box-info {
}
.section-box-info h3 {
	margin-bottom: 40px;
}
.section-box-info h4 {
	font-size: 1.4rem;
	font-weight: 700;
	padding: 0 10px 20px;
	letter-spacing: 4px;
	color: #6B669D;
}
.section-box-txt {
	padding: 0 20px;
	color: #595757;
	font-size: 1.1rem;
	line-height: 32px;
}


@media (max-width: 991px) {
	.section-box .container {
		padding-left: 0;
		padding-right: 0;
	}
	.section-box-info {
        position: relative;
		padding: 60px 30px 40px;
	}
}
@media (min-width: 992px)   {
    .section-box {
        padding-top: 100px;
        padding-bottom: 100px;
    }
	.section-box-info h4 {
		font-size: 1.6rem;
		letter-spacing: 6px;
	}
}
@media (min-width: 1200px)   {
    .section-box {
        padding-top: 110px;
        padding-bottom: 110px;
    } 
	.section-box-info h4 {
		font-size: 1.8rem;
	}
}
@media (min-width: 1600px)   {
    .section-box {
        padding-top: 120px;
		padding-bottom: 120px;
    }
	.section-box-info h4 {
		font-size: 2rem;
	}
	.section-box-txt {
		font-size: 1.2rem;
		line-height: 40px;
	}
}


/*========================================================
                       輸播統一設定
=========================================================*/

.section-slide {
    text-align: center;
}
.section-slide-img img {
    max-width: 100%;
    vertical-align: bottom;
}
.section-slide-img > div {
    position: relative;
}
.section-slide-img p {
    position: absolute;
    right: 20px;
    bottom: -10px;
    z-index: 2;
    text-shadow: 0 0 5px #000;
    color: #fff;
    font-size: 0.9rem;
    line-height: 20px;
}
@media (min-width: 768px)  {
    .section-slide-img p {
        bottom: 0;
        font-size: 1rem;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
}
@media (min-width: 1200px)  {
    .section-slide-img p {
        bottom: 0;
        font-size: 1.1rem;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}


/*========================================================
                         區塊1
=========================================================*/

.section1 img {
    width: 100%;
}


/*========================================================
                         區塊2
=========================================================*/

.aerial_section{ position:relative; overflow-x:scroll;}
.aerial_section img{ width:1200px;}

.aerial_light_wrapper{ 
	position: absolute;
    bottom: 35%;
    left: 500px;
    transform: translate(-50%, -15%);
    width: 24px;
    height: 1.5%;
}
.aerial_light_col{
	position:absolute; 
	width: 10%;
	height: 100%;
	background: linear-gradient(0deg, rgba(255, 251, 177,0.6), rgba(255, 251, 177,0.1));
	border-radius: 0 0 10px 10px;
	animation: flash 2s linear infinite;
}
.aerial_light_content{ position:relative; width:100%; height:100% }
.aerial_light{
	position: absolute;
	top: 100%;
	width: 2px;
	height: 2px;
	background-color: #fffbb1;
}
.aerial_light:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 251, 177, 1);
  box-shadow: 0 0 15px 3px #fffbb1,0 0 10px 2px #fffbb1,0 0 15px 3px #fffbb1,0 0 5px 1px #fff,0 0 15px 3px #fff,0 0 10px 2px #fff;
}
.aerial_light1 { left: -40%; animation: light 4s linear infinite; animation-delay: -1s; }
.aerial_light2 { left: -20%; animation: light 6s linear infinite; animation-delay: -2s; }
.aerial_light3 { left: 0%; animation: light 8s linear infinite; animation-delay: -3s; }
.aerial_light4 { left: 20%; animation: light 10s linear infinite; animation-delay: -4s; }
.aerial_light5 { left: 40%; animation: light 12s linear infinite; animation-delay: -5s; }

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
  	opacity: 0;
  }
}

/*
@keyframes light {
  0% {
    opacity: 1;
    margin-top: 0%;
  }
  12% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
  	margin-top: -800%;
    opacity: 0;
  }
}
*/


@keyframes light {
  0% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  85% {
    opacity: 1;
    transform: translateY(-250px);
  }
  100% {
    opacity: 0;
    transform: translateY(-250px);
    visibility: hidden;
  }
}


@media (min-width:992px){
	.aerial_section{ overflow:auto; }
	.aerial_section img{ width:100%; }
	.aerial_light_wrapper{ 
		position: absolute;
        bottom: 26%;
        left: 42.1%;
        transform: translate(-50%, -14%);
        width: 4%;
        height: 42%;
	}
}

.section2-info {
	background-color: #3c4c6d;
	padding: 60px 15px;
	text-align: center;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 300;
}
.section2-info p:nth-of-type(2){
	font-weight: 900;
	margin-top: 20px;
	margin-bottom: 20px;
}
@media (min-width: 992px) {
	.section2-info {
		padding: 70px 50px;
		font-size: 1.4rem;
	}
	.section2-info p:nth-of-type(2){
		margin-top: 40px;
		margin-bottom: 40px;
	}
}



/*========================================================
                         區塊3
=========================================================*/

.section3 {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url("../img/section3-m-bg.jpg");
    color: #fff;
}

.section3 img {
	max-width: 100%;
	max-height: 100%;
}


@media (min-width: 992px) {
    .section3 {
        background-image: url("../img/section3-pc-bg.jpg");
    }
}


/*========================================================
                         區塊4
=========================================================*/

.section4 {

}
.section4 .section-box-info h4 {
	color: #D89AC2;
}
.section4 .section-box-txt {
	color: #FFFFFF;
}


/*========================================================
                         區塊5
=========================================================*/

.section5 {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url("../img/section5-m-bg.jpg");
    color: #fff;
}
.section5-box {
	background: url("../img/section5-pc-line.png") no-repeat center bottom;
	background-size: 100% 8px;
	margin-top: 60px;
	padding-bottom: 4px;
}

.section5-title-bg {
	background: url("../img/section5-title-bg.png") no-repeat left top;
	background-size: cover;
	position: relative;
}
.section5-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	writing-mode: vertical-rl;
	color: #fff;
	line-height: 20px;
	height: 80%;
	text-align: center;
}
.section5-title h3 {
	font-size: 1.3rem;
	font-weight: 900;
}
.section5-title h3 span {
	display: block;
	font-size: 1.1rem;
	font-weight: 400;
}
.section5-info {
	color: #595757;
	font-size: 0.9rem;
	line-height: 24px;
	padding: 0 15px;
}

@media (max-width: 991px) {
	.section5 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
@media (min-width: 992px) {
    .section5 {
        background-image: url("../img/section5-pc-bg.jpg");
    }
	.section5-box {
		background-size: 100% 12px;
		padding-bottom: 6px;
	}
	.section5-title h3 {
		font-size: 2rem;
	}
	.section5-title h3 span {
		font-size: 1.4rem;
	}
	.section5-info {
		font-size: 0.9rem;
	}
}
@media (min-width: 1200px) {
    .section5 .container-fluid {
        max-width: 1140px;
    }
	.section5-info {
		font-size: 1.1rem;
	}
}
@media (min-width: 1600px) {
    .section5 .container-fluid {
        max-width: 1480px;
    }
	.section5-box {
		background-size: 100% 18px;
		padding-bottom: 9px;
		margin-top: 80px;
	}
	.section5-info {
		font-size: 1.2rem;
		padding: 20px 30px;
		line-height: 38px;
	}
}



/*========================================================
                         區塊6
=========================================================*/

.section6 {
	background-color: #EAEEF1;
	padding-bottom: 0;
}

.section6 .section-box-info h3 {
	margin-bottom: 60px;
}
.section6 .section-box-txt {
	color: #456D86;
}
.section6 .section-box-txt p {
	color: #456D86;
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	.section6 .section-box-info h3 {
		margin-bottom: 40px;
	}
	.section6 .section-box-txt p {
		margin-bottom: 30px;
	}
}


/*========================================================
                         區塊7
=========================================================*/

.section7 {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url("../img/section7-m-bg.jpg");
    color: #fff;
}



.section7-item {
	text-align: center;
}
.section7-item img.img1 {
	margin-top: 20px;
}
.section7-item img.img2 {
	max-width: 90%;
	margin-top: 10px;
	margin-bottom: 10px;
}
.section7-item img.img3 {
	box-shadow: 0 0 10px #adadad;
}
.section7-item h3 {
	color: #4C4948;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 1rem;
}

.section7-item1 {
	background: url("../img/section7-item1.png") no-repeat center top;
	background-size: 100% 100%;
}
.section7-item2 {
	background: url("../img/section7-item2.png") no-repeat center bottom;
	background-size: 100% 100%;
}



@media (max-width: 991px) {
	.section7 {
		padding-top: 80px;
		padding-bottom: 60px;
	}
	.section7-box1 {
		margin: 0 30px;
	}
	.section7-box2 {
		margin: 0 30px;
	}
	.section7-box1 .row.ml-4 .section7-item1 {
		background: url("../img/section7-item2.png") no-repeat center bottom;
	}
	.section7-box2 .row.mr-4 .section7-item2 {
		background: url("../img/section7-item1.png") no-repeat center top;
	}
	.section7-item img.img1 {
		max-width: 50px;
	}
}

@media (min-width: 992px) {
    .section7 {
        background-image: url("../img/section7-pc-bg.jpg");
    }
	.section7-item {
		margin: 0 5px;
	}
	.section7-item h3 {
		font-size: 1.3rem;
	}
	.section7-box1 {
		margin-right: 50px;
	}
	.section7-box2 {
		margin-left: 50px;
	}
}
@media (min-width: 1200px) {
	.section7-item {
		margin: 0 15px;
	}
	.section7-item h3 {
		font-size: 1.4rem;
	}
}

@media (min-width: 1600px) {
	.section7-item {
		margin: 0 30px;
	}
	.section7-item h3 {
		font-size: 1.5rem;
	}
}




/*========================================================
                         區塊8
=========================================================*/

.section8 {
	background-color: #3D4C6D;
    position: relative;
/*
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url("../img/section8-bg.jpg");
*/
    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}
.section8 .container {
    max-width: 1200px;
}

.section8-bg1 {
	position: absolute;
	left: 0;
	top: 5%;
	z-index: 9;
	width: 100px;
}
.section8-bg2 {
	position: absolute;
	right: 0;
	top: -40px;
	z-index: 99;
	width: 130px;
}
.section8-bg1 img, 
.section8-bg2 img {
	width: 100%;
}



.section8-info {
    text-align: center;
	margin-bottom: 60px;
}
.section8-info h3 img {
    width: 50%;
}
.section8-info .txt3 img {
    width: 70%;
}
.section8-info .txt-box {
	max-width: 760px;
	margin: 40px auto 20px;
}
.section8-info .txt1 {
    font-size: 1.2rem;
}
.section8-info .txt2 {
    font-size: 1.2rem;
}
.section8-info .txt2 span{
	display: inline-block;
    font-weight: 900;
	margin-left: 5px;
	font-size: 1.6rem;
}
.section8-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
/*
	display: flex;
	justify-content: center;
*/
}
.section8-info ul li span {
	display: none;
}

@media (min-width: 992px)   {
    .section8 .container{
		padding-left: 10%;
		padding-right: 10%;
    }
	.section8-bg1 {
		top: 15%;
		width: 200px;
	}
	.section8-bg2 {
		top: -7%;
		width: 300px;
	}
	.section8-info h3 img {
		width: 340px;
	}
	.section8-info .txt3 img {
		width: 493px;
	}
	.section8-info .txt1 {
		font-size: 1.4rem;
	}
	.section8-info .txt2 {
		font-size: 1.4rem;
	}
	.section8-info .txt2 span{
		font-size: 1.8rem;
	}
}
@media (min-width: 1200px)   {
	.section8-info ul {
		display: flex;
		justify-content: center;
	}
	.section8-info ul li span {
		display: inline-block;
	}

}

@media (min-width: 1600px)   {
    .section8 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .section8 .container{
		padding-left: 0%;
		padding-right: 0%;
    }
	.section8-bg1 {
		top: 15%;
		width: 244px;
	}
	.section8-bg2 {
		top: -7%;
		width: 427px;
	}
	.section8-info h3 img {
		width: 400px;
	}
	.section8-info .txt3 img {
		width: 593px;
	}
}








/* 表單設定 */
.form-control {
    height: calc(2.68rem + 2px);
    color: #231815 !important;
    font-weight: bold;
	border-radius: 0;
}
::placeholder {
    color: #231815 !important;
    font-weight: bold;
    opacity: 1 !important;
}
::-ms-input-placeholder {
    color: #231815 !important;
    font-weight: bold;
}

.check-box .btn {
    background-color: #b08ec0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
	border-radius: 0;
	padding: 5px;
	font-size: 1.2rem;
}
.check-box .btn:hover,
.check-box .btn:focus{
    background-color: #875e9a;
    color: #fff;
}

.custom-control-label a {
    text-decoration: underline;
    color: #fff;
}
.custom-control-label a:hover {
    text-decoration: none;
}
.custom-control-label::before {
    top: 0.5rem;
}
.custom-control-label::after {
    top: 0.5rem;
}




/*========================================================
                         左側選單
=========================================================*/

.icon_Community a.js-btn-icon_Community {
    text-align: center;
    width: 50px;
    line-height: 47px;
    border-radius: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0;
    cursor: pointer;
    color: #fff;
    background: #000;
    font-size: 22px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    height: 50px;
    pointer-events: auto;
	overflow: hidden;
}

.js-btn-icon_Community:hover,
.js-btn-icon_Community:focus {
    color: #fff;
    background-color: #3D4C6D;
    border-color: #3D4C6D;
}

.js-icon_Community .icon_li {
    position: relative;
    left: -100px;
}
.icon_li_img {
        max-width: 50px;
        width: 100%;
        height: auto;
        display: block;
        position: absolute;
        left: 0;
        z-index: 1;
    }
.js-icon_Community.active .icon_li {
    left: 0;
    pointer-events: auto;
}

.js-icon_Community .icon_li:nth-child(1) {
    transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    -webkit-transition: all 0.1s ease-out;
}

.js-icon_Community .icon_li:nth-child(2) {
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.js-icon_Community .icon_li:nth-child(3) {
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
}


.icon_li a:hover .icon{
 animation: go 3s linear infinite;
}

@keyframes go {
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50%,100% {
    transform: rotate(0deg);
  }
}  

@media (max-width: 1199.98px){
    .icon_Community {
        width: 100%;
        position: fixed;
        left: auto;
        bottom: 0;
        z-index: 999998;
        pointer-events: none;
		border-top: 1px solid #fff;
    }
    .icon_Community_ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }
    .icon_Community_ul .icon_li {
        width: 33.33%;
        border-right: 1px solid #fff;
    }
    .icon_Community_ul .icon_li:last-child {
        border-right: none;
    }
 .icon_Community_ul .icon_name {
        font-size: 0.8rem;
  		padding-top: 5px;
	 	font-family: 'Noto Serif TC' !important;
	 	font-weight: 900;
    }
    .icon_img {
        display: block;
        background-color: #3D4C6D;
        overflow: hidden;
        text-align: center;
        color: #fff;
        position: relative;
        padding: 13px 10px 7px;
        text-decoration: none;
    }
 .icon_Community a{
	  color: #fff;
	  text-decoration:none;
 }
 .icon_Community a img{
	  display: block;
	  margin: 0 auto;
	  width: 22px;
 }
 .icon_Community a:hover{
	  background-color: #24385B;
 }
 .icon_Community a:hover img{
	  animation: go 3s linear infinite;
 }
}

@media (min-width: 1200px){
    .icon_Community {
        position: fixed;
        right: 20px;
        bottom: 92px;
        z-index: 9998;
        pointer-events: none;
		display: none;
    }
    .icon_Community_ul {
        list-style: none;
        padding: 0;
        flex-direction: column;
        align-items: flex-end;
        display: flex;
        margin-bottom: 59px;
    }
    .icon_img {
        background-color: #3D4C6D;
        border: none;
        overflow: hidden;
        text-align: center;
        margin-bottom: 6px;
        width: 50px;
        text-decoration: none;
        border-radius: 100px;
        color: #fff;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .icon_img.active {
        width: 142px;
    }
    .icon_img.active .icon_name {
        text-indent: 0;
        opacity: 1;
    }
    .icon_img:hover {
        text-decoration: none;
        width: 142px;
    }
    .icon_img:before {
        opacity: 0;

    }
    .icon_img .icon {
        color: #fff;
        font-size: 22px;
        width: 50px;
        line-height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 0;
        z-index: 1;
    }
    .icon_img:hover .icon {
        text-decoration: none;
    }
    .icon_img:hover .icon_name {
        opacity: 1;
        text-indent: 0;
    }
    .icon_name {
        position: relative;
        line-height: 50px;
        padding-left: 15px;
        padding-right: 50px;
        transition: all 0.3s ease;
        opacity: 0;
        text-decoration: none;
        color: #fff;
        white-space: nowrap;
        border-radius: 100px;
        overflow: hidden;
        /*text-indent: -100px;*/
        font-family: 'Noto Serif TC' !important;
    }
}


/*========================================================
                         快速選單
=========================================================*/

.quick-btn {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    background-color: #294b62;
    text-align: center;
}
.quick-btn [class*="col-"] {
    border-right: 1px solid #fff;
}
.quick-btn [class*="col-"]:last-child {
    border-right: none;
}
.quick-btn [class*="col-"] a {
    display: block;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 8px;
	border-left: none;
	text-decoration:none;
	font-size: 0.9rem;
}
.quick-btn [class*="col-"]:hover {
    background-color: #6e99af;
}
.quick-btn [class*="col-"] a i {
    display: block;
}


.quick-modal {
    text-align: center;
    padding: 50px 60px;
}
.quick-modal i {
    display: block;
    font-size: 5rem;
    color: #006263;
    font-weight: bold;
    margin-bottom: 30px;
}
.quick-modal h2 {
    font-size: 1rem;
    font-weight: bold;
}
.quick-modal p {
    font-size: 1.4rem;
    font-weight: bold;
}
.quick-modal .btn {
    width: 100%;
    min-width: 240px;
    background-color: #006263;
	border-color: #2cb1a6;

}
.quick-modal a {
    display: block;
    width: 100%;
    color: #fff;
    padding: 5px;
	text-decoration: none;
}
.quick-modal .btn:hover {
    background-color: #2cb1a6;
	border-color: #006263;
}
#modal1 i {
    transform: rotate(0deg);
}
@media (min-width: 992px) {
	.quick-btn{ display:none;}
}



/*========================================================
                         隱私權聲明
=========================================================*/

.fancybox-container {z-index: 9999999;}
.modal-body{ overflow-y:auto; padding:20px;}
.modal-header{ border-bottom:none;}
.modal-body h2{ text-align:center; margin-bottom:20px;}
.modal-body p span{ font-weight:bold; font-size:1.1rem;}
.modal-dialog{ margin-bottom:80px;}

@media (min-width:576px){
	.modal-body{ padding:20px 40px;}
	.modal-dialog{ max-width:1000px;}
}
@media (min-width:1024px){
	.modal-body{ padding:20px 80px;}
	.modal-dialog{ max-width: 1200px; margin-bottom:0;}
}
@media (min-width: 992px){
    .fancybox-content {max-width: 80%;}
}



