@font-face {
	font-family: 'kr';
	src: url('../font/Koulen-Regular.ttf');
}

@font-face {
	font-family: 'cr';
	src: url('../font/Catamaran-Regular.ttf');
}

@font-face {
	font-family: 'cm';
	src: url('../font/Catamaran-Medium.ttf');
}

@font-face {
	font-family: 'cb';
	src: url('../font/Catamaran-Bold.ttf');
}

@font-face {
	font-family: 'ceb';
	src: url('../font/Catamaran-ExtraBold.ttf');
}

@font-face {
	font-family: 'csb';
	src: url('../font/Catamaran-SemiBold.ttf');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .16rem;
	font-family: Arial;
	font-weight: 400;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	word-wrap: break-word !important;
	word-break: normal !important;
}

:root {
	--c1: #00549C;
	--c2: #F38011;
}

.main {
	max-width: 14.8rem;
	width: 95%;
	margin: 0 auto;
}

html {
	font-size: 100px;
	overflow-x: auto;
	scroll-behavior: smooth;
}

body {
	/*overflow-x: hidden;*/
	/*overflow-y: hidden;*/
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	display: block;
	width: 100%;
	height: 100%;
}

a:focus {
	outline: none;
}

ul {
	list-style: none;
}

input,
textarea {
	outline: 0;
	border: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	display: block;
}

hr {
	border: none;
}

strong *,
strong,
b {
	font-weight: bold;
}

.text img {
	max-width: 100%;
	width: revert-layer;
	height: revert-layer;
}

.text * {
	font-size: inherit;
}

.text a {
	display: inline;
	text-decoration: underline;
	width: revert-layer;
	height: revert-layer;
	color: revert;
}


/*多行溢出*/
.line1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
}

.line3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
}

.line4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 4;
}

.line5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
}


/* hover-图片放大1.1 */
.scale_box {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}

.scale_box .scale_img {
	width: 100%;
	height: 100%;
	transition: 0.5s;
	cursor: pointer;
	object-fit: cover;
}

.hover_box:hover .scale_img {
	transform: scale(1.1);
}

.header_wrap {
	padding-bottom: 1rem;
}

/* btn */
.btn {
	width: fit-content;
	padding: 0 0.22rem;
	height: 0.4rem;
	border: 0.01rem solid var(--c2);
	border-radius: 0.2rem;
	display: flex;
	align-items: center;
	gap: 0.11rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::after {
	content: '';
	width: 0;
	height: 100%;
	background: var(--c2);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0.2rem;
	transition: 0.3s;
	z-index: -1;
}

.btn p {
	font-family: cr;
	font-size: 0.16rem;
	color: var(--c2);
	transition: 0.3s;
}

.btn img {
	width: 0.14rem;
	height: 0.14rem;
	object-fit: contain;
	transition: 0.3s;
}

.btn:hover::after {
	width: 100%;
}

.btn:hover P {
	color: #fff;
}

.btn:hover img {
	filter: brightness(0) invert(1);
	transform: rotate(90deg);
}

/* title */
.title {
	font-family: ceb;
	font-size: 0.42rem;
	color: #1C1C1C;
	text-align: center;
	padding-bottom: 0.06rem;
	position: relative;
}

.title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 0.54rem;
	height: 0.02rem;
	background: var(--c2);
}

.bannerSwiper{
    height: calc(8rem / 3);
}

/* doc */
.doc_banner {
	height: 4.5rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
	z-index: 1;
}

.doc_banner::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #051727;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.doc_banner .main {
	position: relative;
	height: 100%;
}

.doc_banner_info {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.doc_banner_title {
	font-family: ceb;
	font-size: 0.5rem;
	color: #FFFFFF;
}

.doc_nav {
	display: flex;
	gap: 0.12rem;
}

.doc_nav * {
	white-space: nowrap;
	font-family: cr;
	font-size: 0.16rem;
	color: #FFFFFF;
	width: fit-content;
	height: fit-content;
}

.doc_nav>:last-child {
	color: var(--c2);
}