/*  头部开始  */

.header {
    display: flex;
    position: fixed;
    align-items: center;
    width: 100%;
    min-width: 1080px;
    height: 78px;
    background: linear-gradient(to right, #381152, #050b63);
    color: #fff;
    font-family: 'SOURCEHANSANSCN';
    font-size: 16px;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.header .title-img {
    display: inline-block;
    width: 170px;
    height: 72px;
    margin: 3px auto 0px;

}

.header .line {
    display: inline-block;
    height: 36.8px;
    width: 1px;
    background-color: #8462c0ed;
    margin-top: 24px;
    margin-left: 20px;
    margin-right: 20px;
}

.header .title-img-box a:nth-child(1) {
    margin-left: 84px;
}

.header .right {
    display: flex;
    flex: 1;
    align-items: center;
    margin-left: 50px;
}

.header .right .list {
    display: flex;
    width: 80%;
    justify-content: space-around;
}

.header .right .list .active {
    color: #fe2a44;
}

.header .right .translate {
    display: flex;
    margin-left: 50px;
    align-items: center;
}

.header .right .translate .zh {
    background: #fff;
    color: #000;
    width: 20px;
    line-height: 30px;
    transform: skew(-15deg);
    margin-right: 10px;
}

.header .right .login {
    display: flex;
    width: 100px;
    align-items: center;
    margin-right: 20px;
    margin-left: 20px;
    justify-content: space-between;
}

.header .right .sign-up {
    display: flex;
    width: 200px;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    justify-content: space-between;
}

.header p:hover {
    color: #fe2a44;
    cursor: pointer;
}


/*  头部结束  */