/* 内页公共样式 */
.page{
    padding: 20px 0 20px;
}

/* 相片简历 */
.photo-card-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
 .photo-card-list a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}
 .photo-card-list li:hover a{
    box-shadow: 0 0 5px 3px rgba(60,60,60,0.1);
}
 .photo-card-list a .left img{
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}
 .photo-card-list a .left p{
    background: var(--color-active);
    margin-top: 10px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 15px;
}
 .photo-card-list a .right{
    flex: 1;
}
 .photo-card-list a .right p{
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
}
 .photo-card-list a .right .name{
    font-size: 14px ;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}
/* 简历下的标签列表 */
.common-tabs{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 10px;
}
.common-tabs li{
    font-size: 12px;
    color: var(--color);
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
    border-radius: 6px;
    background: #EBF6EC;
}

.common-nav{
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    display: flex;
    gap: 50px;
    background: #fff;
    border-radius:10px ;
    margin-bottom: 10px;
    
}
.common-nav li{
    position: relative;
}
.common-nav li a{
    font-size: 14px;
    color: #333;
    display: block;
}
.common-nav li::after{
    content: '';
   display: inline-block;
   width: 60%;
   height: 4px;
border-radius: 2px;
   background: transparent;
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
}
.common-nav li.active a{
    color: var(--color);
}
.common-nav li.active::after{
    background: #BA4A4A;
}

.common-nav li:hover a{
    color: var(--color);
}
.common-nav li:hover::after{
    background: #BA4A4A;
}

.my-select {
    min-width: 80px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #eee;
    border-radius: 6px;
    position: relative;
    margin-right: 10px;
}

.my-select p {
    height: 100%;
    font-size: 16px;
    color: #666;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.my-select p span {
    flex: 1;
    font-size: 16px;
    color: #666;
}

.my-select p .iconfont {
    font-size: 16px;
    color: #999;
    margin-left: 10px;
}

.my-select .my-select-list {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: auto;
    min-width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    z-index: 10;
    padding: 10px 0;
    max-height: 250px;
    overflow-y: auto;
}

.my-select .my-select-list::-webkit-scrollbar {
    width: 3px;
}

.my-select .my-select-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.my-select .my-select-list li {
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    cursor: pointer;
    padding: 0 10px;
    text-align: center;
    white-space: nowrap;
}

.my-select .my-select-list li:hover {
    background: #f5f5f5;
}


.my-checkbox-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 30px;
    flex: 1;
}

.my-checkbox-list input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
}

.my-checkbox-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.my-checkbox-list label span {
    font-size: 16px;
    color: #666;
}

.my-radio-list {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  
}

.my-radio-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
}

.my-radio-list input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    border: 1px solid #eee !important;
}

.my-radio-list2 {
    margin: 0 20px;
}

.textarea-box {
    flex: 1;
}
.textarea-box textarea {
    border: 1px solid #eee;
    width: 100%;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
}
.textarea-box .other-text {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}




