@font-face {
	font-family: SourceHanSansSC-Bold;
	src: url("../font/SimplifiedChinese/SourceHanSansSC-Bold.otf") format("opentype");
}

@font-face {
	font-family: 'SourceHanSansSC-ExtraLight';
	src: url("../font/SimplifiedChinese/SourceHanSansSC-ExtraLight.otf") format("opentype");
}

@font-face {
	font-family: 'SourceHanSansSC-Heavy';
	src: url("../font/SimplifiedChinese/SourceHanSansSC-Heavy.otf") format("opentype");
}

@font-face {
	font-family: 'SourceHanSansSC-Light';
	src: url("../font/SimplifiedChinese/SourceHanSansSC-Light.otf") format("opentype");
}

@font-face {
	font-family: 'SourceHanSansSC-Medium';
	src: url("../font/SimplifiedChinese/SourceHanSansSC-Medium.otf") format("opentype");
}

@font-face {
	font-family: 'SourceHanSansSC-Normal';
	src: url("../font/SimplifiedChinese/SourceHanSansSC-Normal.otf") format("opentype");
}

@font-face {
	font-family: 'SourceHanSansSC-Regular';
	src: url("../font/SimplifiedChinese/SourceHanSansSC-Regular.otf") format("opentype");
}

html,
body,
#app {
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	background-color: #fafafb;
}
#app{
	padding-top: 162px;
	display: none;
}



* {
	font-family: 'SourceHanSansSC-Normal';
	color: #000000;
	box-sizing: border-box;
}

.max-contain {
	width: 1172px;
	margin: 0 auto;
}

footer,
header {
	min-width: 1070px;
}

.swiper-slide {
	cursor: pointer;
}
.swiper-slide .commercia_list{
	cursor: auto;
}

.background_center {
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.background_center_cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.background_top_cover{
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.zjbjt{
	width: 100%;
	/* height: 905px; */
	z-index: 0;
}
.font_fff {
	color: #ffffff;
}
.bg_fff{
	background-color: #FFFFFF;
}
.noThing{
	height: 1px;
	opacity: 0;
}
.font_000 {
	color: #000000;
}
.width_full{
	width: 100%;
}
/* 文字强制折行 */
.text-break {
	word-break: break-all;
}

/*文字两端对齐方式*/
.text-justify {
	text-align: justify;
	text-justify: distribute-all-lines; // 这行必加，兼容ie浏览器
}

.border-left {
	border-left: 1px solid #909090;
}

.border-bottom {
	border-bottom: 1px solid #909090;
}

.border-right {
	border-right: 1px solid #909090;
}

.border-top {
	border-top: 1px solid #909090;
}

.border {
	border: 1px solid #909090;
}
.align_left{
	text-align: left;
}
.align_right{
	text-align: right;
}
.align_center{
	text-align: center;
}
.border-round {
	border-radius: 50%;
}

.pointer {
	cursor: pointer;
}
.cursorAuto {
	cursor: auto;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.flex-grow {
	flex-grow: 1;
}

.flex_column{
	display: flex;
	flex-direction: column;
}

/*去除a标签下划线*/
a {
	text-decoration: none;
	cursor: pointer;
}

/*去除未被访问的a标签的下划线*/
a:link {
	text-decoration: none;
}

/*去除已经被访问过的a标签的下划线*/
a:visited {
	text-decoration: none;
}

/*去除鼠标悬停时的a标签的下划线*/
a:hover {
	text-decoration: none;
}

/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
	text-decoration: none;
}

/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
	text-decoration: none;
}



/* 翻转动画css start */
.flip-container {
	perspective: 1000;
	-webkit-perspective: 1000px;
	/*父类容器中 perspective 子类允许透视*/
	-moz-perspective: 1000px;
	-ms-perspective: 1000px;
	-o-perspective: 1000px;
	perspective: 1000px;
	/* margin:0px auto; */
	/*  float:left;
  margin-left:20px;
  margin-bottom:20px; */
	/* border:1px solid #fff; */
}

.flip-container:hover .back {
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	z-index: 2;
}

.flip-container:hover .front {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	z-index: 1
}

.flipper {
	transition: transform 0.6s ease-out;
	transition: transform .5s ease-in-out;
	-webkit-transition: transform .5s ease-in-out;
	-moz-transition: transform .5s ease-in-out;
	-ms-transition: transform .5s ease-in-out;
	-o-transition: transform .5s ease-in-out;
	-webkit-transform-style: preserve-3d;
	/*使其子类变换后得以保留 3d转换后的位置*/
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.front,
.back {
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transition: 0.6s ease-out;
	-webkit-transition: .6s ease-out;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	position: absolute;
	top: 0;
	left: 0;
}

.front img,
.back img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.front {
	background-color: red;
	z-index: 2;
	transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
}

.back {
	background-color: aquamarine;
	z-index: 1;
	transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
}

/* 翻转动画css end */



/* 翻页 */
.get_more {
	bottom: 40px;
	width: 100%;
	text-align: center;
}

.pagination_set {
	margin-left: 30px;
}

.pagination_set span {
	font-weight: 400;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.3);
}
.pagination_set .go{
	width: 33px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	margin-left: 10px;
	border: 1px solid #dfdfdf;
	border-radius: 4px;
	font-size: 12px;
	cursor: pointer;
}

.pagination_input {
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #E6E8EB;
	border-radius: 4px;
	margin: 0 8px;
	outline: none !important;
	color: rgba(0, 0, 0, 0.3);
}

.pagination_input:focus-visible {
	outline: none !important;
}

div::-webkit-scrollbar {
	width: 4px;
}

div::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	opacity: 0.2;
	background: fade(@primary-color, 60%);
}

