@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap");
@import url("https://fonts.googleapis.com/earlyaccess/notosanstc.css");

html {
	/* overflow-x:hidden; */
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans TC", "Arial", sans-serif;
	margin: 0px;
	overflow-x: hidden;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, p {
	font-size: 20px;
	padding: 0px;
	margin: 0px;
}

a {
	text-decoration: none;
}

#title {
	position: relative;
	background: url("../img/titlebg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#title1 {
	width: 650px;
	padding: 60px 0px;
	margin: auto;
	display: block;
}

#title2 {
	width: 750px;
	margin: auto;
	display: block;
}

@media(max-width:800px) {
	#title1 {
		width: 500px;
		padding: 40px 0px;
	}

	#title2 {
		width: 500px;
	}
}

@media(max-width:600px) {
	#title1 {
		width: 95%;
		padding: 40px 0px;
	}

	#title2 {
		width: 85%;
	}
}

@media(max-width:400px) {
	#title1 {
		width: 95%;
		padding: 20px 0px;
	}

	#title2 {
		width: 85%;
	}
}

nav {
	top: 0px;
	position: sticky;
	background: #40a0ff;
	box-shadow: rgba(0, 0, 0, 0.20) 0px 2px 2px 0px;
	z-index: 100;
}

nav ul {
	list-style: none;
	align-items: center;
	justify-content: center;
	margin: 0px auto;
	display: flex;
}

nav a {
	color: #40a0ff;
	background: #ffffff;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
	padding: 5px 20px;
	margin: 15px 10px;
	display: block;
	transition: transform 0.2s;
}

nav a:hover {
	transform: scale(1.04);
}

.nav_br1 {
	display: none;
}

@media(max-width:850px) {
	nav a {
		font-size: 20px;
		font-weight: 500;
		padding: 5px 10px;
		margin: 10px 5px;
	}
}

@media(max-width:600px) {
	nav a {
		font-size: 20px;
		font-weight: 500;
		line-height: 1.2;
		padding: 5px 10px;
		margin: 10px 5px;
	}

	.nav_br1 {
		display: inline;
	}
}

@media(max-width:400px) {
	nav a {
		font-size: 18px;
		font-weight: 400;
		line-height: 1.2;
		padding: 4px 6px;
		margin: 8px 4px;
	}

	.nav_br1 {
		display: inline;
	}
}

#mybutton1 {
	top: 25%;
	right: 10px;
	width: 200px;
	position: fixed;
	cursor: pointer;
	z-index: 101;
	animation: rotate infinite 2s;
}

.modal {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: auto;
	margin: auto;
	display: none;
	z-index: 101;
}

.modal-content {
	top: calc(25% + 120px);
	right: 100px;
	position: absolute;
	background: #ffffff;
	border-radius: 4px;
	animation-name: right;
	animation-duration: 0.4s;
}

.modal-content h1 {
	color: #000000;
	background: #ffe629;
	font-size: 28px;
	text-align: center;
	letter-spacing: 1px;
	border-radius: 4px 4px 0px 0px;
	padding: 5px 0px;
}

.modal-content ul {
	padding: 10px 15px;
}

.modal-content ul li {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	list-style-image: url("../img/modal2.png");
	padding: 4px 0px;
	margin-left: 40px;
}

.modal-content ul li span {
	color: #ea3232;
	font-size: 24px;
	font-weight: bold;
}

.close {
	display: none;
}

@keyframes rotate {
	from {
		transform: rotate(5deg);
	}

	50% {
		transform: rotate(-5deg);
	}

	to {
		transform: rotate(5deg);
	}
}

@keyframes right {
	from {
		right: 0px;
		opacity: 0;
	}

	to {
		right: 100px;
		opacity: 1;
	}
}

@media(max-width:950px) {
	#mybutton1 {
		top: 22%;
		width: 150px;
	}

	.modal {
		background: rgba(0, 0, 0, 0.4);
	}

	.modal-content {
		top: auto;
		right: auto;
		width: 95%;
		position: relative;
		background: #ffffff;
		border-radius: 4px;
		box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
		padding: 8px;
		margin: auto;
		animation-name: top;
	}

	.modal-content h1 {
		font-size: 24px;
		border-radius: 4px 4px 0px 0px;
		padding: 5px 0px;
	}

	.modal-content ul {
		padding: 10px 15px;
	}

	.modal-content ul li {
		font-size: 18px;
		padding: 4px 0px;
		margin-left: 40px;
	}

	.modal-content ul li span {
		font-size: 20px;
	}

	@keyframes rotate {
		from {
			transform: rotate(5deg);
		}

		50% {
			transform: rotate(-5deg);
		}

		to {
			transform: rotate(5deg);
		}
	}

	@keyframes top {
		from {
			top: -100px;
			opacity: 0;
		}

		to {
			top: 0px;
			opacity: 1;
		}
	}
}

@media(max-width:650px) {
	#mybutton1 {
		top: 22%;
		width: 100px;
	}

	.modal {
		background: rgba(0, 0, 0, 0.4);
	}

	.modal-content {
		top: auto;
		right: auto;
		width: 95%;
		position: relative;
		background: #ffffff;
		border-radius: 4px;
		box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
		padding: 8px;
		margin: auto;
		animation-name: top;
	}

	.modal-content h1 {
		font-size: 24px;
		border-radius: 4px 4px 0px 0px;
		padding: 5px 0px;
	}

	.modal-content ul {
		padding: 10px 15px;
	}

	.modal-content ul li {
		font-size: 18px;
		padding: 4px 0px;
		margin-left: 40px;
	}

	.modal-content ul li span {
		font-size: 20px;
	}

	@keyframes rotate {
		from {
			transform: rotate(5deg);
		}

		50% {
			transform: rotate(-5deg);
		}

		to {
			transform: rotate(5deg);
		}
	}

	@keyframes top {
		from {
			top: -100px;
			opacity: 0;
		}

		to {
			top: 0px;
			opacity: 1;
		}
	}
}

