﻿@charset "utf-8";
/* ----- iconList ----- */
.iconList {
	width:100%;
	margin:0 auto;
	clear: both;
	border-top:2px solid #eeeeee;
}
.iconList ul {
	width:100%;
	list-style:none;
}
.iconList ul li {
	width:100%;
	border-bottom:1px dashed #aaaaaa;
}
.iconList ul li a {
	position:relative;
    width:100%;
	padding:15px;
	box-sizing:border-box;
	overflow:hidden;
	display: flex;
	align-items: center;
}
.iconList ul li a:hover,
.iconList ul li a:focus {
	background-color:#f5f5f5;
}
.iconList ul li a .icon{
    display:block;
    width:40px;
    height:40px;
    z-index:2;
	background-image:url(../images/news-icon.svg);
	background-repeat:no-repeat;
	background-position:center center;
	background-size: contain;
}
.iconList ul li a:hover .icon,
.iconList ul li a:focus .icon{
	background-image:url(../images/news-icon-ov.svg);
}
.iconList.faq ul li a .icon{
	background-image:url(../images/faq-icon.svg);
}
.iconList.faq ul li a:hover .icon,
.iconList.faq ul li a:focus .icon{
	background-image:url(../images/faq-icon-ov.svg);
}
.iconList.husbandry ul li a .icon{
	background-image:url(../images/husbandry-icon.svg);
}
.iconList.husbandry ul li a:hover .icon,
.iconList.husbandry ul li a:focus .icon{
	background-image:url(../images/husbandry-icon-ov.svg);
}
.iconList ul li .text{
	width:calc(100% - 40px);
	padding:0 0 0 10px;
	box-sizing:border-box;
}
.iconList ul li p {
	color:#999;
	font-size:1.5em;
}
.iconList ul li a:hover p{ color:#ec6945;}
.iconList ul li time{ color:#3678bf;}
.iconList ul li h3 {
	color:#000;
	font-size:2em;
	line-height:150%;
	font-weight:bold;
}
.iconList ul li a:hover h3,
.iconList ul li a:focus h3{
	color:#dd3700;
}
@media screen and (min-width:481px) {
	.iconList ul li a{ padding:20px;}
	.iconList ul li a .icon{width:60px;height:60px;}
	.iconList ul li .text{width:calc(100% - 60px);padding:0 15px;}
	.iconList ul li a:after{
		position: absolute;
		top: 50%;
		right:30px;
		content: "";
		display:block;
		width:30px;
		height:100%;
		background-image:url(../images/news-arrow.svg);
		background-repeat:no-repeat;
		background-position:left center;
		transform: translate3d(0, -50%, 0);
		opacity:0;
	}
	.iconList ul li a:hover:after{right:0;opacity: 1;}
}
/* ----- downloadList ----- */
.downloadList {
	width:100%;
	margin:0 auto;
	clear: both;
	border-top:2px solid #eeeeee;
}
.downloadList ul {
	width:100%;
	list-style:none;
}
.downloadList ul li {
	width:100%;
	border-bottom:1px dashed #aaaaaa;
}
.downloadList ul li a {
	position:relative;
    width:100%;
	padding:15px;
	box-sizing:border-box;
	overflow:hidden;
	display: flex;
	align-items: center;
}
.downloadList ul li a:hover,
.downloadList ul li a:focus {
	background-color:#f5f5f5;
}
.downloadList ul li a .icon{
    display:block;
    width:60px;
    height:60px;
    z-index:2;
	background-image:url(../images/download-icon-w.svg);
	background-repeat:no-repeat;
	background-position:50% 0;
	background-size: contain;
	border-radius:5px;
	position:relative;
	clip-path:polygon(0% 0%, calc(100% - 18px) 0%, 100% 18px, 100% 100%, 0% 100%);
	background-color:#666;
	transition:all 0.4s ease;
}
.downloadList ul li a .icon span{
	position:absolute;
	left:0;
	bottom:0;
    text-align: center;
    text-transform: uppercase;
	width:100%;
	display:block;
	color:#fff;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:1.5em;
	padding:5px;
	border-top:3px solid #fff;
	background-color:#666;
	box-sizing:border-box;
	border-radius:0 0 5px 5px;
	transition:all 0.4s ease;
}
/**/
.downloadList ul li a .icon.pdf,
.downloadList ul li a .icon.pdf span{ background-color:#a40000;}
.downloadList ul li a .icon.odt,
.downloadList ul li a .icon.doc,
.downloadList ul li a .icon.docx,
.downloadList ul li a .icon.odt span,
.downloadList ul li a .icon.doc span,
.downloadList ul li a .icon.docx span{ background-color:#0068b7;}
.downloadList ul li a .icon.ods,
.downloadList ul li a .icon.xls,
.downloadList ul li a .icon.ods span,
.downloadList ul li a .icon.xls span{ background-color:#8ABF1C;}
.downloadList ul li a .icon.odp,
.downloadList ul li a .icon.ppt,
.downloadList ul li a .icon.pptx,
.downloadList ul li a .icon.odp span,
.downloadList ul li a .icon.ppt span,
.downloadList ul li a .icon.pptx span{ background-color:#F1662D;}
.downloadList ul li a .icon.rar,
.downloadList ul li a .icon.rar span{ background-color:#67005E;}
.downloadList ul li a .icon.zip,
.downloadList ul li a .icon.zip span{ background-color:#653F01;}
.downloadList ul li a .icon.jpg,
.downloadList ul li a .icon.jpg span{ background-color:#e85ca3;}
.downloadList ul li a .icon.png,
.downloadList ul li a .icon.png span{ background-color:#c47cee;}
/**/
.downloadList ul li a:hover .icon,
.downloadList ul li a:focus .icon,
.downloadList ul li a:hover .icon span{
	background-color:#dd3700;
}
.downloadList ul li a:hover .icon,
.downloadList ul li a:focus .icon{
	background-position:50% -5px;
}
.downloadList ul li a:hover .icon span{
	padding:2px 5px;
}
/**/
.downloadList ul li .text{
	width:calc(100% - 60px);
	padding:0 0 0 10px;
	box-sizing:border-box;
}
.downloadList ul li p {
	color:#999;
	font-size:1.5em;
}
.downloadList ul li a:hover p{ color:#ec6945;}
.downloadList ul li time{ color:#666666;}
.downloadList ul li h3 {
	color:#000;
	font-size:2em;
	line-height:150%;
	font-weight:bold;
}
.downloadList ul li a:hover h3,
.downloadList ul li a:focus h3{
	color:#dd3700;
}
@media screen and (min-width:481px) {
	.downloadList ul li a{ padding:20px;}
	.downloadList ul li .text{padding:0 15px;}
	.downloadList ul li a:after{
		position: absolute;
		top: 0;
		right:15px;
		content: "";
		display:block;
		width:30px;
		height:100%;
		background-image:url(../images/download-arrow.svg);
		background-repeat:no-repeat;
		background-position:left center;
		transform: translate3d(0, -50%, 0);
		opacity:0;
	}
	.downloadList ul li a:hover:after{top: 50%;opacity: 1;}
}
/* ----- linkList ----- */
.linkList {
	width:100%;
	margin:0 auto;
	clear: both;
	border-top:2px solid #eeeeee;
}
.linkList ul {
	width:100%;
	list-style:none;
}
.linkList ul li {
	width:100%;
	border-bottom:1px dashed #aaaaaa;
}
.linkList ul li a {
	position:relative;
    width:100%;
	padding:15px;
	box-sizing:border-box;
	overflow:hidden;
	display: flex;
	align-items: center;
}
.linkList ul li a:hover,
.linkList ul li a:focus {
	background-color:#f5f5f5;
}
.linkList ul li a .icon{
    display:block;
    width:40px;
    height:40px;
    z-index:2;
	background-image:url(../images/link-icon.svg);
	background-repeat:no-repeat;
	background-position:center center;
	background-size: contain;
}
.linkList ul li a:hover .icon,
.linkList ul li a:focus .icon{
	background-image:url(../images/link-icon-ov.svg);
}
.linkList ul li .text{
	width:calc(100% - 40px);
	padding:0 0 0 10px;
	box-sizing:border-box;
}
.linkList ul li p {
	color:#999;
	font-size:1.5em;
}
.linkList ul li a:hover p{ color:#ec6945;}
.linkList ul li time{ color:#666666;}
.linkList ul li h3 {
	color:#000;
	font-size:2em;
	line-height:150%;
	font-weight:bold;
}
.linkList ul li a:hover h3,
.linkList ul li a:focus h3{
	color:#2f5a9c;
}
@media screen and (min-width:481px) {
	.linkList ul li a{ padding:20px;}
	.linkList ul li a .icon{width:60px;height:60px;}
	.linkList ul li .text{width:calc(100% - 60px);padding:0 15px;}
	.linkList ul li a:after{
		position: absolute;
		top:50%;
		right:30px;
		content: "";
		display:block;
		width:30px;
		height:100%;
		background-image:url(../images/link-arrow.svg);
		background-repeat:no-repeat;
		background-position:center center;
		transform: translate3d(0, -50%, 0);
		opacity:0;
	}
	.linkList ul li a:hover:after{right:15px;opacity: 1;}
}
/**/
.pageContent {
    width: 100%;
    font-size: 1.8em;
    line-height: 180%;
    margin:30px auto 0;
}
.pageContent ul,.pageContent ol{
	margin-left:1.5em;
}
.pageContent > p + p{ margin:15px 0;}
.pageContent img{
	max-width:100%;
	height:auto;
}
.pageContent .color-red {
	color:#d13506;
}
/**/
.nbList_cn{
	width:100%;
	display:inline-block;
	padding:2px 10px;
	box-sizing:border-box;
}
.nbList_cn > ol{margin-left: 2em;}
.nbList_cn > ol,
.nbList_cn > ol > li ol{
	list-style: none; 
	counter-reset: li;
}
.nbList_cn > ol > li,
.nbList_cn > ol > li ol > li{
    counter-increment: li;
}
.nbList_cn > ol > li{
	padding:0;
	line-height:200%;
}
.nbList_cn > ol > li::before {
    content:counter(li);
    font-size: 0.933em;
    color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	background-color:#2478a6;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.6em;
    margin-left: -2em;
    margin-right: 0.25em;
    text-align: center;
	border-radius:20px;
}
.nbList_cn.gcicon > ol > li::before{
	background:#cccccc;
	color:#000000;
	border-radius:20px;
}
.nbList_cn > ol > li ol > li::before {
    content: counter(li);
    font-size: 0.5em;
    color: #FFF;
    background: #b8b8b8;
    border-radius: 100%;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: center;
}
/* ----- greenTab ----- */
.greenTab{
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	margin-bottom:15px;
	background-color:#efefef;
}
.greenTab caption{
	background-color:#b3e7ff;
	border:1px solid #cccccc;
	border-bottom:none;
	box-sizing:border-box;
	padding:6px;
	font-weight:bold;
}
.greenTab th,.greenTab td{
	padding:6px;
	border:1px solid #cccccc;
	vertical-align:middle;
}
.greenTab th{background-color:#defebb;}
.greenTab tr:nth-child(2n){
	background-color:#ffffff;
}
.blueTab{
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	margin-bottom:15px;
}
.blueTab caption{
	background-color:#075796;
	border:1px solid #000000;
	border-bottom:none;
	box-sizing:border-box;
	padding:6px;
	font-weight:bold;
	color:#ffffff;
}
.blueTab th,.blueTab td{
	padding:6px;
	border:1px solid #000000;
	vertical-align:middle;
}
.blueTab th{
	background-color:#006cb8;color:#ffffff;
}
/**/
table.fd2 th{ width:50%;}
table.fd3 th{ width:33.3333%;}
table.fd4 th{ width:25%;}
table.fd5 th{ width:20%;}
table + table{ margin-top:20px;}
/**/
.advisoryTab{
	width:100%;
}
.advisoryTab table{ margin-top:15px;}
.advisoryTab table tr td:last-of-type{ text-align:left;}
#advTab tr th span,
#advTab tr td span{ display:inline-block;}
/* ----- tabletolist ----- */
.advisoryTab ul.tabletolist{
	border-bottom:2px solid #eee;
	margin:0;
	font-size:1em;
	color: #333;
	line-height:150%;
}
.advisoryTab ul.tabletolist img{max-width:100%}
.advisoryTab ul.tabletolist.nrh{border-bottom:none;}
.advisoryTab ul.tabletolist.nrh>li{
	border:1px solid #cccccc;
	box-sizing: border-box;
	margin-top:20px;
	border-radius:0;
}
.advisoryTab ul.tabletolist,
.advisoryTab ul.tabletolist>li>ul{list-style:none!important}
.advisoryTab ul.tabletolist>li>ul{margin:0!important; padding:8px; box-sizing:border-box;}
.advisoryTab ul.tabletolist>li .titles{background-color:#bbb;display:block;color:#fff;padding:10px;font-weight:800}
.advisoryTab ul.tabletolist>li>ul>li{
	width: 100%;
	font-weight:200;
	border-bottom:1px dashed #dddddd;
	padding:10px;
	box-sizing: border-box;
	display: flex;
}
.advisoryTab ul.tabletolist>li>ul>li:hover{background-color:#f7f7f7;}
.advisoryTab ul.tabletolist>li>ul>li:last-child{border-bottom:none}
.advisoryTab ul.tabletolist ul>li .row_headers{
	font-size:1em;
	font-weight:bold;
	max-width:100%;
	box-sizing:border-box;
	white-space: nowrap;
}
.advisoryTab ul.tabletolist ul>li .row_headers::after{content:"：";}
.advisoryTab ul.tabletolist ul>li .row_data{
	width:auto;
	display:inline-block;
}
.advisoryTab ul.tabletolist ul>li .row_data > span{ display:inline-block;}
@media screen and (min-width:481px) {
	.advisoryTab ul.tabletolist>li>ul>li{align-items: center;}
	.advisoryTab ul.tabletolist ul>li .row_headers{
		width:120px;
		text-align:right;
		padding-right:10px;
	}
	.advisoryTab ul.tabletolist ul>li .row_data{
		width:calc(100% - 120px);max-width:100%;
	}
}

/**/
.arrowTit{
	width:100%;
	margin-bottom:5px;
	position:relative;
	box-sizing:border-box;
	padding-left:1.5em;
	color:#000000;
}
p + .arrowTit{ margin-top:15px;}
.arrowTit::before{
	content:"";
	position:absolute;
	left:0;
	top:0.25em;
	width:18px;
	height:18px;
	background-image:url(../images/arrowTit.svg);
	background-repeat:no-repeat;
	background-position:center center;
	background-color:#000000;
	border-radius:20px;
	display:inline-block;
	vertical-align:middle;
	margin:0 3px;
}
.arrowTit.blue{ color:#004DA0;}
.arrowTit.blue::before{ background-color:#004DA0;}
/**/
.husTit{
	position:relative;
	color:#ffffff;
	padding:8px 15px;
	box-sizing:border-box;
	margin-bottom:10px;
	font-weight:bold;
	font-size:1.2em;
	border-radius:3px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2f5a9c+0,2a7094+100 */
	background: #246dac; /* Old browsers */
	background: -moz-linear-gradient(top,  #246dac 0%, #1e88a2 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #246dac 0%,#1e88a2 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #246dac 0%,#1e88a2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	padding-left:2.2em;
}
.husTit:before{
	content:"";
	position:absolute;
	left:0;
	top:0.25em;
	width:30px;
	height:30px;
	background-image:url(../images/notice-icon1.svg);
	background-repeat:no-repeat;
	background-position:center center;
	background-color:#000000;
	border-radius:20px;
	display:inline-block;
	vertical-align:middle;
	margin:5px 10px;
}
.husTit2{
	background: #e42420; /* Old browsers */
	background: -moz-linear-gradient(top,  #e42420 0%, #e60f6e 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #e42420 0%,#e60f6e 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #e42420 0%,#e60f6e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.husTit2:before{
	background-image:url(../images/notice-icon2.svg);
}
div + .husTit,table + .husTit,
ol + .husTit,ul + .husTit{ margin-top:20px;}
/**/
.noteBtn{margin:15px 0;}
.noteBtn a{color:#000000; padding:5px 10px; border:1px solid #000000;}
.noteZone{
	color:#000000;
	padding:15px 10px;
	box-sizing:border-box;
	margin:10px 0;
	background-color:#eeeeee;
	text-align:left;
}
.tagY{
	background-color:#fff663;
	font-size:0.75em;
	border:1px solid #000;
	box-sizing:border-box;
	padding:3px;
	vertical-align:middle;
	display:inline-block;
	line-height:100%;
}
.borderRed{
	box-sizing:border-box;
	border:1px solid #e42533;
}
.redBox{
	box-sizing:border-box;
	padding:10px;
	background-color:#ffedee;
	margin:15px 0;
}
/**/
.spellBox{
	width:100%;
	display:block;
	color:#000000;
}
.spellBox.blue{color: #004DA0;}
.spellBox.focus{
	font-size:1.125em;
	font-weight:bold;
}
.spellBox > div{
	width:100%;
	text-align:center;
	word-break:break-all;
}
.spellBox > div span{ display:inline-block;}
.spellBox > span{
	white-space: nowrap;
	text-align:center;
	min-width:50px;
}
@media screen and (max-width:600px){
	.spellBox > span{ display:block;}
}
@media screen and (min-width:601px){
	.spellBox{display: flex;align-items: center;}
	.spellBox.fd2 > div{width:50%;}
	.spellBox.fd3 > div{width:33.3333%;}
	.spellBox.fd4 > div{width:25%;}
}
/**/
.focusWd{
	font-weight:bold;
	color: #004DA0;
	margin:15px 0;
	position:relative;
	box-sizing:border-box;
	padding-left:1.5em;
	font-size:1.125em;
}
.focusWd dt,.focusWd dd{
	display:block;
	
}
.focusWd dd .spFont{
	padding-left:10px;
}
.focusWd::before{
	content: "";
    width:8px;
    height:8px;
    display: inline-block;
    position: absolute;
    left: 0.5em;
    top: 0.5em;
    margin: 0;
    background-color: #004DA0;
}
.spFont{
	font-size:0.75em;
	color:#000000;
}
/**/
.huspicTwo{
	width:100%;
	flex-wrap: wrap;
	display: flex;
}
.huspicTwo .txtL,.huspicTwo .txtR{
	width:100%;
	box-sizing:border-box;
}
@media screen and (min-width:768px){
	.huspicTwo .txtL,.huspicTwo .txtR{width:50%;}
	.huspicTwo .txtR{padding-left:15px;}
}
/**/
.husProcess{
	width:100%;
	overflow:hidden;
	margin:0 auto;
}
.husProcess > ul{
	list-style:none;
	flex-wrap: wrap;
	display: flex;
	align-items:stretch;
	margin:0 -10px;
}
.husProcess > ul > li{
	width:100%;
	box-sizing:border-box;
	padding:10px;
	position:relative;
}
.husProcess .oneStep{
	width:100%;
	height:100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content:center;
	border-radius:5px;
	box-sizing:border-box;
	padding:15px 10px;
	word-break: break-word;
	min-height:80px;
}
.husProcess .oneStep a{ color:#000000;}
.husProcess .oneStep a:hover{ color:#428301;}
.husProcess .oneStep .tit{
	width: 100%;
	text-align:center;
	font-weight:bold;
	font-size:1.25em;
}
.husProcess .oneStep .tit span{ display:inline-block;}
.husProcess .oneStep .txt{
	font-size:0.875em;
	line-height:130%;
	word-break:break-all;
	padding-top:10px;
}
.husProcess .oneStep .txt ul{
	list-style-type:disc;
	display: flex;
	flex-wrap: wrap;
}
.husProcess .oneStep .txt ul li{ width:50%;}
.husProcess > ul > li::before,
.husProcess > ul > li::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	z-index: 2;
}
.husProcess > ul > li:last-of-type::before,
.husProcess > ul > li:last-of-type::after{ display:none;}
.husProcess > ul > li:nth-of-type(1) .oneStep,
.husProcess > ul > li:nth-of-type(1)::before{
	background-color:#abce36;
}
.husProcess > ul > li:nth-of-type(2) .oneStep,
.husProcess > ul > li:nth-of-type(2)::before{
	background-color:#c1d969;
}
.husProcess > ul > li:nth-of-type(3) .oneStep,
.husProcess > ul > li:nth-of-type(3)::before{
	background-color:#d8e480;
}
.husProcess > ul > li:nth-of-type(4) .oneStep,
.husProcess > ul > li:nth-of-type(4)::before{
	background-color:#edf099;
}
.husProcess > ul > li:nth-of-type(5) .oneStep{
	background-color:#428301;
	color:#ffffff;
}
@media screen and (max-width:767px){
	.husProcess > ul > li::before{
		right:50%;
		top:inherit;
		bottom:0;
		width:10px;
		height:10px;
		margin-top:0;
		margin-right:-5px;
	}
	.husProcess > ul > li::after{
		right:50%;
		top:inherit;
		bottom:-10px;
		width: 0;
		height: 0;
		margin-top:0;
		margin-right:-10px;
		border-style: solid;
		border-width:10px 10px 0 10px;
		border-color:#6daf29 transparent transparent transparent;
	}
	.husProcess > ul > li:nth-of-type(1)::after{
		border-color:#abce36 transparent transparent transparent;
	}
	.husProcess > ul > li:nth-of-type(2)::after{
		border-color:#c1d969 transparent transparent transparent;
	}
	.husProcess > ul > li:nth-of-type(3)::after{
		border-color:#d8e480 transparent transparent transparent;
	}
	.husProcess > ul > li:nth-of-type(4)::after{
		border-color:#edf099 transparent transparent transparent;
	}
}
@media screen and (max-width:320px){
	.husProcess .oneStep .txt ul li{ width:100%;}
}
@media screen and (min-width:481px) and (max-width:767px){
	.husProcess{ max-width:600px;}
	.husProcess .oneStep .txt ul li{ width:33.3333%;}
}
@media screen and (min-width:768px){
	.husProcess > ul > li{ width:20%;}
	.husProcess > ul > li::before{
		right:0;
		top: 50%;
		width:10px;
		height:10px;
		background-color:#6daf29;
		margin-top: -5px;
		z-index: 2;
	}
	.husProcess > ul > li::after{
		right: -10px;
		top: 50%;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 10px 0 10px 10px;
		border-color: transparent transparent transparent #6daf29;
		margin-top: -10px;
		z-index: 2;
	}
	.husProcess > ul > li:nth-of-type(1)::after{
		border-color: transparent transparent transparent #abce36;
	}
	.husProcess > ul > li:nth-of-type(2)::after{
		border-color: transparent transparent transparent #c1d969;
	}
	.husProcess > ul > li:nth-of-type(3)::after{
		border-color: transparent transparent transparent #d8e480;
	}
	.husProcess > ul > li:nth-of-type(4)::after{
		border-color: transparent transparent transparent #edf099;
	}
	.husProcess .oneStep .txt ul li{ width:100%;}
}
/**/
.webserTx{
	width:100%;
}
.webserTx dl{
	border-top:1px solid #dddddd;
	padding:15px 0;
	box-sizing:border-box;
}
.webserTx dt{
	font-size:1.25em;
	color:#004DA0;
	font-weight:bold;
	position:relative;
	box-sizing:border-box;
	padding-left:1.5em;
}
.webserTx dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    width:22px;
    height:22px;
    background-image: url(../images/arrowTit.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-color:#004DA0;
    border-radius: 20px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}
.webserTx dd{
	box-sizing:border-box;
	padding-top:5px;
}
@media screen and (min-width:768px){
	.webserTx dd{
		padding-left:2em;
		padding-right:15px;
	}
}
/**/
.webserList{
	width:100%;
}
.webserList dt{
	font-size:1.25em;
	color:#004DA0;
	font-weight:bold;
	position:relative;
	box-sizing:border-box;
	display: flex;
}
.webserList dt + dt{ padding-top:15px;}
.webserList dt span{
	width:2em;
	white-space: nowrap;
}
.webserList dd{
	box-sizing:border-box;
	padding-top:5px;
	padding-bottom:15px;
}
.mgleft2em,.mgleft3em{
	display: flex;
}
.mgleft2em span,.mgleft3em span{white-space: nowrap;}
@media screen and (min-width:768px){
	.webserList dd{
		padding-left:2.5em;
	}
	.mgleft2em,.mgleft3em{
		display:block;
		position:relative;
	}
	.mgleft2em{padding-left:2em;}
	.mgleft3em{padding-left:3em;}
	.mgleft2em span,.mgleft3em span{
		position:absolute;
		left:0;
		top:0;
	}
}
/**/
.borderPic{
	width:100%;
	text-align:center;
	box-sizing:border-box;
	border:1px solid #dddddd;
	padding:15px;
	margin:15px 0;
	border-radius:5px;
}
/**/
.dotList{
	list-style-type:none !important;
	margin:0 0 15px !important;
}
.dotList > li{
	position: relative;
    padding: 5px 0 5px 1.5em;
    border-bottom: 1px dashed #ddd;
}
.dotList > li:last-of-type{ border-bottom:0;}
.dotList > li:before {
    content: "";
    width:8px;
    height:8px;
    display: inline-block;
    position: absolute;
    left:0.5em;
    top:1em;
    margin:0;
    border-radius: 5px;
    background-color:#000000;
}
/**/
.mgleftTx{display: flex;}
.mgleftTx span:first-of-type{white-space: nowrap;}
@media screen and (max-width:480px){
	.mgleftTx,.mgleftTx span:first-of-type{
		display:block;
	}
}
/**/
.pdfDownload{
	width: 100%;
	box-sizing:border-box;
}
.pdfDownload a{
	width:100%;
	font-size:2.2em;
    font-family: "微软雅黑";
	color:#000000;
	font-weight:bold;
	display: flex;
    align-items: center;
	box-sizing:border-box;
	padding:5px 5px 5px 15px;
	background-color: #ffffff;
    background-image: url(../images/file-slash.png);
    background-repeat: no-repeat;
    background-position: right bottom;
	background-size: auto 100%;
	border:1px solid #dddddd;
}
.pdfDownload a:hover,.pdfDownload a:focus{
	box-shadow: 
	inset 0 0 0 130px rgba(53,118,183, 0.6),
	inset 0 0 0 6px rgba(255,255,255,0.8),
	0 2px 4px rgba(0,0,0,0.2);
	color:#ffffff;
}
.pdfDownload .Text{ width:calc(100% - 100px);}
.pdfDownload .pdf-icon {
    width:100px;
    height:100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/pdf-shadow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: all 0.4s ease;
}
.pdfDownload .pdf-icon::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../images/pdf-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.pdfDownload a:hover .pdf-icon{
	transform: translate3d(0, 3px, 0);
}
.pdfDownload .law-icon {
    width:100px;
    height:100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/law-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: all 0.4s ease;
}
.pdfDownload .law-icon2 {
    background-image: url(../images/law-icon2.svg);
}
@media screen and (min-width:601px){
	.pdfDownload{width:calc(50% - 10px);}
	.pdfDownload + .pdfDownload{
		margin-left:20px;
	}
}
@media screen and (min-width:991px){
	.pdfDownload a{ padding:5px 20px;}
}
/** searchBox **/
.searchBox {
	width:100%;
	text-align:center;
	padding:15px;	
	box-sizing:border-box;
	margin:0 auto;
	background:#eeeeee;
}
.searchBox .box {
	width:100%;
	margin:0;
	vertical-align:top;
	border:1px solid #DDD;
	box-sizing:border-box;
	background:#FFF;
	flex-wrap: wrap;
	display: flex;
	border-radius:50px;
	overflow:hidden;
}
.searchBox .search-txt {
	display:inline-block;
	width:calc(100% - 50px);
	height:50px;
	color:#333;
	font-family:"PingFang TC", "微軟正黑體", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
	font-size:1.6em;
	line-height:60px;
	letter-spacing:0;
	padding:0 20px;
	background:#FFF;
	border:none;
	border-right:1px solid #DDD;
	box-sizing:border-box;
	vertical-align:top;
}
.searchBox .search-txt:focus {
    color:#FF6A00;
}
.searchBox .search-btn {
	display:inline-block;
	width:50px;
	height:50px;
	text-align:center;
	letter-spacing:0;
	padding:0;
	margin:0;
	border:none;
	cursor:pointer;
	background:#FFF;
	-webkit-transition:all 0.5s ease;
	   -moz-transition:all 0.5s ease;
	     -o-transition:all 0.5s ease;
	        transition:all 0.5s ease;
}
.searchBox .search-btn span {
	font-size:0;
}
.searchBox .search-btn span em {
	position:relative;
	display:inline-block;
	width:20px;
	height:20px;
	margin:4px 0 0 0;
	vertical-align:top;
	-webkit-backface-visibility:hidden;
			backface-visibility:hidden;
}
.searchBox .search-btn span em::before {
	position:absolute;
	display:block;
	content:'';
	left:0;
	top:0;
	height:16px;
	width:16px;
	border:2px solid #333;
	box-sizing:border-box;
    -webkit-border-radius:100px;
       -moz-border-radius:100px;
            border-radius:100px;
}
.searchBox .search-btn span em::after {
	position:absolute;
	display:block;
	content:'';
	left:12px;
	top:15px;
	width:8px;
	height:2px;	
	background:#333;
	-webkit-transform:rotate(45deg);
		-ms-transform:rotate(45deg);
			transform:rotate(45deg);
}
.searchBox .search-btn:hover,
.searchBox .search-btn:focus {
	background:#333;
}
.searchBox .search-btn:hover span em::before,
.searchBox .search-btn:focus span em::before {
	border-color:#FFF;
}
.searchBox .search-btn:hover span em::after,
.searchBox .search-btn:focus span em::after {
	background:#FFF;
}
.searchShow {
	width:100%;
	text-align:left;
	margin:30px auto 0 auto;
	line-height:170%;
}
@media screen and (min-width: 991px) {
	.searchBox {
		padding:20px;
	}
}
/* ----- google套用全站搜尋 ----- */
#___gcse_0 {
	width:100%;
}
.gsc-search-box {
	margin:0 !important;
}
.gsc-control-cse {
	padding:0 !important;
}
/* 移除廣告 */
.gsc-adBlock {
  display: none !important;
}
.searchZone .gsc-search-box td.gsc-input {
    padding-right:10px;
}
.gsc-input-box{
    border:none !important;
    background:none !important;
}
.gsc-result-info-container,
.gsc-orderby-container{
	border:none !important;
}
.gsc-search-box .gsib_a {
	padding:0;
}
.gsc-search-box .gsib_b {
	position:relative;
}
.gsc-search-box .gsst_b {
	position:absolute;
	right:0px;
	top:50%;
	margin-top:-13.5px;
}
/** Sitemap **/
#sitemap {
	width:100%;
	margin:0 auto;
}
#sitemap .info {
	width:100%;
	color:#333;
	font-size:1.6em;
	line-height:160%;	
}
#sitemap .info .color-red {
	color:#D74114;
}
#sitemap .info p {
	text-align:justify;
}
#sitemap .info p + p{margin:15px 0;}
#sitemap .info ul {
	list-style:none;	
	margin:10px 0; 
	padding:0px;
}
#sitemap .info ul li {
	margin:10px 0 10px 1.5em;
}
#sitemap .sitemapList {
	width:100%;
	padding-top:25px;
	margin-top:20px;
	border-top:1px dashed #CCC;
}
#sitemap .sitemapList > ul {
	list-style:none;
	letter-spacing:-5px;
	margin:-10px;
	flex-wrap: wrap;
	display: flex;
}
#sitemap .sitemapList > ul > li {
	display:inline-block;
	width:50%;
	letter-spacing:0;
	padding:10px;
	vertical-align:top;
	box-sizing:border-box;
	position:relative;
	z-index: 1;
}
#sitemap .sitemapList > ul > li > a {
	display:block;
	color:#FFF;
	font-family:"微軟雅黑", "Microsoft YaHei", "LiHei Pro Medium";
	font-size:1.9em ;
	font-weight:bold;
	line-height:135%;
	padding:15px 15px;
	background:#2f5a9c;
	border-radius:50px;
}
#sitemap .sitemapList > ul > li > a:hover,
#sitemap .sitemapList > ul > li > a:focus {
	background:#D24014;
}
#sitemap .sitemapList > ul > li.alone > a{
	margin-bottom:10px;
}
#sitemap .sitemapList > ul > li.alone > a:last-of-type{
	margin-bottom:0;
}
#sitemap .sitemapList > ul > li ul {
	list-style:none;
	padding:10px 15px;
}
#sitemap .sitemapList > ul > li li {
	padding:10px 0;
	border-bottom: 1px dashed #aaaaaa;
}
#sitemap .sitemapList > ul > li li:last-of-type{ border-bottom:none;}
#sitemap .sitemapList > ul > li li a {
	position:relative;
	display:block;
	color:#333;
	font-size:1.9em ;
	line-height:135%;
	padding-left:40px;	
}
#sitemap .sitemapList > ul > li li a span {
	position:absolute;
	left:0;
	top:0;
	font-size:1rem ;
	font-family:Arial, Helvetica, sans-serif;
}
#sitemap .sitemapList > ul > li li a:hover,
#sitemap .sitemapList > ul > li li a:focus {
	color:#c91873;
}
@media screen and (max-width:480px) {
	#sitemap .sitemapList > ul > li {
		width:100%;
	}
}
@media screen and (min-width:768px) {	
	#sitemap .sitemapList > ul > li {
		width:33.33%;
	}
}
@media screen and (min-width:991px) {	
	#sitemap .sitemapList {
		padding-top:30px;
		margin-top:25px;
	}
	#sitemap .sitemapList > ul > li > a {
		padding:15px 20px;
	}
	#sitemap .sitemapList > ul > li ul {
		padding:10px 20px;
	}
}



