html{
}

body{
	font-size: 14px;
	color: #333333;
	font-family: "微软雅黑";
}
*{
	box-sizing: border-box;
}

a{
    color: #333333;
}
a:hover{
    color: #333333;
}

.inner{
    width: 1200px;
    margin: 0 auto;
}




.page-banner{
    position: relative;
}
.page-banner img{
    width: 100%;
    height: 404px;
}





.page-header{
    height: 100px;
}
.page-header .real-header{
    /* position: fixed; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.11);
    z-index: 9;
}
.page-header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.page-header .logo{
    /*width: 245px;
    height: 58px;*/
}
.page-header .logo img{
    width: 100%;
    height: 100%;
}
.page-header .head-r{
    display: flex;
    align-items: center;
}
.page-header .head-nav{
    display: flex;
}
.page-header .head-nav>li{
    position: relative;
    margin-right: 20px;
}
.page-header .head-nav li .nav{
    position: relative;
    display: block;
    line-height: 98px;
    font-size: 18px;
    /*padding: 0 24px;*/
    border-bottom: 2px solid #fff;
}
.page-header .head-nav li:hover .nav,
.page-header .head-nav li.active .nav{
    color: #409eff;
    border-color: #409eff;
}
.page-header .head-nav li .nav .icon_r{
    position: absolute;
    top: 50%;
    right: -15px;
    width: 15px;
    height: 15px;
    background: url("../img/icon_fold.png")/*tpa=https://psy.zgcareer.com/assets/index/img/icon_fold.png*/ no-repeat center center / 100% 100%;
    margin-left: 10px;
    transform: translate(0,-50%);
}
.page-header .head-nav ol{
    position: absolute;
    top: 100%;
    left: 50%;
    width: 120px;
    background-color: #fff;
    transform: translate(-50%, 0px);
    display: none;
}
.page-header .head-nav li:hover ol{
    display: block;
}
.page-header .head-nav ol li a{
    display: block;
    line-height: 50px;
    color: #8c9198;
    font-size: 18px;
    text-align: center;
}
.page-header .head-nav ol li.active a,
.page-header .head-nav ol li:hover a{
    background-color: #eeeeee;
}
.page-header .user-info{
    display: flex;
    align-items: center;
}
.page-header .user-info .head{
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.page-header .user-info .head img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.page-header .user-info .head .num{
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    line-height: 16px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background-color: red;
    border-radius: 50%;
}
.page-header .user-info .head ol{
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}
.page-header .user-info .head:hover ol{
    display: block;
}
.page-header .user-info .head ol li{
    line-height: 28px;
    text-align: center;
    white-space: nowrap;
    padding: 0 15px;
    background-color: #fff;
    cursor: pointer;
}
.page-header .user-info .head ol li:hover{
    color: #fff;
    background-color: #409eff;
}
.page-header .user-info .name{
    color: #5b5e63;
    margin-right: 14px;
}
.page-header .user-info .self-center{
    margin-right: 14px;
}
.page-header .user-info .self-center.active{
    color: #409eff;
}
.page-header .user-info .logout{
    color: #bdc4ce;
}











.footer{
    font-size: 12px;
}
.footer .inner{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 79px;
}
.footer .address{
    color: #5b5e63;
}
.footer .sn{
    color: #bdc4ce;
    margin-left: 65px;
}








.pop-up-box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.pop-up-box .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.pop-up-box .pop-cont{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86%;
    padding: 20px;
    background-color: #fff;
    border-radius: 3px;
    transform: translate(-50%,-50%);
}
.pop-up-box .close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: no-repeat center center / 20px 20px;
    background-image: url("../img/close.png")/*tpa=https://psy.zgcareer.com/assets/index/img/close.png*/;
    cursor: pointer;
}
.pop-up-box .close:hover{
    background-image: url("../img/close_hover.png")/*tpa=https://psy.zgcareer.com/assets/index/img/close_hover.png*/;
}
.pop-up-box .pop-in{
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}