@charset "UTF-8";
/*網頁全共用設定*/
/*網路字體引用CSS設定 思源黑體 套用名字 Noto Sans TC*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*Bootstrap3.37 官方基礎CSS*/
@import url(https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css);
/*股溝的ICONFONT*/
/*@import url("https://fonts.googleapis.com/icon?family=Material+Icons");*/
/*font-awesome4-7 iconfont*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/*animate動畫CSS*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css);

html,body {
	font-family: 'Lato',Century Gothic,Arial,'Noto Sans TC','PingFang TC',Microsoft JhengHei,'微軟正黑體',Helvetica,sans-serif;
	position: relative;
	width: 100%;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 17px;
	scroll-behavior: smooth;/*錨點滑動*/
	}
/*font-size:100%是為將網頁字體設定成16px，這個文字大小設定會連動到下面的body的字體設定唷*/

/*標題*/
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
	padding: 0;
	margin: 0;
}
h1,.h1,h2,.h2{
	font-size: 21px;
}
h3,.h3,h4,.h4{
	font-size: 20px;
}
h5,.h5,h6,.h6{
	font-size: 19px;
}
@media(max-width:767px){
	h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
		font-size: 19px;
	}
}

a:hover, a:focus {
	text-decoration: none;
	}	/*超連結統一不要下底線*/

img{
	/*backface-visibility:hidden;*/
	}	/*圖片更銳利化*/

/* 應用於GIF和PNG圖片; 防止邊緣模糊 */
img[src$=".gif"], img[src$=".png"] {
	image-rendering: auto;
	}

button, a, input:focus,button:focus{
	outline: none !important;
	}	/*連結或點擊的按鈕 不顯示外虛線*/

/*標題*/
.h1,.h2,.h3,.h4,.h5,.h6{
	/*border-left: 2px solid #ED7700;*/
}

/*自定義RWD寬度*/
.new-row{
}
.WIDTH-5,.WIDTH-5-TABLE,.WIDTH-5-INLINEBLOCK{width:5%;}
.WIDTH-10,.WIDTH-10-TABLE,.WIDTH-10-INLINEBLOCK{width:10%;}
.WIDTH-15,.WIDTH-15-TABLE,.WIDTH-15-INLINEBLOCK{width:15%;}
.WIDTH-20,.WIDTH-20-TABLE,.WIDTH-20-INLINEBLOCK{width:20%;}
.WIDTH-25,.WIDTH-25-TABLE,.WIDTH-25-INLINEBLOCK{width:25%;}
.WIDTH-30,.WIDTH-30-TABLE,.WIDTH-30-INLINEBLOCK{width:30%;}
.WIDTH-33,.WIDTH-33-TABLE,.WIDTH-33-INLINEBLOCK{width:33.3%;}
.WIDTH-35,.WIDTH-35-TABLE,.WIDTH-35-INLINEBLOCK{width:35%;}
.WIDTH-40,.WIDTH-40-TABLE,.WIDTH-40-INLINEBLOCK{width:40%;}
.WIDTH-45,.WIDTH-45-TABLE,.WIDTH-45-INLINEBLOCK{width:45%;}
.WIDTH-50,.WIDTH-50-TABLE,.WIDTH-50-INLINEBLOCK{width:50%;}
.WIDTH-55,.WIDTH-55-TABLE,.WIDTH-55-INLINEBLOCK{width:55%;}
.WIDTH-60,.WIDTH-60-TABLE,.WIDTH-60-INLINEBLOCK{width:60%;}
.WIDTH-65,.WIDTH-65-TABLE,.WIDTH-65-INLINEBLOCK{width:65%;}
.WIDTH-70,.WIDTH-70-TABLE,.WIDTH-70-INLINEBLOCK{width:70%;}
.WIDTH-75,.WIDTH-75-TABLE,.WIDTH-75-INLINEBLOCK{width:75%;}
.WIDTH-80,.WIDTH-80-TABLE,.WIDTH-80-INLINEBLOCK{width:80%;}
.WIDTH-85,.WIDTH-85-TABLE,.WIDTH-85-INLINEBLOCK{width:85%;}
.WIDTH-90,.WIDTH-90-TABLE,.WIDTH-90-INLINEBLOCK{width:90%;}
.WIDTH-100,.WIDTH-100-TABLE,.WIDTH-100-INLINEBLOCK{width:100%;}
.WIDTH-100-TABLE,.WIDTH-100-XS-TABLE{width:1%;}

