@charset "utf-8";
body {
    background: #f5f6fa;
    font-size: 14px;
}
#loading img {
    width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.box .search-box {
    width: 1200px;
}

.search-box .top-wrap,
.box .search-box .city,
.box .search-box .city .city-sele {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box .top-wrap .top-right img {
    width: 28px;
    vertical-align: middle;
}

.search-box .top-wrap .top-right span {
    font-weight: 700;
    font-size: 14px;
    color: #0092ff;
}
.box .search-box .bottom .hot-search-label a.active{
    color: #0092ff;
}
.box .search-box .bottom .hot-search-label a{
    color:#666;
}
.box .search-box .bottom .classify{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.box .search-box .classify-wrap{
    display: none;
}
.box .search-box .bottom .classify a{
    color:#666;
    display: inline-block;
    margin:0 8px 8px 0;
}
.box .search-box .bottom .classify a.active2{
    color:#0092ff;
}
.box .search-box .title {
    width: 80px;
    font-size: 14px;
}

.box .search-box .city {
    justify-content: flex-start;
    margin: 20px 0;
}

.box .search-box .city .city-sele {
    width: 330px;
    background: #fff;
    padding: 5px 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    position: relative;
}

.box .search-box .city .city-sele img {
    width: 16px;
    transform: rotate(90deg)
}

.box .search-box .city .city-sele .sele-area {
    position: absolute;
    width: 100%;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 5px 1px #eee;
    padding: 10px;
    height: 360px;
    overflow: hidden;
    z-index: 99;
    display: none;
    justify-content: flex-start;
}

.box .search-box .city .city-sele .sele-area>div {
    width: 32%;
    overflow-y: scroll;
}

.province-list>div,
.city-list>div,
.area-list>div {
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.1s;
}

.box .search-box .city .city-sele .sele-area>div>div img {
    width: 12px;
    height: 12px;
    transform: rotate(0);
}

.city-list,
.area-list {
    display: none;
}

.box .search-box .city .city-sele .sele-area>div>div span {
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.box .search-box .city .city-sele .sele-area>div>div:hover {
    background-color: #e6f7ff;
}

.box .search-box .city .city-sele .sele-area>div>div.active {
    font-weight: 600;
    background-color: #e6f7ff;
}


/* 滚动条样式 */

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

 ::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(97, 184, 179, 0.1);
    background: #ccc;
}

 ::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    /* box-shadow: inset 0 0 5px rgba(87, 175, 187, 0.1); */
    border-radius: 10px;
    background: #fff;
}


/* 列表 */

.content {
    width: 1200px;
    margin: -20px auto 20px auto;
    display: flex;
    justify-content: space-between;
}

.content .list-wrap {
    width: 850px;
    margin-right: 12px;
}

.content .list-wrap .item {
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid #eff1f6;
}

.content .list-wrap .item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.content .list-wrap .item a .info-top {
    padding: 20px 15px 15px;
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #eee;
}

.info-left {
    width: 522px;
    flex: 1 1;
}

.info-left div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #666;
}

.info-left .title {
    font-size: 18px;
    line-height: 22px;
    color: hsla(0, 0%, 7%, .85);
    margin-bottom: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.info-left .title .mark {
    background-color: #f74742;
    color: #fff;
    display: inline-block;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
    border-radius: 2px;
}

.info-left .detail {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, .65);
    margin-bottom: 14px;
}

.info-left .local {
    color: rgba(0, 0, 0, .45);
    font-size: 14px;
    display: flex;
    justify-content: flex-state;
    align-items: center;
}

.info-left .local img {
    width: 16px;
    height: 16px;
}

