@charset "utf-8";

/* CSS Document */
@font-face {
	src: url(../fonts/Sora-Regular.ttf);
	font-family: "myfont";
}

@font-face {
	src: url(../fonts/Sora-Medium.ttf);
	font-family: "title";
}

@font-face {
	font-family: 'iconfont';
	src: url(../icons/iconfont.eot);
	src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
		url(../icons/iconfont.woff) format('woff'),
		url(../icons/iconfont.ttf) format('truetype'),
		url(../icons/iconfont.svg#iconfont) format('svg');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}

* {
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	font-size: 62.5%;
	font-size: 1.4rem;
	color: #101010;
	list-style: none;
	font-family: 'myfont', sans-serif;
}

p {
	font-size: 1.6rem;
	line-height: 1.8;
	margin: 1rem 0;
	color: #101010;
}

img {
	display: block;
}

.clear {
	clear: both;
}

a {
	text-decoration: none;
	color: #101010;
}

.w_all {
	width: 1210px;
	margin: auto;
}

.w_all2 {
	width: 96%;
	margin: auto;
}

::selection {
	background: #FF6D00;
	color: #ffffff;
}

::-moz-selection {
	background: #FF6D00;
	color: #ffffff;
}

.flexboxs {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

/*index*/
html,
body {
	width: 100%;
	position: relative;
	font-size: 62.5%;
}
.loadimg{
	width: 100%;
	height: 100vh;
	background: #fff;
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loadimg b{
	border-radius: 50%;
	padding: 2rem;
    width: 100px;
	box-sizing: border-box;
	position: relative;
	border: 3px solid #ebebec;
}
.loadimg b img{
	width: 100%;
	animation: loaderpulse alternate 900ms infinite;
}
@keyframes loaderpulse {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(1.2);
	}
  }
.loadimg b:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border-top: 3px solid #0A2FA6;
	border-radius: 50%;
	animation: loaderspin 1.8s infinite ease-in-out;
	-webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
header {
	width: 100%;
	position: fixed;
	left: 0%;
	top: 0;
	z-index: 9999;
	background: #fff;
	transition: all 300ms ease-in-out;
}

header.active {
	box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.8);
	animation: smoothScroll .5s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}

	100% {
		transform: translateY(0px);
	}
}

.nav_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	width: 184px;
}

.logo img {
	display: block;
	width: 100%;
}

.navbox {
	display: flex;
	align-items: center;
}

.nav_box ul {
	display: flex;
}

.nav_box ul li {
	position: relative;
	padding: 0px 0 0 24px;
}

.nav_box ul li h3 {
	font-size: 1.5rem;
	line-height: 105px;
	position: relative;
	color: #101010;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out 0s;
}

.nav_box ul li h3 strong {
	margin-left: 6px;
	font-size: 1.5rem;
	font-weight: normal;
	transition: all 0.4s ease-in-out 0s;
}

.nav_box ul li:hover h3 ,.nav_box ul li:hover h3 strong {
	color: #FF6D00 !important;
}

.s_menu {
	position: absolute;
	left: 0%;
	top: 100%;
	min-width: 260px;
	border-radius: 0 0 5px 5px;
	z-index: 999;
	background: #fff;
	box-shadow: 0px 7px 7px 0px rgba(48, 51, 50, 0.09);
	transition: all 0.4s ease-in-out 0s;
	transform: scaleY(0);
	transform-origin: 0 0 0;
	opacity: 0;
	padding: 20px 0;
}

.s_menu.active {
	transform: scaleY(1);
	opacity: 1;
}

.s_menu dl dd {
	padding: 10px;
	font-size: 1.5rem;
	transition: all 0.4s ease-in-out 0s;
	cursor: pointer;
}

.s_menu dl dd:hover a,.s_menu dl dd:hover{
	color: #FF6D00 !important;
}

.navBtn {
	position: relative;
	z-index: 99999;
	cursor: pointer;
	display: none;
}

