:root,:host{
	--font-family: 'aphtr', "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Microsoft YaHei";
	--font-family1: 'aphtm'; 
	--font-family2: 'ysbth'; 
}

@font-face{
	font-family: 'aphtr';
	src : url(../fonts/Alibaba-PuHuiTi-Regular.ttf);
}
@font-face{
	font-family: 'aphtm';
	src : url(../fonts/Alibaba-PuHuiTi-Medium.ttf);
}
@font-face{
	font-family: 'ysbth';
	src : url(../fonts/YouSheBiaoTiHei-2.ttf);
}
*{
	box-sizing: border-box;
	outline: none;
}
html{
	overflow-x: hidden;
}
html,body{
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	transition: all 0.5s;
	box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
	line-height: 1;
}
p{
	margin: 0;
	padding: 0;
}
ul,li{
	margin: 0;
	padding: 0;
}
img{
	max-width: 100%;
	vertical-align: middle;
}
a{
	text-decoration: none;
	color: #767676;
}
input{
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	border: 0;
	background: none;
	padding: 0;
	margin: 0;
}
.line_1{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.line_2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.line_3{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.line_4{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.line_6{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.wrap{
	overflow: hidden;
}
.container{
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
}
/*header*/
header{
	position: relative;
}
.header{
	height: 80px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-between;
}
.nav-content{
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
.nav>ul{
	display: flex;
	display: -webkit-flex;
}
.nav>ul,.nav>ul>li{
	list-style: none;
}
.nav>ul>li>a{
	line-height: 80px;
	padding: 0 33px;
	color: #000000;
	font-size: 20px;
	display: block;
}
.nav>ul>li.cur>a{
	color: #154696;
}
.search{
	padding-left: 33px;
	position: relative;
}
.search>a{
	line-height: 80px;
}
.search-hover{
	position: absolute;
	background-color: #ffffff;
	top: 100%;
	right: 0;
	z-index: 9;
	display: none;
}
.search-box form{
	height: 50px;
	display: flex;
	display: -webkit-flex;
}
.search-box input[type=text]{
	width: 200px;
	height: 100%;
	padding-left: 15px;
	color: #333333;
	font-size: 16px;
}
.search-box input[type=submit]{
	width: 50px;
	height: 50px;
	background-image: url(../images/search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.ph-menu{
	margin-left: 20px;
	width: 34px;
	height: 26px;
	position: relative;
}
.ph-menu span{
	position: absolute;
	left: 0;
	width: 100%;
	background-color: #2b2a3a;
	height: 2px;
	border-radius: 5px;
	transition: all 0.5s;
}
.ph-menu span:nth-child(1){
	top: 0;
}
.ph-menu span:nth-child(2){
	top: 12px;
}
.ph-menu span:nth-child(3){
	top: 24px;
}
.ph-menu.active span:nth-child(1){
	top: 14px;
	transform: rotate(45deg);
}
.ph-menu.active span:nth-child(2){
	opacity: 0;
}
.ph-menu.active span:nth-child(3){
	top: 14px;
	transform: rotate(-45deg);
}
.ph-img{
	display: none;
}
.ph-menu{
	display: none;
}
/*header*/

.img-mark{
	position: relative;
}
.img-mark:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
}
.banner{
	position: relative;
}
.banner img{
	width: 100%;
}
.banner-text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0);
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9;
	color: #ffffff;
}
.banner-text h1{
	font-size: 66px;
	font-weight: 400;
	font-family: 'ysbth';
	margin-bottom: 32px;
}
.banner-text p{
	font-size: 25px;
	font-family: 'ysbth';
	text-transform: uppercase;
}
.ph-img .banner-text h1{
	text-align: center;
	font-size: 26px;
	margin-bottom: 16px;
}
.ph-img .banner-text p{
	text-align: center;
	font-size: 14px;
}

/*index-about*/
.index-about{
	padding-top: 5.5%;
}
.index-about-content{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-about-text{
	width: 50%;
	padding-top: 4%;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	justify-content: space-between;
}
.index-about-detail{
	padding-right: 10%;
}
.index-about-title h2{
	font-size: 33px;
	color: #333333;
	margin-bottom: 8px;
}
.index-about-title p{
	text-transform: uppercase;
	font-size: 16px;
	color: #000000;
}
.index-about-briefing{
	margin-top: 7%;
}
.index-about-briefing p{
	text-indent: 2em;
	font-size: 23px;
	line-height: 2.1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}
.index-about-more{
	position: relative;
}
.index-about-more-text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 47px;
	padding-right: 172px;
	box-sizing: border-box;
}
.index-about-more-title h2{
	font-family: var(--font-family1);
	font-size: 40px;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 32px;
}
.index-about-more-title p{
	font-size: 18px;
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.index-about-more img{
	width: 100%;
}
.index-about-img{
	width: 50%;
}
.index-about-img img{
	width: 100%;
}
/*index-about*/

/*index-title*/
.index-title{
	text-align: center;
}
.index-title h2{
	font-size: 45px;
	color: #333333;
	font-weight: 400;
	margin-bottom: 14px;
}
.index-title p{
	font-size: 20px;
	color: #3a3a3a;
	text-transform: uppercase;
	opacity: 0.8;
}
/*index-title*/

/*index-recruitment*/
.index-recruitment{
	padding-top: 4.5%;
}
.index-recruitment-box{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3.2%;
}
.index-recruitment-left{
	width: 33.875%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
}
.index-recruitment-more-content{
	position: relative;
}
.index-recruitment-more-text{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-around;
}
.index-recruitment-more-title h2{
	font-size: 36px;
	color: #ffffff;
	margin-bottom: 24px;
}
.index-recruitment-more-title p{
	font-size: 20px;
	color: #ffffff;
}

.index-recruitment-item{
	margin-top: 30px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
.index-recruitment-item span{
	margin-right: 46px;
	font-size: 22px;
	color: #000000;
}
.index-recruitment-item a{
	margin-right: 15px;
	font-size: 18px;
	color: #7d7d7d;
}
.index-recruitment-item a:last-child{
	margin-right: 0;
}
.index-recruitment-more{
	margin-top: 30px;
}
.index-recruitment-more a{
	font-size: 20px;
	color: #0762cb;
}
.index-recruitment-right{
	width: 66.125%;
}
.index-recruitment-search{
	margin-top: 5.5%;
}
.index-recruitment-search-bg{
	/*height: 356px;*/
	background-image: url(../images/index_04.png);
	background-repeat: no-repeat;
	background-size: cover;
	padding:  55px 125px;
}
.index-recruitment-search-form{
	text-align: center;
}
.index-recruitment-search-form form{
	background-color: #ffffff;
	height: 78px;
	width: 55%;
	border-radius: 39px;
	display: inline-flex;
	display: -webkit-inline-flex;
	overflow: hidden;
	padding-right: 19px;
}
.index-recruitment-search-form form input[type=text]{
	height: 100%;
	width: calc(100% - 78px);
	padding-left: 39px;
	font-size: 20px;
	color: #797979;
}
.index-recruitment-search-form form input[type=submit]{
	height: 100%;
	width: 78px;
	background-image: url(../images/index_search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.index-recruitment-hot{
	margin-top: 60px;
}
.index-recruitment-hot h3{
	font-size: 30px;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 45px;
}
.index-recruitment-hot-link{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.index-recruitment-hot-link a{
	display: block;
	font-size: 22px;
	color: #f6f7f9;
	margin-right: 62px;
	line-height: 1.8;
	white-space: nowrap;
}
.index-recruitment-hot-link a:last-child{
	margin-right: 0;
}
.index-recruitment-content{
	margin-top: 3.1%;
}
.recruitment-content{
	margin-top: 0;
}
.index-recruitment-nav ul ,.index-recruitment-nav li{
	list-style: none;
}
.index-recruitment-nav ul{
	display: flex;
	display: -webkit-flex;
}
.index-recruitment-nav ul li{
	margin-right: 76px;
}
.index-recruitment-nav ul li:last-child{
	margin-right: 0;
}
.index-recruitment-nav ul li a{
	font-size: 24px;
	color: #000000;
	display: block;
	position: relative;
	padding-bottom: 12px;
}
.index-recruitment-nav ul li.cur a{
	color: #ff0000;
}
.index-recruitment-nav ul li.cur a:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #ff0000;
	width: 100%;
	height: 5px;
}
.index-recruitment-list-box{
	margin-top: 3.1%;
}
.index-recruitment-list-content{
	display: none;
	flex-wrap: wrap;
}
.index-recruitment-list-content.show{
	display: flex;
	display: -webkit-flex;
}
.index-recruitment-list-item{
	width: 32%;
	margin-right: 2%;
	background-color: #f4f4f4;
	box-shadow: 5px 5px 0 2px rgba(0,0,0,.25);
	padding: 22px 27px;
	/*height: 100px;*/
	margin-bottom: 2.2%;
}
.index-recruitment-list-item:nth-child(3n){
	margin-right: 0;
}
.index-recruitment-list-item-box{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-recruitment-list-item-info h2{
	font-weight: 400;
	font-size: 21px;
	color: #000000;
	margin-bottom: 15px;
}
.index-recruitment-list-item-info h2 span{
	margin-left: 10px;
	font-size: 19px;
	color: #828386;
}
.index-recruitment-list-item-info p{
	font-size: 19px;
	color: #828386;
}
.index-recruitment-list-item-salary span{
	font-size: 22px;
	color: #ff0000;
	line-height: 1;
	display: block;
}
/*index-recruitment*/


/*index-business*/
.index-business{
	margin-top: 2.5%;
}
.index-business-content{
	margin-top: 3%;
}
.index-business-list{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.index-business-item{
	width: 32.5%;
	margin-right: 1.25%;
}
.index-business-item:nth-child(3n){
	margin-right: 0;
}
.index-business-img{
	overflow: hidden;
	position: relative;
}
.index-business-img img{
	width: 100%;
	transition: all 0.5s;
}
.index-business-mark{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(0,0,0,.6);
	text-align: center;
}
.index-business-mark p{
	line-height: 68px;
	color: #ffffff;
	font-size: 36px;
	letter-spacing: 10px;
}
/*index-business*/

/*index-cooperation*/
.index-cooperation{
	margin-top: 4.5%;
	margin-bottom: 9%;
}
.index-cooperation-content{
	margin-top: 4%;
}
.index-cooperation-list{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.index-cooperation-item{
	width: 16.3125%;
	margin-right: 4.609735%;
	margin-bottom: 3%;
	overflow: hidden;
	border: 2px solid #154696;
	border-radius: 5px;
	box-shadow: 10px 10px 0 0 rgba(229,229,229,1);
	background-color: #fdfdfd;
}
.index-cooperation-item:nth-child(5n){
	margin-right: 0;
}
.index-cooperation-img{
	overflow: hidden;
	text-align: center;
}
.index-cooperation-img img{
	transition: all 0.5s;
}
/*index-cooperation*/

/*footer*/
footer{
	background-image: url(../images/footer_bg.jpg);
	padding: 60px 0 170px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.footer-container{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.footer-nav{
	width: 50%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-nav:after{
	content: "";
}
.footer-nav-item{
	text-align: center;
}
.footer-nav-item h2{
	padding-bottom: 10px;
}
.footer-nav-item h2 a{
	color: #ffffff;
	font-size: 22px;
	font-weight: 400;
	line-height: 2;
}
.footer-nav-link a{
	display: block;
	font-size: 18px;
	color: #e7f1ff;
	margin-top: 30px;
}
.footer-info{
	width: 50%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-info-text{
	width: 75%;
	padding-left: 5%;
	padding-right: 10%;
}
.footer-info-text p{
	font-size: 22px;
	line-height: 2;
	color: #f6f7f9;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	letter-spacing: 1px;
	margin-bottom: 5px;
}
.footer-info-text p span.footer-info-tit{
	width: 105px;
}
.footer-info-text p span.footer-info-txt{
	width: calc(100% - 105px);
}
.footer-ewm{
	padding-top: 10px;
	width: 25%;
}
.footer-ewm-tit{
	margin-top: 10px;
	text-align: center;
	font-size: 22px;
	color: #f6f7f9;
	letter-spacing: 2px;
}
/*footer*/

/*ny-title*/
.ny-title{
	text-align: center;
}
.ny-title h2{
	font-size: 45px;
	color: #333333;
	font-weight: 400;
	margin-bottom: 14px;
}
.ny-title p{
	font-size: 20px;
	color: #000000;
	text-transform: uppercase;
	/*opacity: 0.8;*/
}
/*ny-title*/
/*about*/
.about-nav{
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	height: 70px;
	width: 100%;
}
.about-nav-list{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.about-nav-item{
	margin: 0 30px;
}
.about-nav-item a{
	text-align: center;
	display: block;
	line-height: 70px;
	font-size: 32px;
	color: #ffffff;
	padding: 0 40px;
}
.about-nav-item.active a{
	background-color: #075dc1;
}
.about{
	padding-top: 4.7%;
}
.about-content{
	margin-top: 2.7%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.about-img{
	width: 48.5%;
}
.about-img img{
	width: 100%;
}
.about-text{
	width: 51.5%;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	justify-content: space-between;
}
.about-detail{
	padding-left: 4%;
	padding-right: 16%;
	padding-top: 2%;
}
.about-briefing{
	line-height: 2;
	font-size: 22px;
	color: #1b1a1a;
}
.about-more>img{
	width: 100%;
}
.about-more{
	position: relative;
}
.about-more-text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 56px;
	padding-right: 56px;
	box-sizing: border-box;
}
.about-more-title h2{
	font-size: 60px;
	font-weight: 400;
	letter-spacing: 2px;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.about-more-title h3{
	font-size: 20px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 10px;
}
.about-more-title p{
	font-size: 18px;
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.structure{
	padding-top: 4.5%;
}

.structure-content{
	margin-top: 2.7%;
}

.service{
	padding-top: 4.5%;
}
.service-content{
	margin-top: 2.7%;
}
.service-swiper{
	position: relative;
	padding-bottom: 57px;
}
.service-item{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.service-img{
	width: 60.875%;
	position: relative;
}
.service-title{
	position: absolute;
	right: 30px;
	top: 30px;
	z-index: 9;
}
.service-title h2{
	font-size: 58px;
	color: rgba(7,93,193,.55);
}
.service-text{
	padding-top: 1%;
	padding-left: 1%;
	width: 39.125%;
}
.service-text p{
	text-indent: 2em;
	font-size: 20px;
	color: #333333;
	line-height: 1.8;
	letter-spacing: 1px;
}
.service-button{
	position: absolute;
	right: 0;
	bottom: 30px;
	width: 130px;
	height: 46px;
}
.service-button .swiper-button-next, .service-button .swiper-button-prev{
	margin-top: 0;
	background-size: 46px 46px;
	width: 46px;
	height: 46px;
	top: 0;
}
.service-button .swiper-button-prev{
	left: 0;
	background-image: url(../images/service_prev.png);
}
.service-button .swiper-button-next{
	right: 0;
	background-image: url(../images/service_next.png);
}
.service-list{
	width: 60.875%;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #075dc1;
	height: 138px;
	z-index: 9;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
}
.service-list-item{
	width: 20%;
	padding: 0 15px;
	cursor: pointer;
}
.service-list-text h2{
	font-size: 34px;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: -5px;
	margin-bottom: 5px;
}
.service-list-text p{
	font-size: 18px;
	color: #ffffff;
	line-height: 1.4;

}
.staff{
	padding-top: 4.5%;
	padding-bottom: 7%;
}
.staff-content{
	margin-top: 2.7%;
}
.staff-swiper{
	position: relative;
	text-align: center;
}
.phstaff-swiper{
	display: none;
}
.staff-img{
	display: inline-block;
	position: relative;
	max-width: 1000px;
	box-shadow: 3px 3px 0px 1px rgba(191,191,191,1);
}
.staff-img:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
	z-index: 9;
}
.swiper-slide-active .staff-img:after{
	display: none;
}
.staff-swiper .swiper-button-prev,.staff-swiper .swiper-button-next{
	background-size: 24px 42px;
	height: 42px;
	width: 24px;
}
.staff-swiper .swiper-button-prev{
	background-image: url(../images/staff_prev.png);
}
.staff-swiper .swiper-button-next{
	background-image: url(../images/staff_next.png);
}
.staff-title{
	margin-top: 15px;
	display: none;
}
.staff-title p{
	font-size: 20px;
	color: #333333;
}
.swiper-slide-active .staff-title{
	display: block;
}
/*about*/

/*business*/
.business{
	padding-top: 4.5%;
}
.business-content{
	/*margin-top: 2.7%;*/
}
.business-item{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 5%;
	border-bottom: 1px dashed #0040b4;
	padding-top: 5%;
}
.business-item:nth-child(even){
	flex-direction: row-reverse;
}
.business-text{
	position: relative;
	z-index: 9;
	width: 52.6875%;
}
.business-num{
	position: absolute;
	z-index: -1;
	font-size: 300px;
	color: #f6f6f6;
	font-family: var(--font-family1);
	line-height: 0.7;
	top: 0;
	right: 10%;
	/*font-weight: 600;*/
}
.business-title h2{
	font-family: var(--font-family1);
	font-size: 25px;
	color: #333333;
	/*font-weight: 600;*/
	margin-bottom: 20px;
}
.business-text-item-title h3{
	color: #0040b4;
	font-size: 22px;
	line-height: 2;
}
.business-text-item-text p{
	color: #333333;
	font-size: 20px;
	line-height: 2;
	text-indent: 2em;
}
.business-img{
	width: 42.3125%;
}
/*business*/


/*recruitment*/
.recruitment{
	padding-bottom: 8%;
}
.recruitment-nav ul ,.recruitment-nav li{
	list-style: none;
}
.recruitment-nav ul{
	display: flex;
	display: -webkit-flex;
}
.recruitment-nav ul li{
	margin-right: 3%;
}
.recruitment-nav ul li:last-child{
	margin-right: 0;
}
.recruitment-nav ul li a{
	font-size: 24px;
	color: #000000;
	display: block;
	position: relative;
	padding-bottom: 12px;
}
.recruitment-nav ul li.cur a{
	color: #ff0000;
}
.recruitment-nav ul li.cur a:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #ff0000;
	width: 100%;
	height: 5px;
}
.recruitment .index-recruitment-search{
	margin-top: 2.7%;
}
.recruit-show{
	padding-top: 4.5%;
	padding-bottom: 7%;
}
.recruit-content{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.recruit-left{
	width: 68%;
	padding-right: 5%;
}
.recriut-title{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.recriut-title h1{
	font-size: 32px;
	font-weight: 400;
	line-height: 1.4;
}
.recriut-title p{
	font-size: 32px;
	color: #ff0000;
	line-height: 1.4;
}
.recriut-span{
	display: flex;
	display: -webkit-flex;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.recriut-span span{
	font-size: 18px;
	padding-right: 10px;
	margin-right: 10px;
	position: relative;
	color: #666666;
}
.recriut-span span:after{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #e8e8e8;
}
.recriut-span span:last-child{
	padding-right: 0;
	margin-right: 0;
}
.recriut-span span:last-child:after{
	display: none;
}
.recruit-detail-item{
	border-top: 1px solid #e8e8e8;
	margin-bottom: 20px;
	padding-top: 20px;
}
.recruit-detail-title{
	margin-bottom: 20px;
}
.recruit-detail-title h3{
	padding-left: 20px;
	position: relative;
	font-weight: 400;
	font-family: var(--font-family1);
	color: #333333;
	font-size: 20px;
}
.recruit-detail-title h3:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background-color: #ff0000;
}
.recruit-detail-text p{
	font-size: 18px;
	line-height: 2;
	color: #333333;
}

.recruit-right{
	width: 32%;
	border: 1px solid #e8e8e8;
	padding: 20px;
}
.recruit-right-title{
	padding-bottom: 20px;
	/*border-bottom: 1px solid #e8e8e8;*/
}
.recruit-right-title h2{
	font-size: 22px;
	font-family: var(--font-family1);
	color: #333333;
	font-weight: 400;
}

.recruit-list-item{
	width: calc(100%);
	/*background-color: #f4f4f4;*/
	padding: 20px 0;
	/*margin-bottom: 10px;*/
	border-top: 1px solid #e8e8e8;
}
.recruit-list-item-box{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.recruit-list-item-info h2{
	font-weight: 400;
	font-size: 20px;
	color: #000000;
	margin-bottom: 15px;
}
.recruit-list-item-info h2 span{
	margin-left: 10px;
	font-size: 18px;
	color: #828386;
}
.recruit-list-item-info p{
	font-size: 18px;
	color: #828386;
}
.recruit-list-item-salary span{
	font-size: 20px;
	color: #ff0000;
	line-height: 1;
	display: block;
}

/*recruitment*/

/*pages*/
.pages{
	margin-top: 2.7%;
}
.pages ul,.pages li{
	list-style: none;
}
.pages ul {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
}
.pages ul li{
	margin: 0 3px;
}
.pages ul li a{
	display: block;
	padding: 5px 12px;
	border: 1px solid #dddddd;
	font-size: 18px;
	color: #333333;
}
.pages ul li.nolink a{
	opacity: 0.5;
	cursor: not-allowed;
}
.pages ul li.current a{
	background-color: #154696;
	color: #ffffff;
	border: 1px solid #154696;
}
/*pages*/


/*news*/
.news{
	padding: 4.5% 0 7%;
}
.news-item{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 2%;
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 2%;
}
.news-img{
	width: 32%;
	overflow: hidden;
}
.news-img img{
	width: 100%;
	transition: all 0.5s;
}
.news-text{
	width: 65%;
}
.news-title{
	margin-bottom: 15px;
}
.news-title h2{
	font-size: 30px;
	color: #333333;
	line-height: 1.4;
}
.news-date{
	margin-bottom: 15px;
}
.news-date span{
	display: block;
	font-size: 20px;
	color: #999999;
}
.news-briefing p{
	font-size: 22px;
	line-height: 1.6;
	color: #666666;
}

.news-show-title{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
	align-items: center;
	justify-content: space-between;
}
.news-show-title h2{
	width: calc(100% - 130px);
	margin-bottom: 0;
}
.news-show-title span{
	width: 120px;
	text-align: right;
	font-size: 18px;
}
.news-show-list .recruit-list-item-info{
	width: 100%;
}
/*news*/