@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
body {
	font-family: "Microsoft JhengHei", 'Noto Sans TC', sans-serif;
	font-weight: 400;
	min-width: 320px; width: 100%; max-width: 100%;
	color: #333;
	word-break: break-all; letter-spacing: 1px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6,label,p,ol,ul {
	padding: 0; margin: 0;
}
a,a:hover {
	text-decoration: none;
	color: inherit;
}
a:focus,input,input:focus,.form_control:focus {
	background-color: transparent;
	outline: none;
}
textarea {
	resize: none;
}
input:focus {
	box-shadow: 0 0 0;
	outline: none;
}
input[type=checkbox] {
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  min-width: 25px; width: 25px; height: 25px;
  background-color: #fff;
  border: 2px solid #005c79; 
  position: relative;
}
input[type=checkbox]:checked::after {
    border-right: 5px solid #005c79; border-bottom: 5px solid #005c79;
    width: 10px; height: 15px;
    position: absolute;
    top: 50%; left: 50%; 
    -webkit-transform: translate(-50%, -60%) rotate(40deg);
    -khtml-transform: translate(-50%, -60%) rotate(40deg);
    -moz-transform: translate(-50%, -60%) rotate(40deg);
    -ms-transform: translate(-50%, -60%) rotate(40deg);
    -o-transform: translate(-50%, -60%) rotate(40deg);
    transform: translate(-50%, -60%) rotate(40deg);
    content: "";
}
section {
	width: 100%; max-width: 100%; height: 100%;
	position: relative;
}





::-webkit-scrollbar {
    width: 10px;
	background-color: #019AE2;
}
::-webkit-scrollbar-thumb {
	background-color: #095CA8;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #333; 
}
::placeholder {
	color: #757575;
}
.container {
	max-width: 1280px; 
	position: relative; z-index: 2;
}
.illus_container {
	width: 100%; max-width: 1200px; height: 100%;
	position: absolute;
	top: 0; left: 50%;
	-webkit-transform: translateX(-50%);
	-khtml-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.illus_container img {
	position: absolute;
}
.m_view {
	display: block;
}
.d_view {
	display: none;
}
.gotop {
	position: fixed;
	right: 0; bottom: 92px;
	z-index: 20; cursor: pointer;
}
.gotop:hover {
	-webkit-filter: brightness(1.1);
	filter: brightness(1.1);
}
@media (min-width: 750px) {
	.m_view {
		display: none;
	}
	.d_view {
		display: block;
	}
}
@media (min-width: 992px) {
	.gotop {
		bottom: 224px;
	}
}





header {
	width: 100%; max-width: 100%; height: 66px;
	background-color: #fff;
}
header .container {
	display: flex; align-items: center; justify-content: flex-start;
	height: 100%; padding: 0 24px; 
}
.banner {
	background-color: #b8d1e8;
}
section {
	padding-top: 33px; padding-bottom: 36px;
}
@media (min-width: 992px) {
	header {
		height: 80px;
	}
	header .container {
		padding: 0 45px;
	}
	section {
		padding-top: 64px; padding-bottom: 43px;
	}
}


/*新增智能客服區塊 - 20220718*/
.customer-ai-chatbot{
  position: fixed;
  bottom: 104px;
  right: 20px;
  z-index: 100;
}
.customer-ai-chatbot.none,
.customer-ai-chatbot .none{
  display: none !important;  
  opacity: 0 !important;
}
.customer-ai-chatbot.show,
.customer-ai-chatbot .show{
  display: block !important; 
  opacity: 1 !important; 
}
.customer-ai-chatbot .chatbot-wrapper{
  position: relative;
}
.customer-ai-chatbot .link-chatbot,
.customer-ai-chatbot .icon-ai-chatbot{
  width: 50px;
  height: 50px;
}
.customer-ai-chatbot .tips-text{
  width: 210px;
  color: #707070;
  font-size: 11px;
  line-height: 1.25em;
  padding: 9px 12px;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(12,112,195,0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  box-sizing: border-box;
  position: absolute;
  left: -140px;
  top: -64px;
  display: none;
  opacity: 0;
}
.customer-ai-chatbot .link-chatbot:hover + .tips-text{
  display: block;
  opacity: 1;
}
.customer-ai-chatbot .tips-text p{
  margin-bottom:3px;
  line-height: normal;
}
.customer-ai-chatbot .tips-text p:last-child{
  margin-bottom: 0px;
}
.customer-ai-chatbot .tips-text .em-blue{
  color:#005BAC;
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 575.98px) {
  .customer-ai-chatbot .link-chatbot:hover + .tips-text{
    display: none;
    opacity: 0;
  }
}



footer {
	padding-top: 23px; padding-bottom: 28px;
	background-color: #e2e2e2;
	color: #666; 
}
footer a {
	color: #00a0e8 !important;
}
footer a:hover {
	color: #eb6000 !important;
}
footer .container {
	max-width: 1140px;
	padding: 0 15px;
}
.footer_frame {
	display: flex; flex-wrap: wrap;
	width: 100%; max-width: 100%;
}
.footer_column:nth-of-type(1),
.footer_column:nth-of-type(2),
.footer_column:nth-of-type(3),
.footer_column:nth-of-type(4) {
	width: 100%; max-width: 100%;
}
.footer_column:nth-of-type(1) {
	margin-bottom: 47px;
}
.footer_column:nth-of-type(2) {
	margin-bottom: 22px;
}
.footer_column:nth-of-type(3) {
	padding-bottom: 18px;
}
.footer_column:nth-of-type(4) {
	padding-top: 21px;
	border-top: 1px solid #ccc;
}
.footer_column:nth-of-type(4) a,
.footer_column:nth-of-type(4) span {
	font-size: 13px; line-height: 20px;
	color: #666;
}
.footer_column:nth-of-type(2) a {
	display: inline-block;
	font-size: 13px; line-height: 20px;
	color: #666; margin-bottom: 1px;
}
.footer_column:nth-of-type(4) a {
	display: inline-block;
	margin-bottom: 15px;
}
.footer_title {
	font-size: 16px; line-height: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}
.footer_txt {
	font-size: 13px; line-height: 20px; 
}
@media (min-width: 992px) {
	footer {
		padding-top: 60px;
	}
	footer .container {
		padding: 0;
	}
	.footer_column:nth-of-type(1) {
		max-width: 28.68%;
		margin-bottom: 0;
	}
	.footer_column:nth-of-type(2) {
		max-width: 22.54%;
		margin-bottom: 0;
	}
	.footer_column:nth-of-type(3) {
		display: flex; 
		justify-content: space-between;
		max-width: 23.33%; 
		padding-bottom: 0;
	}
	.footer_column:nth-of-type(4) {
		max-width: 25.45%;
		padding-top: 0; padding-left: 15px;
		border-top: 0; 
		border-left: 1px solid #ccc;
	}
	.footer_column:nth-of-type(2) a,
	.footer_column:nth-of-type(4) a,
	.footer_column:nth-of-type(4) span {
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	.footer_column:nth-of-type(3) {
		padding-right: 10px;
	}
	.footer_column:nth-of-type(4) {
		padding-left: 30px;
	}
}






.illus1 {
	top: 73px; left: 0;
}
.illus2 {
	top: 190px; right: 0;
}
.illus3 {
	position: absolute;
	right: 0; bottom: 0;
}
.title {
	margin-bottom: 35px;
}
.frame {
	margin-bottom: 30px;
}
.ques {
	width: 100%; max-width: 100%;
	display: flex; cursor: pointer;
	align-items: center; justify-content: space-between;
}
.ques div {
	font-size: 20px; line-height: 24px;
	font-weight: 700;
	cursor: pointer;
}
.hr {
	width: 100%; max-width: 100%;
	height: 1px; 
	background-color: #005BAD;
	margin: 14px 0 30px 0;
}
.ans {
	margin-top: -10px;
}
.ans_frame {
	display: flex; 
	width: 100%; max-width: 100%; margin: 0 auto;
	align-items: center; justify-content: space-between;
	font-size: 16px; line-height: 22px;
	color: #005bac; background-color: #fff;
	text-align: justify; padding: 16px 18px;
	border: 1px solid #005bac;
	border-radius: 4px; margin-bottom: 15px;
}
.ans_frame:hover {
	color: #005bac;
	box-shadow: 0 0 4px #005bac;
}
.ans_frame img {
	display: block;
	margin-left: 24px;
}
.item {
	font-size: 18px; line-height: 22px;
	font-weight: 700; text-align: justify;
	margin-bottom: 14px;
}
.description {
	font-size: 16px; line-height: 30px;
	text-align: justify; margin-bottom: 29px;
}
.item_number {
	font-size: 16px; line-height: 30px;
	font-weight: 700; text-align: justify;
	margin-bottom: 19px; 
}
.sub_number {
	font-size: 16px; line-height: 30px;
	text-align: justify;
	padding: 0 0 0 34px; margin-bottom: 19px;
}
.sub_dot {
	font-size: 16px; line-height: 30px;
	text-align: justify; text-indent: -40px;
	padding: 0 0 0 86px;
}
.sub_dot img {
	display: inline-block;
	margin-right: 9.9px;
}
@media (min-width: 992px) {
	.illus1 {
		top: 129px; left: 0;
		/* top: 129px; left: -467px; */
	}
	.illus2 {
		top: 128px; right: 0;
		/* top: 128px; left: 630px; */
	}
	.title {
		margin-bottom: 38px;
	}
	.frame {
		margin-bottom: 55px;
	}
	.hr {
		margin: 14px 0 55px 0;
	}
	.ans {
		margin-top: -30px;
	}
	.ans_frame {
		max-width: 570px; line-height: 19px;
	}
	.ans_frame img {
		margin-left: 26px;
	}
	.item {
		margin-bottom: 19px;
	}
	.description {
		padding: 0 0 0 23px;
	}
	.item_number {
		margin-bottom: 22px;
	}
	.sub_number {
		text-indent: -45px;
		padding: 0 0 0 76px; margin-bottom: 9px;
	}
	.sub_dot {
		text-indent: -46px;
		padding: 0 0 0 91px;
	}
	.sub_dot img {
		margin-right: 17px;
	}
}