.navBtn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	margin: 5px auto;
}
.nav_btn_active {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.nav_btn_active span:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav_btn_active span:nth-of-type(2) {
	opacity: 0;
}

.nav_btn_active span:nth-of-type(3) {
	margin-top: -57%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.banner {
	margin-top: 105px;
	width: 100%;
	height: auto !important;
	position: relative;
	overflow: hidden;
}

.banner img {
	width: 100%;
	display: block;
}

.banner video {
	width: 100%;
	height: 100%;
	object-fit: fill;
}
.banner .txt {
	position: absolute;
	left: 50%;
	top: 46%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.banner .txt .title {
	width: 60%;
}

.banner .txt h4 {
	font-size: 1.8rem;
	font-weight: normal;
	opacity: 0;
	transform: translateY(10px);
	transition: all ease .6s .4s;
}

.banner .txt h3 {
	font-size: 6rem;
	transition: all ease .8s .8s;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateX(10%);
	width: max-content;
}

.banner .txt p {
	font-size: 1.8rem;
	transition: all ease .8s 1.2s;
	opacity: 0;
	transform: translateX(-10%);
}
.banner .swiper-slide-active .txt h4 {
	transform: translateY(0px);
	opacity: 1;
}

.banner .swiper-slide-active .txt h3 {
	transform: translateX(0px);
	opacity: 1;
}
.banner .swiper-slide-active .txt p {
	transform: translateX(0px);
	opacity: 1;
}
.banner .swiper-slide-active .txt{
	z-index: 999;
}
.banner .more {
	margin-top: 6rem;
	opacity: 0;
	transform: translateY(100px);
	transition: all ease .6s 1.8s;
}
.banner .swiper-slide-active .txt  .more{
	transform: translateY(0px);
	opacity: 1;
}

.btn {
	position: absolute;
	right: 3rem;
	bottom: 3%;
	z-index: 99;
}

.btn .ll {
	border-radius: 50%;
	width: 5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s linear;
	background: #29686f;
	margin: 1rem 0;
}

.btn i {
	display: block;
	font-size: 2rem;
	color: #fff;
	display: block;
}

.btn .llr i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.btn .ll:hover i {
	color: #fff;
}

.banner .swiper-pagination {
	display: flex;
	justify-content: center;
}

.banner .swiper-pagination span {
	margin: 2rem 5px !important;
	background: #fff;
	opacity: 0.6 !important;
	height: 10px !important;
	width: 10px !important;
	transition: all ease .3s;
	display: block;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
	width: 30px !important;
	border-radius: 15px;
	opacity: 1 !important;
}

.more {
	width: max-content;
	margin: 3rem 0 0;
	padding: 16px 30px;
	background: #0A2FA6;
	border-radius: 20px 0px 20px 0px;
	color: #fff;
	display: flex;
	align-items: center;
	font-size: 1.7rem;
	cursor: pointer;
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
}

.more span {
	color: #fff;
	font-size: 1.7rem;
	position: relative;
	z-index: 2;
}

.more:hover {
	background: #FF6D00;
	border-radius: 0px 20px 0px 20px;
}

.index_bars {
	padding: 10rem 0;
	position: relative;
}

.title {
	margin-bottom: 4rem;
}

.title h3 {
	color: #0a0a0a;
	font-weight: 700;
	font-family: "title";
	position: relative;
	font-size: 3.6rem;
	margin: 0 0 20px;
}

.title h4 {
	font-weight: 600;
	margin: 0 0 10px;
	display: block;
	color: #FF6D00;
	line-height: 28px;
	font-size: 1.5rem;
	letter-spacing: 2px;
}

.title p {
	line-height: 1.6;
	letter-spacing: 0px;
	font-size: 1.7rem;
}

.index_about .contain {
	position: relative;
	justify-content: flex-end;
}

.index_about .ll {
	width: 42%;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-style: solid;
	border-width: 25px 25px 25px 25px;
	border-color: #0B70E1;
	border-radius: 0150px 0px 150px 0px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.index_about .ll img {
	height: 100%;
	display: block;
}

.index_about .rr {
	width: 48%;
	padding: 1rem 0px 6rem 0px;
}

.index_about .rr .title p {
	padding-right: 3.7rem;
	box-sizing: border-box;
}

.index_about dl dd {
	font-size: 2rem;
	display: flex;
	align-items: center;
	color: #29686f;
	margin-top: 1rem;
}

.index_about dl dd img {
	width: 6rem;
	margin-right: 2.5rem;
}

.index_about dl dd h5 {
	font-size: 2rem;
	margin-bottom: 3px;
	color: #0a0a0a;
}

.index_about dl dd p {
	font-size: 1.5rem;
}

.imgScale {
	overflow: hidden;
}

.imgScale img {
	width: 100%;
	display: block;
	transition: all ease .3s;
	overflow: hidden;
}

.imgScale:hover img {
	transform: scale(1.08);
}

.index_pro .title {
	text-align: center;
}
.index_pro ul{
	align-items: inherit;
}
.index_pro ul li {
	width: 23.5%;
	margin: 1% 0;
	position: relative;
	box-sizing: border-box;
	background: #fff;
	overflow: hidden;
	border-radius: 60px 0px 60px 0px;
	min-height: 54rem;
	display: flex;
	justify-content: center;
}

.index_pro ul li::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #0A2FA6 7.29%, rgba(10, 47, 166, 0.50) 100%);
}

.index_pro ul li:hover:before {
	background: #0A2FA6;
}

.index_pro a {
	padding: 35px 50px 60px;
	position: relative;
	z-index: 3;
	box-sizing: border-box;
	width: 100%;
}

.index_pro ul li img {
	width: 9rem;
	margin: 0 0 1rem -1rem;
}

.index_pro .tt h5 {
	color: #fff;
	font-size: 2.2rem;
	line-height: 1.5;
	margin: 0rem 0 1rem;
}

.index_pro .tt p {
	color: #fff;
	font-size: 1.5rem;
}

.more2 {
	background: none;
	margin: 4rem auto 0;
	border: 1px solid #0A2FA6;
}

.more2 span {
	color: #0A2FA6;
}

.more2:hover {
	border-color: #FF6D00;
	background: none;
}

.more2:hover span {
	color: #FF6D00;
}

.index_partner {
	padding-top: 0;
}

.index_partner>.title {
	text-align: center;
}

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

.index_partner ul {
	align-items: flex-start;
	justify-content: flex-start;
	width: calc(100% + 30px);
}

.index_partner ul a {
	width: 16.6%;
	display: block;
	padding: 0 10px;
	box-sizing: border-box;
}

.index_partner ul li img {
	width: 100%;
}

.index_job {
	height: 308px;
	transition: all 0.3s;
	padding: 60px 65px;
	border-radius: 100px 0px 100px 0px;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.index_job::before {
	content: '';
	background-color: transparent;
	background-image: linear-gradient(90deg, #0A2FA6 0%, #0A2FA64D 100%);
	opacity: 1;
	transition: all 0.3s;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.index_job .txt {
	position: relative;
	z-index: 3;
	width: 100%;
}

.index_job .title h3 {
	color: #fff;
}

.index_job .title h4 {
	color: #FF6D00;
}

.index_job .title h3 span {
	color: #FF6D00;
	font-size: 3.6rem;
}

.index_job .more {
	background: #FF6D00;
}

.index_news {
	padding-top: 0;
}

.index_news .title {
	text-align: center;
	margin: 0 auto;
}

.index_news .swiper-container {
	padding: 2% 1% 0%;
	display: block;
}

.index_news .swiper-slide {
	box-sizing: border-box;
	box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09);
	background: #fff;
	border-radius: 70px 0px 0px 0px;
	transition: all 500ms ease;
}

.index_news .txt {
	padding: 3rem;
	border-radius: 0 0 5px 5px;
	box-sizing: border-box;
}

.index_news b img {
	border-radius: 70px 0px 0px 0px;
	width: 100%;
	transition: all 0.5s ease 0s;
}

.index_news .swiper-slide:hover b img {
	filter: grayscale(100%);
}

.index_news h6 {
	font-size: 1.3rem;
	color: #454545;
	display: flex;
	align-items: center;
	font-weight: normal;
}

.index_news h6 img {
	width: 1.4rem;
	margin-right: 0.5rem;
}

.index_news h5 {
	color: #0A0A0A;
	font-size: 2rem;
	font-family: "title";
	transition: all 0.4s ease-in-out 0s;
	margin: 2.5rem 0 1.5rem;
	line-height: 1.6;
}

.index_news .txt p {
	height: 4.5;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.index_news .swiper-slide:hover {
	transform: translateY(-10px);
}

.index_news .swiper-slide:hover h5 {
	color: #FF6D00;
}

.more3 {
	margin: 2rem 0 0;
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	color: #0A0A0A;
	transition: 0.4s;
}

.more3 i {
	margin-left: 8px;
	color: #0A0A0A;
	font-size: 1.1rem;
	margin-top: 3px;
	transition: 0.4s;
}

.more3:hover {
	color: #FF6D00;
}

.more3:hover i {
	margin-left: 15px;
	color: #FF6D00;
}

.index_news .swiper-pagination {
	position: static;
	text-align: center;
	margin: 6% auto 0;
}

.index_news .swiper-pagination span {
	width: 25px;
	height: 8px;
	display: inline-block;
	font-size: unset;
	line-height: unset;
	padding: unset;
	border-radius: 50px;
	background: #0b70e1;
	transition: all 0.3s ease-in;
	box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
	opacity: 0.5;
}

.index_news .swiper-pagination .swiper-pagination-bullet-active {
	background: #FF6D00;
	opacity: 1;
	width: 40px;
}

.index_contact {
	border-radius: 150px 0px 0px 0px;
	transition: all 0.3s;
	color: #fff;
}

.index_contact .contain {
	align-items: flex-start;
	padding: 2% 0;
}

.index_contact .title h3 {
	color: #fff;
	position: relative;
	padding-top: 2.8rem;
}

.index_contact .title h3 strong {
	color: #FF6D00;
	font-size: 3.6rem;
	margin-left: 5px;
}

.index_contact .title h3::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 65px;
	height: 5px;
	opacity: 1;
	background: #FF6D00;
	z-index: 2;
}

.index_contact .title p {
	color: #fff;
}

.index_contact .ll {
	width: 48%;
	padding-top: 6rem;
}

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

.index_contact ul li {
	width: 49%;
	display: flex;
	align-items: flex-start;
	margin: 2rem 0;
}

.index_contact ul li img {
	width: 4rem;
	margin-right: 2rem;
}

.index_contact ul li p {
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.7;
	margin: 0;
}

.index_contact ul li h5 {
	color: #fff;
	font-size: 1.8rem;
	margin-bottom: 1rem;

}

.index_contact .rr {
	width: 48%;
	background-color: #0A2FA69C;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
	transition: all 0.3s;
	padding: 6rem 5rem 3.5rem 5rem;
	box-sizing: border-box;
	border-radius: 0px 120px 0px 0px;
}

.index_contact .rr .inps {
	width: 47%;
	padding: 20px 0px 19px 25px;
	border-radius: 30px 0px 30px 0px;
	color: #FFFFFF;
	background-color: #08102B36;
	box-sizing: border-box;
	margin-bottom: 5rem;
	outline: none;
	font-size: 1.5rem;
}

.index_contact .rr .inps::placeholder {
	color: #999;
	font-size: 1.5rem;
}

.index_contact .rr .inps2 {
	width: 100%;
	height: 120px;
}

.index_contact .rr .inps0 {
	width: 25px;
	height: 58px;
	margin: 0;
}
.index_contact .rr .inps3{
	width: 100%;
}
.index_contact .more {
	margin-top: 2rem;
	padding: 1.7rem 3.4rem;
	background: #FF6D00;
}

.more button {
	background: none;
	cursor: pointer;
}

.footer {
	position: relative;
	z-index: 9;
	background: #000000 url(../images/footerBg.png) no-repeat center top/cover;
	color: #fff;
}

.footer .contain {
	display: flex;
	padding: 5% 0 4%;
	justify-content: space-between;
}

.footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer ul li {
	width: 25%;
}
.footer ul li:last-of-type {
	width: max-content;
}
.footer ul li h3 {
	font-size: 2rem;
	color: #fff;
	margin-bottom: 3.5rem;
	position: relative;
	padding-bottom: 2rem;
}

.footer ul li h3:before,
.footer ul li h3:after {
	position: absolute;
	content: "";
	background: #ff6d00;
	height: 3px;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	z-index: 1;
	bottom: 0px;
	left: 0;
	width: 15px;
}

.footer ul li h3:after {
	width: 50px;
	left: 25px;
	z-index: 0;
}

.footer ul li p {
	font-size: 1.5rem;
	color: #fff;
	margin: 0 0 1rem;
	transition: all .5s ease;
	cursor: pointer;
	display: flex;
}

.footer ul li p img {
	width: 2.4rem;
	height: 2.4rem;
	margin-right: 1rem;
	margin-top: 1px;
}

.footer ul li p:hover {
	color: #FF6D00;
}

.footer ul li h6 {
	width: 3.5rem;
	padding: 0.8rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	margin-right: 3px;
	transition: all .8s ease;
	background: #1c2024;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4rem;
}

.footer ul li h6 img {
	width: 100%;
}

.footer ul li h6 img:last-of-type {
	display: none;
}

.footer ul li h6:hover img:first-of-type {
	display: none;
}

.footer ul li h6:hover img:last-of-type {
	display: block;
}

.footer .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 0 3rem;
}

.footer .copyright .box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer .copyright p {
	color: #fff;
	font-size: 1.4rem;
}

.footer .copyright a {
	color: #fff;
	font-size: 1.4rem;
	transition: all 0.3s linear;
}

.footer .copyright a:hover {
	color: #fff;
}

.totop {
	text-align: center;
	bottom: 40px;
	cursor: pointer;
	display: none;
	position: fixed;
	right: 40px;
	z-index: 9999;
	background: #FF6D00;
	border-radius: 50%;
	transition: all 0.3s ease 0s;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
	cursor: pointer;
}

.totop i {
	width: 4.4rem;
	padding: 1rem 0 1rem;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	display: block;
	font-weight: bold;
	transform: rotate(-90deg);
}

.o_ban {
	margin-top: 105px;
	border-radius: 150px 0px 0px 0px;
	padding: 200px 10px 200px 10px;
	transition: all 0.3s;
	color: #fff;
	position: relative;
}
.o_ban2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #0A2FA6;
	opacity: 0.8;
	border-radius: 150px 0px 0px 0px;
}
.o_ban .txt {
	z-index: 9;
	position: relative;
}

.title2 p{
	width: 64%;
}
.title2 h3 {
    color: #fff;
    position: relative;
    padding-top: 1.8rem;
	font-weight: 700;
    font-family: "title";
    font-size: 5.2rem;
    margin: 0 0 20px;
}
.title2 h3::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 65px;
    height: 5px;
    opacity: 1;
    background: #FF6D00;
    z-index: 2;
}
.o_ban .txt span {
    position: absolute;
	font-size: 150px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0.05;
    width: 100%;
    left: 0;
    color: inherit;
    white-space: nowrap;
    vertical-align: middle;
    z-index: 1;
	top: 50%;
	transform: translateY(-50%);

}
.o_ban .txt p {
	color: #fff;
	font-size: 1.8rem;
}
.nd_ban .title2{
	margin: auto;
	text-align: center;
}
.nd_ban .title2 h3::before{
	left: 50%;
	transform: translateX(-50%);
}
.index_bars2{
	padding: 12rem 0;
}
main{
	background: #F7F9FF;
}
.contact .contain{
	background: #fff;
	padding: 0;
	border-radius:120px 0px 0px 0px;
}
.contact .contain .ll{
	padding: 7rem 1rem 5rem 5rem;
	box-sizing: border-box;
	width: 52%;
}
.contact .contain .rr{
	background: #0A2FA6;
	border-radius: 0px;
	padding: 7rem  5rem;
}
.contact .title p,.contact ul li h5,.contact ul li p{
	color: #0a0a0a;
}
.contact .contain .ll .title h3{
	color: #0a0a0a;
	width: 95%;
}
.contact .contain .rr .title h3{
	color: #fff;
}
.all_nav {
	width: 35rem;
	background: #fff;
    padding: 4rem 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
	box-sizing: border-box;
}
.all_nav.fixed{
	position: fixed; 
	transform: translateY(140px); 
	top: 0px; 
	right: 18%;
}
.all_nav.active2{
	position: absolute;
	right: 0% !important;
	top: inherit;
	bottom: 5rem;
}
.all_nav h5{
	color: #0a0a0a;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    padding-bottom: 1.2rem;
	border-bottom: 2px solid #ff6d00;
	display: inline-block;
	margin-bottom: 2rem;
}
.all_nav ul li {
	font-size: 1.5rem;
	padding: 1.5rem 0;
	transition: all 0.3s linear;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.all_nav ul a:last-of-type li {
	border: none;
	padding-bottom: 0;
}
.all_nav ul li:hover {
	color: #ff6d00;
}
.news .contain{
	align-items: flex-start;
	position: relative;
}
.news .ll{
	width: 67%;
}
.news .ll ul li{
	margin-bottom: 4.8rem;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    transition: 0.3s;
}
.news .ll ul li .txt {
	padding: 3rem 2rem 2rem;
	box-sizing: border-box;
}
.news .ll ul li b  {
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.news .ll ul li b img {
	border-radius: 15px;
	width: 100%;
	transition: all 0.5s ease 0s;
}
.news .ll ul li .more{
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	transform: scale(0.7);
}
.news .ll ul li h6 {
	font-size: 1.3rem;
	color: #454545;
	display: flex;
	align-items: center;
	font-weight: normal;
	margin:0 0 2rem;
}
.news .ll ul li h6 img {
	width: 1.4rem;
	margin-right: 0.5rem;
}

.news .ll ul li h5 {
	color: #0A0A0A;
	font-size: 2.6rem;
	font-family: "title";
	transition: all 0.4s ease-in-out 0s;
	margin:0rem 0 0.5rem;
	line-height: 1.6;
}

.news .ll ul li .txt p {
	height: 4.5;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.news .ll ul li:hover h5 {
	color: #FF6D00;
}
.news .ll ul li .more3{
	font-weight: bold;
}
.news .ll ul li .more3 i{
	font-size: 1.9rem;
	transform: rotate(180deg);
	margin-top: -1px;
}
.news_d .top img{
	width: 100%;
}
.news_d .top .ol{
	display: flex;
	align-items: center;
	margin: 3rem 0;
}
.news_d .top h6 {
	font-size: 1.3rem;
	color: #454545;
	display: flex;
	align-items: center;
	font-weight: normal;
	margin:0 2rem 0 0;
}
.news_d .top h6 img {
	width: 1.4rem;
	margin-right: 0.5rem;
}

.news_d .top h3 {
	font-size: 3rem;
	color: #333;
	font-weight: bold;
	margin-bottom: 2rem;
}
.news_d .tt p{
	font-size: 1.5rem;
	margin: 2rem 0;
}
.news_d .tt p strong{
	font-size: 1.5rem;
	font-weight: bold;
}
.news_d .tt p img{
	max-width: 100%;
}
.title3 {
	text-align: center;
}
.title3 h3 {
    position: relative;
    padding-top: 1.8rem;
	font-weight: 700;
    font-family: "title";
    font-size: 3.8rem;
    margin: 0 0 3rem;
}
.title3 h3::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    width: 65px;
    height: 5px;
    opacity: 1;
    background: #FF6D00;
    z-index: 2;
	transform: translateX(-50%);
}
.job1 ul{
	align-items: inherit;
}
.job1 ul li{
	margin-top: 2rem;
	width: 32.5%;
	background: #EEF2FE7A;
	padding: 3.5%;
	box-sizing: border-box;
	border-radius: 50px 0px 50px 0px;
}
.job1 ul li img{
    width: 9rem;
}
.job1 ul li h5{
	font-size: 2.2rem;
	margin: 2rem 0 1rem;
	transition: all 0.4s linear;
}
.job1 ul li:hover h5{
    color: #ff6d00;
}
.job1 ul li p{
	font-size: 1.5rem;
}
.job2 {
	border-radius: 200px 0px 0px 0px;
    background: #F5F7FC;
}
.job2 .title3 {
	text-align: left;
}
.job2 .title3 h3::before{
	display: none;
}
.job2 ul {
	justify-content: center;
	width: 102%;
	margin-left:-1% ;
	margin-top: 4%;
}
.job2 ul li{
	width: 31.3%;
	padding: 4% 4% 8.5%;
	box-sizing: border-box;
	margin: 1% 1%;
    background-color: #FFFFFF;
    border-radius: 40px 0px 40px 0px;
}
.job2 ul li b{
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #0A2FA614;
    font-size: 50px;
    font-weight: 700;
	font-family: "title";
}
.job2 ul li img{
    width: 9rem;
}
.job2 ul li h5{
	font-size: 2.2rem;
	margin: 1rem 0 2rem;
    transition: all 0.4s linear;
}
.job2 ul li:hover h5{
    color: #0A2FA6;
}
.job2 ul li .more4{
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	border-radius: 20px 0px 20px 0px;
    color: #FFFFFF;
	background-color: #0A2FA6;
	padding: 1rem 1.5rem;
	font-size: 1.5rem;
	transition: all 0.5s ease 0s;
}
.job2 ul li .more4 i{
	color: #FFFFFF;
	font-size: 1.3rem;
	display: block;
	margin: 3px 0 0 5px;
}
.job2 ul li:hover .more4{
	background: #ff6d00;
}
.jobd .contain{
	display: flex;
	justify-content: space-between;
}
.jobd .ll{
	width: 60%;
}
.jobd .ll img{
	width: 100%;
}
.jobd .ll .tt{
	margin: 4rem 0;
}
.jobd .ll .title h3{
	font-size: 2.2rem;
	margin-bottom: 0rem;
}
.jobd .ll .title{
	margin-bottom: 3rem;
}
.jobd .ll p{
	padding-left: 1.6rem;
	color: #333;
	margin: 0.5rem 0;
	line-height: 1.6;
	font-size: 1.46rem;
	position: relative;
	margin-left: 3rem;
}
.jobd .ll p::before{
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
	height: 5px;
	background: #333;
	border-radius: 50%;
}
.jobd .rr{
	width: 34%;
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
    padding: 6rem 4rem;
	box-sizing: border-box;
	height: 100%;
}
.jobd .rr .title h3{
	font-size: 2.6rem;
}
.jobd .rr p{
	margin: 4rem 0;
}
.jobd .rr .inputs{
	padding: 1rem 0;
    border-bottom:1px solid  rgba(0, 0, 0, 0.06);
    background-color: #FFFFFF;
	color: #454545;
	font-size: 1.46rem;
	width: 100%;
	box-sizing: border-box;
}
.jobd .rr textarea{
	height: 120px;
}

.about0 .ll{
	border: none;
	border-radius: 0;
	width: 46%;
	padding: 0;
	height: inherit;
}
.about0 .rr .title{
	width: 103%;
}
.about0 .rr .title h4{
	font-weight: normal;
	font-size: 1.6rem;
	letter-spacing: 0;
}
.about0 .rr .title h3 strong{
	font-size: 3.6rem;
	color: #ff6d00;
}
.about0 .rr .title p{
	font-size: 1.5rem;
	margin-bottom: 2rem;
}
.about0 .ll img{
	height: initial;
	width: 100%;
}
.about1 {
	padding-top: 2%;
}
.about1 .title{
	text-align: center;
}
.about1 ul{
	align-items: initial;
}
.about1 ul li{
	margin-top: 2rem;
	width: 32.5%;
	background: #EEF2FE7A;
	padding: 3.5%;
	box-sizing: border-box;
	border-radius: 50px 0px 50px 0px;
	height: inherit;
}
.about1 ul li img{
    width: 9rem;
}
.about1 ul li h5{
	font-size: 2.2rem;
	margin: 2rem 0 1rem;
}
.about1 ul li p{
	font-size: 1.5rem;
}
.about2 .contain{
	align-items: initial;
}
.about2 .contain .ll{
	width: 44%;
}
.about2 .contain .rr{
	width:51%;
}
.about2 .contain .rr .inps{
	background: #fff;
	border-radius: 15px 0px 15px 0px;
	color:#0A0A0A;
}
.team ul{
	align-items: initial;
	justify-content: flex-start;
}
.team ul li{
	margin: 1.5% 3% 1.5% 0 ;
	width: 31.3%;
	background: #fff;
	box-sizing: border-box;
	border-radius: 70px 0px 70px 0px;
	height: inherit;
	box-shadow: 0 5px 20px rgba(34, 34, 34, 0.1);
	text-align: center;
}
.team ul li:nth-of-type(3n){
	margin-right: 0;
}
.team ul li .img{
    width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
}
.team ul li .img .im img{
    width: 100%;
	transform: scale(1.1);
	transition: all 0.4s ease-in-out 0s;
}
.team ul li:hover .img .im img{
   transform: scale(1);
   opacity: 0.7;
}
.team ul li .img .ols{
	position: absolute;
	right: -100%;
	bottom: 0;
	background: #0A2FA6;
	transition: all 0.4s ease 0s;
}
.team ul li:hover .img .ols{
	right: 0;
}
.team ul li .img .ols img{
	width: 2rem;
	padding: 2rem 1.5rem;
}
.team ul li .img .ols img:last-of-type{
	display: none;
}
.team ul li .img .ols:hover img:first-of-type{
	display: none;
}
.team ul li .img .ols:hover img:last-of-type{
	display: block;
}
.team ul li h5{
	font-size: 2.2rem;
	margin: 2rem 0 0rem;
}
.team ul li p{
	font-size: 1.4rem;
	margin: 0.5rem 0 2rem;
}
.teamd {
	padding-bottom: 0;
}
.teamd .contain{
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    padding: 4rem;
	border-radius: 100px 0px 100px 0px;
	box-sizing: border-box;
	align-items: center;
}
.teamd .contain .ll{
	width: 38%;
}
.teamd .contain .ll img{
	width: 100%;
}
.teamd .contain .rr{
	width: 57%;
}
.teamd .contain h4{
	letter-spacing: 0;
	margin-bottom: 0;
}
.teamd .contain .title i{
	font-size: 1.5rem;
	color: #0A2FA6;
	font-weight: 600;
}
.teamd .contain .title p{
	font-size: 1.5rem;
}
.teamd  dl dd{
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	transition: all 0.4s ease 0s;
}
.teamd  dl dd img{
	width: 2.3rem;
	margin-right: 2rem;
	margin-top: -2px;
}
.teamd  dl a:hover dd{
	color: #0A2FA6;
}
.teamd  dl dd.oo{
	margin-top: 4rem;
}
.teamd  dl dd.oo img{
	width: 2.1rem;
	background: #555;
	border-radius: 2px;
	transition: all 0.4s ease 0s;
}
.teamd  dl dd.oo:hover img{
	background: #ff6d00;
}
.service0{
	padding: 5rem 0;
}
.service2 .title{
	text-align: center;
	padding-top: 6rem;
}
.service2 ul{
	align-items: initial;
}
.service2 ul li{
	margin-top: 2rem;
	width: 32.5%;
    background-color: #EBEBEB;
	padding: 3.5rem;
	box-sizing: border-box;
	height: inherit;
	text-align: center;
}
.service2 ul li img{
    width: 20rem;
	max-width: 90%;
	margin: auto;
}
.service2 ul li h5{
	font-size: 2rem;
	margin: 0rem 0 0;
	font-weight: normal;
}
.service3 {
	padding-bottom: 2%;
}
.service3 .index_contact{
	box-shadow: none;
}
.service3 .contain{
	align-items: inherit;
	box-shadow: none;
}
.service3 .contain .ll{
	padding: 0;
	width: 50%;
}
.service3 .contain .rr{
	padding: 5% 2.5%;
	box-sizing: border-box;
	width: 50%;
	background: #f1f1f1;
}
.service3 .contain .rr .title{
	padding-left: 5%;
}
.service3 .contain .rr h3{
	color: #0a0a0a;
	padding-top: 0;
}
.service3 .contain .rr h3::before{
	display: none;
}
.service3 .contain .rr .bbs p{
	width: 48%;
	margin: 0;
}
.service3 .contain .rr .bbs .inps{
	width: 100%;
	background: #fff;
	border-radius: 0;
	padding: 1.5rem;
	height: 51px;
	color: #0a0a0a;
}
.service3 textarea {
	height: 120px !important;
}
.service3 .more{
	background: #0A2FA6;
}
.service3 .more:hover{
	background: #ff6d00;
}
.serviced1  .contain{
	align-items: inherit;
}
.serviced1 .ll{
	width: 64%;
	border-radius: 100px 0px 100px 0px;
}
.serviced1 ul{
	width: 32%;
}
.serviced1 ul li{
	margin-bottom: 1.5rem;
	padding: 1.6rem 3rem;
    transition: all .5s ease;
    border-radius: 30px 0 30px 0;
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    background: #F5F7FC;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.serviced1 ul li.active{
	background: #0A2FA6;
	color: #fff;
}
.serviced1 ul li.active i{
	color: #fff;
}
.serviced1 ul li:hover{
	background: #ff6d00;
	color: #fff;
}
.serviced1 ul li:hover i{
	color: #fff;
}
.serviced2 .title h3{
	font-size: 3.8rem;
}
.serviced2 .tt p strong{
    position: relative;
    padding-top: 1.8rem;
	font-weight: 700;
    font-family: "title";
    color: #0a0a0a;
	font-size: 3.6rem;
    margin: 6rem 0 2rem;
	display: block;
}
.serviced2 .tt p strong::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 65px;
    height: 5px;
    opacity: 1;
    background: #FF6D00;
    z-index: 2;
}
.serviced2 .tt p:not(:has(strong)) {
	padding-left: 2.5rem;
	position: relative;
  }
  
.serviced2 .tt p:not(:has(strong))::before {
	content: '';
	background: url(../images/ok.png) no-repeat center left/90%;
	position: absolute;
	left: 0;
	top: 4px;
	width: 20px;
	height: 20px;
  }
.serviced2 .tt h6{
	font-size: 1.5rem;
	font-weight: normal;
	width: 65%;
	margin-top: 6rem;
	line-height: 1.8;
}
.serviced2 .title2 h3{
	color: #0a0a0a;
	font-size: 3.6rem;
	margin: 6rem 0 ;
}
.serviced2 ul{
	display: flex;
	padding: 0 3%;
	box-sizing: border-box;
}
.serviced2 ul li{
	width: 31.3%;
	margin-right: 3%;
}
.serviced2 ul li:nth-of-type(3n){
	margin-right: 0;
}
.pagination-wrapper {
}
#pages {
    width: 67%;
    display: flex;
    justify-content: center;
}
#pages li{
    margin: 4px;
}
#pages li span,#pages li a{
    display: block;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
}
#pages li.active span{
     color: #fff !important;
    background: #ff6d00 ;
    border-color: transparent ;
}
#pages li:hover a{
    color: #fff !important;
    background: #ff6d00 ;
    border-color: transparent ;
}
#pages li.disabled {
    opacity: 0.5;
    filter: grayscale(0.8);
}