/**
 * 惠州市赛旺电子有限公司
 *
 * Copyright 2024 Saiwnag
 *
 * Released on: April 7, 2024
 */
/*初始化全局*/
body,html{margin:0;padding:0}blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,html,input,li,ol,p,pre,textarea,ul{margin:0;padding:0;list-style-type:none}em{font-style:normal}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}textarea{overflow:auto!important}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}:focus{outline:0}::-webkit-input-placeholder{color:#cecece;font-size:14px}:-moz-placeholder{color:#cecece;font-size:14px}::-moz-placeholder{color:#cecece;font-size:14px}:-ms-input-placeholder{color:#cecece;font-size:14px}img{vertical-align:middle;border:0}a{color:#707070;text-decoration:none}a:active,a:hover{color:#60a9d7;text-decoration:none}.show{display:inline-block}.hide{display:none!important}.scroll{overflow-y:auto;display:block!important}hr{border:0;border-bottom:1px solid #cfd2d9}

/* 设置字体 */
html, body {
	position: relative;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family:Arial,Helvetica,STHeiti,Tahoma;
	font-size: 14px;
	/*overflow-x:hidden;*/
}
:root {
  --color:#da251c;
  --background:linear-gradient(to right,#da251c,#fc2217);
  --width:94%;
  --max:1560px;
  --padding:4% 0;
}
@media(max-width:768px) {
  :root {
    --padding:20px 0;
  }
}
* {
  text-decoration: none!important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.clearfix::after {
    display: block;
    clear: both;
    height: 0;
    content: ' ';
}
.blank60{
    height: 60px;
    width: 100%;
}
/* 重置 */
div, form, p, i, img, ul, li, ol, dl, dt, dd, table, tr, td, th, fieldset, label, legend, select, button, input {
	margin: 0;
	padding: 0;
}
/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: normal;
}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
	margin: 0;
}
/* 列表样式 */
ul, ol, li, dl, dt, dd {
	list-style: none;
}
/* 图片样式 */
img, a img {
	border: 0px;
	padding: 0px;
	margin: 0px;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}
@media only screen and (max-width: 768px) {
 img, a img {
	max-width:100%;
 }
}
/*重置默认链接*/
a {
	max-width: 100%;
	outline: 0 none;
	text-decoration: none;
	color: #333;
}
a:hover {
	text-decoration: none;
	color: #000;
}
a:focus {
	outline: none;
	-moz-outline: none;
}
input:focus {
	border: none;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.color_block{
  color:#253336 !important;
}
.clearfix {
    zoom: 1;
}
/* 清除浮动 */
.clearBoth {
	clear: both;
	/*控制分类后，各行高度不一样对不齐问题*/
	width: 100%;
	height: 0px;
	font-size: 0;
	overflow: hidden;
	/*控制分类后，各行高度不一样对不齐问题*/
	line-height: 0;
}
.el{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.el_2{display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;text-overflow: ellipsis;overflow: hidden;}
.el_3{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;text-overflow: ellipsis;overflow: hidden;}
/*图片容器*/
.w_fimgbox-001{
	width: 100%;
    height: auto;
    min-height: 200px;
    margin: 0 auto;
}
.w_fimgbox-001 .w_imgbox{
    width: 100%;
    height: 100%;
    position: relative;
    min-height: inherit;
}
.w_fimgbox-001 .w_imgbox > img{
    width: 100%;
    height: auto;
}
.w_fimgbox-001 .w_imgbox > .p_contentbox{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* scrollbar css */
::-webkit-scrollbar {
 width: 9px;
 background-color: #fff;
}
::-webkit-scrollbar-thumb {
 border: solid 2px #fff;
 width: 5px;
 border-radius: 4px;
 background-color: #da251c;
}
::-webkit-scrollbar-corner {
 background-color: #fff;
}
::-webkit-scrollbar:horizontal {
 height: 9px;
}
::-webkit-selection {
 background: #da251c;
 color: #fff;
}
::-moz-selection {
 background: #da251c;
 color: #fff;
}
::selection {
	background: #da251c;
	color: #fff;
}



/* animation */

@keyframes circleProgressLoad_right {
 0% {
 transform: rotate(45deg);
}
 50%, 100% {
 transform: rotate(225deg);
}
}
@keyframes circleProgressLoad_left {
 0%, 50% {
 transform: rotate(45deg);
}
 100% {
 transform: rotate(225deg);
}
}
 @-webkit-keyframes to100vh {
 0% {
 width: 0
}
 100% {
 width: 100vw
}
}
 @keyframes to100vh {
 0% {
 width: 0
}
 100% {
 width: 100vw
}
}


.shkj_locbg {
    width: 100%;
    height: 65px;
    background: url(../images/loc_bg.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    line-height: 65px;
}
.loctop{
	margin-top: 5rem !important;
}
.shkj_locbg a{
	font-size: 0.875rem;
	color: #fff;
}

.hl_title h3{
	font-weight: bold;
	font-size: 2rem;
}

.shkj_reabo_title{
	font-size: 20px;
	font-weight: bold;
	padding-left: 12px;
	margin-bottom: 25px;
}
.shkj_reabo_title:before{
	position: absolute;
    content: "";
    width: 4px;
    background: #da251c;
    top: 5px;
    left: 0;
    height: 16px
}

.dgm_news_show .news_times{
    font-size: 0.875rem;
    padding: 1rem 0;
    color: #aaaaaa;
}
.dgm_news_show .news_content{
	line-height: 2rem;
	font-size: 16px;
}
.dgm_news_show .news_content img{
	max-width: 100% !important;
	height: auto  !important;
}
.news_more-btn{
	padding:60px 0 0;
	overflow: hidden;
}
.news_more-btn .news-prev span.prev-btn {
	border-right: solid 1px #e0e1e1;
	display: block;
	margin: 0 12px;
	float: left;
	line-height: 2rem;
}

.news_more-btn .news-next span.next-btn {
	border-right: solid 1px #e0e1e1;
	display: block;
	margin: 0 12px;
	float: left;
	line-height: 2rem;
}

.news_more-btn .news-prev,
.news_more-btn .news-next {
	margin-bottom: 15px;
	background: #efeff0;
}

.news_more-btn span.title-wrap {
	line-height: 2rem;
	overflow: hidden;
	font-size: 16px;
	/*width: 80%;*/
	display: block;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	-moz-box-orient: vertical;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.shkj_re_rightnews .list{

}

.shkj_re_rightnews .list ul li {
	font-size: 14px;
	border-bottom: 1px solid #efefef;
	padding-bottom: 0.8rem;
	padding-top: 0.8rem;
}
.shkj_re_rightnews .list ul li a:hover p{
	color: #25288d;
}
.shkj_re_rightnews .list ul li p{
	color: #4a4a4a;
}
.shkj_re_rightnews .list ul li span{
	color: #aaaaaa;
}	
/*hr*/
.campus_joblist_a {
    background: #fff;
    margin-top: 30px;
    margin-bottom: 0px;
    -webkit-transition: initial;
    transition: initial;
    color: #666;
}
.campus_joblist_a .form-control{
	width: 360px;
   border-radius: 0;
   font-size: .875rem;
   color: #666;
   border:1px solid #eaeaea;
}
.campus_joblist_a .btn{
	background: #009db2;
	border:0;
	border-radius: 0;
	font-size: .875rem;
	padding-left:40px;
	padding-right:40px;
}
.campus_joblist_b {
    background: #fff;
    margin-top: 30px;
    -webkit-transition: initial;
    transition: initial;
    padding: 0 15px;
}
.bcol{
	background: #f4f4f4;
    overflow: hidden;
}
.campus_joblist_b ol {
    border-bottom: solid 1px #EEEEEE;
    line-height: 30px;
    padding-bottom: 10px;
    list-style: none;
    padding: 0;
    font-weight: bold;
}
.campus_joblist_b ol li {
	color: #333;
	font-size: 16px;
	line-height: 60px;
}
.campus_joblist_b .list-item {
	margin-bottom: 0px;
	font-size: 14px;
}
.campus_joblist_b .list-item .list-item-title {
	line-height:70px;
	cursor: pointer;
	border-bottom: 2px solid #eeeeee;
	position: relative;
}
.campus_joblist_b .list-item .list-item-title .row i{
   position: absolute;
   right: 10px;
}
.tik3{
	display: none;
	color:#25288d;
}
.tik4{
	display: block;
	color: #25288d;
}
.list-item-title.active .tik3{
	display: block;
}
.list-item-title.active .tik4{
	display: none;
}
.list-item-con p{
	line-height: 24px;
	font-size: 14px;
}
.campus_joblist_b .list-item .list-item-title .row .col-4,.campus_joblist_b .list-item .list-item-title .row .col-3,.campus_joblist_b .list-item .list-item-title .row .col-2{
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	padding: 0px 2px;
	font-size: 14px;
}

.campus_joblist_b .list-item .list-item-title .row{
	margin: 0
}
.campus_joblist_b .list-item .list-item-title.active {
	background: #eeeeee;
    border-top: 2px solid #ccc;
}

.campus_joblist_b .list-item .list-item-title .row:hover > div{
	color: #25288d;
}

.campus_joblist_b .list-item .list-item-con {

	/*background-color: #F3F3F3;*/
	margin: 0 -15px;
	padding: 20px;
	font-size: 15px;
	/*color: #686868;*/
	line-height: 23px;
	display: none;
	border-bottom: 2px solid #eeeeee;
}

.campus_joblist_b .list-item .list-item-con .Application_btn a {
	width: 160px;
    height: 45px;
    line-height: 45px;
    color: #FFFFFF;
    font-size: 15px;
    background-color: #911930;
    display: block;
    margin-top: 10px;

}
.campus_joblist_b .list-item .list-item-con .des{
	color:#666;
}
.campus_joblist_b .list-item .list-item-con ul li{
	padding-bottom: 10px;
	font-size: 14px;
	color:#666;
}
.campus_joblist_b .list-item .list-item-con ul li b{
	color: #333;
}
.campus_joblist_b .list-item .list-item-con .mbtn{
	right: 15px;
    bottom: 20px;
    padding: 4px 15px;
    border-radius: 4px;
    color: #25288d;
    border: 1px solid #25288d;
    font-size: 0.875rem;
}
.campus_joblist_b .list-item .list-item-con .mbtn:hover{
	background: #25288d;
	color: #fff;
}

@media only screen and (min-width: 100px) and (max-width: 769px) {
	.campus_joblist_b ol li {
		font-size: 13px;
	}
	.campus_joblist_b{

		min-height: 350px;
	}
}

@media only screen and (min-width: 100px) and (max-width: 685px) {

	.campus_joblist_b .list-item .list-item-title {
		background: none;
	}
	.campus_joblist_b .list-item .list-item-title.active{
		background: none;
	}
	.campus_joblist{
		background: #fff;
		overflow: hidden;
	}
	.campus_joblist .container-fluid{

	}
}