body {
	height: 100%;
	background: #FFF;
	font-family:  Arial, "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "微軟正黑體", "Microsoft JhengHei", "MyFont", "標楷體", DFKai-SB, sans-serif;
	margin: 0 auto;
	font-size: 1.6rem;
}
.btn-warning {
	background-color: #456c92 !important;
	border-color:#456c92 !important;
}

/* 強制放大 */
.form-control, .btn, .dropdown-menu > li > a {
	font-size: 11.5pt !important;
}
/* 解決basicinfo過來的亂碼問題 */
@font-face {
    font-family: "MyFont";
    src: url('../fonts/font.tte') format('truetype');
}

img {
	max-width: 100%;
}
#menu {
	top: 0px;
	margin: 0 auto;
	margin-left: 0px auto;
	z-index: 1;
}

#body{
	display: block;
	overflow: hidden;
	width: auto;
}

#content {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
	margin-right: 20px;
}

#btn_menu {
	float: left;
	cursor:pointer;
}

h1 {
	padding-left: 20px;
	padding-bottom: 3px;
	border-bottom: 1px solid #999;
	font-size: 20px;
	font-weight: bold;
}

h2 {
	text-align: center;
	font-size: 18px;
	text-shadow: 2px 2px 2px #CCCCCC;
}

h5 {
	text-align: center;
}

#floater {
	float: left;
	margin-bottom: -50px;
	width: 1px; /* only for IE7 */
}

#middle {
	clear: both;
	height: 400px;
	position: relative;
}

#choice {
	width: 550px;
	padding: 1em 2em 0 2em;
	font-size: 14px;
}

.error{
	color:red;
	font-weight: bold;
}

.spanRed {
	color: red;
}

th {
	background: #d1f2fd;
	text-align: center;
	font-weight: bold;
	color: #000000;
}

.contents {
	min-height: 500px;
}

.lang a {
	color: white;
}

.lang a:hover {
	color: #666;
}

#basicinfo {
	width: 100%;
}

#basicinfo > #sidebar {
	width: 230px;
	float: left;
}

#basicinfo > #main {
	float: left;
}

.suggestor {
	position: absolute; cursor: default; z-index:999;
}

.banner_head{
	padding: 0px;
	background-color: #E8E4E3;
}

footer {
	text-align: center;
	text-transform: uppercase;
	font-family: Arial;
	font-size: 13px;
	color: #000000;
	line-height: 20px;
	letter-spacing: 1px;
	background-color: #EFEFEF;
	padding:30px 30px;
	margin-left: auto;
	margin-right: auto;
}

.contents { margin-left: 20px; margin-right: 20px;}

