@font-face {
	font-family: 'Montserrat-Bold';
	src: url('../font/Montserrat-Bold-3.otf');
}
@font-face {
	font-family: 'Montserrat-Regular';
	src: url('../font/Montserrat-Regular-8.otf');
}
@font-face {
	font-family: 'Montserrat-Light';
	src: url('../font/Montserrat-Light-6.otf');
}
@font-face {
	font-family: 'MiSans-Regular';
	src: url('../font/MiSans-Regular.ttf');
}
@font-face {
	font-family: 'Poppins-Medium';
	src: url('../font/Poppins-Medium.otf');
}
@font-face {
	font-family: 'Poppins-Bold';
	src: url('../font/Poppins-Bold.otf');
}
@font-face {
	font-family: 'Poppins-Regular';
	src: url('../font/Poppins-Regular.otf');
}
@font-face {
	font-family: 'Poppins-Light';
	src: url('../font/Poppins-Light.otf');
}
@font-face {
	font-family: 'Anton-Regular';
	src: url('../font/Anton-Regular.ttf');
}




/* 瀛椾綋 */


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-size: .18rem;*/
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	/*font-family: Microsoft YaHei, Microsoft YaHei;*/
	/* font-weight: 400; */
	/*color: #333; */
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* For some Androids */
	/* 英文开启 */
	/*word-wrap: break-word !important;*/
	/*word-break: normal !important;*/
}

body{
    font-size: .18rem;
    color: #333;
    word-wrap: break-word !important;
	word-break: normal !important;
}
@media screen and (max-width: 769px) {
    body{
        font-size: 14px;
    }
}
.page_wrap {
	padding-top: 1.1rem;
	background: url('../img/bg.png') rgba(251, 251, 251, 1) no-repeat bottom center;
	background-size: contain;
	padding-bottom: 0.87rem;
}

:root {
	--c: #1C488F;
	--s_tran: 0.3s ease-in-out;
	--l_tran: 0.5s ease-in-out;
}

.main {
	max-width: 17rem;
	width: 94%;
	margin: 0 auto;
}

.flex_box {
	display: flex;
}
.hc_flex_box {
	display: flex;
	align-items: flex-start;
}

[class*="fb"] {
	flex: 1;
	margin-left: 0;
	margin-right: 0;
	min-width: 0;
}

.flex_list {
	display: flex;
	flex-wrap: wrap;
}

.lmx_h1 {
	width: 0px;
	height: 0px;
	margin: 0;
	text-indent: -9999em;
}

html {
	font-size: 100px;
	overflow-x: hidden;
}

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

span {
	color: inherit;
	font-size: inherit;
}

ul {
	list-style: none;
}

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

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

hr {
	border-top: 0.01rem solid rgba(222, 222, 222, 1);
	margin-top: 0.47rem;
	margin-bottom: 0.4rem;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*多行溢出*/
.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;
}