/**/
.logBox{width:90%; margin:30px auto;}
.logBox .mbLog{
	width:100%;
    background: #c8e8bc url(../images/loginFrame-bg.png) repeat;
	border: 1px solid #e6e6e6;
	border-radius:0 0 5px 5px;		
	padding:40px;	
	box-sizing:border-box;		
}
@media screen and (max-width:640px) {
	.logBox{width:95%;}		
	.logBox .mbLog{	padding:30px;}
}
@media screen and (max-width:560px) {
	.logBox{width:100%;}		
	.logBox .mbLog{	padding:20px;}	
}
.logBox .mbLog li label{
	width:52px;
	height:52px;
	background-color:#009f3f;
	padding:0;
	background-image:url(../images/login-icon1.svg);
	background-repeat:no-repeat;
	background-position:center;
	border-radius:5px 0 0 5px;
}
.logBox .mbLog li.ico2 label{background-image:url(../images/login-icon2.svg);}
.logBox .mbLog li.ico3 label{background-image:url(../images/login-icon3.svg);}
.logBox .mbLog li.ico4 label{background-image:url(../images/login-icon4.svg);}
.logBox .mbLog li .input-text {
	width:calc(100% - 52px);
	border-radius:0 5px 5px 0;
	border-left:none;
}
.logBox .mbTit{
	position:relative;
	width:100%;
	font-family: "微軟雅黑","Microsoft YaHei",Helvetica, Verdana, Arial, sans-serif;
    font-size: 2.5em;
    line-height: 2.5em;
	color:#fff;
    font-weight:800;	
	text-align:center;
	/*text-shadow:0 0 5px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.3);*/		
    background: #009f3f url(../images/loginFrame-bgd.png) repeat;	
	border-radius:5px 5px 0 0;	
}
.logBox .mbTit:before{
	content:"";
	width:80px;
	height:80px;
	background:#000 url(../images/qlink-ico1.svg) no-repeat 50% 50%;
	border-radius:20px;
	display:inline-block;
	vertical-align:middle;
	margin:0 3px;	
}
.logBox p{ margin-top:0;}
.logBox .mbLog .captcha-txt{
	color:#009f3f;
	font-size:1.6em;
	line-height:150%;
	width:100%;
	margin:5px 0;
}
/* ----- loginTop ----- */
.loginTop{
	margin-bottom:1em;
    margin:0 auto 20px;
	text-align:center;
}
.loginTop .icon{
	width:110px;
	height:110px;
	display:inline-block;
	background-repeat:no-repeat;
	background-position:50% 50%;
	margin:0 auto;
}
.loginTop .icon.log1{
	background-image:url(../images/qlink-ico1-m.svg);
}
.loginTop .icon.log2{
	background-image:url(../images/qlink-ico3-m.svg);
}
.loginTop .info{
	width:100%;
}
.loginTop .info strong{
	display:block;
	font-family: "微軟雅黑","Microsoft YaHei",Helvetica, Verdana, Arial, sans-serif;	
	font-size:3em;
	color:#009f3f;
	font-weight:bold;
	margin:15px 0;
}
.loginTop .info p{
	font-size:1.8em;
	line-height:1.6;
	color:#348450;
}
@media screen and (max-width:767px) {
	.loginTop .info{transform: translate3d(0, -10px, 0);}
}
@media screen and (min-width:768px) {
	.loginTop{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		text-align:left;
	}
	.loginTop .info{width:calc(100% - 150px);}
	.loginTop .info strong{margin-top:0;}	
	.loginTop .info > span{ display:inline-block;}
}