div::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 0;
	background: fade(@primary-color, 30%);
}

/* 轮播按钮 */
.swiper-button-disabled{
	display: none;
}
.swiper_control_next:has( > .swiper-button-disabled), .swiper_control_prev:has( > .swiper-button-disabled){
	display: none;
}

.aboutMatch_right .swiper_control_prev, .aboutMatch_right .swiper_control_next, 
.progressiveTense .swiper_control_prev, .progressiveTense .swiper_control_next{
	 display: block;
}
.swiper_control_next{
	right: -70px;
	top: calc(50% - 30px);
	width: 60px;
	height: 60px;
	cursor: pointer;
}
.swiper_control_prev{
	left: -70px;
	top: calc(50% - 30px);
	width: 60px;
	height: 60px;
}
.aboutMatch_left_title{
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #000000;
	/* margin-bottom: 10px; */
}
.aboutMatch_right .swiper_control_next, .aboutMatch_right .swiper_control_prev, .aboutMatch_right .carousel_control_img{
	width: 36px;
	height: 36px;
}
.aboutMatch_right_mian{
	margin-top: 6px;
}
/* 轮播按钮 */
.bottom_banner{
	height: 40px;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	cursor: pointer;
}
.bottom_banner span{
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFF;
	margin-right: 12px;
}
.bottom_banner img{
	width: 20px;
	height: 20px;
	margin-right: 13px;
}

#app .video_icon{
	height: 40px;
	width: 40px;
	bottom: calc(50% - 20px);
	left: calc(50% - 20px);
	cursor: pointer;
}

/* 轮播首页及其他页 */

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 443px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}


.gallery-wrap .wrap_item{
	flex: 2;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: none;
	transition: flex 0.8s ease;
	/* cursor: pointer; */
	box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.5);
}
.gallery-wrap .wrap_item.wrap_item_active {
  flex: 6;
}
.gallery-wrap .wrap_item::after {
	content: '';
	width: 100%;
	display: block;
	height: 282px;
	background: linear-gradient(360deg, #091B3D 12.77%, rgba(15, 38, 80, 0) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.gallery-wrap .wrap_item .wrap_item_logo{
	/* width: 60px; */
	height: 60px;
	left: 50px;
	z-index: 2;
	top: 270px;
	opacity: 0;
}
.gallery-wrap .wrap_item_info{
	padding: 0 0 40px 30px;
	min-height: 108px;
	bottom: 0;
	z-index: 2;
}
.gallery-wrap .wrap_item_title{
	font-weight: 700;
	font-size: 26px;
	line-height: 40px;
	white-space: nowrap;
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: flex 0.8s ease;
	z-index: 2;
	cursor: pointer;
}
.gallery-wrap .wrap_item_title_short{
	font-weight: 700;
	font-size: 22px;
	line-height: 40px;
	white-space: nowrap;
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: flex 0.8s ease;
	z-index: 2;
	cursor: pointer;
}
.gallery-wrap .wrap_item_text{
	font-weight: 100;
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.8);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: flex 0.8s ease;
	cursor: pointer;
}
.gallery-wrap .wrap_item_active .wrap_item_text{
	padding-right: 50px;
	

	white-space:normal;
	
	width: 100%;
	transition: flex 0.8s ease;
	
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;				
	text-overflow: ellipsis;		
	display: -webkit-box;			
	-webkit-line-clamp: 2;		
	line-clamp: 2;					
	-webkit-box-orient: vertical;	
}
.gallery-wrap .wrap_item_active .wrap_item_info{
	padding-left: 40px;
	transition: flex 0.8s ease;
}
.gallery-wrap .wrap_item_active .wrap_item_title{
	width: 60%;
	transition: flex 0.8s ease;
}


