* {
    box-sizing: border-box;
}

input {
    outline: none;
    border: none;
}

a {
    text-decoration: none;
    color: #333;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

h3,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.5;
}

th,
td {
    padding: 0;
}

em {
    font-style: normal;
}

/* 声明字体 */
/*@font-face {*/
/*    font-family: alibabaph;*/
/*    src: url(../lib/font/AlibabaPuHuiTi.ttf);*/
/*}*/

/*body {*/
/*    font-family: 'alibabaph'!important;*/
/*    font-size: 16px !important;*/
/*    background-color: #F3F6FA;*/
/*    color: #333;*/
/*}*/

/* logo */
.header-login {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.main-area {
    width: 1280px;
    margin: 0 auto;
}

.header-login .login-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-login .login-group .logo-pic {
    height: 50px;
    cursor: pointer;
}

.header-rg {
    display: flex;
    align-items: center;
}

.header-rg .search {
    position: relative;
    width: 270px;
    height: 38px;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
}

.header-rg .search input {
    width: 242px;
    padding: 9px 16px;
    background: #fff;
}

.header-rg .search .icon-search {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.header-rg .search input::-webkit-input-placeholder {
    /* WebKit browsers */
    font-size: 14px;
    color: #999999;
}

.header-rg .search input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    font-size: 14px;
    color: #999999;
}

.header-rg .search input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    font-size: 14px;
    color: #999999;
}

/* 登录按钮 */
.header-rg .login {
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-size: 15px;
}


.header-rg .login span {
    display: block;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    border: 1px solid #2B9FFF;
    color: #2B9FFF;
    margin-right: 10px;
    font-size: 15px;
}


.header-rg .login:hover span {
    background-color: #2B9FFF;
    color: #fff;
}

.header-rg .login:hover p {
    color: #2B9FFF;
}

/* 导航 */
.nav-group {
    width: 100%;
    height: 60px;
    font-size: 17px;
    position: relative;
}

.nav-group .nav-item .item {
    float: left;
    width: 160px;
    text-align: center;
}

.nav-group .nav-item .item a {
    display: block;
    line-height: 60px;
    color: #fff;

}

.nav-group .nav-item .item a .nav-text {
    position: relative;
    padding: 0 30px;
}

.nav-group .nav-item li.item:hover a {
    background-color: #2B9FFF;
    transform: skewX(-20deg);
}

.nav-group .nav-item li.item:hover a .nav-text {
    transform: skewX(20deg);
}
.nav-group .nav-item .item a .nav-text::after {
    position: absolute;
    content: '';
    background: url("../img/item-bg.png");
    background-size: 100% 100%;
    width: 16px;
    height: 42px;
    right: -8px;
    top: 30px;
    transform: translateY(-50%);
}
/* 二级导航 */
.nav-item .item .sec-nav-item .sec-item a {
    color: #3564b8;
    line-height: 60px;
}

.nav-group .nav-item li.item:hover .sec-nav-item .sec-item a {
    background: none;
    transform: skewX(0deg);
}

.nav-item .item .sec-nav-item {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
    backdrop-filter: blur(6px);
    display: none;
    font-size: 18px;
}

.nav-item .item .sec-nav-item .sec-item {
    display: inline-block;
    padding: 0 27px;
}

.nav-item .item .sec-nav-item .sec-item:hover a {
    color: #2B9FFF;
}

.nav-group .nav-item .item:hover .sec-nav-item {
    display: block;
}

/* 底部 */
.footer {
    width: 100%;
    background-color: #314569;
    padding-bottom: 20px;
    margin-top: 40px;
}

.footer .index-under {
    display: flex;
}

.footer .index-under li {
    flex: 3;
    border-left: 1px solid #465878;
    padding-top: 30px;
}

.footer .index-under li:last-child {
    flex: 2;
}

.footer .index-under li h3 {
    color: #FEFFFF;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
}

