* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* 去除a标签的所有默认样式 */
a {
    text-decoration: none;
    /* 去除下划线 */
    color: inherit;
    /* 继承父元素的颜色，去除默认的蓝色 */
    outline: none;
    /* 去除点击时的外框 */

    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}

@font-face {
    font-family: 'SourceHanSan-Bold';
    src: url(../fonts/SiYuanHeiTi-Bold/SourceHanSansSC-Bold-2.otf);
}

@font-face {
    font-family: 'SourceHanSan-Ragular';
    src: url(../fonts/SiYuanHeiTi-Regular/SourceHanSansSC-Regular-2.otf);
}

::-webkit-scrollbar {
    display: none
}

.nav {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;

    width: 100%;
    height: 64px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    background: #1B1D25;
}

.nav .more {
    height: 100%;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .more .button {
    display: none;
    height: 34px;
    width: 34px;
    background-image: url(/icons/more.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.nav .right {
    margin-right: 80px;
    display: flex;
    flex-direction: row;
}

.nav-item {
    height: 64px;
    padding: 0px 16px;

    margin-left: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-family: 'SourceHanSan-Ragular';
    color: #E6EBFF;

    border-width: 0px 0px 2px 0px;
    border-style: solid;
    border-color: #ffffff00;
}

.nav-item:hover {
    cursor: pointer;
    color: #d9e2ff;

    border-width: 0px 0px 2px 0px;
    border-style: solid;
    border-color: #FFFFFF;

    transition: 200ms;
}

.nav-active {
    color: #d9e2ff;

    border-width: 0px 0px 2px 0px;
    border-style: solid;
    border-color: #FFFFFF;
}

.drawer-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.drawer-list .item {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.footer {
    width: 100%;

    padding: 38px 76px;

    display: flex;
    flex-direction: row;
    align-items: center;

    background: #1B1D25;
}

.footer .list {
    margin-right: 100px;

    display: flex;
    flex-direction: column;
}

.footer .list .title {
    margin-bottom: 24px;

    font-size: 18px;
    font-family: 'SourceHanSan-Ragular';
    color: #FFFFFF;

    user-select: none;
}

.footer .list .item {
    margin-bottom: 8px;

    font-size: 14px;
    font-family: 'SourceHanSan-Ragular';
    color: #C6C6C6;

    user-select: none;
}

.footer .list .item a {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 900px) {
    .nav .more .button {
        display: block;
    }

    .nav .right {
        display: none;
    }

    .footer {
        padding: 32px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer .list {
        margin-right: 0;
    }
}