@media(max-width:450px) {
	#mybutton1 {
		top: 20%;
		width: 80px;
	}

	.modal {
		background: rgba(0, 0, 0, 0.4);
	}

	.modal-content {
		top: auto;
		right: auto;
		width: 95%;
		position: relative;
		background: #ffffff;
		border-radius: 4px;
		box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
		padding: 8px;
		margin: auto;
		animation-name: top;
	}

	.modal-content h1 {
		font-size: 20px;
		border-radius: 4px 4px 0px 0px;
		padding: 5px 0px;
	}

	.modal-content ul {
		padding: 10px 15px;
	}

	.modal-content ul li {
		font-size: 16px;
		padding: 4px 0px;
		margin-left: 40px;
	}

	.modal-content ul li span {
		font-size: 18px;
	}

	@keyframes rotate {
		from {
			transform: rotate(5deg);
		}

		50% {
			transform: rotate(-5deg);
		}

		to {
			transform: rotate(5deg);
		}
	}

	@keyframes top {
		from {
			top: -100px;
			opacity: 0;
		}

		to {
			top: 0px;
			opacity: 1;
		}
	}
}

.caption1 {
	position: relative;
	color: #004b75;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 1px;
}

.caption1::after {
	content: '';
	left: 50%;
	bottom: 0px;
	width: 80px;
	transform: translate(-50%, 5px);
	position: absolute;
	border: 2px solid #004b75;
}

@media(max-width:1250px) {
	.caption1 {
		font-size: 28px;
		font-weight: bold;
	}

	.caption1::after {
		width: 80px;
		transform: translate(-50%, 5px);
		border: 2px solid #004b75;
	}
}

@media(max-width:650px) {
	.caption1 {
		font-size: 24px;
		font-weight: bold;
	}

	.caption1::after {
		width: 60px;
		transform: translate(-50%, 5px);
		border: 1px solid #004b75;
	}
}

#sale {
	background: url("../img/salebg.png"), #d1f2ff;
	padding: 80px 0px;
}

#sale_1 {
	width: 1200px;
	margin: 0px auto;
	flex-wrap: wrap;
	display: flex;
}

#sale_1 div {
	width: calc(45% - 40px);
	background: #ffffff;
	border-radius: 8px;
	padding: 20px 20px;
	margin: 60px auto 0px auto;
}

#sale_1 div h2 {
	text-align: center;
}

#sale_1 div h2 span {
	color: #ffffff;
	background: #186acf;
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 1px;
	border-radius: 4px;
	box-shadow: 4px 4px 0px #186acf60;
	padding: 0px 10px;
}

#sale_1 div h3 {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 0px 0px 0px 10px;
	margin: 20px 0px 0px 0px;
}

#sale_1 div h4 {
	color: #383838;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 0px 0px 2px 0px;
	margin: 5px 0px 5px 19px;
}

#sale_1 div ol {
	color: #383838;
	font-weight: 500;
	letter-spacing: 2px;
	padding: 0px 0px 2px 0px;
	margin: 5px 0px 5px 13px;
}

#sale_1 div ol li {
	font-size: 20px;
	margin: 5px 0px 5px 32px;
}

#sale_1 div ol li span {
	color: #ea3232;
}

#sale_1 a {
	color: #ffffff;
	background: linear-gradient(to left, #444444 50%, #ea3232 50%) right;
	background-size: 250%;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1px;
	border-radius: 4px;
	padding: 10px 15px;
	margin: 60px auto 0px auto;
	display: inline-block;
	cursor: pointer;
	transition: 0.4s ease-out;
}

#sale_1 a i {
	font-size: 28px;
	margin-right: 10px;
}

#sale_1 a:hover {
	background-position: left;
}

#sale_1 .border1 {
	color: #f28a00;
	border-left: 8px solid #f28a00;
}

#sale_1 .border2 {
	color: #ad0986;
	border-left: 8px solid #ad0986;
}

#sale_1 .border3 {
	color: #444444;
	border-left: 8px solid #444444;
}

#sale_1 .border4 {
	color: #ea3232;
	border-left: 8px solid #ea3232;
}

#sale_1 .border5 {
	color: #1254cb;
	border-left: 8px solid #1254cb;
}

#sale_1 .color1 {
	color: #f28a00;
	border-bottom: 2px solid #f28a00;
}

#sale_1 .color2 {
	color: #ad0986;
	border-bottom: 2px solid #ad0986;
}

#sale_1 .color2 span {
	color: #ea3232;
}

#sale_1 .color3 {
	color: #444444;
	border-bottom: 2px solid #444444;
}

#sale_1 .color4 {
	color: #ea3232;
	border-bottom: 2px solid #ea3232;
}

#sale_1 .color5 {
	color: #1254cb;
	border-bottom: 2px solid #1254cb;
}