.my-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.my-table .th {
    background: #F0F7ED;
    width: 100%;
    /* height: 48px;
    line-height: 48px; */
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.my-table .th>li{
    width: 150px;
    font-size: 16px;
  
    color: var(--color);
    padding: 14px 0;

}

.my-table .tr {
    width: 100%;
    /* height: 48px; */
    /* line-height: 48px; */
    border: 1px solid #E2F0DB;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.my-table .tr>li {
    width: 150px;
    font-size: 14px;
  
    padding: 12px 0;
    color: #666;
}
.my-table .th>li:first-child {
    flex: 1;
    padding: 14px 30px;
}
.my-table .th>li:nth-child(2),
.my-table .th>li:nth-child(3),
.my-table .th>li:nth-child(7) {
    width: 120px;
}
.my-table .tr>li:first-child {
    flex: 1;
    padding: 12px 30px;

}
.my-table .tr>li:nth-child(2),
.my-table .tr>li:nth-child(3),
.my-table .tr>li:nth-child(7) {
    width: 120px;
}
.my-table .tr>li a{
    text-decoration: underline;
    color: #666;
}
.my-table .tr:hover{
    border: 1px solid var(--color);
   
}
.my-table .tr:hover li{
    color: var(--color);
}
.my-table .tr:hover li a{
    color: var(--color);
}

.sidebar{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.sidebar .item{
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;

}
.sidebar .item h4{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.sidebar .item ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar .item ul li a{
    font-size: 14px;
    color: #666;
    text-decoration: underline;
}
.sidebar .item ul li:hover a{
    color: var(--color);
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.job-sidebar .item{
    width: 290px;
    padding: 20px 10px;
    background: #fff;
    border-radius: 10px;
}
.job-sidebar .item h4{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding-bottom: 15px;
    position: relative;
}
.job-sidebar .item h4::after{
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--color-active);
    position: absolute;
    bottom: 0;
    left: 0;
}
.job-sidebar .item ul{
    display: flex;
    flex-direction: column;
    /* margin-top: 5px; */
}

.job-sidebar .item ul li:hover{
    background: #EBF6EC;
}
.job-sidebar .item ul li:first-child:hover{
    background: none;
}
.job-sidebar .item ul li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}
.job-sidebar .item ul li a .td{
    width: 60px;
    font-size: 14px;
    color: #333;
}
.job-sidebar .item ul li:first-child .td{
    color:#999;
}

.job-sidebar .item ul li a .td1{
    padding-left: 10px;
    position: relative;
}
.job-sidebar .item ul li a .td1::before{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: inline-block;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 5px solid var(--color);
}
.job-sidebar .item ul li:first-child a .td1::before{
    display: none;
}
.job-sidebar .item ul li a .td2{
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-detail-sidebar .item{
   background: #fff;
   width: 100%;
    padding: 15px 20px 20px;
    border-radius: 10px;    
}
.job-detail-sidebar .item h4{
    font-size: 18px ;
    line-height: 2;
    font-weight: bold;
    margin-bottom: 10px;
}
.job-detail-sidebar .item>ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.job-detail-sidebar .item>ul a{
    padding: 15px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
.job-detail-sidebar .item>ul a .li-top{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 15px;
}
.job-detail-sidebar .item>ul a .li-top img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}
.job-detail-sidebar .item>ul a .li-top .name{
    font-size: 16px;
    line-height: 36px;
    color: #333;
}
.job-detail-sidebar .item>ul a .li-top .name span{
    font-size: 12px;
    line-height: 1.2;
    padding: 0 5px;
    background: #000;
    border-radius: 20px;
    color: #fff;
    margin-left: 10px;
}
.job-detail-sidebar .item>ul a .li-top .name span.woman{
    background: #FF7570;
}
.job-detail-sidebar .item>ul a .li-top .name span.man{
    background: #11BCF8;
}
.job-detail-sidebar .item>ul a .li-top .info-list{
    display: flex;
    flex-direction: row;
   
}
.job-detail-sidebar .item>ul a .li-top .info-list li{
    padding: 0 7px 0 6px;
    font-size: 12px;
    color: #777;
    white-space: nowrap;
   position: relative;
}
.job-detail-sidebar .item>ul a .li-top .info-list li::after{
    content: '';
    background: #777;
    display: inline-block;
    width: 1px;
    height: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.job-detail-sidebar .item>ul a .li-top .info-list li:first-child{
    padding-left: 0;
}
.job-detail-sidebar .item>ul a .li-top .info-list li:last-child{
    padding-right: 0;
}
.job-detail-sidebar .item>ul a .li-top .info-list li:last-child::after{
    display: none;
}
.job-detail-sidebar .item>ul a h6{
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-detail-sidebar .item>ul a h6+h6{
    margin-top: 10px;
}

.recruitment-detail-sidebar{
    width: 100%;
}
.recruitment-detail-sidebar .item{
    background: #fff;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}

.recruitment-detail-sidebar .item1 h3{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-top: -5px;
}
.recruitment-detail-sidebar .item1 .tip{
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-active);
    font-size: 16px;
    font-weight: bold;
    height: 36px;
    line-height: 36px;
    border-radius: 0 10px 0 10px;
    padding: 0px 20px;
    color: #fff;

}
.recruitment-detail-sidebar .item1 img{
    border-radius: 10px;
    width: 100%;
    object-fit: contain;
}
.recruitment-detail-sidebar .item1 h4{
    padding:  15px 0 ;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.recruitment-detail-sidebar .item1 h6{
    font-size: 14px;
    color: #999;
}
.recruitment-detail-sidebar .item1 .common-tabs{
    margin-top: 10px;
}
.recruitment-detail-sidebar .item1 .editor p{
    margin-top: 20px;
    font-size: 14px;
    color:#333;
}
.recruitment-detail-sidebar .login-page{
    padding: 0;
}
.recruitment-detail-sidebar .login-page .nav{
    border: 0;
    gap: 0;
    justify-content: space-between;
}
.recruitment-detail-sidebar .login-page .nav li{
    font-size: 16px;
    font-weight: normal;
    padding: 10px 0;
}
.recruitment-detail-sidebar .login-page .forms{
    width: 100%;
    padding: 20px 0;
}
.recruitment-detail-sidebar .login-page .forms .form{
    gap: 10px;
}
.recruitment-detail-sidebar .login-page .forms .form label{
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
}
.recruitment-detail-sidebar .login-page .forms .form label i{
    padding: 0 10px;
}
.recruitment-detail-sidebar  .login-page .forms .form label input{
    padding: 0 10px;
}
.recruitment-detail-sidebar  .login-page .forms .form label input::placeholder{
    font-size: 12px;
}
.recruitment-detail-sidebar .login-page .forms .login-btn{
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    border-radius: 3px;
}
.recruitment-detail-sidebar .login-page .forms .tip{
    font-size: 14px;
    padding: 15px 0;
}
.recruitment-detail-sidebar .login-page .forms .checkbox-w p{
    font-size: 12px;
}





.select-form{
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}
.select-form>ul{
    padding: 10px 5px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.select-form>ul>li{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.select-form>ul>li .l-text{
    font-size: 14px;
    color: #102A43;
}
.select-form>ul>li label{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;

}
.select-form>ul>li label+label{
    margin-left: 20px;
}
.select-form>ul>li label input[type="checkbox"]{
    width: 15px;
    height: 15px;
    border: 1px solid #eee !important;
}
.select-form>ul>li label span{
    color: #f00;
    font-size: 14px;
}
.select-form>ul>li .r{
    flex: 1;
}
.select-form .items{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}
.select-form .item{
    font-size: 14px;
    line-height: 20px;
    border-radius: 5px;
    padding:  0 6px;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
}
.select-form .item:hover{
    background: var(--color);
    color: #fff;
}
.select-form .item.active{
    background: var(--color);
    color: #fff;
   
}
.select-form .bottom{
    margin-top: 20px;
   padding: 0 5px;
}
.select-form .bottom input{
    width: 300px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
}
.select-form .bottom input::placeholder{
    color: #999;
    font-size: 14px;
}
.select-form .bottom button{
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border: none;
    border-radius: 6px;
    background: var(--color-active);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}


