.header{
    background: #FFFFFF;
    border-bottom: 0.01rem solid #EFEFEF;
}
.header .head_logo1{
    display: none;
}
.header .head_logo2{
    display: block;
}
.header .head_nav .nav_item .nav_url{
    color: #000;
}
.head_nav .nav_item.act .nav_url, 
.head_nav .nav_item:hover .nav_url{
    color: #D00000;
}
.head_nav .nav_item.act .nav_url::before,
.header .nav_item:hover .nav_url::before{
    background: #D00100;
}
.header .head_nav .nav_item .nav_url::after{
    background: url(../img/head_icon.png) center no-repeat;
    background-size: cover;
}
.header .head_search .search{
    background: #0042B4;
}
.header .head_search .search img{
    display: block;
}



.position{
    padding-top: 1.58rem;
    height: auto !important;
    box-sizing: border-box;
    border-bottom: none;
}





/* 新闻详情 */
.view{
    padding-top: 0.84rem;
    padding-bottom: 1.13rem;
    box-sizing: border-box;
}
.news_body{
    display: flex;
    justify-content: space-between;
    column-gap: 0.7rem;
}
.news_body .news_fl{
    width: calc(100% - 4.2rem);
}
.news_body .news_fl .news_title{
    text-align: center;
    font-weight: bold;
    font-size: 0.35rem;
    color: #000000;
}
.news_body .news_fl .news_txt{
    margin: 0.63rem 0 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.7rem;
}
.news_body .news_fl .news_txt span{
    font-weight: 400;
    font-size: 0.16rem;
    color: #727272;
    display: flex;
    align-items: center;
}
.news_body .news_fl .news_txt .news_time i{
    display: block;
    width: 0.21rem;
    height: 0.21rem;
    background: url(../img/time1.png) center no-repeat;
    background-size: contain;
    margin-right: 0.08rem;
}
.news_body .news_fl .news_txt .news_visit i{
    display: block;
    width: 0.21rem;
    height: 0.13rem;
    background: url(../img/visit.png) center no-repeat;
    background-size: contain;
    margin-right: 0.08rem;
}
.news_body .news_fl .news_content{
    border-top: 0.01rem solid #D8D8D8;
    border-bottom: 0.01rem solid #D8D8D8;
    padding: 0.4rem 0 0.56rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.18rem;
    color: #000000;
    line-height: 1.94;
}
.news_body .news_fl .news_content p{
    font-weight: 400;
    font-size: 0.18rem;
    color: #000000;
    line-height: 1.94;
}
.news_body .news_fl .news_content img{
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline;
}
.news_body .news_fl .news_url{
    margin-top: 0.29rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.news_body .news_fl .news_li{
    width: calc(100% - 2.5rem);
} 
.news_body .news_fl .news_li a{
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 0.16rem;
    color: #4B4B4B;
    margin-bottom: 0.07rem;
    display: flex;
    align-items: center;
}
.news_body .news_fl .news_li a:last-child{
    margin-bottom: 0;
}
.news_body .news_fl .news_li a:hover{
    color: #0042B4;
}
.news_body .news_fl .news_li a i{
    width: 0.08rem;
    height: 0.14rem;
    display: block;
    margin-right: 0.07rem;
    background: url(../img/jiantou_fl.png) center no-repeat;
    background-size: contain;
}
.news_body .news_fl .news_li a:last-child i{
    background: url(../img/jiantou_fr.png) center no-repeat;
    background-size: contain;
}
.news_body .news_fl .news_li a:hover i{
    background: url(../img/jiantou_fl2.png) center no-repeat;
    background-size: contain;
}
.news_body .news_fl .news_li a:last-child:hover i{
    background: url(../img/jiantou_fr2.png) center no-repeat;
    background-size: contain;
}
.news_body .news_fl .news_share{
    display: flex;
    align-items: center;
    column-gap: 0.2rem;
}
.news_body .news_fl .news_share span{
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.16rem;
    color: #7B7B7B;
    white-space: nowrap;
}


/* 分享功能样式 */
.share {
    display: flex;
    gap: 0.08rem;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.share-btn img {
    width: 0.22rem;
    height: 0.22rem;
    object-fit: contain;
}


/* 微信二维码弹窗 */
.wechat-qrcode-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}
.modal-content h3 {
    margin-bottom: 10px;
    color: #333;
}
.modal-content p {
    color: #666;
    margin-bottom: 20px;
}
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.close:hover {
    color: #333;
}
#wechatQrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}
#wechatQrcode img {
    width: 180px;
    height: 180px;
}