@media(max-width:1250px) {
	#sale {
		padding: 80px 0px;
	}

	#sale_1 {
		width: 900px;
	}

	#sale_1 div {
		width: calc(45% - 40px);
		padding: 20px 20px;
		margin: 60px auto 0px auto;
	}

	#sale_1 div h2 span {
		font-size: 24px;
		font-weight: bold;
		box-shadow: 3px 3px 0px #186acf60;
		padding: 0px 10px;
	}

	#sale_1 div h3 {
		font-size: 20px;
		font-weight: 500;
		padding: 0px 0px 0px 6px;
		margin: 20px 0px 0px 0px;
	}

	#sale_1 div h4 {
		font-size: 18px;
		font-weight: 500;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 14px;
	}

	#sale_1 div ol {
		font-weight: 500;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 7px;
	}

	#sale_1 div ol li {
		font-size: 18px;
		margin: 5px 0px 5px 32px;
	}

	#sale_1 a {
		font-size: 20px;
		font-weight: 500;
		padding: 10px 15px;
		margin: 60px auto 0px auto;
	}

	#sale_1 a i {
		font-size: 24px;
		margin-right: 10px;
	}

	#sale_1 .border1 {
		border-left: 6px solid #f28a00;
	}

	#sale_1 .border2 {
		border-left: 6px solid #ad0986;
	}

	#sale_1 .border3 {
		border-left: 6px solid #444444;
	}

	#sale_1 .border4 {
		border-left: 6px solid #ea3232;
	}

	#sale_1 .border5 {
		border-left: 6px solid #1254cb;
	}

	#sale_1 .color1 {
		border-bottom: 2px solid #f28a00;
	}

	#sale_1 .color2 {
		border-bottom: 2px solid #ad0986;
	}

	#sale_1 .color3 {
		border-bottom: 2px solid #444444;
	}

	#sale_1 .color4 {
		border-bottom: 2px solid #ea3232;
	}

	#sale_1 .color5 {
		border-bottom: 2px solid #1254cb;
	}
}

@media(max-width:950px) {
	#sale {
		padding: 80px 0px;
	}

	#sale_1 {
		width: 600px;
	}

	#sale_1 div {
		width: calc(100% - 40px);
		padding: 20px 20px;
		margin: 30px auto 0px auto;
	}

	#sale_1 div h2 span {
		font-size: 24px;
		font-weight: bold;
		box-shadow: 3px 3px 0px #186acf60;
		padding: 0px 10px;
	}

	#sale_1 div h3 {
		font-size: 20px;
		font-weight: 500;
		padding: 0px 0px 0px 6px;
		margin: 20px 0px 0px 0px;
	}

	#sale_1 div h4 {
		font-size: 18px;
		font-weight: 500;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 14px;
	}

	#sale_1 div ol {
		font-weight: 500;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 7px;
	}

	#sale_1 div ol li {
		font-size: 18px;
		margin: 5px 0px 5px 32px;
	}

	#sale_1 a {
		font-size: 20px;
		font-weight: 500;
		padding: 10px 15px;
		margin: 30px auto 0px auto;
	}

	#sale_1 a i {
		font-size: 24px;
		margin-right: 10px;
	}

	#sale_1 .border1 {
		border-left: 6px solid #f28a00;
	}

	#sale_1 .border2 {
		border-left: 6px solid #ad0986;
	}

	#sale_1 .border3 {
		border-left: 6px solid #444444;
	}

	#sale_1 .border4 {
		border-left: 6px solid #ea3232;
	}

	#sale_1 .border5 {
		border-left: 6px solid #1254cb;
	}

	#sale_1 .color1 {
		border-bottom: 2px solid #f28a00;
	}

	#sale_1 .color2 {
		border-bottom: 2px solid #ad0986;
	}

	#sale_1 .color3 {
		border-bottom: 2px solid #444444;
	}

	#sale_1 .color4 {
		border-bottom: 2px solid #ea3232;
	}

	#sale_1 .color5 {
		border-bottom: 2px solid #1254cb;
	}

	#sale_1_2 {
		display: none;
	}
}

@media(max-width:650px) {
	#sale {
		padding: 60px 0px;
	}

	#sale_1 {
		width: 95%;
	}

	#sale_1 div {
		width: calc(100% - 40px);
		padding: 20px 20px;
		margin: 30px auto 0px auto;
	}

	#sale_1 div h2 span {
		font-size: 24px;
		font-weight: bold;
		box-shadow: 3px 3px 0px #186acf60;
		padding: 0px 10px;
	}

	#sale_1 div h3 {
		font-size: 20px;
		font-weight: 500;
		padding: 0px 0px 0px 6px;
		margin: 20px 0px 0px 0px;
	}

	#sale_1 div h4 {
		font-size: 18px;
		font-weight: 500;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 14px;
	}

	#sale_1 div ol {
		font-weight: 500;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 7px;
	}

	#sale_1 div ol li {
		font-size: 18px;
		margin: 5px 0px 5px 32px;
	}

	#sale_1 a {
		font-size: 20px;
		font-weight: 500;
		padding: 10px 15px;
		margin: 30px auto 0px auto;
	}

	#sale_1 a i {
		font-size: 24px;
		margin-right: 10px;
	}

	#sale_1 .border1 {
		border-left: 6px solid #f28a00;
	}

	#sale_1 .border2 {
		border-left: 6px solid #ad0986;
	}

	#sale_1 .border3 {
		border-left: 6px solid #444444;
	}

	#sale_1 .border4 {
		border-left: 6px solid #ea3232;
	}

	#sale_1 .border5 {
		border-left: 6px solid #1254cb;
	}

	#sale_1 .color1 {
		border-bottom: 2px solid #f28a00;
	}

	#sale_1 .color2 {
		border-bottom: 2px solid #ad0986;
	}

	#sale_1 .color3 {
		border-bottom: 2px solid #444444;
	}

	#sale_1 .color4 {
		border-bottom: 2px solid #ea3232;
	}

	#sale_1 .color5 {
		border-bottom: 2px solid #1254cb;
	}
}