.footer .index-under li h3::before {
    content: '';
    width: 2px;
    height: 20px;
    background-color: #1F70FF;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer .index-under li p {
    font-size: 14px;
    color: #8E99AD;
    margin-bottom: 6px;
    margin-left: 20px;
    margin-right: 20px;
}

.footer .index-under li .e-mail {
    margin-top: 30px;
}

.footer .index-under li img {
    width: 100px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.index-side {
    width: 100%;
    background-color: #314569;
    padding: 16px 0;
    text-align: center;
    color: #8E99AD;
    font-size: 14px;
    border-top: 1px solid #465878;
}

/* tab切换 */
.index-cont1 .notice {
    width: 853px;
    float: right;
    background-color: #fff;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.02);
    padding: 15px 20px 16px;
}

.notice .title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EFEFEF;
}

.notice .tab-title {
    display: flex;
    font-size: 21px;
}

.notice .tab-title li {
    position: relative;
    line-height: 60px;
    margin-right: 50px;
    cursor: pointer;
}

.notice .tab-title li::after {
    content: '/';
    position: absolute;
    right: -31px;
    color: #949494;
    line-height: 60px;
    cursor: default;
}

.notice .tab-title li:last-child {
    margin-right: 0;
}

.notice .tab-title li:last-child:after {
    content: '';
}

.notice .title-group a i {
    font-size: 18px;
    color: #024FD6;
}

.notice .tab-title li:hover,
.notice .tab-title li.active {
    color: #1F70FF;
}

.notice .tab-title li .sel {
    position: relative;
}

.notice .tab-title li:hover span::after,
.notice .tab-title li.active span::after {
    content: '';
    width: 40px;
    height: 3px;
    background-color: #1F70FF;
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: skewX(-30deg);
}

/* 列表 */
.notice .list-item {
    margin-top: 18px;
}

.notice .list-item .item-group {
    display: block;
    width: 100%;
    height: 54px;
    line-height: 54px;
    position: relative;
    margin-top: 10px;
}

.notice .list-item .item-group .time {
    width: 83px;
    height: 54px;
    line-height: 54px;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F5F7FA;
    color: #2B9FFF;
}