.beautifulGt { font-weight: bold; font-family: "Arial Black"; color: #888; font-size: 13px; }

/*
	讓網頁下拉後，可以讓選單凍頂
*/
.fixed-strip {
	position: fixed !important;
	top: 0;
	right: 0;
	left: 0;
	z-index: 9999;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/* 固定td寬度令其不隨內容改變 */
.fixed-table {
    table-layout: fixed;
    word-break: break-all;
}

/* 解決按鈕因文字太長而拉長問題 (畫面跑版) */
.text-newline {
    white-space: normal;
    text-align: left;
}

/* checkbox 美化 --start-- */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {display:none;}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}
/* checkbox 美化 --end-- */

/* 功能說明info */
.div-info {
	min-height: 20px;
	padding: 15px;
	margin-bottom: 15px;
	background-color: #f8f9fa;
	border-radius: 4px;
	font-size: 11.5pt !important;
	color: green;
}

.rounded-circle {
	border-radius: 50% !important;
}

/*---- nav css START-----*/
.topLinks > nav > ul {
	margin-top: 0px;
	margin-bottom: 8px;
}

.bottomLinks > nav > ul {
	margin-top: -8px;
	margin-bottom: 5px;
}
/*---- nav css END-----*/

/* radio --start-- */
.radioDress > input,
.radioDress > td > input {
	display: none;
}

.radioDress > input + label,
.radioDress > td > input + label {
	cursor: pointer;
    padding: 6px 12px;
	border: 1px solid #ccc;
    background-color: #FFF;
    text-align: center;
    border-radius: 4px;
    color: #999999;
    margin: 0 5px 5px 0;
}

.radioDress > input:checked + label,
.radioDress > td > input:checked + label {
    background-color: #b2e5ff;
    color: #000;
}

.radioDress label:hover {
    background-color: #DDD;
    color: #000;
    cursor: pointer;
}
/* radio --end-- */

/* checkboxes styles --start-- */
.checkboxDress > input { display: none; }

.checkboxDress > input + label {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font: 14px/20px 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.checkboxDress > input + label:last-child { margin-bottom: 0; }

.checkboxDress > input + label:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #00c2ff;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.checkboxDress > input:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkboxDress > input:checked + label { color: #664200; }
/* checkboxes styles --end-- */

/* 解決 delete 按鈕 換行問題 */
.display-inline { display: inline !important; }

.max-width { width: 100% !important; }

.text-red {
	color:#DC3545;
}

* {
    box-sizing: border-box;
}

.tab-content > h2 {
	text-shadow: 1px 1px 2px #7AA8CE;
}

p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 40px;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

.divider{
	height:40px;
	background-image: url("../images/home/divider.png");
	background-repeat: no-repeat; 
	background-size: contain;
	background-position:center;
}
/*Header Stytles*/

/*select fix start*/
.mainnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.banner-section {
    margin-top: 130px; 
    z-index: 0; 
}
/*select fix end*/
.navbar-nav>li>a {
	color: #000;
	font-size: 1.8rem;
}
.header-bg-img {
	background-image: url("../images/home/header_bg.jpg");
	background-repeat: no-repeat; 
	background-size: cover;
}
.main_welt{
	padding-right:0px !important;
	padding-left:0px !important;
}
.title-text {
	color: #406282;
	font-weight: 900;
	font-size: 2.3rem;
}
.title_flex{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 1.8vw;
}
.systemTime_style{
	background-color: rgba(255, 255, 255, 0.6);
	padding: 2px 12px 2px 12px;
	border-radius: 10px;
}
@media only screen and (max-width: 768px) {
	.systemTime_style{
		background-color: rgba(255, 255, 255, 0);
	}
}
/*重要時程及最新消息*/
.col-md-6 {
    width: 50%;
    float: left;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.important_bg {
	background-image: url("../images/home/important_bg.png");
	background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin: auto 1px auto 1px;
}

/* Table Styles */
.rwd-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
    border-spacing: 0;
    border: transparent !important;
}

.rwd-table td {
	border: 1px solid #dee2e6 !important;
    padding: 6px 12px;
    vertical-align: top;
}

.rwd-table th {
    padding: 6px 12px;
    vertical-align: top;
    background-color: #d1f2fd;
	border: 1px solid #dee2e6 !important;
    font-weight: bold;
    /* text-align: left; */
}
@media (max-width: 991px) {
	.col-custom{
		width:100%;
	}
}
/* Button Styles */
.btn-primary {
    color: #fff;
    background-color: #75ade0!important;
    border-color: #75ade0 !important;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Alert Styles */

.alert {
	font-size: 12pt;
	position: relative;
	font-weight: 900;
	padding: 0.25rem 1.25rem;
	/*
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
	*/
}

/*歷屆資訊*/
.title_txt{
    display: flex;
    flex-direction: row;
    color: #406282;
    font-weight: bold;    
    display: flex;
    justify-content:center;    
}
.title_first{
    font-size: 5.2vw;
    line-height: 72px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    text-align: right;
}
.title_txt_flex{
	display:flex;
	flex-direction: column;
	justify-content: center;
	font-size:1.8vw;
	letter-spacing: 16px;
}
.titleWord {
	margin: 50px auto 30px auto;	
}
.previous_bg {
	background-image: url("../images/home/previous_bg.png");
	overflow: hidden;
	background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.TabCss .nav-tabs>li{
	border-radius: 10px !important;
	margin-right: 5px !important;
}
.icon_flex{
	display:flex;
	flex-direction: column;
	align-items: center;
}

.previous_bg .form-control {
	border: 1px solid #fff !important;
	appearance:none;
  	-moz-appearance:none;
  	-webkit-appearance:none;
  	background: url("../images/home/form-control_arrow.png") no-repeat right center transparent !important;
  	background-position: 98% !important;
  	width:100% !important;
  	height:50px !important;
  	padding-left:10px !important;
  	padding-right:40px !imp  ortant;
  	background-color:#F6F7F7 !important;
  	color:gray !important;
  	margin-bottom: 30px;
}

.form-control:focus{
  box-shadow: 0 0 5px 2px #467BF4;    
}


/* nav未選取狀態預設是半透明底色 */
.nav-tabs>li>a,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover {
    background-color: rgba(255, 255, 255, 0.5); 
    border-radius: 10px 10px 0px 0px;
    color: #666;
    border-color: transparent; 
}

.nav-tabs>li>a.active:hover,.nav-tabs>li>a.active:focus,.nav-tabs>li>a.active {
    background-color: #B7DDFF !important;
    color: #666;
    border-color: transparent;
}
/*
.alert-warning {
	color: #235b8b;
	border-color: #eee;
	background-color:#e8faff !important;
}
*/
@media (max-width: 375px){
	.title_txt_flex{
		font-size:5.5vw !important;
	}
	.title_first{
	    font-size: 15.2vw !important;
	}	
	.title_cn{
		font-size: 4.2vw;
	}
}

/*聯絡資訊*/
.contact {
	margin: 0px auto 0px auto;
	display: flex;
	flex-direction: row;	
}
.con_left {
	width: 40%;
	background-color: #add8e6;
	display: flex;
	align-items: center;
	justify-content:center;
	background-image: url("../images/home/contact_bg.png");	
	overflow: hidden;
	background-size: 110%;
    background-position: -110px -120px;
    background-repeat: no-repeat;
}
.con_right {
	width: 60%;	
	background-color: #456c92;
	color: #ffffff;
	font-size: 1.3vw;
}
.con_txt {
    display: flex;
    flex-direction: row;
    color: #153970;
    font-weight: 900; 
}
.con_c{
    font-size: 5.2vw;
    line-height: 72px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.con_cn {
    letter-spacing: 16px;
}
.con_flex {
	display:flex;
	flex-direction: column;
	font-size: 1.8vw;
}

.con_info {
	text-align: center;
	margin: 30px;
}
.con_logo {
	display: flex;
	flex-direction: row;
}
.con_logo_l {
	color: #000;
	background-color: #FFF;
	width:50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding:20px;	
}
.con_logo_r {
	color: #000;
	background-color: #e8f7f6;
	width:50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding:20px;
}
.con_logo_r a, .con_logo_l a {
	color: #0a48bb;
}
.con_logo_l img {
	height: auto;
	margin: 10px;
	clip-path: circle(50%);
}
.con_logo_r img {
	height: auto;
	width: 70%;
	margin: 10px;
}
@media (max-width: 991px) {
	.rwd-table tr:nth-of-type(2n){
		background: #add8e6 !important;
	}
	.title_first{
	    font-size: 10.2vw;
	}
	.title_txt_flex{
		justify-content: center;
		font-weight: blod;
		font-size:3.5vw;
	}
	.contact {
		flex-direction: column;
	}
	.con_left {
		width: 100%;
	}
	.con_right{
		width: 100%;
	}
	.con_flex {
		display:flex;
		justify-content: center;
		font-weight: blod;
		font-size:3.5vw;
	}
	.con_c {
		font-size: 10.2vw;
	}
	.con_txt {
		margin:40px;
	}
	.con_info {
		font-size: 2.5vw;
	}
	.con_logo_l img {
		width: 60%;
	}
	.relevant .rel_r {
	    font-size: 10.2vw;
	}
	.relevant .rel_flex {
		font-size:3.5vw;
	}
}
@media (max-width: 768px) {
	.con_logo {
		display: flex;
		flex-direction: column;		
	}
	.con_logo_l,
    .con_logo_r {
        width: 100%;
    }
}
@media (max-width: 375px){
	.con_flex {
		font-size:5vw;
	}
	.con_c {
	    font-size: 15.2vw;
	}	
	.con_info {
		font-size: 4.2vw;
	}
	.rel_flex {
		font-size:5vw;
	}
	.rel_r {
	    font-size: 15.2vw;
	}	
}

/*相關資訊*/

.relevant {
    background-image: url("../images/home/relevant_bg.png");
    background-repeat: no-repeat;
    background-position: 120% 40%;
    background-size: 76% auto;
    display: flex;
    justify-content: flex-end;    
    flex-direction: column;
}
.rel_txt{
    display: flex;
    flex-direction: row;
    color: #203447;
    font-weight: bold; 
    margin: 50px 100px 50px auto;
}
.rel_r{
    font-size: 5.2vw;
    line-height: 72px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.rel_cn {
    letter-spacing: 16px;
}
.rel_flex {
	display:flex;
	flex-direction: column;
	justify-content: center;
	font-size:1.8vw;
}	

/* 相關資訊的方格 */
#relevant {
	margin-top: -80px;
	
}
#relevant .relevant-box {
	flex-direction: row;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
	box-sizing: border-box;
}
#relevant .relevant-items {
	width: 100%;
	display: flex;
    flex-wrap: wrap; 
    justify-content: flex-start !important;
    margin: 0;
}
#relevant .relevant-item {
    width: width: calc(25% - 40px);
    height: 250px;
    margin: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 18px 0 #0000002c;
    transition: 0.3s ease box-shadow;
    background-color: rgba(255,255,255,0.75);
}
#relevant .relevant-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#relevant .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#relevant .relevant-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#relevant .relevant-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
	
@media only screen and (max-width: 580px) {
    #relevant .relevant-items {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #relevant .relevant-item {
        width: calc(100% - 40px) !important;
        margin: 20px;
    }
    #relevant .icon {
        width: 100%; 
        height: auto;
    }
}
	