/* 水波纹效果 */
.btn-ripple {
	vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
	opacity: 1;
	position: relative;
	overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
	animation: ani_ripple 0.75s;
	z-index: 1;
	content: "";
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
	0% {
		background: rgba(0, 0, 0, 0.25);
		transform: translateX(-50%) translateY(-50%) scale(0);
	}

	to {
		background: transparent;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}




/* 内页banner */
.banner_html{
    width: 100%;
    height: 6rem;
    position: relative;
    display: flex;
    align-items: center;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.banner_html::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:#00223C;
    opacity: 0.2;
}
.banner_html .banner_title{
    position: relative;
    margin-bottom: 0.1rem;
}
.banner_html .banner_title h2{
    font-family: Montserrat-Bold;
    font-weight: bold;
    font-size: 0.45rem;
    color: #FFFFFF;
}
.banner_html .banner_title p{
    font-family: Montserrat-Bold;
    font-weight: bold;
    font-size: 0.45rem;
    color: rgba(255,255,255,0);
    margin-bottom: 0.08rem;
    position: relative;
    text-stroke: 0.01rem rgba(255,255,255,0.2);
    -webkit-text-stroke: 0.01rem rgba(255,255,255,0.2);
    -moz-text-stroke: 0.01rem rgba(255,255,255,0.2);
    -o-text-stroke: 0.01rem rgba(255,255,255,0.2);
    position: absolute;
	top: 0.02rem;
	left: 0.03rem;
}
.banner_html p{
    font-family: Poppins-Light;
    font-weight: 300;
    font-size: 0.18rem;
    color: #FFFFFF;
    position: relative;
}





/* 公共面包屑 */
.breadcrumb{
    width: 100%;
    height: 0.8rem;
    border-bottom: 0.01rem solid #E6E6E6;
	display: flex;
	align-items: center;
}
.breadcrumb .main{
	display: flex;
	align-items: center;
	justify-content: space-between
}
.breadcrumb .position{
	display: flex;
	align-items: center;
	column-gap: 0.07rem;
	padding-left: 0.22rem;
	position: relative;
    max-width: 40%;
}
.breadcrumb .position img{
	width: 0.15rem;
	height: 0.13rem;
	object-fit: contain;
	position: absolute;
	left: 0;
	top: 0.06rem;
}
.breadcrumb .position a,
.breadcrumb .position span{
	font-family: Poppins-Light;
	font-weight: 300;
	font-size: 0.16rem;
	color: #A5A5A5;
	display: contents;
}
.breadcrumb .bread_txt{
	display: flex;
	align-items: center;
	column-gap: 0.6rem;
} 
.breadcrumb .bread_txt .bread_li{
	/*min-width: 3rem;*/
    display: flex;
    justify-content: flex-end;
}
.breadcrumb .bread_txt .bread_li a{
	width: fit-content;
	font-family: Poppins-Regular;
	font-weight: 400;
	font-size: 0.18rem;
	color: #000000;
	position: relative;
}
.breadcrumb .bread_txt .bread_li a::before{
	content: "";
	position: absolute;
	bottom: -0.26rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0%;
	height: 0.02rem;
	background-color: #0068B7;
	transition: width 0.3s ease-in-out;
}
.breadcrumb .bread_txt .bread_li.act a::before,
.breadcrumb .bread_txt .bread_li a:hover::before{
	width: 100%;
}
.breadcrumb .bread_txt .bread_li.act a,
.breadcrumb .bread_txt .bread_li a:hover{
	font-weight: bold;
	color: #0068B7;
}



/* 栏目样式 */
.class_name{
    position: relative;
    width: fit-content;
}
.class_name .class_title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Montserrat-Bold;
    font-weight: bold;
    font-size: 0.45rem;
    color: #000000;
    white-space: nowrap;
}
.class_name .class_btitle{
    font-family: Anton-Regular;
    font-weight: 400;
    font-size: 0.65rem;
    color: #0068B7;
    opacity: 0.07;
    white-space: nowrap;
}





/* hover-图片放大1.1 */
.scale_box {
	display: block;
	width: auto;
	overflow: hidden;
}

.scale_box .scale_img {
	width: 100%;
	height: 100%;
	transition: var(--s_tran);
	cursor: pointer;
	object-fit: cover;
}

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


/* hover-图片旋转向上位移 */
.rotate_box {
	display: block;
	width: auto;
	overflow: hidden;
}

.rotate_box .rotate_img {
	transition: var(--s_tran);
	object-fit: cover;
}

.hover_box:hover .rotate_img {
	transform: rotateY(180deg) translateY(-0.1rem);
}




/* 页码 */
.page_box {
	width: fit-content;
	margin: 1rem auto 0;
	display: flex;
	align-items: center;
	column-gap: 0.05rem;
}
.page_box .pages {
	display: flex;
	align-items: center;
	column-gap: 0.05rem;
}
.page_box .pages .item,
.page_box .btn{
	width: 0.3rem;
	height: 0.3rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #E6E6E6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 0.16rem;
	color: #9A9A9A;
	cursor: pointer;
	overflow: hidden;
}
.page_box .pages .item:hover,
.page_box .pages .active,
.page_box .btn:hover{
	background: #0068B7;
	color: white;
}
.page_box .pages span{
	border: none !important;
	background: none !important;
	color: #9A9A9A !important;
}
.page_box .btn img {
	height: 0.13rem;
	object-fit: contain;
}
.page_box .btn:hover img{
	filter: brightness(0) invert(1);
}
.page_box .toPage {
	margin-left: 0.08rem;
	display: flex;
	align-items: center;
	font-family: Montserrat-Light;
	font-weight: 300;
	font-size: 0.16rem;
	color: #9A9A9A;
}
.page_box .toPage input {
	width: 0.54rem;
	height: 0.3rem;
	margin: 0 0.12rem 0 0.1rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #E6E6E6;
	outline: none;
	font-family: Montserrat-Light;
	font-weight: 300;
	font-size: 0.16rem;
	color: #9A9A9A;
	text-align: center;
}
.page_box .btn.disabled {
    background-color: #f4f4f5;
    color: #c0c4cc;
    border-color: #f4f4f5;
    cursor: not-allowed;
}
.page_box .btn.disabled:hover img{
	filter: brightness(1) invert(0);
}