.news_body .news_fr{
    width: 3.5rem;
    position: relative;
}
.news_body .news_fr .news_list{
    position: sticky;
    top: 1.5rem;
    padding-left: 0.5rem;
    box-sizing: border-box;
    border-left: 0.01rem solid #E5E5E5;
}
.news_body .news_fr .news_list .news_class{
    font-weight: bold;
    font-size: 0.25rem;
    color: #000000;
}
.news_body .news_fr .news_list .news_item{
    margin-top: 0.46rem;
    position: relative;
}
.news_body .news_fr .news_list .news_item::before{
    content: "";
    position: absolute;
    width: 0.16rem;
    height: 0.16rem;
    background: #FFFFFF;
    border-radius: 50%;
    border: 2px solid #E5E5E5;
    left: -0.6rem;
    top: 0.1rem;
}
.news_body .news_fr .news_list .news_item_time{
    width: 1.24rem;
    height: 0.35rem;
    line-height: 0.35rem;
    padding-left: 0.1rem;
    font-family: MiSans-Normal;
    font-weight: 400;
    font-size: 0.16rem;
    color: #A8A8A8;
    background: url(../img/time_bg.png) center no-repeat;
    background-size: cover;
}
.news_body .news_fr .news_list .news_item_title{
    margin-top: 0.22rem;
    margin-bottom: 0.09rem;
    font-weight: 600;
    font-size: 0.18rem;
    color: #333333;
    line-height: 1.55;
}
.news_body .news_fr .news_list .news_item_key{
    font-weight: 400;
    font-size: 0.16rem;
    color: #9D9D9D;
    line-height: 1.55;
}
.news_body .news_fr .news_list .news_item:hover::before{
    width: 0.1rem;
    height: 0.1rem;
    border: 5px solid #CF0101;
}
.news_body .news_fr .news_list .news_item:hover .news_item_time{
    color: #fff;
    background: url(../img/time_bg2.png) center no-repeat;
    background-size: cover;
}
.news_body .news_fr .news_list .news_item:hover .news_item_title{
    color: #0042B4;
}
.news_body .news_fr .news_list .news_item:hover .news_item_key{
    color: #000000;
}
.news_body .news_fr .news_list .return{
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 0.1rem;
    margin: 0.7rem 0 0 auto;
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.18rem;
    color: #0042B4;
}
.news_body .news_fr .news_list .return img{
    width: 0.17rem;
    height: 0.14rem;
}







/* 招聘详情 */
.hire_view{
    margin-top: 0.73rem;
    padding-bottom: 1.2rem;
    box-sizing: border-box;
}
.hire_view .hire_top{
    display: flex;
    justify-content: space-between;
    border-bottom: 0.01rem solid #E5E5E5;
    padding-bottom: 0.38rem;
}
.hire_view .hire_top .hire_title{
    font-weight: bold;
    font-size: 0.3rem;
    color: #000000;
    margin-bottom: 0.21rem;
}
.hire_view .hire_top .hire_key{
    display: flex;
    align-items: center;
    column-gap: 0.6rem;
}
.hire_view .hire_top .hire_key span{
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.16rem;
    color: #767676;
    position: relative;
}
.hire_view .hire_top .hire_key span::before{
    content: "";
    position: absolute;
    width: 0.01rem;
    height: 0.14rem;
    background: #CECECE;
    top: 50%;
    transform: translateY(-50%);
    left: -0.3rem;
}
.hire_view .hire_top .hire_key span:first-child:before{
    display: none;
}
.hire_view .hire_top .hire_more{
    width: fit-content;
    height: fit-content;
    background: #0042B4;
    border-radius: 0.1rem;
    padding: 0.17rem 0.58rem;
    box-sizing: border-box;
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    cursor: pointer;
}
.hire_view .hire_top .hire_more:hover{
    background: #D00000;
}

