/* 兼容webkit浏览器 */
::-webkit-scrollbar {
    width: 6px;
}

.hide {
    display: none;
}

.top-section-wrap {
    position: fixed;
    top: 0;
    z-index: 11;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}

.top-section {
    margin: 0 auto;
    width: 1320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a.logo {
    display: block;
    width: 228px;
    height: 45px;
    background: url(../img/logo01.png) no-repeat;
}

.top-section .top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.top-section .top-right ul{
    display: flex;
    margin-right: 30px;
}
.top-section .top-right ul li{
    padding: 0 30px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    position: relative;
}
.top-section .top-right ul li.on{
    color: #6D60FF;
}
.top-section .top-right ul li.on::after{
    content: '';
    display: block;
    width: 30px;
    height: 4px;
    background: #6D60FF;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -15px;
}
.top-section .top-right ul li:hover{
    color: #6D60FF;
}
.top-section .top-right .dev-platform {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
}

.top-section .top-right .dev-platform.is-login,
.top-section .top-right .dev-platform:hover {
    color: #6D60FF;
}

.top-section .top-right .user-avatar {
    position: relative;
    width: 30px;
    height: 30px;
    background: url(../img/platform/avatar.png) center no-repeat;
    background-size: 100%;
    margin: 0 40px 0 46px;
    cursor: pointer;
}

.top-section .top-right .user-avatar .log-out {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 44px;
    transform: translateX(-50%);
    width: 70px;
    height: 30px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    color: rgba(51, 51, 51, 1);
    font-weight: 500;
    font-size: 13px;
}

.top-section .top-right .user-avatar .log-out:hover {
    color: #6622DD;
}

.top-section .top-right .user-avatar.is-login,
.top-section .top-right .user-avatar:hover {
    background-image: url(../img/platform/avatar-login.png);
}

.top-section .top-right .right-dl-btn {
    position: relative;
    display: block;
    /* line-height: 46px;
    text-align: center; */
    width: 114px;
    height: 44px;
    background: url(../img/down_btn.png) no-repeat center;
    /* border-radius: 2px;
    background: linear-gradient(180deg, rgba(37, 234, 255, 1) 0%, rgba(0, 99, 205, 1) 100%);
    color: rgba(255, 255, 255, 1);
    font-family: Source Han Sans CN;
    font-size: 16px; */
    /* text-decoration: none; */
}

.top-section .top-right .right-dl-btn:hover {
    background: url(../img/down_btn_h.png) no-repeat center;
    /* background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), linear-gradient(180deg, rgba(37, 234, 255, 1) 0%, rgba(0, 99, 205, 1) 100%); */
}

.top-section .top-right .right-dl-btn:hover .dl-tip {
    display: flex;
}

.top-section .top-right .right-dl-btn .dl-tip {
    position: absolute;
    display: none;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 30px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 1);
    color: rgba(51, 51, 51, 1);
    font-weight: 500;
    font-size: 13px;
    cursor: auto;
}

/* 弹框遮罩层公共样式start */
.pop-mask {
    position: fixed;
    display: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 19;
    background: rgba(0, 0, 0, 0.5);
}

.common-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 弹框遮罩层公共样式end */