.WUDTH-AUTO{
	width:auto;
}

[class*=WIDTH],[class*=-TABLE],[class*=-INLINEBLOCK]{
	overflow: hidden;
	box-sizing: border-box;
	padding: 0;
	position: relative;
    min-height: 1px;
	margin: 0 auto;
}
[class*=WIDTH]{
	float:left;
	display: block !important;
}
[class*=-TABLE]{
	float:none;
	display: table-cell !important;
}
[class*=-INLINEBLOCK]{
	float:none;
	display: inline-block !important;
}

@media screen and (max-width: 991px){
.WIDTH-5,.WIDTH-10,.WIDTH-15,.WIDTH-20,.WIDTH-25,.WIDTH-30,.WIDTH-33,.WIDTH-35,.WIDTH-40,
.WIDTH-45,.WIDTH-50,.WIDTH-55,.WIDTH-60,.WIDTH-65,.WIDTH-70,.WIDTH-75,
.WIDTH-80,.WIDTH-85,.WIDTH-90,.WIDTH-100,	
.WIDTH-5-TABLE,.WIDTH-10-TABLE,.WIDTH-15-TABLE,.WIDTH-20-TABLE,
.WIDTH-25-TABLE,.WIDTH-30-TABLE,.WIDTH-33-TABLE,.WIDTH-35-TABLE,.WIDTH-40-TABLE,
.WIDTH-45-TABLE,.WIDTH-50-TABLE,.WIDTH-55-TABLE,.WIDTH-60-TABLE,
.WIDTH-65-TABLE,.WIDTH-70-TABLE,.WIDTH-75-TABLE,.WIDTH-80-TABLE,
.WIDTH-85-TABLE,.WIDTH-90-TABLE,.WIDTH-95-TABLE,.WIDTH-100-TABLE,	
.WIDTH-5-INLINEBLOCK,.WIDTH-10-INLINEBLOCK,.WIDTH-15-INLINEBLOCK,.WIDTH-20-INLINEBLOCK,
.WIDTH-25-INLINEBLOCK,.WIDTH-30-INLINEBLOCK,.WIDTH-33-INLINEBLOCK,.WIDTH-35-INLINEBLOCK,.WIDTH-40-INLINEBLOCK,
.WIDTH-45-INLINEBLOCK,.WIDTH-50-INLINEBLOCK,.WIDTH-55-INLINEBLOCK,.WIDTH-60-INLINEBLOCK,
.WIDTH-65-INLINEBLOCK,.WIDTH-70-INLINEBLOCK,.WIDTH-75-INLINEBLOCK,.WIDTH-80-INLINEBLOCK,
.WIDTH-85-INLINEBLOCK,.WIDTH-90-INLINEBLOCK,.WIDTH-95-INLINEBLOCK,.WIDTH-100-INLINEBLOCK
{
	float: none;
	width:100%;
}

.WIDTH-5-XS,.WIDTH-5-XS-TABLE{width:5%;float: left;}
.WIDTH-10-XS,.WIDTH-10-XS-TABLE{width:10%;float: left;}
.WIDTH-15-XS,.WIDTH-15-XS-TABLE{width:15%;float: left;}
.WIDTH-20-XS,.WIDTH-20-XS-TABLE{width:20%;float: left;}
.WIDTH-25-XS,.WIDTH-25-XS-TABLE{width:25%;float: left;}
.WIDTH-30-XS,.WIDTH-30-XS-TABLE{width:30%;float: left;}
.WIDTH-33-XS,.WIDTH-33-XS-TABLE{width:33.3%;float: left;}
.WIDTH-35-XS,.WIDTH-35-XS-TABLE{width:35%;float: left;}
.WIDTH-40-XS,.WIDTH-40-XS-TABLE{width:40%;float: left;}
.WIDTH-45-XS,.WIDTH-45-XS-TABLE{width:45%;float: left;}
.WIDTH-50-XS,.WIDTH-50-XS-TABLE{width:50%;float: left;}
.WIDTH-55-XS,.WIDTH-55-XS-TABLE{width:55%;float: left;}
.WIDTH-60-XS,.WIDTH-60-XS-TABLE{width:60%;float: left;}
.WIDTH-65-XS,.WIDTH-65-XS-TABLE{width:65%;float: left;}
.WIDTH-70-XS,.WIDTH-70-XS-TABLE{width:70%;float: left;}
.WIDTH-75-XS,.WIDTH-75-XS-TABLE{width:75%;float: left;}
.WIDTH-80-XS,.WIDTH-80-XS-TABLE{width:80%;float: left;}
.WIDTH-85-XS,.WIDTH-85-XS-TABLE{width:85%;float: left;}
.WIDTH-90-XS,.WIDTH-90-XS-TABLE{width:90%;float: left;}
.WIDTH-100-XS,.WIDTH-100-XS-TABLE{width:100%;float: left;}	
.WIDTH-5-XS-INLINEBLOCK{width:5%;}
.WIDTH-10-XS-INLINEBLOCK{width:10%;}
.WIDTH-15-XS-INLINEBLOCK{width:15%;}
.WIDTH-20-XS-INLINEBLOCK{width:20%;}
.WIDTH-25-XS-INLINEBLOCK{width:25%;}
.WIDTH-30-XS-INLINEBLOCK{width:30%;}
.WIDTH-33-XS-INLINEBLOCK{width:33.3%;}
.WIDTH-35-XS-INLINEBLOCK{width:35%;}
.WIDTH-40-XS-INLINEBLOCK{width:40%;}
.WIDTH-45-XS-INLINEBLOCK{width:45%;}
.WIDTH-50-XS-INLINEBLOCK{width:50%;}
.WIDTH-55-XS-INLINEBLOCK{width:55%;}
.WIDTH-60-XS-INLINEBLOCK{width:60%;}
.WIDTH-65-XS-INLINEBLOCK{width:65%;}
.WIDTH-70-XS-INLINEBLOCK{width:70%;}
.WIDTH-75-XS-INLINEBLOCK{width:75%;}
.WIDTH-80-XS-INLINEBLOCK{width:80%;}
.WIDTH-85-XS-INLINEBLOCK{width:85%;}
.WIDTH-90-XS-INLINEBLOCK{width:90%;}
.WIDTH-100-XS-INLINEBLOCK{width:100%;}
}