.hire_view .hire_class{
    display: flex;
    align-items: center;
    column-gap: 0.08rem;
    font-family: SC-Bold;
    font-weight: bold;
    font-size: 0.22rem;
    color: #000000;
    margin: 0.37rem 0 0.29rem 0;
}
.hire_view .hire_class i{
    display: block;
    width: 0.05rem;
    height: 0.2rem;
    background: #1E40AF;
}
.hire_view .hire_body,
.hire_view .hire_body p{
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.18rem;
    color: #606060;
    line-height: 1.66;
}
.hire_view .hire_body a{
    width: fit-content;
    height: fit-content;
}
.hire_view .hire_body img{
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}





/* 招聘弹窗 */
.hire_xinxi{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(0.03rem);
    z-index: 999;
    display: none;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}
.hire_xinxi .zhaopin{
    width: 94%;
    max-width: 7rem;
    height: 90%;
    background: #FFFFFF;
    border-radius: 0.1rem;
    overflow: hidden;
}
.hire_xinxi .zhaopin .zhaopin_txt{
    height: 0.6rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.25rem;
    color: #333333;
    background: #F7F7F7;
}
.hire_xinxi .zhaopin .zhaopin_txt .hire_close{
    width: 0.2rem;
    height: 0.2rem;
    position: absolute;
    top: 0.22rem;
    right: 0.29rem;
    cursor: pointer;
}
.hire_xinxi .zhaopin form{
    height: 100%;
    height: calc(100% - 0.6rem);
    padding: 0.29rem 0.1rem 0 0;
    box-sizing: border-box;
    position: relative;
}
.hire_xinxi .zhaopin .down_from{
    width: 100%;
    height: calc(100% - 1.08rem);
    margin-bottom: 0.32rem;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 0 0.43rem 0.01rem 0.42rem;
}
.hire_xinxi .zhaopin .down_from::-webkit-scrollbar {
	width: 0.05rem;
}
.hire_xinxi .zhaopin .down_from::-webkit-scrollbar-thumb {
    height: 2rem !important;
	border-radius: 0.1rem;
	-webkit-box-shadow: inset 0 0 5px #D00000;
	background: #D00000;
}
.hire_xinxi .zhaopin .down_from::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px #EFEFEF;
	border-radius: 0;
	background: #EFEFEF;
}
.hire_xinxi .zhaopin .form_group{
    margin-bottom: 0.2rem;
}
.hire_xinxi .zhaopin .form_group:last-child{
    margin-bottom: 0;
}
.hire_xinxi .zhaopin .form_label{
    font-weight: 400;
    font-size: 0.18rem;
    color: #333333;
}
.hire_xinxi .zhaopin .form_label span{
    color: #D00000;
}
.hire_xinxi .zhaopin .form_text{
    min-height: 0.5rem;
    background: #FFFFFF;
    border-radius: 0.05rem;
    border: 0.01rem solid #CECECE;
    margin-top: 0.09rem;
    display: flex;
    align-items: center;
    padding-left: 0.15rem;
    box-sizing: border-box;
    position: relative;
}
.hire_xinxi .zhaopin .form_text.form_input1::before{
    content: "";
    display: block;
    position: absolute;
    width: 0.11rem;
    height: 0.06rem;
    background: url(../img/xiala.png) center no-repeat;
    background-size: contain;
    top: 0.22rem;
    right: 0.19rem;
}
.hire_xinxi .zhaopin .form_text input{
    width: 100%;
    max-height: 0.48rem;
    border-radius: 0.05rem;
    padding-right: 0.16rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.14rem;
    color: #000;
}
.hire_xinxi .zhaopin .form_text textarea{
    width: 100% !important;
    border-radius: 0.05rem;
    padding: 0.15rem 0.16rem 0.15rem 0;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.14rem;
    color: #000;
}
.hire_xinxi .zhaopin .form_text input::placeholder,
.hire_xinxi .zhaopin .form_text textarea::placeholder{
    color: #B5B5B5;
}
.radio-item {
    width: auto !important;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 0.2rem !important;
}
.radio-item input[type="checkbox"],
.radio-item input[type="radio"] {
    display: none;
}
.radio-custom {
    width: 0.08rem !important;
    height: 0.08rem;
    margin-right: 0.08rem;
    position: relative;
    transition: all 0.3s ease;
    border: 0.01rem solid #DDDDDD;
}
.radio-item span:last-child{
    width: auto;
    font-weight: 400;
    font-size: 0.14rem;
    color: #B5B5B5;
}
.radio-item input[type="checkbox"]:checked + .radio-custom,
.radio-item input[type="radio"]:checked + .radio-custom {
    background:#D00000 url(../img/xuanzong1.png) center no-repeat;
    background-size: 0.06rem 0.04rem;
    border: 0.01rem solid #D00000;
}

