 button {
 	background: none;
 	border: none;
 	padding: 0;
 	margin: 0;
 	font: inherit;
 	color: inherit;
 	cursor: pointer;
 	display: flex;
 	align-items: center;
 }

 .jobSection .bannerSwiper {
 	height: 100%;
 }

 .jobSection .bannerSwiper .swiper-wrapper .swiper-slide {
 	overflow: hidden;
 }

 .jobSection .bannerSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
 	background-position: 0 213px;
 }

 .jobSection .bannerSwiper .swiper-wrapper .swiper-slide>a {
 	display: block;
 	width: 100%;
 	height: 100%;
 	overflow: hidden;
 	position: relative;
 }


 .jobSection .bannerSwiper .swiper-wrapper .swiper-slide>a>img {
 	position: absolute;
 	left: 50%;
 	top: 0;
 	transform: translateX(-50%);
 }

 .jobSection {
 	position: relative;
 	width: 100%;
 	height: 1155px;
 }

 .jobSection img {
 	border: 0;
 	vertical-align: top;
 }

 .jobSection .outerSection {
 	position: absolute;
 	top: 30px;
 	left: 0;
 	width: 100%;
 	height: 1300px;
 }

 .jobSection .outerSection .innerSection {
 	position: relative;
 }

 .jobSection .tabBox {
 	font-family: 'fzlt';
 	display: inline-flex;
 	position: absolute;
 	top: 142px;
 	left: 275px;
 	z-index: 3;
 }

 .jobSection .tabBox ul {
 	display: flex;
 	position: relative;
 	height: 60px;
 	overflow: hidden;
 }

 .jobSection .tabBox ul li {
 	position: relative;
 	padding: 0 10px;
 	margin-right: 40px;
 	width: max-content;
 }

 .jobSection .tabBox ul li button {
 	width: 100%;
 	color: var(--colorWhite);
 	font-size: 40px;
 }

 .jobSection .tabBox ul li button svg {
 	color: #6C6E88;
 }

 .jobSection .tabBox ul li.on button,
 .jobSection .tabBox ul li:hover button {
 	color: var(--colorWhite);
 }

 .jobSection .tabBox ul li::before {
 	content: '';
 	width: 0%;
 	height: 20px;
 	border-radius: 10px;
 	position: absolute;
 	z-index: -1;
 	bottom: 0px;
 	left: 50%;
 	transform: translateX(-50%);
 	transition: width .2s var(--easeIng);
 	background-color: var(--colorPurple);
 }

 .jobSection .tabBox ul li.on::before, .jobSection .tabBox ul li:hover::before {
 	width: 100%;

 }

 .jobSection .thumbnail-container {
 	position: absolute;
 	top: 913px;
 	left: 265px;
 	z-index: 10;
 	display: flex;
 	width: 950px;
 	height: 100px;
 	box-sizing: border-box;
 	justify-content: space-between;
 	align-items: center;
 }

 .jobSection .thumbnail-container .thumb_arrow {
 	margin: 0;
 	top: auto;
 	left: auto;
 	right: auto;
 	position: relative;
 	height: inherit;
 	width: 40px;
 	height: 40px;
 	text-indent: -999em;
 	background: url(https://static.web.sdo.com/mxd/pic/mxd/web8/pc/thumb_arrow.png) no-repeat 50% 50%;
 	border-radius: 50%;
 	filter: drop-shadow(0 0 10px rgba(0, 0, 0, .5));
 	transition: all .2s var(--easeIng);
 }

 .jobSection .thumbnail-container .thumb_arrow.swiper-button-prev {
 	background-color: var(--colorBlue);
 }

 .jobSection .thumbnail-container .thumb_arrow.swiper-button-next {
 	background-color: var(--colorPurple);
 }

 .jobSection .thumbnail-container .thumb-swiper {
 	overflow: hidden;
 	width: 810px;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide {
 	width: 250px !important;
 	height: 100px !important;
 	flex-shrink: 0;
 	cursor: pointer;
 	display: flex;
 	flex-direction: column;
 	align-items: center;
 	margin-right: 30px;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide .thumb_img {
 	width: 100%;
 	height: 100%;
 	overflow: hidden;
 	position: relative;
 	box-sizing: border-box;
 	border-radius: 0 18px;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide .thumb_img::before {
 	content: '';
 	width: 100%;
 	height: 100%;
 	display: block;
 	position: absolute;
 	opacity: 0;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide .thumb_img>img {

 	position: relative;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide .thumb_nickName {
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	color: var(--colorWhite);
 	font-size: 24px;
 	font-family: 'fzlt';
 	line-height: 50px;
 	margin: -50px 0 0 -115px;
 	text-shadow:
 		0 0 2px #ea597c,
 		0 0 2px #ea597c,
 		0 0 2px #ea597c,
 		0 0 2px #ea597c;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide:hover .thumb_img,
 .jobSection .thumbnail-container .thumb-swiper .swiper-slide.swiper-slide-thumb-active .thumb_img {
 	border: 3px solid transparent;
 	background-clip: padding-box, border-box;
 	background-origin: padding-box, border-box;
 	background-image:
 		linear-gradient(var(--colorWhite), var(--colorWhite)),
 		linear-gradient(90deg, #ff27ff, #d691f7, #8acfeb, #01ebe4);
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide:hover .thumb_img::before,
 .jobSection .thumbnail-container .thumb-swiper .swiper-slide.swiper-slide-thumb-active .thumb_img::before {
 	opacity: 1;
 	transition: opacity .4s;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide:hover .thumb_img>img,
 .jobSection .thumbnail-container .thumb-swiper .swiper-slide.swiper-slide-thumb-active .thumb_img>img {
 	mix-blend-mode: normal;
 }

 .jobSection .thumbnail-container .thumb-swiper .swiper-slide:hover .thumb_txt,
 .jobSection .thumbnail-container .thumb-swiper .swiper-slide.swiper-slide-thumb-active .thumb_txt {
 	opacity: 1;
 }

 .jobSection .thumbnail-container .thumb_arrow.swiper-button-next {
 	transform: rotateY(180deg);
 }

 .jobSection .thumbnail-container .thumb_arrow.swiper-button-prev:hover {
 	transform: scale(1.1);
 }

 .jobSection .thumbnail-container .thumb_arrow.swiper-button-next:hover {
 	transform: rotateY(180deg) scale(1.1);
 }

 .jobSection .char_contents {
 	height: 100%;
 	width: 100%;
 	overflow: hidden;
 	position: absolute;
 	left: 0;
 	top: 0;
 }

 .jobSection .bannerSwiper .swiper-slide {
 	background-position: center center;
 	display: flex;
 	justify-content: center;
 	position: relative;
 	background-repeat: no-repeat;
 	background-position: -100% 213px;
 	transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1);
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo {
 	width: 100%;
 	padding: 295px 275px;
 	box-sizing: border-box;
 	position: relative;
 	color: #000;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner {
 	position: relative;
 	z-index: 5;
 	box-sizing: border-box;
 	width: 480px;
 	color: var(--colorWhite);
 	font-family: 'fzlt';
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .char_tag {
 	display: flex;
 	gap: 4px;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .char_tag .state {
 	position: absolute;
 	top: -82px;
 	left: 0;
 	width: 80px;
 	height: 30px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	font-size: 22px;
 	line-height: 30px;
 	text-transform: uppercase;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .char_tag .state.new {
 	color: #000;
 	background-color: #01ebe4;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .char_tag .state.classic {
 	color: #000;
 	background-color: #ff0042;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .name {
 	font-size: 70px;
 	color: var(--colorGray2);
 	line-height: 70px;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .englishName {
 	font-size: 20px;
 	line-height: 20px;
 	margin-bottom: 20px;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .detail {
 	height: 40px;
 	margin-bottom: 10px;
 	display: flex;
 	align-items: center;
 	gap: 20px;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .nickName {
 	font-size: 40px;
 	line-height: 40px;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .jobIcon {
 	padding: 0 10px;
 	height: 30px;
 	line-height: 30px;
 	font-size: 20px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	gap: 5px;
 	background-color: var(--colorGray2);
 	border-radius: 15px;
 }



 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .title br {
 	display: none;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .mainText {
 	font-size: 20px;
 	line-height: 30px;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .subText {
 	font-size: 20px;
 	line-height: 30px;
 	margin-bottom: 20px;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .playBtn {
 	position: relative;
 	height: 270px;
 	width: 480px;
 	cursor: pointer;
 	border: 4px solid var(--colorGray2);
 	border-radius: 20px;
 	overflow: hidden;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .playBtn img {
 	display: block;
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	transition: all .3s ease;
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .playBtn::before {
 	content: "";
 	position: absolute;
 	z-index: 2;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background-color: rgba(42, 42, 42, .5);
 	transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1);
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .playBtn::after {
 	content: "";
 	position: absolute;
 	z-index: 2;
 	top: 50%;
 	left: 50%;
 	width: 61px;
 	height: 61px;
 	margin: -30.5px 0 0 -30.5px;
 	background: url(https://static.web.sdo.com/mxd/pic/mxd/web8/pc/playBtn.png) no-repeat;
 	transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1);
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .playBtn:hover img {

 	transform: scale(1.1);
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .playBtn:hover::before {
 	background-color: rgba(42, 42, 42, .3);
 }

 .jobSection .bannerSwiper .swiper-slide .slideInfo .slideInfo_inner .playBtn:hover::after {
 	transform: scale(1.1);
 }



 .jobSection .bannerSwiper .swiper-slide .slideInfo .mainImg {
 	position: absolute;
 	bottom: 0;
 	right: 0;
 	transform: translateX(100%);
 	transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1);
 }

 .jobSection .bannerSwiper .swiper-slide.swiper-slide-visible .slideInfo .mainImg {
 	transform: translateX(0px);
 }

 /* 视频弹框 */
 body.overflowHidden {
 	width: 100%;
 	height: 100%;
 	overflow: hidden !important;
 }

 .close_gn {
 	width: 50px;
 	height: 50px;
 	background-image: url("https://static.web.sdo.com/mxdc/pic/mxdc_website/web1/modal_close_type1.png");
 	background-repeat: no-repeat;
 	background-position: center;
 	background-size: contain;
 	font-size: 0;
 	margin-left: auto;
 }

 .close_gn:hover {
 	background-image: url("https://static.web.sdo.com/mxdc/pic/mxdc_website/web1/modal_close_type1_on.png");
 }

 .modal_target.none {
 	display: none;
 }

 .video_modal {
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background-color: rgba(50, 52, 65, .9);
 	z-index: 100000000;
 }

 .video_modal .video_modalInner {
 	position: absolute;
 	width: 920px;
 	/* height: 535px; */
 	box-sizing: border-box;
 	padding: 20px;
 	background-color: var(--mainBgColor);
 	border-radius: 30px;
 	left: 50%;
 	top: 50%;
 	transform: translate(-50%, -50%);
 }

 .video_modal .video_modalInner .close_gn {
 	position: absolute;
 	top: -60px;
 	left: 50%;
 	transform: translateX(-50%);
 }

 .video_modal .video_modalInner video {
 	width: 100%;
 	border-radius: 20px;
 	vertical-align: top;
 }