body {
    /* background: #F5F9FC; */
    background:#FFF;
}

/* header */
header{
    position: relative;
    z-index: 2;
}
    header .headerTop {
        height: 70px;
        background: #fff;
        position: relative;
        
    }
    header .hedaderMiddle {
        height: 70px;
        background: #fff;
        position: relative;
        
    }
.headerTop .logo {
    width: 100px;
    margin-left: 3.125rem;
}
.headerTop .logo2 {
    /*width: 100px;*/
    margin-left: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.headerTop .searchBox{
    position: absolute; 
    left: 50%;
    top:50%;
    transform:translate(-50%,-50%);
    background: #f9f9f9;
    height: 40px;
}
.headerTop .searchBox input{
    height: 100%;
    padding-left: 1.25rem;
    border: 1px solid #005EAA;
    border-right: none;
    width: 400px;
}
.headerTop .searchBox input::placeholder{
    font-size:0.75rem;
    color: #858585;
    font-weight: 300;
}
.headerTop .searchBox button{
    background: #005EAA;
    width: 40px;
    height: 100%;
    color: #fff;
    font-size: 1rem;
}
.headerTop .util{
    position: absolute;
    right: 3.125rem;
    z-index: 5;
}
.userInfo .team, .userInfo2 .team {
    color: #818181;
    font-size: 0.75rem;
}
.userInfo .name, .userInfo2 .name {
    color: #2a2a2a;
    font-size: 0.875rem;
}
    .userInfo .name:before, .userInfo2 .name:before {
        content: '';
        display: inline-block;
        width: 1px;
        height: 10px;
        margin: 0 10px;
        background: #E5E5E5;
    }
.headerTop .menu li, .userInfo:before, .userInfo2:before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f9;
    margin-left: 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 36px;
}
.userInfo:before {
    /* content: '\f007';
    font-family: 'FontAwesome'; 
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900; */
    background-image: url(../../Images/Main_Images/util-ico-01.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 21px;
    margin-right: 10px;
}
.userInfo2:before {
    /* content: '\f007';
    font-family: 'FontAwesome'; 
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900; */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin-right: 10px;
}
.headerTop .menu li .favList,
.headerTop .menu li .lanMenu {
    position: absolute;
    top: 40px;
    left: -45px;
    background: #fff;
    border: 1px solid #ededed;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    min-width: 100px;
    min-height: 100px;
    padding: 15px 10px;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .2s;
}
.headerTop .menu li .favList {
    padding: 0;
    min-width: 150px;
    left: -55px;
}
    .headerTop .menu li .favList a,
    .headerTop .menu li.lan .lanMenu a {
        display: block;
        text-align: left;
        font-size: 11px;
        min-width: 100px;
        white-space: nowrap;
    }
    .headerTop .menu li .favList a {
        border-bottom: 1px solid #ededed;
        padding: 10px 0 10px 10px;
    }
    .headerTop .menu li .favList a:hover {
        border-bottom: 1px solid #ededed;
        padding: 10px 0px 10px 10px;
        font-weight: bold;
    }
    .headerTop .menu li .favList a span {
        margin-right: 5px;
        color: #0B51B7;
    }
.headerTop .menu li.lan, .headerTop .menu li.fav {
    position: relative;
}
    .headerTop .menu li.lan > img {
        width: 26px;
        height: 26px;
        vertical-align: middle;
        border-radius: 50%;
    }

    .headerTop .menu li.lan .lanMenu a {
        font-family: 'Montserrat';
    }
        .headerTop .menu li.lan .lanMenu a:hover {
            font-weight: bold;
        }
.headerTop .menu li.lan .lanMenu a img{
    width:23px;
    height: 15px;
    padding-right: 10px;
}
.headerTop .menu li.lan .lanMenu a ~ a{
    padding-top: 10px;
}
.headerTop .menu li .myInfoWrap{
    position: absolute;
    top: 40px;
    left: -15px;
    width: 340px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    z-index: 10;
    visibility: hidden;
    transform: translateY(30px);
    transition: transform .2s;
    border: 1px solid #E5E5E5;
}
.headerTop .menu li div.on{
    visibility: visible;
    transition: transform .2s;
    transform: translateY(0px)
}
.headerTop .menu li .myInfoWrap .infoList{
    width: 65px;
    background: #F4F8FD;
    border-right: 1px solid #E5E5E5;
}
.headerTop .menu li .myInfoWrap .infoList a{
    display: block;
    height: 50px;
    border-bottom: 1px solid #E5E5E5;
    background-image: url(../../Images/Main_Images/myinfoIco-01.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.headerTop .menu li .myInfoWrap .infoList a span{
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate(-20px,-50%);
    background: #2a2a2a;
    color: #FFD64E;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 2px;
    visibility: hidden;
    transition: translate .2s;
}
.headerTop .menu li .myInfoWrap .infoList a span.on{
    visibility: visible;
    transform: translate(-10px,-50%);
    transition: all .3s;
}
.headerTop .menu li .myInfoWrap .infoList a span:after{
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    width: 6px;
    height: 6px;
    background: #2a2a2a;
    transform: rotate(-45deg) translateY(-50%);
}
.headerTop .menu li .myInfoWrap .infoList a.ico-02{
    background-image: url(../../Images/Main_Images/myinfoIco-02.svg) ;
}
.headerTop .menu li .myInfoWrap .infoList a.ico-03{
    background-image: url(../../Images/Main_Images/myinfoIco-03.svg) ;
}
.headerTop .menu li .myInfoWrap .infoList a:hover{
    background-color: #fff;
    background-image: url(../../Images/Main_Images/myinfoIco-01-on.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
}
.headerTop .menu li .myInfoWrap .infoList a:hover.ico-02{
    background-image: url(../../Images/Main_Images/myinfoIco-02-on.svg) ;
}
.headerTop .menu li .myInfoWrap .infoList a:hover.ico-03{
    background-image: url(../../Images/Main_Images/myinfoIco-03-on.svg) ;
}
.headerTop .menu li .myInfoWrap .myJobInfo{
    width: calc(100% - 65px)
}
.headerTop .menu li .myInfoWrap .myJobInfo h2{
    text-align: center;
    font-size: 13px;
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.myInfoWrap .myJobInfo .mjWrap{
    flex: 1;
}
.myInfoWrap .myJobInfo .mjWrap + .mjWrap{
    border-left: 1px solid #e5e5e5;
}
.myInfoWrap .myJobInfo .mjWrap .mjTit{
    background: #F8F8F8;
    border-bottom: 1px solid #e5e5e5;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
}
.myInfoWrap .myJobInfo .mjWrap .mjNum{
    height: 93px;
    line-height: 93px;
    font-size: 24px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #FC7F0C;
}
.myInfoWrap .myJobInfo .mjWrap + .mjWrap .mjNum{
    color: #0B50B3;
}
header nav{
    position: relative;
    background: #0B51B7;
    height: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2)
}
nav > ul > li{
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
} 
nav > ul > li > a{
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 50px;
    display: block;
    position: relative;
    text-align: center;
    padding:0 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
nav > ul > li > a:hover{
    background: #2A76F4;
    /* margin: 0 30px; */
    /* padding:0 10px */
}
    nav > ul > li > a.on {
        background: #2A76F4;
        /* margin: 0 30px; */
        /* padding:0 10px */
    }
.snvWrap{
    position: absolute;
    top: 50px;
    left: 0;    
    width: 100%;
    /* height:320px;  */
    background: #F8F9FB;
    box-shadow: 0 5px 15px rgba(42,42,42,.05);
    border-bottom: 1px solid #ededed;
    transform: scaleY(0);
    transform-origin: 100% 0;
    transition: transform .2s;
}
.snvWrap.on{
    transform: scaleY(1);
    transition: transform .3s ease;
    min-height: 200px;
}


.snvWrap .snv{
    /* justify-content:center; */
    min-height: 200px;
}



.snvWrap .snv .depth-2{
    width: 10%;
    min-width:200px;/* Γί°‘ */
    border-right: 1px solid #ededed;
    padding-bottom: 20px;
    transition: all .2s ease;
}
.snvWrap .snv .depth-2:hover{
    background: #fff;
    transition: all .2s ease;
}
.snvWrap .snv .depth-2:hover h2{
    background: #EBF2FB;
    border-bottom: 1px solid #2A2A2A;
    transition: all .2s ease;
}
.snvWrap .snv .depth-2:first-child{
    border-left: 1px solid #ededed;
}
.snvWrap .snv .depth-2 h2{
    background: #F1F5FA;
    text-align: center;
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #ededed;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
    padding: 0 10px;
}
.snvWrap .snv .depth-2 ul li a{
    display: block;
    color: #2a2a2a;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    white-space: normal;
    word-break: normal;
}

/* .navBg{
    position: absolute;
    top: 50px;    
    width: 100%;
    height: 270px;
    background: #F8F9FB;
    z-index: 3;
} */
/* contents */
.container{
    position: relative;
    z-index: 1;
}
.contentsWrap{
    margin: 0 10rem;
}
.contents{
    margin-top: 55px;
}
.contents article{
    margin-top: 50px;
}
.contents article:first-child{
    margin-top: 0;
}
.footer{
    font-size: 12px;
    color: #818181;
    text-align: center;
    margin:20px 0;
}
@media(max-width: 1800px) {
    .contentsWrap{
        margin: 0 2rem;
    }
}
@media(max-width: 1200px) {
    .headerTop .searchBox input{
        width: 250px;
    }
    .headerTop .logo{
        margin-left: 1.25rem;
    }
    .headerTop .util{
        right: 1.25rem;
    }
    .snvWrap .snv .depth-2 h2{
        font-size: 12px;
    }
    .snvWrap .snv .depth-2 ul li a{
        font-size: 11px;
    }
}
@media(max-width: 1000px) {
    .headerTop .logo{
        margin-left:1.25rem;
    }
    .headerTop .util{
        right: 1.25rem;
    }
    .headerTop .searchBox input{
        width: 200px;
    }
}