.notice .list-item .item-group .tex {
    width: 728px;
    float: right;
    background-color: #F5F7FA;
    padding: 0 20px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.notice .list-item .item-group .time p {
    line-height: 22px;
    font-size: 20px;
}

.notice .list-item .item-group .time .yam {
    font-size: 12px;
}

.top-lable {
    position: absolute;
    top: 0;
    right: 0;
}

.notice .item-group:hover .time,
.notice .item-group:hover .tex {
    background-color: #2B9FFF;
    color: #fff;
}

/* 职位卡片 */
.cont3-group .list-item li {
    float: left;
    width: 413px;
    margin-right: 20px;
    padding: 26px 20px 20px;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0px 3px 6px 1px rgb(0 0 0 / 2%);
}

.cont3-group .list-item li:hover {
    box-shadow: 0px 3px 10px 1px rgb(141 143 148 / 19%);
}

.post-mod h3 {
    font-size: 18px;
}

.post-mod h3 a.post-title {
    float: left;
    width: 80%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.post-mod h3 a.post-title:hover {
    color: #008CFF;
}

.post-mod h3 span.sal {
    float: right;
    font-size: 17px;
    color: #FF8B00;
}

.post-mod .tips {
    display: flex;
    padding: 12px 0 20px;
    border-bottom: 1px solid #E9E9E9;
    margin-bottom: 12px;
    font-size: 14px;
    color: #8a8d90;
}

.post-mod .tips span {
    padding: 0 10px;
    position: relative;
}

.post-mod .tips span::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 75%;
    background-color: #DADADA;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.post-mod .tips span:first-child {
    padding-left: 0;
    display: inline-block;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-mod .tips span:last-child {
    padding-right: 0;
}

.post-mod .tips span:last-child::after {
    width: 0;
}

.post-mod .company {
    display: flex;
    align-items: center;
}

.post-mod .company .company-logo {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #f2f6f9;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 13px;
}

.post-mod .company .company-logo img {
    width: 100%;
}

.post-mod .company .company-logo .company-default {
    width: 100%;
}

.post-mod .company .company-infor h3 {
    font-size: 16px;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.post-mod .company .company-infor {
    width: 100%;
}

.post-mod .company .company-infor h3 a:hover {
    color: #0077d7;
}

.post-mod .company .company-infor h3 a {
    width: 86%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.company-infor .property {
    display: flex;
    align-items: center;
}

.company-infor .property img {
    width: 13px;
}

.company-infor .property span {
    font-size: 13px;
    margin-left: 5px;
    color: #666;
}

/* 宣讲会 */
.list-item li.preach {
    width: 630px;
    cursor: pointer;
}

.post-mod h3.preach-title {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #E9E9E9;
    margin-bottom: 8px;
}

.preach-title .preach-tl .pattern {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 10px;
}

.preach-title .preach-tl .on-line {
    background-color: #E8F0FF;
    color: #1F70FF;
}

.preach-title .preach-tl .below-the-line {
    background-color: #FFF3E5;
    color: #FF8B00;
}

.post-mod .status {
    float: right;
    font-size: 15px;
    position: relative;
}

.post-mod .status::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.post-mod .ongoing {
    color: #008CFF;
}

.post-mod .ongoing::before {
    background-color: #008CFF;
}

.post-mod .not-starting {
    color: #959EB0;
}

.post-mod .not-starting::before {
    background-color: #BAC1CE;
}

.post-mod .ending {
    color: #E83736;
}

.post-mod .ending::before {
    background-color: #F39A9A;
}

.post-mod h3.preach-title .preach-tl {
    width: 85%;
    display: flex;
}

.post-mod h3.preach-title .preach-tl .prtl-txt {
    max-width: 82%;
    float: left;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.post-mod .part-xt {
    color: #666;
    margin-bottom: 14px;
}

.post-mod p:last-child {
    margin: 0;
}

.post-mod p span.icon-area-icon {
    color: #FF611F;
    margin-right: 10px;
}

.post-mod p span.icon-address {
    color: #FF611F;
    margin-right: 10px;
    font-size: 18px;
}

.post-mod p span.icon-time-icon {
    color: #FFAB00;
    margin-right: 10px;
}

.list-item li.preach:hover .preach-title .preach-tl .prtl-txt {
    color: #008CFF;
}

.cont3-group .more {
    width: 100%;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid rgba(31, 112, 255, 0.14);
    text-align: center;
}

.cont3-group .more a {
    width: 100%;
    display: block;
    padding: 20px 0;
    color: #024FD6;
    font-size: 18px;
}

.cont3-group .list-item {
    margin-right: -20px;
}

/* 二级页面-新闻公告列表类 */
.banner-sec {
    width: 100%;
    height: 260px;
    padding-top: 20px;
    position: relative;
}

/* 面包屑 */
.bread-crumb{
    margin-top: 30px;
}
.bread-crumb span,
.bread-crumb .bread-crumb-item {
    color: #1F70FF;
}

.bread-crumb a:last-child {
    cursor: default;
}

.banner-sec .banner-tl {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.banner-sec .banner-txt {
    width: 320px;
    height: 78px;
    line-height: 78px;
    text-align: center;
    border: 1px solid #96B9F7;
    transform: skewX(-20deg);
    font-size: 28px;
    color: #1F6FFC;
}

.banner-sec .banner-txt .res-deg {
    transform: skewX(20deg);
}

/* tab */
.ass-tab {
    background-color: #fff;
    font-size: 21px;
    box-shadow: 0px 13px 17px 1px rgba(218, 225, 234, 0.18);
}

.ass-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .ass-group .ass-nav {
    height: 80px;
    line-height: 80px;
}

.ass-group .ass-nav li.ass-item {
    float: left;
    margin-right: 40px;
    cursor: pointer;
    position: relative;
} */

.ass-group .ass-nav {
    width: 90%;
    height: 80px;
    line-height: 80px;
    overflow: hidden;
}
.ass-group .ass-nav ul{
    display:flex;
    flex-wrap: nowrap;
    position: relative;
}

/* 取消浏览器水平条 */
::-webkit-scrollbar {
    display: none;
    -ms-overflow-style:none;
}

.ass-group .ass-nav li.ass-item {
    float: left;
    flex: 0 0 auto;
    margin-right: 40px;
    cursor: pointer;
    position: relative;
}


.ass-group .ass-nav li.ass-item:last-child {
    margin: 0;
}

.ass-group span {
    width: 40px;
    height: 40px;
    box-shadow: 0px 1px 6px 1px rgb(183 184 185 / 38%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    color: #6D7582;
}

.ass-group .ass-nav li.ass-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1F70FF;
    border-radius: 4px 5px 0px 0px;
    display: none;
}
.ass-group .ass-nav li.active{
    color: #1F70FF;
}
.ass-group .ass-nav li.active a {
    color: #1F70FF;
}

.ass-group .ass-nav li.active::after {
    display: block;
}

/* 二级菜单 */
.ass-tab2 {
    height: 68px;
    line-height: 68px;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid #E5EAF1;
    border-top: 1px solid #E5EAF1;
}

.ass-tab2 .ass-item2 {
    float: left;
    margin-right: 30px;
    font-size: 15px;
}

.ass-tab2 .ass-item2:last-child {
    margin: 0;
}

.ass-tab2 .ass-item2 span {
    background-color: #e9ecf2;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.ass-tab2 li.active span {
    background-color: #1F6FFC;
    color: #fff;
}

/* 翻页 */
.page-wrap {
    height: 36px;
    line-height: 36px;
    margin-top: 30px;
}

.page-wrap .data-num span {
    color: #1F6FFC;
}

.page-wrap .pagination {
    float: left;
}

.page-wrap .pagination li {
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.pagination li .last {
    color: #D2D2D2;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    background: #fff;
    font-size: 14px;
    float: left;
    font-weight: normal;
    color: #333;
    padding: 0px 16px;
    border: solid 1px #e8e8e8;
    border-radius: 5px;
}

.page-wrap .data-num {
    color: #666;
    float: right;
}

.pagination .active span{
    background-color: #1F70FF;
    color: #fff;
}

/* 筛选 */
.screen-group {
    padding: 20px 20px 10px;
    background-color: #fff;
    margin-top: 20px;
    display: flex;
    font-size: 15px;
}

.screen-group .type-name {
    width: 95px;
    margin-top: 8px;
    color: #666666;
}

.screen-group .type-list {
    flex: 1;
}

.screen-group .type-list li {
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 2px;
    cursor: pointer;
    padding: 7px 16px;
    border-radius: 4px;
}

.screen-group .type-list li.active {
    background-color: #2B9FFF;
    color: #fff;
  
}

/* 职位信息、宣讲会、双选会公共样式 */
.infor-sec {
    width: 100%;
    padding:20px 0 40px 0;
    /* padding-top: 20px; */
    position: relative;
    margin-bottom: 20px;
}

.infor-sec .infor-title {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.infor-cont .show_more_line_3{
    max-height:100px !important;
    /* white-space:pre-wrap; */
    word-break: break-all;
    position: relative;
    overflow: hidden;
}
.infor-cont .data_hide {
    display: none;
 }
 .infor-cont .major .major-ttl{
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}
.infor-cont .major .major-ttl::before{
    content: '';
    width: 3px;
    height: 70%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1F70FF;
}
.infor-sec .infor-title .infor-tllf h3 {
    font-size: 26px;
}

.infor-sec .infor-title .infor-tllf h3 .update-time {
    font-size: 14px;
    margin-left: 16px;
    color: #999;
}

.infor-sec .infor-title p.pay {
    font-size: 24px;
    color: #FF8B00;
    margin: 10px 0 24px;
}

.infor-sec .infor-title .infor-tips {
    color: #666;
    display: flex;
}

.infor-sec .infor-title .infor-tips .infor-lf {
    display: flex;
}

.infor-sec .infor-title .infor-tips .tips-l {
    position: relative;
    padding: 0 10px;
}

.infor-sec .infor-title .infor-tips .tips-l::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 75%;
    background-color: #D6D8DC;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.infor-sec .infor-title .infor-tips .tips-l:first-child {
    padding-left: 0;
}

.infor-sec .infor-title .infor-tips .tips-l:last-child::after {
    width: 0;
}

.infor-tips .infor-foll {
    margin-left: 30px;
}

.infor-tips .tips-l span {
    margin-right: 8px;
    color: #BDBDBD;
}

/* infor内容 */
.infor-cont .major {
    margin-bottom: 10px;
}

.infor-cont .infor-lf {
    float: left;
    width: 920px;
}

.infor-cont .major span {
    margin-right: 10px;
    display: inline-block;
    padding: 7px 10px;
    border: 1px solid #DADEE2;
    border-radius: 2px;
    color: #666666;
    margin-bottom: 10px;
    font-size: 13px;
}

.infor-cont .infor-mod {
    background-color: #fff;
    margin-bottom: 15px;
}

.infor-cont .infor-mod:last-child {
    margin: 0;
}

.infor-cont .infor-mod .company-tl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.infor-mod h3.mod-title {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.infor-mod h3.mod-title img {
    margin-right: 8px;
}

.infor-mod .uac{
    align-items: center;
    color: #1F70FF;
    font-size: 15px;
    cursor: pointer;
 
}

.infor-mod .uac img {
    margin-left: 7px;
}

.infor-cont .infor-mod .infor-txt {
    color: #666;
    padding: 0 20px 20px;
    font-size: 15px;
    /* white-space:pre-wrap; */
    word-break: break-all;
}
.infor-cont .infor-mod .infor-txt img{
    max-width:100%;
}
.infor-cont .infor-mod ul {
    margin-right: -20px;
    padding: 0 20px;
}

.infor-cont .infor-mod ul .job-item {
    width: 430px;
    float: left;
    margin-right: 20px;
    border: 1px solid #F0F0F0;
    margin-bottom: 12px;
}

.infor-cont .infor-mod ul .job-item a {
    display: block;
    padding: 14px;
}

.infor-cont .infor-mod ul .job-item h6 {
    font-size: 17px;
}

.infor-cont .infor-mod ul .job-item h6 p {
    float: left;
    width: 70%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.infor-cont .infor-mod ul .job-item strong {
    float: right;
    font-size: 15px;
    color: #FF8C1D;
    font-weight: 400;
    margin-left: 14px;
}

.infor-cont .infor-mod ul .job-item .other-post-tips {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
}

.infor-cont .infor-mod ul .job-item .other-post-tips p {
    color: #7f7f7f;
}

.infor-cont .infor-mod ul .job-item:hover {
    background-color: #FAFAFA;
}

.infor-cont .infor-mod .infor-more {
    display: block;
    margin: 0 20px;
    padding: 14px 0;
    border: 1px solid #F0F0F0;
    text-align: center;
    margin-bottom: 20px;
}

/* 右侧 */
.infor-cont .infor-rg {
    width: 340px;
    float: right;
    background-color: #fff;
    padding: 24px 20px;
}

.infor-rg .company-title {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.infor-rg .company-title .infor-logo {
    width: 70px;
    height: 70px;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    margin-right: 14px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infor-rg .company-title .infor-logo img {
    width: 100%;
}

.infor-rg .company-title h3 {
    flex: 1;
    font-size: 16px;
}

.infor-rg .company-title h3 a:hover {
    color: #0077d7;
}

.infor-rg .company-label {
    /* margin-bottom: 24px; */
}

.infor-rg .company-label span {
    margin-top: 10px;
    display:inline-block;
    background-color: #FFF9F2;
    color: #FB8C5E;
    padding: 4px 10px;
    margin-right: 10px;
    font-size: 12px;
}

.infor-rg .company-details {
    margin-top: 14px;
    position: relative;
}

.infor-rg .company-details .company-icon {
    width: 17px;
    margin-right: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.infor-rg .company-details span {
    margin-left: 26px;
    color: #666;
    font-size: 15px;
}

.company-details .introduce-details {
    padding-left: 26px;
}

.company-details .introduce-details .show_corporation_describe{
    margin-top: 5px;
    font-size: 14px;
    /* white-space:pre-wrap; */
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    color: #8d8d8d;
}

.company-details .introduce-details .show_corporation_describe img{
    max-width: 100%;
}
.company-details .introduce-details .detail-links{
    text-align: right;
}
.company-details .introduce-details .detail-links a{
    color: #1F70FF;
    font-size: 14px;
}

.infor-cont .infor-mod .general-rules {
    border-bottom: 2px solid #F3F6FA;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.infor-cont .infor-mod .rules {
    padding: 0 20px 20px;
}

.infor-cont .infor-mod .rules .data-c{
    text-align: center;
    justify-content: center;
    cursor: pointer;
}

/* 宣讲会 */
.job-item .post-mod h3.preach-title .preach-tl .teach-inttl {
    font-size: 17px;
    max-width: 78%;
}

.job-item .preach-title .preach-tl .teach-inline {
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 4px;
    padding: 2px 10px;
}

.job-item .post-mod .teach-instatus {
    font-size: 13px;
}

.job-item .post-mod h3.preach-title {
    border: 0;
    margin: 0;
    padding-bottom: 10px;
}

.job-item .post-mod .teach-inp p {
    margin-bottom: 4px;
    color: #7f7f7f;
    font-size: 14px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

.job-item .post-mod .teach-inp p:last-child {
    margin: 0;
}

.job-item .post-mod .status::before {
    width: 3px;
    height: 3px;
}

.job-item .post-mod .teach-inp {
    display: flex;
    flex-direction: column;
}

/* 宣讲会头部 */
.teach-inway {
    font-size: 14px;
    color: #2B9FFF;
    margin: 20px 0 20px;
    background-color: #E4EDF7;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 17px;
}

/* 双选会头部 */
.infor-sec .infor-title h3 .sponsor {
    font-size: 15px;
    color: #595959;
    margin: 0 10px 0 4px;
}

.infor-sec .infor-title h3 .sponsor img {
    margin-right: 6px;
    margin-top: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.infor-sec .infor-tllf .meeting {
    margin-top: 40px;
    color: #666;
}

.infor-sec .infor-tllf .meeting .meeting-time {
    display: flex;
    margin-bottom: 12px;
}

.infor-sec .infor-tllf .meeting .tips-l {
    margin-right: 50px;
}

.infor-sec .infor-tllf .meeting .tips-l span {
    margin-right: 8px;
    color: #BDBDBD;
}

/* 双选会内容 */
.infor-cont .meeting-cont {
    width: 100%;
}

.infor-cont .meeting-cont .meeting-census {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meeting-census .census-lf .census-unit {
    margin-top: 4px;
}

.meeting-census .census-lf .census-unit li p {
    color: #6F6F6F;
    margin-bottom: 6px;
}

.meeting-census .census-lf .census-unit li a {
    font-size: 14px;
    color: #6F6F6F;
}

.meeting-census .census-lf .census-unit li a strong {
    font-size: 38px;
    margin-right: 7px;
    color: #333;
}

.meeting-census .census-lf .census-unit li a.a-sel:hover,
.meeting-census .census-lf .census-unit li a.a-sel:hover strong {
    color: #008cff;
}

.meeting-census .census-lf .census-unit li {
    display: inline-block;
    width: 220px;
    padding-left: 16px;
    border-right: 1px solid #E8E8E8;
}

.meeting-census .census-lf .census-unit li:last-child {
    border: 0;
}

.meeting-census .census-lf .census-unit li a.no-sel {
    cursor: default;
}

.meeting-census .enter {
    margin-right: 20px;
    padding: 13px 50px;
    background-color: #2B9FFF;
    color: #fff;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}
.meeting-census .enter:hover{
    background-color: #008cff;
}
.meeting-census img {
    margin-left: 10px;
}

/* 双选会单位列表 */
.units {
    padding: 30px 0 0;
    text-align: center;
}

.units .meeting-title {
    font-size: 26px;
}

/* 搜索 */
.head-search {
    margin: 20px auto 0;
}

.head-search .search-wrap {
    display: flex;
    justify-content: center;
}

.head-search .search-wrap .search-units {
    border: 1px solid #E8E8E8;
    background-color: #fff;
}

.head-search .search-wrap .search-booth {
    border: 1px solid #E8E8E8;
    background-color: #fff;
    border-left: 0;
}

.head-search .search-wrap input {
    width: 320px;
    padding: 10px;
    background: #fff;
}

.head-search .search-wrap input::-webkit-input-placeholder {
    /* WebKit browsers */
    font-size: 14px;
    color: #999;
}

.head-search .search-wrap input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    font-size: 14px;
    color: #999;
}

.head-search .search-wrap input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    font-size: 14px;
    color: #999;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1F70FF;
    padding: 0 28px;
    color: #fff;
}

.search-btn:hover {
    background-color: #045fff;
    color: #fff;
}

/* 单位卡片 */
.units .units-box {
    margin-right: -20px;
    margin-top: 30px;
}

.units .units-box li {
    float: left;
    width: 413px;
    height: 210px;
    margin-right: 20px;
    background-color: #fff;
    box-shadow: 0px 3px 6px 1px rgb(0 0 0 / 2%);
    margin-bottom: 20px;
    border: 1px solid #fff;
}

.units .units-box .unit-name {
    margin-top: 30px;
    padding: 0 20px;
    display: flex;
    margin-bottom: 24px;
}

.units .units-box .unit-name img {
    width: 100%;
    height: 100%;
}

.units .units-box .unit-name h3 {
    font-size: 18px;
    text-align: left;
    margin-top: 12px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.unit-name .company-logo{
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #f2f6f9;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 13px;
}
.unit-name .company-logo img{
    width: 100%;
}

.units .units-box .uint-tips {
    display: flex;
    padding: 0 20px;
    margin-bottom: 16px;
    color: #666;
}

.units-box .uint-tips p {
    margin-right: 50px;
}

.units-box .uint-tips p:last-child {
    margin-right: 0;
}

.units-box .uint-tips p span {
    display: inline-block;
    background-color: #EEF8FF;
    color: #2B9FFF;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-right: 13px;
    font-size: 14px;
}

.units-box .uint-tips p i {
    font-style: normal;
    color: #FF8C1D;
}

.units-box .booth-num {
    border-top: 1px solid #F0F0F0;
    padding: 13px 20px;
    text-align: left;
    font-size: 14px;
    color: #666;
}

.units .units-box li:hover {
    border: 1px solid #1F70FF;
}

.units .units-box li:hover .booth-num {
    border: 0;
    background: linear-gradient(264deg, #2B9FFF 0%, #1F71FF 100%);
    color: #fff;
}
.units .page-wrap{
    margin-top: 10px;
}

/* 返回顶部 */

.top-box{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2D93F9;
    box-shadow: 0px 3px 16px 1px rgba(45, 147, 249, 0.65);
    border-radius: 50%;
    position: fixed;
    bottom: 200px;
    right: 120px;
    cursor: pointer;
}
/* 暂无数据 */
.no-data{
    padding: 100px 0px;
    text-align: center;
}
.no-data p{
    color: #a3a5ab;
}
.no-data img{
    width: 260px;
}
#index_detail_content{
    word-break:break-all;
    /* white-space:pre-wrap; */
}
#index_detail_content img{
    max-width: 100%;
}