#test6{
    justify-content: space-around;
}
.layui-laydate,
.layui-laydate *{
    font-size: 0.14rem;
}
.layui-input-inline{
    width: 40%;
}
.layui-input-inline input{
    border: none;
}
.layui-input-inline:last-child input{
    text-align: right;
}


.pick-area {
	width: 100% !important;
	display: inline-block;
	position: relative;
	font-size: 0.16rem;
	text-decoration: none;
	cursor: default;
}

.pick-show {
	position: relative;
	width: 100%;
	display: flex;
	align-items: baseline;
}

.pick-show span {
	float: left;
	display: inline-block;
	max-width: 1rem !important;
	padding: 0 0.05rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #000000;
	cursor: pointer;
	font-weight: 400;
	font-size: 0.14rem;
}


.pick-show span:hover,
.pick-show span.pressActive {
	background: none !important;
	color: #000000 !important;
	border-radius: 0.04rem;
}

.pick-show em.pick-arrow {
	content: '';
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
	border: 0.06rem solid transparent;
	border-top-color: #555;
}

.pick-show i {
	float: left;
	display: inline-block;
	padding: 0 3px;
	color: #B5B5B5;
	font-style: normal;
	font-size: 0.12rem;
}

.pick-list {
	display: none;
	position: absolute;
	left: -0.16rem;
	top: 0.34rem;
	background: #fff;
	overflow-y: auto;
	overflow-x: hidden;
	width: calc(100% + 0.16rem) !important;
	box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.1);
	border-radius: 0.05rem;
	padding: 0.1rem 0.06rem;
	box-sizing: border-box;
	z-index: 9999;
}

.pick-list::-webkit-scrollbar {
	width: 4px;
	/*height: 4px;*/
}

.pick-list::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.2);
}

.pick-list::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}
.pick-list li {
	margin: 0;
	padding-left: 0.15rem !important;
	list-style: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: 'SC-Regular';
	font-weight: 400;
	font-size: 0.14rem;
	color: #9D9D9D;
	height: 0.31rem;
	line-height: 0.31rem;
	border-radius: 0.05rem;
	position: relative;
	margin-bottom: 0.04rem;
	cursor: pointer;
}
.pick-list li:last-child{
    margin-bottom: 0;
}
.pick-list li::before{
    content: "";
    position: absolute;
    width: 0.17rem;
    height: 0.12rem;
    background: url(../img/duigou.png) center no-repeat;
    background-size: contain;
    top: 0.1rem;
    right: 0.15rem;
}
.pick-list li:hover,
.pick-list li.pick-selectedLi{
	background: #D00000 !important;
	color: #ffffff !important;
}