@media(max-width:400px) {
	#sale {
		padding: 60px 0px;
	}

	#sale_1 {
		width: 95%;
	}

	#sale_1 div {
		width: calc(100% - 20px);
		padding: 10px 10px;
		margin: 30px auto 0px auto;
	}

	#sale_1 div h2 span {
		font-size: 20px;
		font-weight: 500;
		box-shadow: 3px 3px 0px #186acf60;
		padding: 0px 10px;
	}

	#sale_1 div h3 {
		font-size: 18px;
		font-weight: 500;
		padding: 0px 0px 0px 6px;
		margin: 20px 0px 0px 0px;
	}

	#sale_1 div h4 {
		font-size: 16px;
		font-weight: 400;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 11px;
	}

	#sale_1 div ol {
		font-weight: 400;
		padding: 0px 0px 2px 0px;
		margin: 5px 0px 5px 2px;
	}

	#sale_1 div ol li {
		font-size: 16px;
		margin: 5px 0px 5px 32px;
	}

	#sale_1 a {
		font-size: 18px;
		font-weight: 500;
		padding: 10px 15px;
		margin: 30px auto 0px auto;
	}

	#sale_1 a i {
		font-size: 20px;
		margin-right: 10px;
	}

	#sale_1 .border1 {
		border-left: 4px solid #f28a00;
	}

	#sale_1 .border2 {
		border-left: 4px solid #ad0986;
	}

	#sale_1 .border3 {
		border-left: 4px solid #444444;
	}

	#sale_1 .border4 {
		border-left: 4px solid #ea3232;
	}

	#sale_1 .border5 {
		border-left: 4px solid #1254cb;
	}

	#sale_1 .color1 {
		border-bottom: 1px solid #f28a00;
	}

	#sale_1 .color2 {
		border-bottom: 1px solid #ad0986;
	}

	#sale_1 .color3 {
		border-bottom: 1px solid #444444;
	}

	#sale_1 .color4 {
		border-bottom: 1px solid #ea3232;
	}

	#sale_1 .color5 {
		border-bottom: 1px solid #1254cb;
	}
}

#sale_btn {
	align-items: center;
	justify-content: center;
	margin: 40px 0px 0px 0px;
	display: none;
}

#sale_btn a {
	width: 160px;
	color: #f28f00;
	background: #fff9f0;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	border: 2px solid #f28f00;
	border-radius: 100px;
	padding: 5px 0px;
	margin: 0px 10px;
	cursor: pointer;
}

@media(max-width:950px) {
	#sale_btn {
		margin: 40px 0px 0px 0px;
		display: flex;
	}

	#sale_btn a {
		width: 160px;
		font-size: 20px;
		font-weight: 500;
		border: 2px solid #f28f00;
		padding: 5px 0px;
		margin: 0px 10px;
	}

	#sale_btn a:nth-child(1) {
		color: #ffffff;
		background: #f28f00;
	}
}

@media(max-width:400px) {
	#sale_btn {
		margin: 40px 0px 0px 0px;
		display: flex;
	}

	#sale_btn a {
		width: 130px;
		font-size: 18px;
		font-weight: 500;
		border: 2px solid #f28f00;
		padding: 5px 0px;
		margin: 0px 5px;
	}

	#sale_btn a:nth-child(1) {
		color: #ffffff;
		background: #f28f00;
	}
}

#cloud {
	background: url("../img/cloudbg.png");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0px;
}

#cloud>img {
	width: 900px;
	margin: 0px auto;
	display: block;
}

#cloud_1 {
	width: 900px;
	justify-content: center;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
}

#cloud_1 img {
	width: 50%;
}

@media(max-width:950px) {
	#cloud {
		padding: 80px 0px;
	}

	#cloud>img {
		width: 600px;
	}

	#cloud_1 {
		width: 600px;
	}

	#cloud_1 img {
		width: 50%;
	}
}

@media(max-width:650px) {
	#cloud {
		padding: 60px 0px;
	}

	#cloud>img {
		width: 95%;
	}

	#cloud_1 {
		width: 95%;
	}

	#cloud_1 img {
		width: 80%;
	}
}

@media(max-width:400px) {
	#cloud {
		padding: 40px 0px;
	}

	#cloud>img {
		width: 95%;
	}

	#cloud_1 {
		width: 95%;
	}

	#cloud_1 img {
		width: 95%;
	}
}

#introduce {
	background: #eff9ff;
	padding: 80px 0px;
}

#introduce h2 {
	width: 200px;
	color: #ffffff;
	background: #1e7f8c;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	border-radius: 4px;
	box-shadow: 4px 4px 0px #1e7f8c60;
	padding: 5px 0px;
	margin: 60px auto 40px auto;
}

#introduce_1 {
	width: 1200px;
	margin: 0px auto;
	flex-wrap: wrap;
	display: flex;
}

#introduce_1 div {
	width: 20%;
	margin: 0px auto;
}

#introduce_1 div i {
	width: 70px;
	height: 70px;
	color: #ffffff;
	background: #1e7f8c;
	font-size: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0px auto;
	display: flex;
}

#introduce_1 div h3 {
	width: 80px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 1px;
	border-bottom: 3px solid #1e7f8c;
	margin: 10px auto;
}

#introduce_1 div h4 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
}

#introduce_2 {
	width: 1200px;
	margin: 0px auto;
	flex-wrap: wrap;
	display: flex;
}

#introduce_2 table {
	width: 100%;
	border-collapse: collapse;
}

#introduce_2 table tr td {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	padding: 10px 2px;
}

#introduce_2 .border1 {
	border-bottom: 2px solid #1e7f8c;
	border-right: 2px solid #1e7f8c;
}

#introduce_2 .border2 {
	border-bottom: 2px solid #1e7f8c;
}

#introduce_2 .border3 {
	border-right: 2px solid #1e7f8c;
}

#introduce_2 .td1 {
	color: #1e7f8c;
}