.p_button {
    display: flex;
    align-items: center;
    column-gap: 0.54rem;
    border-radius: 0.33rem;
    border: 0.01rem solid #fff;
    width: fit-content;
    height: 0.55rem;
    padding: 0 0.3rem;
    box-sizing: border-box;
    font-family: Poppins-Regular;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
}
.p_button:before{
    content: "";
    position: absolute;
    top: 0.22rem;
    right: 0.33rem;
    width: 0.09rem;
    height: 0.11rem;
    background: url(../img/btn_bg.png) center center / 100% 100%;
    opacity: 0;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.35, 0.13, 0.88, 0.72);
    z-index: -1;
}
.p_button i{
    display: block;
    width: 0.15rem;
    height: 0.18rem;
    background: url(../img/water_icon1.png) center center no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}
.p_button i::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 0.05rem;
    height: 0.06rem;
    background: url(../img/water_icon2.png) center center no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}
.p_button i::before{
    content: '';
    position: absolute;
    right: 0.14rem;
    top: 50%;
    width: 0.4rem;
    height: 0.01rem;
    background: #fff;
    transition: width 1s;
}
.p_button:hover {
    border: 0.01rem solid #0068B7;
}
.p_button:hover::before{
    opacity: 1;
    transform: scale(50);
    transition: transform 1s cubic-bezier(0.35, 0.13, 0.88, 0.72);
}
.p_button:hover i::after{
    filter: brightness(1) invert(0);
}
.p_button:hover i::before{
    width: 0;
}





@media screen and (max-width: 1043px) {
    .p_button{
        height: 46px;
        padding: 0 26px;
        font-size: 16px;
        column-gap: 40px;
        border-radius: 30px;
    }
    .p_button:before{
        top: 22px;
        right: 33px;
        width: 9px;
        height: 11px;
    }
    .p_button i{
        width: 15px;
        height: 18px;
    }
    .p_button i::before{
        width: 35px;
        right: 14px;
        height: 1px;
    }
    .p_button i::after{
        width: 5px;
        height: 6px;
    }
    
    
    
    
    
    .class_name .class_title{
        font-size: 30px;
    }
    .class_name .class_btitle{
        font-size: 42px;
    }
    
    
    .breadcrumb{
        height: auto;
        border-bottom: none;
    }
    .breadcrumb .main{
        flex-wrap: wrap;
        width: 100%;
    }
    .breadcrumb .position{
        border-bottom: 0.01rem solid #E6E6E6;
        width: 94%;
        margin: 0 auto;
        max-width: 94%;
        padding: 15px 0 15px 22px;
        column-gap: 5px;
        flex-wrap: wrap;
    }
    .breadcrumb .position img{
        width: 16px;
        height: 13px;
        top: 18px;
    }
    .breadcrumb .position a, .breadcrumb .position span{
        font-size: 14px;
        display: block;
        width: fit-content;
    }
    .banner_html{
        height: 300px;
        background-size: auto 370px;
    }
    .banner_html .banner_title h2{
        font-size: 38px;
    }
    .banner_html .banner_title p{
        font-size: 38px;
        top: 2px;
        left: 3px;
    }
    .banner_html .banner_title{
        margin-bottom: 10px;
    }
    .banner_html p{
        font-size: 16px;
        max-width: 80%;
    }
    .breadcrumb .bread_txt{
        column-gap: initial;
        justify-content: space-evenly;
        width: 94%;
        margin: 30px auto 0;
    }
    .breadcrumb .bread_txt .bread_li a{
        font-size: 16px;
        padding: 16px 0;
    }
    .breadcrumb .bread_txt .bread_li a::before{
        bottom: 0;
    }
    
    
    
    
    
    .page_box{
        margin: 50px auto 0;
    }
    
    
}


@media screen and (max-width: 769px) {
    .banner_html {
        height: 230px;
        background-size: auto 300px;
    }
    
    
    
    .class_name .class_title{
        font-size: 20px;
    }
    .class_name .class_btitle{
        font-size: 28px;
    }
    
    .breadcrumb .position a, 
    .breadcrumb .position span{
        font-size: 12px;
    }
    .breadcrumb .bread_txt{
        column-gap: 20px;
        overflow-x: auto;
        margin: 15px auto 0;
    }
    .breadcrumb .bread_txt .bread_li a{
        white-space: nowrap;
    }
    
    
    .banner_html .banner_title h2,
    .banner_html .banner_title p{
        font-size: 30px;
    }
    .banner_html p{
        font-size: 14px;
    }
    
    
    
    
    .page_box{
        column-gap: 5px;
        margin: 40px auto 0;
    }
    .page_box .pages{
        column-gap: 5px;
    }
    .page_box .btn img{
        height: 13px;
    }
    .page_box .pages .item, .page_box .btn{
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .page_box .toPage{
        font-size: 16px;
    }
    .page_box .toPage input{
        width: 54px;
        height: 30px;
    }
    
    
    
}