@media only screen and (min-width: 768px) {
	#relevant .relevant-box {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#relevant .relevant-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#relevant .relevant-item {
        width: 250px;/*calc(30% - 40px);      */  
        height: 250px;
        margin: 20px;
	}
	#relevant .relevant-item .icon {
		height: 200px;
		width: 200px;
		margin: 0 auto;
    	margin-bottom: 10px;
	}
	#relevant .relevant-item .icon img {
		object-fit: contain;
	}
	#relevant .relevant-item .relevant-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
}

@media only screen and (max-width: 1200px) {
    #relevant .relevant-item {
        width: calc(33.33% - 40px);
    }
}

@media only screen and (max-width: 768px) {
	#relevant {
    	margin-top: 0px !important;
    }
    #relevant .relevant-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    #relevant .relevant-item {
        width: calc(50% - 40px);
        margin: 20px;
    }
}

@media only screen and (max-width: 375px) {
    #relevant .relevant-item {
        width: calc(100% - 40px);
        margin: 20px;
    }
    .rel_txt{
   		margin-left: 100px;
   		width: 90%;
	}
	.rel_r{
		font-size:15.2vw !important;
	}
	.rel_flex{
		font-size:5.5vw !important;
	}
}


@media only screen and (max-width: 480px) {
    #relevant .relevant-item {
        width: calc(100% - 40px); 
    }
}
@media only screen and (max-width: 1358px) {
    #relevant .relevant-items {
        flex-wrap: wrap;
    }
    #relevant .relevant-item {
        width: calc(33.33% - 40px);
        margin: 20px;
    }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}


