/*公共CSS*/
@import "../common/index.css";
@import "./iconfont/iconfont.css";
/* 媒体查询 */
@import "./media/index.css";


body{
    position: sticky;
    background-image: url('../image/bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

header{
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container{
    /*min-width: 1200px;*/
}

nav{
    flex: 1;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

nav > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 45px;
    border-radius: 10px;
    position: relative;
}

nav > div > a{
    padding: 0 1.5em;
    height: 45px;
    display: flex;
    align-items: center;
}

nav > div:hover{
    background: #F9FCFE;
}

nav > div > div{
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    display: none;
    padding: 8px 0 0 0;
}

nav > div > div > a{
    background: #F9FCFE;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav > div > div > a:nth-of-type(1) {
    border-radius: 10px 10px 0 0;
}

nav > div > div > a:last-of-type {
    border-radius: 0 0 10px 10px;
}

nav > div > div > a:hover{
    background: #fff;
}

.active{
    font-weight: bold;
    position: relative;
}

.active::after{
    content: '';
    width: 10px;
    height: 4px;
    position: absolute;
    bottom: 5px;
    background: #333;
    border-radius: 2px;
}

header > .logo{
    height: 100%;
}

header > .logo > img{
    height: 56px;
}

main{
    min-height: 250px;
}

aside{
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 100000;
    border-left: 1px solid #eee;
    min-width: 50%;
}

aside > div:nth-of-type(1) {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 20px;
    background: #DFFBF0;
}

aside > div:nth-of-type(2) {
    flex: 1;
    overflow-y: scroll;
}

aside > div:nth-of-type(2)::-webkit-scrollbar{
    display: none;
    width: 0;
    height: 0;
}

aside > div:nth-of-type(2) > div{

}

aside > div:nth-of-type(2) a{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

aside > div:nth-of-type(2) > div > a{
    padding: 14px 20px;
    border-bottom: 1px solid #f5f5f5;
}

aside > div:nth-of-type(2) > div > .aside_title{
    padding: 8px 20px;
    background: #f5f5f5;
}

aside > div:nth-of-type(2) > div > div{
    padding: 14px 0;
}

aside > div:nth-of-type(2) > div > div > a{
    padding: 10px 20px;
}




footer{
    padding: 60px 0 80px 0;
    background: linear-gradient(to right, #EBF8F7, #F9FBFF);
}


.link{

}

.link > div:nth-of-type(1) {

}

.link > div:nth-of-type(1) > img{
    height: 100px;
}

.link > div:nth-of-type(2) {
    /*display: flex;*/
    /*margin-top: 50px;*/
    /*margin-bottom: 20px;*/
}

.link > div:nth-of-type(2) > div{
    /*display: flex;*/
    /*flex-direction: column;*/
    /*margin-right: 72px;*/
}

.link > div:nth-of-type(2) > div:last-of-type{
    /*margin-right: 0;*/
}

.link > div:nth-of-type(2) > div > a{
    /*color: #777777;*/
    /*font-size: 12px;*/
    /*margin-bottom: 8px;*/
    /*padding: 0 3px;*/
    /*display: flex;*/
    /*justify-content: center;*/
}

.link > div:nth-of-type(2) > div > a:nth-of-type(1) {
    /*font-weight: bold;*/
    /*border-bottom: 1px solid #333;*/
    /*color: #000;*/
    /*font-size: 13px;*/
    /*padding: 6px 0;*/
}

.link > div:nth-of-type(3) > div{
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.link > div:nth-of-type(3) > div > img{
    width: 24px;
    height: 24px;
}

.link > div:nth-of-type(3) > p{
    color: #777;
    font-size: 12px;
}

.contact{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact > div{
    text-align: right;
}

.contact > div > p{
    text-align: right;
    color: #aaa;
    font-size: 14px;
    padding: 4px 0;
}

.contact > div > p:nth-of-type(2n){
    color: #000;
    margin-bottom: 10px;
}

.contact > div > img{
    width: 130px;
    height: 130px;
}

