#share-header {
    height: 80px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.dt-nav-link_share{
    text-decoration: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 18px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #999;
    align-items: center;
}
.app-main-margin-t {
    margin-top: 80px;
}
.app-main {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
.page {
    padding-top: 2rem;
    max-width: 80rem;
    height: auto;
    margin: 0 auto;
    border-radius: .75rem;
    display: table;
}
.page .header-body {
    margin-top: 3rem;
    padding: 0 .9375rem 4rem;
}
.page .header-body>h1 {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 600;
}
.page .header-body p {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.page .header-body .jump-list {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.page .header-body .jump-list button {
    background-color: #9d7aff;
    color: #fff;
    border-radius: 15px;
    cursor: pointer;
}
.el-button, .el-button.is-round {
    padding: 8px 15px;
}
.el-button {
    font-size: 14px;
    --el-button-font-weight: 500;
    --el-button-border-color: #dcdfe6;
    --el-button-bg-color: #fff;
    --el-button-text-color: #606266;
    --el-button-disabled-text-color: #a8abb2;
    --el-button-disabled-bg-color: #fff;
    --el-button-disabled-border-color: #e4e7ed;
    --el-button-divide-border-color: rgba(255, 255, 255, .5);
    --el-button-hover-text-color: #409eff;
    --el-button-hover-bg-color: rgb(236,245,255);
    --el-button-hover-border-color: rgb(198,226,255);
    --el-button-active-text-color: #409eff;
    --el-button-active-border-color: #409eff;
    --el-button-active-bg-color: rgb(236,245,255);
    --el-button-outline-color: rgb(160,207,255);
    --el-button-hover-link-text-color: #909399;
    --el-button-active-color:#303133;
    align-items: center;
    -webkit-appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font-weight: 400;
    height: 32px;
    justify-content: center;
    line-height: 1;
    outline: none;
    text-align: center;
    transition: .1s;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
}
.el-button>span {
    align-items: center;
    display: inline-flex;
}
.page .header-body .jump-list a{
    text-decoration: underline;
    color: #000;
    line-height: 30px;
}
.page .marquee-container {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 .9375rem 4rem;
}
.page .marquee-container .marquee-content{
    display: block;
    animation: marquee 30s linear infinite;
}
.page .marquee-container .marquee-content>img {
    width: 18%;
    margin-right: 2%;
    display: inline-block;
    border-radius: 12px;
}
.layout .main-container{
    margin-left: 0;
    padding: 0;
    height: auto;
    overflow: hidden;
    transition: all .38s;
}
@keyframes marquee {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-100%)
    }
}