.introduce_br1 {
	display: none;
}

@media(max-width:1250px) {
	#introduce {
		padding: 80px 0px;
	}

	#introduce h2 {
		width: 180px;
		font-size: 24px;
		font-weight: 500;
		box-shadow: 3px 3px 0px #1e7f8c60;
		padding: 5px 0px;
		margin: 60px auto 40px auto;
	}

	#introduce_1 {
		width: 900px;
	}

	#introduce_1 div {
		width: 20%;
	}

	#introduce_1 div i {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}

	#introduce_1 div h3 {
		width: 80px;
		font-size: 20px;
		font-weight: 500;
		border-bottom: 3px solid #1e7f8c;
		margin: 10px auto;
	}

	#introduce_1 div h4 {
		font-size: 18px;
		font-weight: 500;
	}

	#introduce_2 {
		width: 900px;
	}

	#introduce_2 table {
		width: 100%;
	}

	#introduce_2 table tr td {
		font-size: 18px;
		font-weight: 500;
		padding: 10px 2px;
	}

	#introduce_2 table tr td:nth-child(1) {
		width: 10%;
	}

	#introduce_2 table tr td:nth-child(2) {
		width: 25%;
	}

	#introduce_2 table tr td:nth-child(3) {
		width: 20%;
	}

	#introduce_2 table tr td:nth-child(4) {
		width: 45%;
	}

	#introduce_2 .border1 {
		border-bottom: 2px solid #1e7f8c;
		border-right: 2px solid #1e7f8c;
	}

	#introduce_2 .border2 {
		border-bottom: 2px solid #1e7f8c;
	}

	#introduce_2 .border3 {
		border-right: 2px solid #1e7f8c;
	}
}

@media(max-width:950px) {
	#introduce {
		padding: 80px 0px;
	}

	#introduce h2 {
		width: 180px;
		font-size: 24px;
		font-weight: 500;
		box-shadow: 3px 3px 0px #1e7f8c60;
		padding: 5px 0px;
		margin: 60px auto 40px auto;
	}

	#introduce_1 {
		width: 600px;
	}

	#introduce_1 div {
		width: 20%;
	}

	#introduce_1 div i {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}

	#introduce_1 div h3 {
		width: 80px;
		font-size: 20px;
		font-weight: 500;
		border-bottom: 3px solid #1e7f8c;
		margin: 10px auto;
	}

	#introduce_1 div h4 {
		font-size: 18px;
		font-weight: 500;
	}

	#introduce_2 {
		width: 600px;
	}

	#introduce_2 table {
		width: 100%;
	}

	#introduce_2 table tr td {
		font-size: 18px;
		font-weight: 500;
		padding: 10px 2px;
	}

	#introduce_2 table tr td:nth-child(1) {
		width: 12%;
	}

	#introduce_2 table tr td:nth-child(2) {
		width: 32%;
	}

	#introduce_2 table tr td:nth-child(3) {
		width: 24%;
	}

	#introduce_2 table tr td:nth-child(4) {
		width: 32%;
	}

	#introduce_2 .border1 {
		border-bottom: 2px solid #1e7f8c;
		border-right: 2px solid #1e7f8c;
	}

	#introduce_2 .border2 {
		border-bottom: 2px solid #1e7f8c;
	}

	#introduce_2 .border3 {
		border-right: 2px solid #1e7f8c;
	}
}

@media(max-width:650px) {
	#introduce {
		padding: 60px 0px;
	}

	#introduce h2 {
		width: 180px;
		font-size: 24px;
		font-weight: 500;
		box-shadow: 3px 3px 0px #1e7f8c60;
		padding: 5px 0px;
		margin: 60px auto 40px auto;
	}

	#introduce_1 {
		width: 95%;
	}

	#introduce_1 div {
		width: 40%;
		margin: 0px auto 40px auto;
	}

	#introduce_1 div i {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}

	#introduce_1 div h3 {
		width: 80px;
		font-size: 20px;
		font-weight: 500;
		border-bottom: 3px solid #1e7f8c;
		margin: 10px auto;
	}

	#introduce_1 div h4 {
		font-size: 18px;
		font-weight: 500;
	}

	#introduce_2 {
		width: 95%;
	}

	#introduce_2 table {
		width: 100%;
	}

	#introduce_2 table tr td {
		font-size: 18px;
		font-weight: 500;
		padding: 10px 2px;
	}

	#introduce_2 table tr td:nth-child(1) {
		width: 20%;
	}

	#introduce_2 table tr td:nth-child(2) {
		width: 24%;
	}

	#introduce_2 table tr td:nth-child(3) {
		width: 24%;
	}

	#introduce_2 table tr td:nth-child(4) {
		width: 32%;
	}

	#introduce_2 .border1 {
		border-bottom: 2px solid #1e7f8c;
		border-right: 2px solid #1e7f8c;
	}

	#introduce_2 .border2 {
		border-bottom: 2px solid #1e7f8c;
	}

	#introduce_2 .border3 {
		border-right: 2px solid #1e7f8c;
	}

	.introduce_br1 {
		display: inline;
	}
}

