﻿/* CSS Document */
@font-face {
	font-family: 'Alibaba-PuHuiTi-Regular,微软雅黑';
	font-style: normal;
	font-weight: normal;
	src: url(../font/Alibaba-PuHuiTi-Regular.ttf) format("opentype"), url(../font/Alibaba-PuHuiTi-Regular.ttf) format("embedded-opentype");
}

.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
}

body,
html {
	font-family: Alibaba-PuHuiTi-Regular;
	font-size: 12px;
	color: #333;
	background: #fff;
}

div,
a,
ul,
li,
img,
span,
p {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4 {
	margin: 0px;
}

h1,
h2,
h3,
h4,
span,
p {
	letter-spacing: 0px;
}

* {
	margin: 0;
	padding: 0;
	outline: 0px;
}

.l {
	float: left;
}

.r {
	float: right;
}

.ClearFix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}

a {
	text-decoration: none !important;
	cursor: pointer;
	color: #333;
}

ul,
li {
	list-style: none;
}

img {
	border: none;
}

a:hover {
	text-decoration: none !important;
	outline: none
}

a:focus {
	outline: none;
}

a:active {
	outline: none;
}

a:hover {
	outline: none;
}

.team-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.team-card {
	width: calc(25% - 15px);
	transition: all 0.3s ease;
	overflow: hidden;
	background: white;
}

.team-card:hover {
	transform: translateY(-10px);
}

.team-card a {
	display: block;
	text-decoration: none;
}

.team-img {
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
}

.team-img img {
	width: 100%;
}

.team-info {
	padding: 0 1rem 1.5rem;
	text-align: center;
}

.team-name {
	font-size: 18px;
	font-weight: bold;
	color: #2E3193;
	margin-bottom: 0;
}

.team-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	overflow: hidden;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.team-btn {
	display: inline-block;
	padding: 8px 30px;
	background: #2E3193;
	color: #fff;
	font-size: 14px;
	border-radius: 3px;
	transition: background 0.3s ease;
}

.team-card:hover .team-btn {
	opacity: 0.85;
}

.team-intro {
	max-width: 900px;
	margin: 20px auto 30px;
	padding: 0 20px;
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	text-align: center;
}


/*行数*/
.line-camp{
	overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;text-overflow:ellipsis;
}
.line-camp-2{
	overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-overflow:ellipsis;
}
.line-camp-3{
	overflow:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;text-overflow:ellipsis;
}

/*固定图片比例*/
.fixed-ratio {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*默认3:2*/
.fixed-ratio::before {
    content: "\0020";
    display: block;
    width: 100%;
    height: 0;
    padding: 33.33% 0;
}
/*比列1:1*/
.fixed-ratio.square::before {
    padding: 50% 0;
}
/*比列1:2*/
.fixed-ratio.half::before {
    padding: 66.67% 0;
}
.fixed-ratio>img,
.fixed-ratio>div {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.fixed-ratio>img,
.fixed-ratio>img {
    object-fit: cover;
}

.demo_ulonr{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 4rem;
}
.demo_ulonr .li{
	width: calc( (100% - 4rem) / 2 );
	background: white;
	padding: 2rem;
}

/*一排2个*/
.demo_ulonr.twoList .li{
	width: calc( (100% - 4rem) / 2 )
}
/*一排3个*/
.demo_ulonr.threeList .li{
	width: calc( (100% - 8rem) / 3 )
}
/*一排4个*/
.demo_ulonr.fourList .li{
	width: calc( (100% - 12rem) / 4 )
}
.demo_ulonr .li.one{
	width: 100%;
}

.team_list_all{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 4rem;
	padding: 2rem 0;
	margin-bottom: 2rem;
}

.team_list_all .li{
	grid-column: span 4;
	box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
	overflow: hidden;
}
.team_list_all .li .cont{
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.team_list_all .li .title{
	font-size: 1.75rem;
}
.team_list_all .li .desc{
	font-size: 1.75rem;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.team-intro {
		font-size: 14px;
		margin: 15px auto 20px;
		line-height: 1.7;
	}
	.team-card {
		width: calc(50% - 10px);
	}
	.team_list_all{
		gap: 2rem;
	}
	.team_list_all .li{
		grid-column: span 6;
	}
}