@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

*::after {
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

body {
	font-size: 12px;
	font-family: Arial, 微软雅黑;
	color: #222;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

a:focus {
	text-decoration: none;
	outline: none;
}

a:hover {
	color: inherit;
}

img {
	border: none;
	max-width: 100%;
	max-height: 100%;
}




:root {
	--theme-color: #00538d;
	--theme-touch-color: #005c9d;
}




.img_box {
	font-size: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.img_box img {
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.img_box:hover img {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

.img_box2 {
	font-size: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}




.img-cover {
	font-size: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.img-cover:hover img {
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.img-cover2 {
	font-size: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-cover2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}




.main,
.wrapper {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

.wrapper {
	display: flex;
}




html,
body {
	min-width: 1300px;
}




.icon {
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}




.banner,
.inner-banner {
	font-size: 0;
}

.banner img,
.inner-banner img {
	width: 100%;
}




.swiper-pagination-bullet,
.swiper-button-prev,
.swiper-button-next {
	opacity: 1 !important;
	border: none;
	outline: none;
}

.swiper .swiper-pagination {
	font-size: 0;
	bottom: 0;
}




.around-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.around-btn .swiper-button-prev,
.around-btn .swiper-button-next,
.around-btn .swiper-pagination,
.around-btn .swiper-scrollbar {
	position: static;
}

.around-btn .swiper-button-next {
	margin-left: 15px;
}




.omit-1,
.omit-2,
.omit-3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.omit-1 {
	line-clamp: 1;
	-webkit-line-clamp: 1;
}

.omit-2 {
	line-clamp: 2;
	-webkit-line-clamp: 2;
}

.omit-3 {
	line-clamp: 3;
	-webkit-line-clamp: 3;
}




.page {
	text-align: center;
	padding: 40px 0;
}

.page .pagination {
	display: inline-block;
}

.page .pagination li {
	color: #222;
	font-size: 16px;
	line-height: 35px;
	width: 35px;
	height: 35px;
	float: left;
	margin: 0 7px;
	transition: all .4s;
	border-radius: 50%;
}

.page .pagination li span,
.page .pagination li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 3px;
}

.page .pagination li.active,
.page .pagination li:hover {
	color: #fff;
	background: var(--theme-color);
}




.navbar {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

.navbar li {
	color: #666;
	font-size: 16px;
	text-align: center;
	line-height: 50px;
	transition: all .4s;
	background: #f4f4f4;
}

.navbar li.active,
.navbar li:hover {
	color: #fff;
	background: var(--theme-color);
}

.navbar li a {
	display: inline-block;
	width: 100%;
	height: 100%;
}




.breadcrumbs {
	display: flex;
	align-items: center;
}

.breadcrumbs li {
	color: #888;
	font-size: 15px;
	line-height: 1;
	position: relative;
}

.breadcrumbs li:not(:last-child) {
	margin-right: 20px;
}

.breadcrumbs li:not(:last-child)::after {
	content: '/';
	width: 4px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -12px;
}

.breadcrumbs li:hover a {
	text-decoration: underline;
}




.grid-columns-2,
.grid-columns-3,
.grid-columns-4 {
	display: grid;
}

.grid-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}




form {
	width: 100%;
	display: block;
}

input,
select,
textarea,
button {
	width: 100%;
	border: none;
	outline: none;
	display: block;
	border-radius: 0;
	background: transparent;
}

textarea {
	font-family: 'Arial';
	resize: none;
	overflow: hidden;
}

button {
	cursor: pointer;
}

form img {
	cursor: pointer;
}




.hd {
	display: flex;
}

.hd .common-more {
	margin-left: auto;
}



.common-more {
	color: #222;
	font-size: 18px;
	line-height: 30px;
	display: inline-block;
	height: 30px;
	transition: all .4s;
	border-bottom: 1px solid #1b1b1b;
}

.common-more:hover {
	color: var(--theme-color);
	border-bottom: 1px solid var(--theme-color);
}




/* Text Style Area */
.theme-title {
	color: #222;
}

.theme-title h2 {
	font-size: 42px;
}

.theme-title p {
	color: #888;
	font-size: 16px;
	margin-top: 20px;
}

.theme-title i {
	font-size: 18px;
	display: block;
	margin-bottom: 10px;
}




.theme-article {
	font-size: 18px;
	line-height: 26px;
}