.info-left .local .address {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.info-right {
    width: 297px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.info-right .salary {
    color: rgba(0, 0, 0, .45);
    margin-left: 24px;
}

.info-right .manager-info {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    align-items: center;
}

.info-right .manager-info img {
    height: 32px;
    width: 32px;
}

.info-right .manager-info .name {
    margin-left: 8px;
    white-space: nowrap;
    color: rgba(0, 0, 0, .45);
}

.info-right .manager-info .shiming {
    display: inline-block;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.info-right .manager-info .shiming.finished {
    border: 1px solid rgb(207, 239, 217);
    color: rgb(0, 188, 57);
    margin-right: 0px;
    margin-left: 8px;
}

.info-right .manager-info button {
    display: inline-block;
    cursor: pointer;
    width: 90px;
    height: 32px;
    margin-left: 12px;
    text-align: center;
    line-height: 32px;
    border-radius: 4px;
    font-size: 14px;
    color: #0092ff;
    border: 1px solid #0092ff;
    background: #fff;
}

.content .list-wrap .item a .info-bottom {
    width: 100%;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
}

.content .list-wrap .item a .info-bottom .time {
    color: rgba(0, 0, 0, .45);
}

.content .list-wrap .item a .info-bottom .labels span {
    display: inline-block;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    line-height: 24px;
    text-align: center;
    font-size: 12px;
    margin-right: 8px;
    background: #f5f6fa;
    border-radius: 2px;
    color: #666;
}


/* fenye */

.fenye {
    width: 100%;
    background-color: #fff;
    height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.fenye button {
    width: 50px;
    height: 28px;
    font-size: 12px;
    background: #fff;
    color: rgba(0, 0, 0, .45);
    border: 1px solid #eff1f6;
    border-radius: 1px;
    cursor: pointer;
    transition: all .3s;
}

.fenye .first-page {
    margin-right: 12px;
}

.fenye .before-page,
.fenye .next-page {
    width: auto;
    min-width: 28px!important;
    height: 28px!important;
    line-height: 28px!important;
    margin-right: 4px;
}

.fenye .next-page {
    margin-right: 0px;
    margin-left: 4px;
}

.fenye>span {
    display: inline-block;
    margin: 0 5px;
}

.fenye ul {
    box-sizing: border-box;
    color: rgba(0, 0, 0, .85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    font-feature-settings: "tnum";
    display: flex;
    justify-content: flex-start;
}

.fenye .last {
    width: auto;
}

.fenye ul li,
.fenye .last {
    min-width: 28px!important;
    height: 28px!important;
    line-height: 28px!important;
    transition: all .3s;
    border: 1px solid #eff1f6;
    color: rgba(0, 0, 0, .85);
    text-align: center;
    margin-right: 4px;
}

.fenye ul li.active {
    border: 1px solid #0092ff;
}

.fenye ul li.active a {
    color: #0092ff;
}

.fenye .before-five {
    display: none;
}

.fenye .before-five.show {
    display: block;
}

.fenye ul li a {
    color: rgba(0, 0, 0, .85);
}

.fenye .last-page {
    margin-left: 12px;
}

.right-side .login-area {
    display: block;
    width: 338px;
    margin-bottom: 12px;
    padding: 24px 16px 20px;
    border-radius: 4px;
    border: 1px solid #eff1f6;
    background-color: #fff;
}

.right-side .login-area h3 {
    font-size: 18px;
    color: hsla(0, 0%, 7%, .85);
    line-height: 25px;
}

.right-side .login-area input[type="tel"] {
    display: block;
    width: 100%;
    height: 38px;
    margin: 16px 0 20px;
    padding: 0 12px;
    color: rgba(0, 0, 0, .85);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 4px;
    font-size: 14px;
    outline:none;
}
.right-side .login-area .code {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 38px;
    margin-bottom: 20px;
    padding: 0 12px;
    color: rgba(0, 0, 0, .85);
    border: 1px solid #edeef2;
    border-radius: 4px;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .45);
}

.right-side .login-area .code input {
    width: 100%;
    height: 36px;
    flex: 1 1;
    border: none;
    outline: none;
}

.right-side .login-area .code .getcode {
    position: relative;
    padding-left: 12px;
    color: #0092ff;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}
.get_code2.seconds {
    color: #ddd;
}
.right-side .login-area .code .getcode::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    width: 1px;
    height: 100%;
    background: #eee;
    transform: translateY(-50%);
}

.right-side .login-area .policy {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: rgba(0, 0, 0, .45);
    font-size: 12px;
}

.right-side .login-area .policy span {
    display: inline-block;
    margin-left: 5px;
}

.right-side .login-area .policy a {
    display: inline-block;
    margin-left: 5px;
    text-decoration: none;
    color: #0092ff;
}

.right-side .login-area .login {
    width: 100%;
    height: 44px;
    margin-top: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: hsla(0, 0%, 100%, .95);
    line-height: 44px;
    background-color: #0092ff;
    border-radius: 4px;
    cursor: pointer;
}
.wx_code_wrap{
    width: 338px;
    background: #fff;
}
.wx_code_wrap .title{
    color: rgba(0, 0, 0, .85);
    padding: 9px 14px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}
.wx_code_wrap .code_img{
    margin:20px 0 8px 0;
    text-align: center;
}
.wx_code_wrap .code_img img{
    width:60%;
}
.right-side .tuijia-title {
    width: 338px;
    height: 41px;
    background-color: #fff;
    color: rgba(0, 0, 0, .85);
    padding: 9px 14px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.right-side .tuijian-list .item {
    width: 338px;
    margin-bottom: 8px;
    height: auto;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    border-radius: 4px
}

.right-side .tuijian-list .item a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.right-side .tuijian-list .item a .title {
    padding: 16px 16px 0 16px;
    font-size: 18px;
    flex: 1 1;
    color: #111;
    letter-spacing: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.right-side .tuijian-list .item a .salary {
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
    line-height: 28px;
}

.right-side .tuijian-list .item a .salary .num {
    color: #0092ff;
    font-size: 16px;
    font-weight: 600;
}

.right-side .tuijian-list .item a .salary .time {
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
}

.right-side .tuijian-list .item a .labels {
    padding: 0 16px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.right-side .tuijian-list .item a .labels span {
    flex-shrink: 0;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    padding: 0 8px;
    background: #f5f6fa;
    color: rgba(0, 0, 0, .65);
    border-radius: 2px;
    margin-right: 8px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.right-side .tuijian-list .item a .manage-infos {
    width: 100%;
    height: 44px;
    background: linear-gradient(270deg, #fff, #f2f9ff);
    border-radius: 0 0 4px 4px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-side .tuijian-list .item a .manage-infos .baseinfo {
    display: flex;
    align-items: center;
}

.right-side .tuijian-list .item a .manage-infos .baseinfo .name {
    color: rgba(0, 0, 0, .65);
    max-width: 66px;
    padding: 0 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.right-side .tuijian-list .item a .manage-infos .baseinfo .marks span {
    display: inline-block;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.right-side .tuijian-list .item a .manage-infos .baseinfo .marks span:nth-child(1) {
    color: #46db7a!important;
    border: 1px solid #cfefd9;
    height: 20px;
    margin-right: 8px;
}

.right-side .tuijian-list .item a .manage-infos .baseinfo .marks span:nth-child(2) {
    color: #0092ff!important;
    border: 1px solid #c8e7ff;
    height: 20px;
    margin-right: 8px;
}

.right-side .tuijian-list .item a .manage-infos .contact {
    width: 90px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    background-color: #fff;
    color: #0092ff;
    border: 1px solid #0092ff;
}

.selected_type,
.selected_type .type_list {
    display: flex;
    justify-content: flex-start;
}

.selected_type .type_list .type_item {
    font-weight: 400;
    color: rgba(0, 0, 0, .65);
    line-height: 22px;
    margin-right: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 0 10px;
    border-radius: 4px;
}

.delete_type {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    color: #bbb;
    cursor: pointer;
}