@media(max-width:400px) {
	#introduce {
		padding: 60px 0px;
	}

	#introduce h2 {
		width: 140px;
		font-size: 20px;
		font-weight: 500;
		box-shadow: 2px 2px 0px #1e7f8c60;
		padding: 5px 0px;
		margin: 60px auto 40px auto;
	}

	#introduce_1 {
		width: 95%;
	}

	#introduce_1 div {
		width: 40%;
		margin: 0px auto 40px auto;
	}

	#introduce_1 div i {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	#introduce_1 div h3 {
		width: 80px;
		font-size: 18px;
		font-weight: 500;
		border-bottom: 3px solid #1e7f8c;
		margin: 8px auto;
	}

	#introduce_1 div h4 {
		font-size: 16px;
		font-weight: 500;
	}

	#introduce_2 {
		width: 95%;
	}

	#introduce_2 table {
		width: 100%;
	}

	#introduce_2 table tr td {
		font-size: 16px;
		font-weight: 500;
		padding: 10px 2px;
	}

	#introduce_2 table tr td:nth-child(1) {
		width: 20%;
	}

	#introduce_2 table tr td:nth-child(2) {
		width: 26%;
	}

	#introduce_2 table tr td:nth-child(3) {
		width: 24%;
	}

	#introduce_2 table tr td:nth-child(4) {
		width: 30%;
	}

	#introduce_2 .border1 {
		border-bottom: 2px solid #1e7f8c;
		border-right: 2px solid #1e7f8c;
	}

	#introduce_2 .border2 {
		border-bottom: 2px solid #1e7f8c;
	}

	#introduce_2 .border3 {
		border-right: 2px solid #1e7f8c;
	}

	.introduce_br1 {
		display: inline;
	}
}

#question {
	background: #ffffff;
	padding: 80px 0px;
}

.question_1 {
	width: 1200px;
	margin: 60px auto 0px auto;
	flex-wrap: wrap;
	display: flex;
}

.question_1 div:nth-child(1) {
	width: 20%;
}

.question_1 div:nth-child(2) {
	width: calc(80% - 40px);
	padding: 10px 20px 0px 20px;
}

.question_1 img {
	width: 100%;
}

.question_1 h2 {
	color: #186acf;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 1px;
	border-left: 6px solid #186acf;
	padding: 0px 0px 0px 6px;
	margin: 0px 0px 10px 0px;
}

.question_1 h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
}

.question_1 h3 span {
	color: #ffffff;
	background: #ea3232;
	letter-spacing: 1px;
	border-radius: 4px;
	padding: 0px 4px;
	margin: 0px 4px 0px 0px;
}

.question_1 a {
	color: #ffffff;
	background: #ea3232;
	border-radius: 4px;
	padding: 2px 5px;
	margin: 0px 5px;
	cursor: pointer;
	transition: background 0.2s;
}

.question_1 a i {
	margin: 0px 5px 0px 0px;
}

.question_1 a:hover {
	background: #f76f00;
}

#question>a {
	width: 240px;
	position: relative;
	color: #ea3232;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	padding: 15px 0px;
	margin: 40px auto 0px auto;
	display: block;
	overflow: hidden;
}

#question>a:hover {
	color: #ffffff;
	background: #ea3232;
	transition: 0.4s 0.8s;
}

#question>a::before {
	content: '';
	top: 0px;
	left: 0px;
	width: 50%;
	height: 50%;
	position: absolute;
	border-width: 3px 0px 0px 3px;
	border-style: solid;
	border-color: #ea3232;
	transition: 0.8s;
}

#question>a::after {
	content: '';
	bottom: 0px;
	right: 0px;
	width: 50%;
	height: 50%;
	position: absolute;
	border-width: 0px 3px 3px 0px;
	border-style: solid;
	border-color: #ea3232;
	transition: 0.8s;
}

#question>a:hover::before, #question>a:hover::after {
	width: 100%;
	height: 100%;
}

.question_1:nth-child(odd) div:nth-child(1) {
	order: 2;
}

.question_1:nth-child(odd) div:nth-child(2) {
	order: 1;
}

@media(max-width:1250px) {
	#question {
		padding: 80px 0px;
	}

	.question_1 {
		width: 900px;
		margin: 60px auto 0px auto;
	}

	.question_1 div:nth-child(1) {
		width: 25%;
	}

	.question_1 div:nth-child(2) {
		width: calc(75% - 40px);
		padding: 10px 20px 0px 20px;
	}

	.question_1 h2 {
		font-size: 20px;
		font-weight: 500;
		border-left: 4px solid #186acf;
		padding: 0px 0px 0px 6px;
		margin: 0px 0px 10px 0px;
	}

	.question_1 h3 {
		font-size: 18px;
		font-weight: 500;
		line-height: 1.6;
	}

	.question_1 h3 span {
		padding: 0px 4px;
		margin: 0px 4px 0px 0px;
	}

	.question_1 a {
		padding: 2px 5px;
		margin: 0px 5px;
	}

	.question_1 a i {
		margin: 0px 5px 0px 0px;
	}

	#question>a {
		width: 240px;
		font-size: 20px;
		font-weight: 500;
		padding: 15px 0px;
		margin: 40px auto 0px auto;
	}

	#question>a::before {
		border-width: 3px 0px 0px 3px;
	}

	#question>a::after {
		border-width: 0px 3px 3px 0px;
	}

	.question_1:nth-child(odd) div:nth-child(1) {
		order: 2;
	}

	.question_1:nth-child(odd) div:nth-child(2) {
		order: 1;
	}
}

@media(max-width:950px) {
	#question {
		padding: 80px 0px;
	}

	.question_1 {
		width: 600px;
		margin: 60px auto 0px auto;
	}

	.question_1 div:nth-child(1) {
		width: 30%;
	}

	.question_1 div:nth-child(2) {
		width: calc(70% - 40px);
		padding: 10px 20px 0px 20px;
	}

	.question_1 h2 {
		font-size: 20px;
		font-weight: 500;
		border-left: 4px solid #186acf;
		padding: 0px 0px 0px 6px;
		margin: 0px 0px 10px 0px;
	}

	.question_1 h3 {
		font-size: 18px;
		font-weight: 500;
		line-height: 1.6;
	}

	.question_1 h3 span {
		padding: 0px 4px;
		margin: 0px 4px 0px 0px;
	}

	.question_1 a {
		padding: 2px 5px;
		margin: 0px 5px;
	}

	.question_1 a i {
		margin: 0px 5px 0px 0px;
	}

	#question>a {
		width: 240px;
		font-size: 20px;
		font-weight: 500;
		padding: 15px 0px;
		margin: 40px auto 0px auto;
	}

	#question>a::before {
		border-width: 3px 0px 0px 3px;
	}

	#question>a::after {
		border-width: 0px 3px 3px 0px;
	}

	.question_1:nth-child(odd) div:nth-child(1) {
		order: 2;
	}

	.question_1:nth-child(odd) div:nth-child(2) {
		order: 1;
	}
}