/*特殊自定義*/
.no-padding-margin{
	padding:0 !important;
	margin:0 !important;
	}
.no-padding{
	padding:0 !important;
}
@media(max-width:767px){
	.no-padding-xs{
		padding:0 !important;
	}
}
.all-padding-s{
	padding: 5px !important;
}
.all-padding-m{
	padding: 10px !important;
}
.all-padding{
	padding: 15px !important;
}
.tb-padding-s{
	padding-top:5px !important;
	padding-bottom:5px !important;
}
.lr-padding-s{
	padding-left:5px !important;
	padding-right:5px !important;
}
.tb-padding-m{
	padding-top:10px !important;
	padding-bottom:10px !important;
}
.lr-padding-m{
	padding-left:10px !important;
	padding-right:10px !important;
}
.tb-padding{
	padding-top:15px !important;
	padding-bottom: 15px !important;
}
.lr-padding{
	padding-left:15px !important;
	padding-right: 15px !important;
}
.t-padding-s{
	padding-top:5px !important;
}
.b-padding-s{
	padding-bottom:5px !important;
}
.l-padding-s{
	padding-left:5px !important;
}
.r-padding-s{
	padding-right:5px !important;
}
.t-padding-m{

	padding-top:10px !important;
}
.b-padding-m{
	padding-bottom:10px !important;
}
.l-padding-m{
	padding-left:10px !important;
}
.r-padding-m{
	padding-right:10px !important;
}
.t-padding{
	padding-top:15px !important;
}
.b-padding{
	padding-bottom: 15px !important;
}
.l-padding{
	padding-left:15px !important;
}
.r-padding{
	padding-right: 15px !important;
}
.no-margin{
	margin:0 !important;
}
.all-margin-s{
	margin: 5px !important;
}
.all-margin-m{
	margin: 10px !important;
}
.all-margin{
	margin:15px !important;
}
.tb-margin-s{
	margin-top:5px !important;
	margin-bottom:5px !important;
}
.tb-margin-m{
	margin-top:10px !important;
	margin-bottom:10px !important;
}
.tb-margin{
	margin-top: 15px !important;
	margin-bottom: 15px !important;
}
.lr-margin-s{
	margin-left:5px !important;
	margin-right:5px !important;
}
.lr-margin-m{
	margin-left:10px !important;
	margin-right:10px !important;
}
.lr-margin{
	margin-left: 15px !important;
	margin-right: 15px !important;
}
.t-margin-s{
	margin-top: 5px !important;
}
.b-margin-s{
	margin-bottom: 5px !important;
}
.l-margin-s{
	margin-left: 5px !important;
}
.r-margin-s{
	margin-right: 5px !important;
}
.t-margin-m{
	margin-top: 10px !important;
}
.b-margin-m{
	margin-bottom: 10px !important;
}
.l-margin-m{
	margin-left: 10px !important;
}
.r-margin-m{
	margin-right: 10px !important;
}
.t-margin{
	margin-top: 15px !important;
}
.b-margin{
	margin-bottom: 15px !important;
}
.l-margin{
	margin-left: 15px !important;
}
.r-margin{
	margin-right: 15px !important;
}
.d-block{
	display: block !important;
}
.d-inline{
	display: inline !important;
}
.d-inline-block{
	display: inline-block !important;
}
.d-vm{
	vertical-align: middle !important;
}
.d-vt{
	vertical-align: top !important;
}
.no-border{
	border: 0 !important;
}
.no-shdow{
	box-shadow: none !important;
}
.d-none{
	display: none !important;
}
.d-table{
	display: table !important;
}
.d-table-cell{
	display: table-cell !important;
}
.d-nofloat{
	float: none !important;
}
.d-lfloat{
	float: left !important;
}
.d-rfloat{
	float: right !important;
}