/* 自定义下拉框 */
.form_group .form_type1 {
	position: absolute;
	left: 0;
	top: calc(100% + 0.01rem);
	width: 100%;
	max-height: 3rem;
	overflow-y: auto;
	z-index: 9;
	display: none;
	background: #FFFFFF;
	box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.1);
	border-radius: 0.05rem;
	padding: 0.1rem 0.05rem;
	box-sizing: border-box;
}
.form_group .form_type1::-webkit-scrollbar {
	width: 0.04rem;    
}
.form_group .form_type1::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	background: rgba(0,0,0,0.2);
}
.form_group .form_type1::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	border-radius: 0;
	background: rgba(0,0,0,0.1);
}
.form_group .form_text.act .form_type1{
	display: block;
}
.form_group .form_type1 .type_item1 {
	box-sizing: border-box;
	cursor: pointer;
	text-align: left;
	font-family: 'SC-Regular';
	font-weight: 400;
	font-size: 0.14rem;
	color: #9D9D9D;
	height: 0.31rem;
	line-height: 0.31rem;
	margin-bottom: 0.04rem;
	padding-left: 0.15rem;
	border-radius: 0.04rem;
    position: relative;
}
.form_group .form_type1 .type_item1:last-child{
    margin-bottom: 0;
}
.form_group .form_type1 .type_item1::before{
    content: "";
    position: absolute;
    width: 0.17rem;
    height: 0.12rem;
    background: url(../img/duigou.png) center no-repeat;
    background-size: contain;
    top: 0.1rem;
    right: 0.15rem;
}
.form_group .form_type1 .type_item1.selected,
.form_group .form_type1 .type_item1:hover {
	color: #fff;
	background: #D00000;
}




.form_text.file{
    background: #F2F2F2 !important;
    border: none !important;
    padding: 0 !important;
    font-weight: 400;
    font-size: 0.14rem;
    color: #B5B5B5;
}
.form_text.file .uploadBtn {
    position: relative;
    width: 0.9rem;
    height: 0.5rem;
    background: #0042B4;
    border-radius: 0.05rem;
    margin-right: 0.12rem;
}
.form_text.file .uploadBtn button {
    width: 100%;
    height: 100%;
    background: #0042B4;
    border: none;
    border-radius: 0.04rem;
    overflow: hidden;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
}
.form_text.file .uploadBtn input {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2
}







.hire_xinxi .zhaopin .sub_box{
    width: 100%;
    height: 0.75rem;
    background: #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 0;
}
.hire_xinxi .zhaopin .sub_box input{
    background: #0042B4;
    border-radius: 0.1rem;
    padding: 0.17rem 0.58rem;
    box-sizing: border-box;
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    cursor: pointer;
}
.hire_xinxi .zhaopin .sub_box input:hover{
    background: #D00000;
}








/* 搜索 */
.search_body {
	width: 100%;
	height: auto;
	padding-top: 0.67rem;
	padding-bottom: 1.2rem;
	box-sizing: border-box;
}

.zhinan_name {
	font-weight: bold;
    font-size: 0.45rem;
    color: #000000;
    line-height: 1;
	width: 100%;
	text-align: center;
	margin-bottom: 0.57rem;
}

.search2 {
	max-width: 9rem;
	margin: 0 auto;
}

.search2 form {
	width: 100%;
    height: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
    background: #FAFAFA;
    border: 0.01rem solid #EBEBEB;
}
.search2 .search2_input {
	width: calc(100% - 0.8rem);
    height: 100%;
	background: none;
	padding: 0.3rem 0.2rem 0.3rem 0.3rem;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 0.16rem;
	color: #000;
}

.search2 .search2_input::placeholder {
	color: #9D9D9D;
}

.search2 .search2_btn {
	width: 0.38rem;
	height: 0.38rem;
	cursor: pointer;
	position: relative;
	z-index: 99999;
	background: url(../img/search2_btn.png) center no-repeat;
	background-size: contain;
    margin-right: 0.38rem;
}


.body_num {
	font-weight: 400;
    font-size: 0.2rem;
    color: #000000;
	display: flex;
	align-items: center;
    justify-content: center;
    margin-top: 0.3rem;
}
.body_num p {
	color: #D00000;
}