/** form-btn **/
.form-btn {
	width:100%;
	text-align:center;
	margin:10px auto 0;
}
.form-btn a,
.form-btn button {
	position: relative;	
	display: inline-block;
	color: #fff;
	font-size:1.9em;
	font-weight:bold;
	padding:12px 30px;
	background:#000;
	margin:0 5px;
    border-radius:5px;
	box-sizing:border-box;
	border:none;
	cursor:pointer;	
}
.form-btn .btnSend {
	background:#009f3f;
}
.form-btn .btnClear {
	background:#888888;
}
.form-btn .btnPwd {
	background:#aa8420;	
}
.form-btn a:hover,
.form-btn button:hover {
	background-color:#000;
}
.form-btn a span,
.form-btn button span{
	display: flex;
	align-items: center;
}
.form-btn a span:after,
.form-btn button span:after {
	content: '';
	display:block;
	width:26px;
	height:26px;
	transition:all 0.3s ease;
	margin-left:10px;
	background-repeat:no-repeat;
	background-position:center;
	background-color:#fff;		
	border-radius:50px;
}
.form-btn .btnSend span:after {
	background-image:url(../images/form-btnSend.svg);
}
.form-btn .btnSend:hover span:after {
	background-image:url(../images/form-btnSend-ov.svg);
}
.form-btn .btnClear span:after {
	background-image:url(../images/form-btnClear.svg);
}
.form-btn .btnClear:hover span:after {
	background-image:url(../images/form-btnClear-ov.svg);
}
.form-btn .btnPwd span:after {
	background-image:url(../images/form-btnPwd.svg);
}
.form-btn .btnPwd:hover span:after {
	background-image:url(../images/form-btnPwd-ov.svg);
}
/**/
.mbLog ul {
	width:100%;
	list-style:none;
	/*margin-top:10px;*/
}		
.mbLog li {
	width:100%;
	margin:0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.mbLog li + li{ margin-top:8px;}
.mbLog li label  {
	font-size:1.7em;
	font-weight:bold;
	line-height:52px;		
	width:110px;
	text-align:right;
	box-sizing:border-box;
	padding-right:10px;
}
.input-text {
	font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 1.8em;
    line-height:160%;
    vertical-align: middle;	
	width:calc(100% - 110px);
	height:52px;
	line-height:50px;
	background: #fff;
	border: solid 1px #ccc;
	padding:0 10px;
	border-radius:5px;
	box-sizing:border-box;	
}
.mbLog li .input-text:focus {
    border:1px solid #dd3700;
    outline:0;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,153,51,0.6);
	   -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,153,51,0.6);
            box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,153,51,0.6);	
}
.captcha-img{
	width:120px;
	height:52px;
	margin-left:10px;
	border: solid 1px #ccc;
	box-sizing:border-box;
	background-color:#fff;
	border-radius:5px;
	overflow:hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.captcha-img img{
	width:auto;
	height:42px;
}
.captcha-txt {
    font-size: 1.9em;
    font-weight: bold;
    line-height: 50px;
    margin-left: 10px;
    color: #aa8420;
}
/**/
.mbLog .listBar {
	float:left;
	width:calc(100% - 52px);
	height:52px;
	font-family:"微軟正黑體", Helvetica, sans-serif;
	font-size:1.9em;
    line-height:50px; 
	vertical-align:top;
	cursor:pointer;
	text-indent:0.01px;
	text-overflow:"";
	border:1px solid #CCC;
	border-left:none;
	padding:0 10px;
	background:#FFF url(../images/select-bg.png) no-repeat right;
	border-radius:0 5px 5px 0;
	-webkit-appearance:none; /* gets rid of default appearance in Webkit browsers*/
	   -moz-appearance:none; /* Get rid of default appearance for older Firefox browsers */
	    -ms-appearance:none; /* get rid of default appearance for IE8, 9 and 10*/
	        appearance:none;
}
.mbLog .listBar:focus {
	background:#FFFFFF url(../images/select-bg-on.png) no-repeat right;
    border:1px solid #dd3700;
    outline:0;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,153,51,0.6);
	   -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,153,51,0.6);
            box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,153,51,0.6);	
}
.mbLog .listBar option {
	font-family:"微軟正黑體", Helvetica, sans-serif;
	background:#FFFFFF url(../images/select-bg-on.png) no-repeat right;
	border:none;
}
.mbLog .listBar:-ms-expand {
	display:none; /* hide default arrow in IE10 */
}
/**/
.verification{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
.mbLog .verification{width:calc(100% - 110px);}
.logBox .verification{width:calc(100% - 52px);}
.logBox .mbLog li .verification .input-text, .verification .input-text{width:calc(100% - 250px);}
.btnVoice, .btnReload {
    position: relative;
    display: inline-block;
    color: #FFF;
    font-size:0 !important;
	padding:0 !important;
    width:52px;
    height:52px;
    background:#333;
    vertical-align: middle;
    margin:0 0 0 8px;
	cursor:pointer;
	border-radius:4px;
}
.btnVoice:after,.btnReload:after{
	content:"";
	position:absolute;
    top:0;
	left:0;
	display:block;
    width:52px;
    height:52px;  
}
.btnVoice:after {  
    background:url(../images/voice-icon.svg) no-repeat 50% 50%;
	*background-image:url(../images/voice-icon.png);
}
.btnReload:after { 
    background:url(../images/reload-icon.svg) no-repeat 50% 50%;
	*background-image:url(../images/reload-icon.png);
}
.btnVoice:hover,
.btnVoice:focus,
.btnReload:hover,
.btnReload:focus {
	background:#148832;
}
@media screen and (max-width:480px) {
	.logBox .mbLog li .verification .input-text, .verification .input-text{width:100%; margin-bottom:10px;}	
	.btnVoice, .btnReload {margin:0 0 0 5px;}
	.captcha-img{margin-left:0;}		
}
@media screen and (max-width:360px) {
	.captcha-img{margin-left:-52px;}		
}


@media print {

}