@media screen and (max-width: 991px){
	.d-none-xs{
		display: none !important;
	}
		
	.d-block-xs{
		display: block !important;
	}

	.d-inlineblock-xs{
		display: inline-block!important;
	}

	.d-table-cell-xs{
		display: table-cell !important;
	}

	.d-vm-xs{
		vertical-align: middle;
	}

	.d-vt-xs{
		vertical-align: top !important;
	}
	.textover-hidde {
		overflow: initial;
		white-space: initial;
		text-overflow: initial;
		display: block !important;
		}	/*手機版 區塊文字超出時不隱藏*/
	.textover-hidde-xs {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		display: block !important;
		}	/*區塊文字超出時隱藏*/
	.div-inline-block{
		display:block;
		vertical-align:middle;
		float:none;
		}	/*手機時 區塊不需垂直置中*/
	.div-inline-block-xs{
		display:inline-block;
		vertical-align:middle;
		float:none;
		zoom:1;
		}	/*區塊垂直置中*/
}

/*自定義寬高*/
[class*="widthpx"]{
	width: auto;
}
[class*="heightpx"]{
	height: 100%;
}

.widthpx50{	max-width: 50px;}
.widthpx75{	max-width: 75px;}
.widthpx100{ max-width: 100px;}
.widthpx125{ max-width: 125px;}
.widthpx150{ max-width: 150px;}
.heightpx50{ max-height: 50px;}
.heightpx100{ max-height: 100px;}
/*自己常用的共用樣式 結束*/