.gallery-wrap .wrap_item_active .wrap_item_logo{
	opacity: 1;
	transition: 0.8s ease;
}


.gallery_line_con{
	position: absolute;
	z-index: 2;
	width: 271px;
	height: 2px;
	left: 40px;
	bottom: 40px;
	background: rgba(217, 217, 217, 0.3);
}
.gallery_line_rate{
	width: 100%;
	position: absolute;
	height: 2px;
	left: 0;
	top: 0px;
	background: #E9DF38;
	transition: flex 0.8s ease;
}

.aboutMatch_right_mian_img{
	width: 100%;
	height: 64px;
	line-height: 64px;
	background-color: #fff;
	border-radius: 8px;
	text-align: center;
}
.aboutMatch_right_mian_img img{
	height: 57px;
	cursor: pointer;
}

/* banner */
.banner{
	margin-top: 60px;
}
.banner img{
	width: 100%;
}
.overflow_hidden{
	overflow: hidden;
}
.swiper-slide_item{
	width: 100%;
	height: 100%;
}
.scale13{
	transition: 0.5s ease;
}
.scale13:hover{
	transform: scale(1.2);
}

.hoverColorWhite:hover{
	color: #fff;
	opacity: 1;
}
.hoverColorInforRed:hover{
    color: #D12927;
    opacity: 1;
	cursor: pointer;
}
.hoverColorInforBold:hover{
    font-weight: 700;
    opacity: 1;
	cursor: pointer;
}
.hoverBgBlackBoxShadow:hover{
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.commercia_item:hover{
	border: 1px solid #D6DAE0 ;
}
.commercia_item img{
	transition: 0.5s ease;
}
.commercia_item:hover img{
	
	transform: scale(1.2);
}
.commercia_item {
	overflow: hidden;
}
.paddingBottom10{
	padding-bottom: 10px;
}
.image_saishi{
	width: 100%;
	height: 278px;
	border-radius: 8px 8px 0 0;
	cursor: pointer;
}
.image_news{
	width: 100%;
	height: 193px;
	border-radius: 8px 8px 0 0;
}
.image_shipin{
	width: 100%;
	height: 152px;
	border-radius: 8px 8px 0 0;
}

.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
	-webkit-flex-direction: row;
}

.flex-column {
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.align-items-center {
	align-items: center;
}

.align-content-between {
	align-content: space-between;
}

.align-content-center {
	align-content: center;
}

.align-items-start {
	align-items: flex-start;
}

.align-items-baseline {
	align-items: baseline;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

.space-between {
	justify-content: space-between;
}

.space-around {
	justify-content: space-around;
}
.padding60{
	padding-top: 60px;
	position: relative;
	z-index: 3;
}
.padding40{
	padding-top: 40px;
	position: relative;
	z-index: 3;
}

.title_sec_t{
	line-height: 32px;
	font-size: 24px;
	font-weight: 600;
	margin: 0px 0 30px;
}
/*flex折行*/
.flex-wrap {
	flex-wrap: wrap;
}

.right_t{
	width: 40px;
	height: 40px;
	background-color: #DBC9AF;
	border-radius: 50%;
	box-shadow: 0px 2.46154px 9.84615px rgba(0, 0, 0, 0.08);
	transition: 0.5s ease;
}
.right_t:hover{
	background-color: #D4BB97;
	
}
.ellipsis_two{
  text-overflow: -o-ellipsis-lastline;
	overflow: hidden;				
	text-overflow: ellipsis;		
	display: -webkit-box;			
	-webkit-line-clamp: 2;		
	line-clamp: 2;					
	-webkit-box-orient: vertical;	
}

.media_item:nth-last-of-type(1){
	margin-right: 0px;
}


.noDataList{
	text-align: center;
	padding: 150px 0 150px;
}
.noDataList img{
	margin-bottom: 27px;
}
.noDataList div{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #E5E4F4;
}


.image_contain_follow {
  padding: 19px 20px;
  background-color: #F9F5EE;
  overflow: hidden;
  border-radius: 8px;
}
.image_contain_follow:hover{
	background-color: #F8EFE1;
}
.image_contain_follow_other {
	background-color: #fff;
}
.image_contain_follow_other:hover{
	background-color: #F8F8F8;
}
.follow_text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
	word-wrap: break-word;
  color: #000000;
}
.image_text_contain{
	background-color: #fff;
	border-radius: 8px;
	padding: 30px;
}


.banner_contain {
	padding: 60px;
}

.mt60{
	margin-top: 60px;
}