@media(max-width:650px) {
	#question {
		padding: 60px 0px;
	}

	.question_1 {
		width: 95%;
		margin: 60px auto 0px auto;
	}

	.question_1 div:nth-child(1) {
		width: 100%;
	}

	.question_1 div:nth-child(2) {
		width: calc(100% - 0px);
		padding: 10px 0px 0px 0px;
	}

	.question_1 h2 {
		font-size: 20px;
		font-weight: 500;
		border-left: 4px solid #186acf;
		padding: 0px 0px 0px 6px;
		margin: 0px 0px 10px 0px;
	}

	.question_1 h3 {
		font-size: 18px;
		font-weight: 500;
		line-height: 1.6;
	}

	.question_1 h3 span {
		padding: 0px 4px;
		margin: 0px 4px 0px 0px;
	}

	.question_1 a {
		padding: 2px 5px;
		margin: 0px 5px;
	}

	.question_1 a i {
		margin: 0px 5px 0px 0px;
	}

	#question>a {
		width: 240px;
		font-size: 20px;
		font-weight: 500;
		padding: 15px 0px;
		margin: 40px auto 0px auto;
	}

	#question>a::before {
		border-width: 3px 0px 0px 3px;
	}

	#question>a::after {
		border-width: 0px 3px 3px 0px;
	}

	.question_1:nth-child(odd) div:nth-child(1) {
		order: 1;
	}

	.question_1:nth-child(odd) div:nth-child(2) {
		order: 2;
	}
}

@media(max-width:400px) {
	#question {
		padding: 60px 0px;
	}

	.question_1 {
		width: 95%;
		margin: 60px auto 0px auto;
	}

	.question_1 div:nth-child(1) {
		width: 100%;
	}

	.question_1 div:nth-child(2) {
		width: calc(100% - 0px);
		padding: 10px 0px 0px 0px;
	}

	.question_1 h2 {
		font-size: 18px;
		font-weight: 500;
		border-left: 4px solid #186acf;
		padding: 0px 0px 0px 6px;
		margin: 0px 0px 10px 0px;
	}

	.question_1 h3 {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.6;
	}

	.question_1 h3 span {
		padding: 0px 4px;
		margin: 0px 4px 0px 0px;
	}

	.question_1 a {
		padding: 2px 5px;
		margin: 0px 5px;
	}

	.question_1 a i {
		margin: 0px 5px 0px 0px;
	}

	#question>a {
		width: 180px;
		font-size: 18px;
		font-weight: 500;
		padding: 10px 0px;
		margin: 40px auto 0px auto;
	}

	#question>a::before {
		border-width: 2px 0px 0px 2px;
	}

	#question>a::after {
		border-width: 0px 2px 2px 0px;
	}

	.question_1:nth-child(odd) div:nth-child(1) {
		order: 1;
	}

	.question_1:nth-child(odd) div:nth-child(2) {
		order: 2;
	}
}

#good {
	background: #eff9ff;
	padding: 80px 0px;
}

#good_1 {
	width: 1200px;
	margin: 60px auto 0px auto;
	flex-wrap: wrap;
	display: flex;
}

#good_1 div {
	width: 220px;
	margin: 0px auto 40px auto;
}

#good_1 div img {
	width: 160px;
	margin: 0px auto;
	display: block;
}

#good_1 div h2 {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1px;
	margin: 10px 0px 0px 0px;
}

#good_1 div h2 span {
	font-size: 18px;
}

@media(max-width:1250px) {
	#good {
		padding: 80px 0px;
	}

	#good_1 {
		width: 900px;
		margin: 60px auto 0px auto;
	}

	#good_1 div {
		width: 180px;
		margin: 0px auto 40px auto;
	}

	#good_1 div img {
		width: 120px;
	}

	#good_1 div h2 {
		font-size: 18px;
		font-weight: 500;
		margin: 10px 0px 0px 0px;
	}

	#good_1 div h2 span {
		font-size: 16px;
	}
}

@media(max-width:950px) {
	#good {
		padding: 80px 0px;
	}

	#good_1 {
		width: 600px;
		margin: 60px auto 0px auto;
	}

	#good_1 div {
		width: 180px;
		margin: 0px auto 40px auto;
	}

	#good_1 div img {
		width: 120px;
	}

	#good_1 div h2 {
		font-size: 18px;
		font-weight: 500;
		margin: 10px 0px 0px 0px;
	}

	#good_1 div h2 span {
		font-size: 16px;
	}
}

@media(max-width:650px) {
	#good {
		padding: 60px 0px;
	}

	#good_1 {
		width: 95%;
		margin: 60px auto 0px auto;
	}

	#good_1 div {
		width: 180px;
		margin: 0px auto 40px auto;
	}

	#good_1 div img {
		width: 120px;
	}

	#good_1 div h2 {
		font-size: 18px;
		font-weight: 500;
		margin: 10px 0px 0px 0px;
	}

	#good_1 div h2 span {
		font-size: 16px;
	}
}