/*iframe*/
iframe{
	width: 100%;
	height: auto;
	border: none;
}
/*更改原生樣式*/
input[type="radio"]{
	appearance:checkbox;
	-moz-appearance:checkbox; /* Firefox */
	-webkit-appearance:checkbox; /* Safari and Chrome */
}
input,input[type="checkbox"],input[type="radio"],input[type="text"],select{
	margin: 0;
	margin-bottom: 2px;
	margin-top: 2px;
	font-weight: 400;
}
label{
	padding: 0;
	margin: 0;
	font-weight: 400;
}
textarea{
	min-height: 150px;
	width: 100%;
}
/*原BS3多層下拉選單*/
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-menu {
    top: 100%;
    left: -1px;
    margin-top: -1px;
}
@media(max-width:767px) {
	.dropdown-submenu > a{
		border-bottom: 1px solid #e5e5e5;
	}
	.dropdown-submenu > .dropdown-menu.open{
		display: block;
	}
}
@media(min-width:768px) {
	.dropdown-submenu .dropdown-menu-left {
		right: auto;
		left: 100%;
		top: 0;
	}
	.dropdown-submenu .dropdown-menu-right {
		right: 100%;
		left: auto;
		top: 0;
	}
}
/*原BS3下拉選單以及多層下拉選單 用hover就打開*/
@media(min-width:768px) {
    .dropdown:hover > .dropdown-menu,
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}
/*原bs3選單變mega大選單*/
.menu-large {
    position: static !important;
}
.megamenu {
    padding: 20px 0px;
    width: 100%;
}
.megamenu > li > ul{
    padding: 0;
    margin: 0;
}
.megamenu > li > ul > li{
    list-style: none;
}
.megamenu > li > ul > li > a{
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    white-space: normal;
}
.megamenu > li ul > li > a:hover,
.megamenu > li ul > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}
.megamenu.disabled>a,
.megamenu.disabled>a:hover,
.megamenu.disabled>a:focus {
    color: #999999;
}
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed;
}
.mega .dropdown-header {
    font-size: 18px;
    font-weight: 700;
}
.megamenu .dropdown-menu{
    display: block;
	position: static;
	z-index: 1000;
	float: none;
	min-width:unset;
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
@media (max-width: 767px){
	.megamenu {
		margin-left: 0;
		margin-right: 0;
	}
	.megamenu > li {
		margin-bottom: 30px;
	}
	.megamenu > li:last-child {
		margin-bottom: 0;
	}
	.megamenu.dropdown-header {
		padding: 3px 15px !important;
	}
	.mega .navbar-nav .open .dropdown-menu .dropdown-header {
		font-size: 16px;
		padding-left: 0;
	}
	.mega .open > .dropdown-menu{
		display: block;
	}
}
/*bs3的well*/
.well{
	border-radius: 10px;
    padding: 15px;
}
.well-g{
	background: #aaa;
	color:#fff;
}
.well-b{
	background: #333;
	color:#ccc;
}
.well-w{
	background: #fff;
	color:#333;
}
.well-r{
	background: #DF2528;
	color:#fff;
}
.well-o{
	background: #ff9d39;
	color:#fff;
}
.well-nob{
    padding-bottom: 0;
}
/*bs3沒補到的btn按鈕設定*/
.btn-toolbar{
	color: #333;
	background-color: #f0f0f0;
	border-color: #f0f0f0;
}

/*IE瀏覽升級提醒*/
/*針對IE9*/
.full-all{
	position:fixed;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index:1000000;
	width:100% ;
	height:100%;
	text-align:center;
	padding:0;
	margin:0;
	background:white;
	display:table;
	}
.noie9{
	color: #666;
	font-weight: 400;
	display: table-cell;
	vertical-align: middle;
	font-size: 20px;
	letter-spacing: 1px;
	padding:20px;
	text-align: center;
	width:70%;
	height:100%;
	margin:0 auto;
}
.noie9 .ielog{
	width: 210px;
	height: auto;
}
.noie9 p,.noie9 p.well{
	background: #eaeaea;
	width: 40%;
	display: block;
	padding: 10px;
	margin: 0 auto;
}
.noie9 p{
	background: transparent;
}
.noie9 hr{
	width: 55%;
	margin: 25px auto;
}
.noie9 .dot{
	color:#354c6e;
	font-size: 80px;
	line-height: 20px;
	display: inline-block;
}
.noie9 .dot1{
	color:#354c6e;
}
.noie9 .gohome{
	border:1px solid #dfdfdf;
	border-radius: 100px;
	padding: 15px 10px;
	display: block;
	width: 250px;
	margin: 10px auto 0;
	color: #666;
	text-decoration: none;
	transition: all 0.8s;
}
.noie9 .gohome:hover{
	border:1px solid #eaeaea;
	background: #eaeaea;
	color:#000;

}
@media(max-width:767px){
	.noie9 .ielog{
		width: 180px;
	}

	.noie9 p,
	.noie9 p.well{
		width: 80%;
	}

	.noie9 hr{
		width: 80%;
	}
}
.wow{
    visibility: hidden;
}
/*上面設定為一些特殊狀況設定，可再自行修改*/
/*從這裡為客製 網頁自定義樣式*/

/*每頁共用區*/
/*----------------------------------------------*/
/*每頁共用回頂部按鈕*/
.scroll-top {
	z-index: 1049;
	position: fixed;
	right: 2%;
	bottom: 15%;
	width: 50px;
	height: 50px;
	transition: all 0.8s;
}
.scroll-top .btn {
	width: 100%;
	font-size: 18px;
	color: #fff;
	background-color: #f40097;
	opacity: 0.8;
	border-radius:50px;
	white-space: normal;
	padding: 10px 0;
}
.scroll-top a{
	color: #fff;
}
.scroll-top .btnservice{
	
}
.scroll-top .mybtn-top {

}
.page-scroll{
	display: block;
	opacity: 1;
	transition: all 0.8s;
	scroll-behavior: smooth;
}

/*主選單*/
nav.navbar{
    border-radius: 0;
    border:0px;
    background: #FFFFFF;
}
nav.navbar .navbar-nav > li > a {
	line-height: 40px;
    color:#565656;
	font-size: 20px;
	font-weight: 500;
	padding: 15px 10px;
}
nav.navbar .navbar-nav > li > a:hover {
    color:#e247a3;
	font-weight: 700;
}
.navbar-brand {
    float: left;
    padding: 0px;
	background: #FFFFFF;/*縮小選單背景*/
	display: flex;
	align-items: center;
}
@media (max-width: 377px){
	.navbar-brand{
		width: 70%;
	}
}
.navbar-brand img {
	width: 50%;
}
/*logo*/
@media screen and (max-width: 768px) and (min-width: 410px){
	.navbar-brand img {
		width: 40%;
	}
}
/*footer*/
/*版權宣告*/
footer{
    padding: 30px 15px;
    text-align: center;
    font-size: 14px;
}
.footer2{
    background: #555;
}
.footer2 p{
    color:#fff;
}
.footer2 a {
	color:#ffe029;
}

/*header*/
.header{
    background:url("../img/bg.png");
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-bottom: 45%;
}
.headerimg{
    width: 100%;
}
@media(max-width:767px){
	.header{
		padding-bottom: 58%;
		margin-top: 50px;
	}
}

/*------------------------各頁客製設定開始----------------------*/
/*內容區-A*/
.wrapper{
    background: #FFFFFF;
    background-size: cover;
    background-position: center top;
	padding: 4em 2em;
	text-align: center;
}
@media(max-width:767px){
	.wrapper{
		background-size: 100%;
		background-repeat: repeat-y;
	}
}
.infoblock h3 a{
	font-size: 2em;
    text-align: center;
    color: #268abc;
}
.infoblock h3 a:hover{
	color: #f40097;
}
.infoblock h4{
	font-size: 2em;
    color: #268abc;
}
.infoblock h5{
	font-size: 24px;
    text-align: left;
    color: #333;
	margin-top: 20px;
	min-height: 3.2em;
    display: flex;
    align-items: flex-start;
}
.infoblock a img{
	width: 100%;
	margin: 60px auto 0 auto;
	transform:scale(1,1);transition: all 0.3s ease-out;
}
@media(max-width:767px){
	.infoblock a img{
		width: 80%;
		margin: 20px auto 60px auto;
	}
}
.infoblock:hover img{
	transform:scale(1.1,1.1);
	filter: drop-shadow(0px 0px 10px rgba(244, 0, 151, 0.7))
}
/*內容區-B*/
.wrapper2{
    background:url("../img/bg2.png");
    background-size: cover;
    background-position: center top;
    overflow: hidden;
	padding: 5em 0;
}
.infoblock2 {
	text-align: center;
}
.infoblock2 h4{
	color: #FFFFFF;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
}
@media(max-width:767px){
	.infoblock1 {
		width: 90%;
	}
}
@media(max-width:991px){
	.infoblock img{
		max-width: 100%;
	}
}

/*聯絡我們*/
.infoblock2{
    position: relative;
    text-align: center;
    margin: 0 auto;
    color:white;
}
.section{
    padding: 20px;
    position: relative;
    z-index: 3;
    max-width: 480px;
    margin: 5px auto;
}
.section > div{
    padding: 15px;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
.section{
    background: #ca8e70;
}
.section h5{
    color:#fff;
	font-size: 30px;
    font-weight: bold;
	padding-top: 20px;
}
.section p{
    color:#fff;
	font-size: 20px;
    margin: 0px;
	padding-top: 10px;
	padding-bottom: 20px;
}
.section p a{
	color:#fff;
	text-decoration: underline;
}
@media(max-width:991px){

}
@media(max-width:767px){
	.infoblock3 h4{
		font-size: 25px;
	}
}

/*APP操作Q&A*/
.table-responsive{
    border: 0;
	line-height: 40px;
}
td{
    padding: 2px;
	font-size: 1.3em;
}
td a{
    color: #268abc;
	text-decoration: underline;
}
td a:hover{
    color: #f40097;
}
.tds{
	color: #4fa6d1;
	font-weight: 500;
	font-size: 1.2em;
}

/*公告事項 更多影音*/
.infoblock3{
	margin: 3em auto;
}
.infoblock3 h3 a{
	font-size: 1.7em;
	line-height: 2em;
}
.infoblock3 h3 a:hover{
	color: #f40097;
}
.icon a{
	margin: 0 auto;
	display: block;
    font-size: 0;
	width: 150px;
	height: 150px;
	background: url("../img/icon1.png"); 
	transform:scale(1,1);transition: all 0.3s ease-out;
}
.icon a:hover{
	background: url("../img/icon1-2.png"); 
	transform:scale(1.1,1.1);
}
.icon2 a{
	margin: 0 auto;
	display: block;
    font-size: 0;
	width: 150px;
	height: 150px;
	background: url("../img/icon2.png"); 
	transform:scale(1,1);transition: all 0.3s ease-out;
}
.icon2 a:hover{
	transform:scale(1.1,1.1);
	background: url("../img/icon2-2.png"); 
}

/*區塊4*/
.infoblock4{
	border-radius:20px;
	background: #FFFFFF;
	text-align: left;
	padding: 40px;
	margin: 2em auto;
	display: flow-root;
}
@media(max-width:1045px){
	.infoblock4{
	padding: 20px;
	}
}
@media(max-width:762px){
	.infoblock4{
		text-align: left;
		margin: 0 2em;
		margin: 2em auto;
	}	
}
.infoblock4 h4{
	text-indent : -10px;
	padding-left: 1em;
}
.infoblock4 h3{
	color: #268abc;
    font-size: 1.7em;
	font-weight: 600;
	border-left: #268abc 6px solid;
	padding-left: 0.5em;
	margin: 0.3em 0;
}
.container {
    display: flex;
    align-items: flex-start;
	justify-content: space-between;
	align-items: center;
    width: 80%;
    }
@media(max-width:767px){
	.container {
    display:  block;
    width: 95%;
    }
}
/*好站連結*/
.wrapper3{
    position: relative;
	background: #E8E8E8;
	padding: 3em 10em;
}
@media(max-width:1479px){
	.wrapper3{
		padding: 3em 5em;
	}
}
@media(max-width:1045px){
	.wrapper3{
		padding: 3em 2em;
	}
}
.infoblock4 ul{
	list-style: none;
    padding-left: 5px;
    margin-bottom: 1em;
}
.infoblock4 li a{
	margin-bottom: 20px;
    background-color: #F3EEE3;
    width: 100%;
    float: left;
    text-align: center;
    padding: 20px;
	margin: 16px 0 0 0;
    font-size: 22px;
}
@media(max-width:1045px){
	.infoblock4 li a{
    padding: 10px 20px;
	margin: 16px 0 0 0;
	}
}
.infoblock4 li a:hover{
	color:#fff;
	background-color: #f18c1b;
}
h4.video{
	color: #3b3b3b;
	font-size: 1.5em;
	margin-top: 30px;
	text-indent: 0px;
}