.search_list{
    margin-top: 0.53rem;
}
.search_li {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 0.01rem solid #E6E4E4;
	padding-top: 0.31rem;
	padding-bottom: 0.19rem;
	box-sizing: border-box;
}
.search_li .search_txt {
	width: auto;
    max-width: 100%;
}
.search_li .search_txt .search_time{
    font-family: MiSans-Bold;
    font-weight: bold;
    font-size: 0.14rem;
    color: #BCBCBC;
    line-height: 1;
    margin-bottom: 0.16rem;
}
.search_li .search_txt .search_title {
	font-family: SC-Bold;
    font-weight: bold;
    font-size: 0.2rem;
    color: #000000;
    line-height: 1;
	margin-bottom: 0.16rem;
}
.search_li .search_txt .search_cont{
    height: 0.47rem;
	font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.16rem;
    color: #000000;
    line-height: 1.56;
	margin-bottom: 0.16rem;
}
.search_li .search_txt .search_type{
	font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.16rem;
    color: #5C5C5C;
}
.search_li .search_img {
	width: 0.01rem;
    margin-left: 3.3rem;
	height: 1.74rem;
    position: relative;
}
.search_li .search_img .img{
    position: absolute;
    right: 0;
    width: 3rem;
    height: 1.74rem;
    overflow: hidden;
}
.search_li .search_img .img img{
	transition:all .5s;
	-moz-transition:all .5s;
	-webkit-transition:all .5s;
	-o-transition:all .5s;
}
.search_li .search_img:hover .img img{
	transform:scale(1.1);
}







/* 无结果 */
.search_null{
	width: 6.54rem;
	height: auto;
	margin: 0.63rem auto 0;
}
.search_null img{
	width: 6.54rem;
	height: auto;
}
.search_null span{
	width: 100%;
	display: block;
	text-align: center;
	margin-top: -0.05rem;
	font-weight: 400;
    font-size: 0.2rem;
    color: #000000;
}




@media screen and (max-width: 1043px) {
    .position{
        padding-top: 80px;
    }
    
    
    .view{
        padding-top: 40px;
        padding-bottom: 50px;
    }
    
    
    
    /*新闻详情*/
    .news_body .news_fr{
        display: none;
    }
    .news_body .news_fl{
        width: 100%;
    }
    .news_body .news_fl .news_title{
        font-size: 20px;
    }
    .news_body .news_fl .news_txt{
        margin: 30px 0 20px;
    }
    .news_body .news_fl .news_txt .news_time i{
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    .news_body .news_fl .news_content{
        font-size: 14px;
        padding: 20px 0 30px;
    }
    .news_body .news_fl .news_txt span,
    .news_body .news_fl .news_content p,
    .news_body .news_fl .news_li a,
    .news_body .news_fl .news_share span{
        font-size: 14px;
    }
    
    
    
    .news_body .news_fl .news_url{
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .news_body .news_fl .news_li a{
        width: 100%;
        align-items: baseline;
        white-space: normal;
        overflow: visible;
    }
    .news_body .news_fl .news_li a i{
        width: 8px;
        height: 14px;
        margin-right: 7px;
        flex: 0 0 8px;
    }
    .news_body .news_fl .news_li,
    .news_body .news_fl .news_share{
        width: 100%;
    }
    .share-btn,
    .share-btn img{
        width: 22px;
        height: 22px;
    }
    
    
    
    
    
    
    
     /*招聘详情*/
    .hire_view{
        margin-top: 40px;
        padding-bottom: 60px;
    }
    .hire_view .hire_top{
        flex-wrap: wrap;
        padding-bottom: 20px;
        row-gap: 15px;
    }
    .hire_view .hire_top .hire_txt{
        width: 100%;
    }
    .hire_view .hire_top .hire_title{
        font-size: 24px;
        margin-bottom: 15px;
    }
    .hire_view .hire_top .hire_key{
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 30px;
    }
    .hire_view .hire_top .hire_key span{
        font-size: 16px;
    }
    .hire_view .hire_top .hire_key span::before{
        width: 1px;
        height: 14px;
        left: -15px;
    }
    .hire_view .hire_top .hire_more{
        font-size: 16px;
        padding: 10px 25px;
        border-radius: 5px;
    }
    .hire_view .hire_class{
        font-size: 20px;
        margin: 20px 0 15px 0;
        column-gap: 8px;
    }
    .hire_view .hire_class i{
        width: 5px;
        height: 20px;
    }
    .hire_view .hire_body, .hire_view .hire_body p{
        font-size: 14px;
    }
}

@media screen and (max-width: 769px) {
    
}