@media(max-width:400px) {
	#good {
		padding: 60px 0px;
	}

	#good_1 {
		width: 95%;
		margin: 60px auto 0px auto;
	}

	#good_1 div {
		width: 50%;
		margin: 0px auto 40px auto;
	}

	#good_1 div img {
		width: 100px;
	}

	#good_1 div h2 {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2;
		margin: 10px 0px 0px 0px;
	}

	#good_1 div h2 span {
		font-size: 14px;
	}
}

#date {
	background: url(../img/datebg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 120px 0px 80px 0px;
}

#date_1 {
	width: 800px;
	position: relative;
	border: 3px solid #00b7ff;
	margin: 0px auto;
	margin-bottom: 60px;
	padding: 80px 0px;
	transition: border 0.2s;
}

#date_1 h1 {
	color: #ffffff;
	font-size: 50px;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 40px;
}

#date_1 h2 {
	color: #ffffff;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1px;
}

#date_1 a {
	top: 100%;
	left: 50%;
	width: 240px;
	transform: translate(-50%, -50%);
	position: absolute;
	color: #ffffff;
	background: #00b7ff;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	border-radius: 100px;
	transition: background 0.2s;
}

#date_1:hover {
	border-color: #ffd400;
}

#date_1:hover a {
	background: #ffd400;
}

@media(max-width:950px) {
	#date {
		padding: 120px 0px 80px 0px;
	}

	#date_1 {
		width: 550px;
		border: 3px solid #00b7ff;
		margin-bottom: 60px;
		padding: 80px 0px;
	}

	#date_1 h1 {
		font-size: 40px;
		font-weight: bold;
		margin-bottom: 15px;
	}

	#date_1 h2 {
		font-size: 24px;
		font-weight: 500;
	}

	#date_1 a {
		width: 180px;
		font-size: 24px;
		font-weight: 500;
		padding: 2px 0px;
	}
}

@media(max-width:650px) {
	#date {
		padding: 100px 0px 60px 0px;
	}

	#date_1 {
		width: calc(90% - 4px);
		border: 2px solid #00b7ff;
		margin-bottom: 60px;
		padding: 60px 0px;
	}

	#date_1 h1 {
		font-size: 32px;
		font-weight: bold;
		margin-bottom: 15px;
	}

	#date_1 h2 {
		font-size: 20px;
		font-weight: 500;
	}

	#date_1 a {
		width: 140px;
		font-size: 20px;
		font-weight: 500;
		padding: 2px 0px;
	}
}

@media(max-width:400px) {
	#date {
		padding: 80px 0px 40px 0px;
	}

	#date_1 {
		width: calc(90% - 4px);
		border: 2px solid #00b7ff;
		margin-bottom: 60px;
		padding: 40px 0px;
	}

	#date_1 h1 {
		font-size: 28px;
		font-weight: bold;
		margin-bottom: 10px;
	}

	#date_1 h2 {
		font-size: 18px;
		font-weight: 500;
	}

	#date_1 a {
		width: 120px;
		font-size: 18px;
		font-weight: 500;
		padding: 2px 0px;
	}
}

#phone {
	right: 20px;
	bottom: 20px;
	position: fixed;
	color: #0b3260;
	background: #ffffff;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	border-radius: 100%;
	padding: 8px 16px;
	transition: 0.4s;
	z-index: 101;
}

#phone i {
	font-size: 32px;
}

#phone:hover {
	bottom: 28px;
	color: #ffffff;
	background: #0b3260;
	transition: 0.4s;
}

@media(max-width:650px) {
	#phone {
		right: 10px;
		bottom: 10px;
		font-size: 14px;
		font-weight: 500;
		padding: 6px 12px;
	}

	#phone i {
		font-size: 28px;
	}

	#phone:hover {
		bottom: 18px;
		transition: 0.4s;
	}
}

.iframe {
	width: 100%;
	position: relative;
	background: #99ccff;
	padding: 7vh 0px;
	z-index: 1;
}

.iframe .ifr {
	width: 95%;
	max-width: 1000px;
	background: #ffffff;
	border-radius: 30px;
	margin: 2vh auto;
}

.iframe .imgbox {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

.iframe .imgbox img {
	margin: 1vh 1vw;
	transition: 0.2s;
}

.iframe .imgbox img:hover {
	transform: rotate(-3deg);
}

@media all and (max-width:767px) {
	.iframe .iframe-title img {
		width: 65%;
	}
}

footer {
	bottom: 0px;
	position: relative;
	color: #ffffff;
	background: #0066cc;
	line-height: 1.8;
	padding: 40px 0px;
	z-index: 1;
}

#footer_1 {
	width: 100%;
	margin: 0px auto;
}

#footer_1 div {
	width: 500px;
	text-align: center;
	margin: 0px auto;
}

footer h1 {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}

footer h2 {
	font-size: 54px;
	font-weight: bold;
	text-align: center;
}

footer h3 {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 10px 0px;
	margin: 10px 0px;
}

footer a, footer a:hover {
	color: #ffffff;
}

footer i {
	font-size: 40px;
	text-align: center;
	margin: 12px 12px;
}

footer h4 {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
}

.footerbr {
	display: none;
}

@media(max-width:1000px) {
	footer h4 span {
		display: none;
	}

	.footerbr {
		display: inline;
	}
}

@media(max-width:600px) {
	#footer_1 {
		width: 98%;
	}

	#footer_1 div {
		width: 100%;
	}

	footer h1 {
		font-size: 22px;
		font-weight: 500;
	}

	footer h2 {
		font-size: 36px;
	}

	footer h3 {
		font-size: 22px;
		font-weight: 500;
	}

	footer h4 {
		font-size: 15px;
		font-weight: 500;
	}
}