:root {
	--view-width: 1200px;
	--font-0: 36px;
	--font-1: 32px;
	--font-2: 28px;
	--font-3: 26px;
	--font-4: 24px;
	--font-5: 20px;
	--font-6: 18px;
	--font-7: 16px;
	--font-8: 14px;
	--font-9: 12px;
}


body {
	min-width: 1200px;
	color: #000000;
	margin: 0;
	overflow-x: hidden;
	user-select: none;
	letter-spacing: 0.05em;
	font-family: "Microsoft YaHei", sans-serif;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}


a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}  

ul{
    list-style: none;
}

.topbanner img,
.banner img {
	width: 100%;
	height: auto;
	display: block;
}

/* 共同样式*/
.section1,
.section2,
.section3,
.section4,
.section5,
.section6,
.section7 {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	overflow: hidden;
}


/* section1  项目介绍*/
.section1 {
	width: 100%;
	min-height: 480px;
	padding-top: 68px;
	padding-bottom: 64px;
	background-image: url("../../assets/images/bg1.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.intro {
	width: var(--view-width, 1200px);
	padding: 20px 24px 20px 0px;
	margin-top: 50px;
	display: flex;
	background: linear-gradient(90deg, #ECECEC 0%, #FFFFFF 100%);
}

.intro .intro_img {
	width: 360px;
	height: 218px;
	box-sizing: border-box;
	overflow: hidden;
	transition: transform 0.3s;
}

.intro .intro_img .img {
	width: 100%;
	height: 100%;
}

.intro .intro_img:hover {
	transform: scale(1.1);
}

.intro .intro_desc {
	flex: 1;
	padding-left: 24px;
}

.intro .intro_desc p {
	text-indent: 2em;
	line-height: 40px;
	font-size: var(--font-6, 18px);
}

/* section2  表格 */
.section2 {
	width: 100%;
	min-height: 480px;
	padding-top: 68px;
	padding-bottom: 64px;
	background-image: url("../../assets/images/bg2.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.section2 .secton_title p {
	color: rgba(255, 255, 255, 0.9);
	padding-bottom: 10px;
}

/* 轮播 */
.swiper_table {
	/* width: 100%; */
	width: calc(var(--view-width, 1200px) + 48px);
}

.swiper-slide {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}

.swiper_table .swiper-pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	opacity: 1;
	background: #FFFFFF;
	box-shadow: 0px 0px 6px 0px rgba(1255, 255, 255, 0.8);
}

.swiper_table .swiper-pagination .swiper-pagination-bullet-active {
	width: 14px;
	height: 14px;
	opacity: 1;
	background: #CBA86F;
	box-shadow: 0px 0px 6px 0px rgba(1255, 255, 255, 0.8);
}

/* 表格 */
.swiper_table .table_wrap {
	width: var(--view-width, 1200px);
	height: auto;
	display: flex;
	position: relative;
	padding-top: 24px;
	padding-bottom: 40px;
	margin-top: 20px;
	cursor: pointer;
}

.swiper_table .table {
	width: var(--view-width, 1200px);
	height: auto;
	box-sizing: border-box;
	overflow: hidden;
	background: #fff;
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.55);
	border-radius: 20px;
	color: #000000;

}

/* 表头 */
.swiper_table .table .th {
	width: 100%;
	height: 90px;
	display: flex;
	box-sizing: border-box;
	overflow: hidden;
	background: linear-gradient(180deg, #DABC8A 0%, #9C6C1C 100%);
	border-radius: 20px 20px 0px 0px;
}

.swiper_table .table .th .td {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: var(--font-5, 20px);
	color: #FFFFFF;
	font-weight: 550;
}

.swiper_table .table .th .td:nth-child(1),
.swiper_table .table .th .td:nth-child(2),
.swiper_table .table .th .td:nth-child(3) {
	background: linear-gradient(180deg, #25C7FE 0%, #094EB5 100%);
}

/* 表内容 */
.swiper_table .table .tr {
	display: flex;
	background: #fff;
}

.swiper_table .table .tr .td,
.swiper_table .card .card_tr .td {
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 30px;
}

.swiper_table .table .tr .td .li .dot,
.swiper_table .card .card_tr .td .li .dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-bottom: 2px;
	background: #000000;
	border-radius: 50%;
	transform: scale(0.6);
}

.swiper_table .table .tr .td:nth-child(1),
.swiper_table .table .tr .td:nth-child(4) {
	text-align: center;
	font-weight: 550;
}

.swiper_table .table .tr .td:nth-child(3) {
	/* opacity: 0; */
	padding: 20px !important;
}

.swiper_table .table .tr:last-child {
	border-radius: 0px 0px 20px 20px;
}

.swiper_table .table .tr:nth-child(odd),
.swiper_table .card .card_tr:nth-child(odd) {
	background: #F5F5F5;
}
.swiper_table .planPadding{
	margin-left:34px;
}

/* 红色表格 */
.swiper_table .card {
	width: 36%;
	/* height:100%; */
	position: absolute;
	top: 11px;
	right: 21%;
	background: #FFFFFF;
	box-shadow: 0px 0px 38px 0px rgba(90, 90, 90, 0.5);
	border-radius: 30px;
	box-sizing: border-box;
	overflow: hidden;
}

.swiper_table .card .card_th {
	height: 103px;
	line-height: 103px;
	text-align: center;
	font-size: var(--font-5, 20px);
	color: #FFFFFF;
	font-weight: 550;
	background: linear-gradient(180deg, #FD3B42 0%, #860006 100%);
}

.swiper_table .card .card_tr .td {
	padding: 20px;
}

.swiper_table .card .card_tr:last-child {
	padding-bottom: 16px;
}


.table_tip {
	width: var(--view-width, 1200px);
	text-align: right;
	font-size: var(--font-8, 14px);
	color: rgba(255, 255, 255, 0.8);
}

/* section3  人才计划 */
.section3 {
	width: 100%;
	min-height: 480px;
	padding-top: 68px;
	padding-bottom: 30px;
	background: #fff;
}

.plan {
	width: var(--view-width, 1200px);
	height:730px;
	position: relative;
}

.plan .plan_item:hover {
	transition: all 1s;
	animation: scaleInOut 1s ease 1;
}

.plan .plan_item_detail {
	color: #FFFFFF;
}

.plan_item_detail .title {
	font-size: var(--font-3, 26px);
	font-weight: 600;
	padding-bottom: 24px;
	padding-left: 30px;
}

.plan_item_detail .info {
	display: flex;
	align-items: flex-start;
	font-size: var(--font-5, 20px);
	line-height: 30px;
	padding-bottom: 14px;
}


.plan_item_detail .info .info_label {
	display: flex;
	align-items: center;
}

.plan_item_detail .info .info_label .img {
	width: 22px;
	height: 22px;
	margin-right: 4px;
}

.plan .plan_item:nth-child(1) {
	width: 670px;
    height: 310px;
    background-image: url(../../assets/images/box1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-left: 164px;
    padding-top: 86px;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 1;
}

.plan .plan_item:nth-child(2) {
	width: 623px;
	height: 374px;
	background-image: url(../../assets/images/box2.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding-left: 90px;
	padding-top: 138px;
	position: absolute;
	top: 10px;
	right: -10px;
	z-index: 2;
}

.plan .plan_item:nth-child(3) {
	width: 616px;
    height: 357px;
    background-image: url(../../assets/images/box3.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-left: 50px;
    padding-top: 100px;
    position: absolute;
    top: 322px;
    left: 0px;
    z-index: 2;
}

.plan .plan_item:nth-child(4) {
	width: 657px;
	height: 316px;
	background-image: url(../../assets/images/box4.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding-left: 56px;
	padding-top: 104px;
	position: absolute;
	top: 390px;
	right: -10px;
	z-index: 1;
}

/* 提示 */
.plan_tip {
	width: var(--view-width, 1200px);
	text-align: right;
	font-size: var(--font-8, 14px);
}

/* section4  核心竞争力 */
.section4 {
	width: 100%;
	padding-top: 46px;
	padding-bottom: 46px;
	background-image: url("../../assets/images/bg3.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.race {
	width: var(--view-width, 1200px);
	display: flex;
	align-items: center;
	padding-top:30px;
}

.race_img {
	width: 416px;
	height: 627px;
	box-sizing: border-box;
	overflow: hidden;
	transition: transform 0.3s;
}

.race_img:hover {
	transform: scale(1.08);

}

.race_img .img {
	width: 100%;
	height: 100%;
}

.race_list {
	flex: 1;
}

.race_list_item_title {
	width: 100%;
	height: 54px;
	padding-left: 60px;
	line-height: 54px;
	color: #000000;
	font-size: var(--font-3, 26px);
	font-weight: 600;
	background: linear-gradient(to right, #F8CFB6 0%, rgba(240, 249, 255, 0) 100%);
}

.race_list_item_ul {
	list-style: none;
	padding: 14px 0px 14px 40px;
	background: linear-gradient(to right, #FFF7F2 0%, rgba(240, 249, 255, 0) 100%);
}

.race_list_item_ul li {
	color: #313131;
	font-size: var(--font-5, 20px);
	padding-bottom: 8px;
	display: flex;
	align-items: flex-start;
}

.race_list_item_ul li .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #E4844B;
	margin-right: 10px;
	margin-top: 8px;
}

.race_list .race_list_item:nth-child(even) .race_list_item_title {
	background: linear-gradient(to right, #B2D2F9 0%, rgba(240, 249, 255, 0) 100%);
}

.race_list .race_list_item:nth-child(even) .race_list_item_ul {
	background: linear-gradient(to right, #F7FAFF 0%, rgba(240, 249, 255, 0) 100%);
}

.race_list .race_list_item:nth-child(even) .race_list_item_ul li .dot {
	background: #183896;
}

/* section5  核心服务 */
.section5 {
	width: 100%;
	min-height: 550px;
	padding-top: 70px;
	padding-bottom: 64px;
	background-image: url("../../assets/images/bg4.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.service {
	width: var(--view-width, 1200px);
	padding-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.service_item {
	width: 20%;
	height: 214px;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 90%, rgba(216, 221, 231, 0.6) 100%);
	border-right: 1px solid rgba(216, 221, 231, 0.8);
	transition: transform 0.3s ease;
}

.service .service_item:last-child{
	background-image:none;
	border-right:none;
}

.service_item:hover {
	transform: translateY(-10px);
}

.service_item_icon {
	width: 90px;
	height: 90px;

}

.service_item_desc {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.service_item p {
	line-height: 26px;
	font-size: var(--font-5, 20px);
	font-weight: 600;
}

.service_tip {
	width: var(--view-width, 1200px);
	padding-top: 50px;
	text-align: right;
	font-size: var(--font-8, 14px);
}