* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -welist-style: none;
    text-decoration: none;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;
    font-size: 16px;
}

:root {
    --header-height: 80px;
    --header-filter: blur(8px);
    --header-bg-color: #ffffff9a;
    --header-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    --color-1: #000000;
    --color-2: #ffffff;
    --color-3: #666666;
    --color-4: #a8ad80;
    --color-5: #6A6347;
    --color-6: #653339;
    --color-7: #ECE8D7;
    --color-8: #CDAE89;
    --flaot-bj-color: #ffae78;
    --text-color: #798390;
    --text-color2: #BD994B;
    --text-color3: #4f4f4f;
    --main-bj-color: #F4F2E9;
}

@font-face {
    font-family: "阿里妈妈东方大楷 Regular";
    font-weight: 400;
    src: url("../font/AlimamaDongFangDaKai-Regular.woff2") format("woff2"),
        url("../font/AlimamaDongFangDaKai-Regular.woff") format("woff");
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "阿里妈妈东方大楷 Regular";
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

::-webkit-scrollbar {
    display: none;
}

/* 顶部 */
.header {
    height: var(--header-height);
    background-color: var(--header-bg-color);
    backdrop-filter: var(--header-filter);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: var(--header-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav-logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo-title h1 {
    font-size: 25px;
    font-weight: bold;
    color: var(--color-1);
}

.nav-logo-title h2 {
    font-size: 16px;
    color: var(--color-3);
}

.nav-logo img {
    height: calc(var(--header-height) - 20px);
    width: auto;
    margin-right: 10px;
}

.nav-menu ul {
    display: flex;
    align-items: center;

}

.layui-nav {
    background-color: transparent;
}

.layui-nav .layui-nav-item a {
    color: var(--color-1);
}

.layui-nav .layui-nav-item a:hover {
    color: rgb(0, 99, 212);
}

.nav-menu ul li {
    margin: 0 10px;
}

.nav-menu ul li a {
    color: var(--color-1);
    font-size: 18px;
    transition: all 0.2s ease;
}

/* 悬浮区块 */
/* 左侧悬浮区 */
.float-left {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 999;
    width: 170px;
    background: url(../images/leftkj.png) no-repeat center center;
    background-size: 100% 100%;
}

#zhankai,
#guanbi {
    position: absolute;
    top: 60px;
    right: -13px;
    cursor: pointer;
}

#guanbi {
    display: none;
}

.float-left-top {
    text-align: center;
    width: 100%;
    height: 100px;
    margin-top: 60px;
    padding: 0 10px;
    padding-right: 13px;
}

.float-left-top h2 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
}

.float-left-top p {
    color: #e5cd87;
    font-weight: 400;
}

.float-left-top img {
    margin-top: 5px;
    width: 80%;
}

.float-left-middle {
    text-align: center;
    position: relative;
    padding-right: 3px;
}

.float-left-middle {
    margin: auto;
    width: 90%;
}

.float-left-middle img {
    width: 80%;
}

.float-left-middle p {
    font-size: 12px;
    color: #ffffff;
}

#saomiao {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    animation: saomiaodonghua 2s linear infinite;
}

@keyframes saomiaodonghua {
    from {
        top: 0;
    }

    to {
        top: 110px;
    }
}

.float-left-bottom {
    padding-right: 3px;
    margin-bottom: 90px;
}

.float-left-bottom div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    padding: 8px 0;
    margin: 10px auto;
    background: url(../images/ank.png) no-repeat;
    background-size: 100% 100%;
}

.float-left-bottom div a {
    color: #ffffff;
    font-size: 14px;
}

.float-left-bottom div a:hover {
    color: #e5cd87;
}

/* 右侧悬浮区 */
.float-right {
    position: fixed;
    bottom: 100px;
    right: 10px;
    z-index: 1;
}

.float-right ul li {
    color: var(--color-1);
    background-color: var(--flaot-bj-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.float-right ul li div {
    padding: 10px;
    display: none;
}

.float-right ul li div h2 {
    margin-bottom: 10px;
}

.float-right ul li div img {
    width: 70%;
    height: 70%;
}

.float-right ul li:hover div {
    display: block;
    animation: fangda 0.2s ease-in-out forwards;
}

@keyframes fangda {
    from {
        opacity: 0;
        right: 0;
    }

    to {
        opacity: 1;
        right: 90px;
    }
}

.float-right ul li>svg {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.float-right ul li>p {
    font-size: 13px;
    font-weight: bold;
}

.kefurexianqu,
.zaixiankefuqu,
.zhidingqu {
    position: absolute;
    right: 90px;
    width: 150px;
    border-radius: 10px;
    background-color: var(--flaot-bj-color);
    text-align: center;
}

.kefurexianqu::after,
.zaixiankefuqu::after,
.zhidingqu::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--flaot-bj-color);
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

#zhiding {
    display: none;
}

/* 主体 */
.main {
    position: relative;
    padding-bottom: 150px;
    background-color: var(--main-bj-color);
    z-index: 0;
}

.main-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-bg img {
    width: 100%;
    height: 100%;
}

/* banner区块 */
.banner {
    width: 100%;
    height: auto;
    position: relative;
}

.banner-img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner-download {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 600px;
    height: 250px;
    backdrop-filter: var(--header-filter);
    background-color: var(--header-bg-color);
    border: var(--color-2) solid 1px;
    box-shadow: var(--header-shadow);
}

.banner-download::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -20px;
    width: 20px;
    height: 310px;
    background: url("../images/10034.png") no-repeat center center;
    background-size: 100% 100%;
}

.banner-download::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -20px;
    width: 20px;
    height: 310px;
    background: url("../images/10034.png") no-repeat center center;
    background-size: 100% 100%;
}

.banner-download-title h2 {
    margin: 5px 0 10px 0;
    font-size: 30px;
    text-align: center;
}

.banner-download-title p {
    padding: 0 10px;
    display: block;
    height: 180px;
    line-height: 1.5rem;
    overflow-y: scroll;
}

.banner-download-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.banner-download-btn a {
    margin: 0 10px;
    text-align: center;
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    color: var(--color-2);
    background: url("../images/10040.png") no-repeat center center;
    background-size: 100% 100%;
}

/* 轮播图 */
.carousel-box .layui-carousel {
    margin: auto;
    width: 60%;
    height: auto;
    aspect-ratio: 16 / 8;
    border-radius: 10px;
    background-color: transparent;
}

.carousel-box .layui-carousel img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.carousel-box .layui-carousel>[carousel-item] {
    border-radius: 10px;
}

.carousel-box .layui-carousel[lay-anim=fade]>[carousel-item]>* {
    border-radius: 10px;
}

.carousel-box .layui-carousel>[carousel-item]>* {
    background-color: transparent;
}

.layui-carousel-ind {
    top: 10px;
}

.carousel-box .layui-carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 0;
}

.carousel-box .layui-carousel button:nth-child(3) {
    background: url(../images/zuo.png) no-repeat center center;
    background-size: 100% 100%;
}

.carousel-box .layui-carousel button:nth-child(4) {
    background: url(../images/you.png) no-repeat center center;
    background-size: 100% 100%;
}

.carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add] {
    right: -90px;
}

.carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]:active {
   right: -100px;
}

.carousel-box .layui-icon-left:before {
    content: "";
}

.carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow {
    left: -90px;
}

.carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow:active {
    left: -100px;
}

.carousel-box .layui-icon-right:before {
    content: "";
}

/* 分割区块 */
.split {
    margin: 150px auto 50px auto;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split img {
    width: 100%;
    height: 100%;
}

/* 文章区块 */
.article {
    width: 50%;
    margin: 0 auto;
}

.article .layui-tab {
    width: 100%;
}

.article .layui-tab ul li {
    color: var(--text-color2);
    font-size: 30px;
}

.article .layui-tab-title {
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0 0 0;
    background: url("../images/ulbj.png") no-repeat center center;
    background-size: 100% 100%;
}

.article .layui-tab .layui-tab-title {
    height: auto;
    padding: 25px 0 17px 0;
}

.article .layui-tab-brief>.layui-tab-title .layui-this:after {
    border: none;
}

.article .layui-tab-brief>.layui-tab-title .layui-this {
    color: var(--color-1);
    background: url("../images/active.png") no-repeat center center;
    background-size: 100% 100%;
}

/* 栏目内容 */
.article .layui-tab-content ul li {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
}

.article .layui-tab-content ul li:hover {
    margin-left: 20px;
    padding: 10px 20px;
    background-color: #ffffff;
}

.article .layui-tab-content ul li>a {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 30px;
    color: var(--text-color);
    cursor: pointer;
}

.article .layui-tab .layui-tab-title li {
    font-size: 20px;
    padding: 5px 20px;
}

.article .article-title {
    padding-right: 10px;
    flex: 1;
    overflow: hidden;
}

.article .article-title span{
    color: var(--text-color2);
    font-size: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.article .article-title p{
    color: var(--text-color);
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.article .article-icon svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.article .article-icon2 svg {
    width: 35px;
    height: 35px;
}

/* 人物介绍区块 */
.person {
    width: 60%;
    height: 400px;
    margin: 0 auto;
    border-radius: 10px;
}

.person .layui-carousel {
    border-radius: 10px;
    background-color: transparent;
}

.person .layui-carousel div {
    border-radius: 10px;
}

.person .layui-carousel>[carousel-item]:before {
    content: "";
}

.person .layui-carousel>[carousel-item]>* {
    background-color: transparent;
    border-radius: 10px;
}

.person .person-item .person-item-box {
    width: 100%;
    height: 100%;
    display: flex;
}

.person .person-item .person-item-box div:nth-child(3) {
    flex: 1;
    min-width: 430px;
    margin-right: 60px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.person .person-item .person-item-box div:nth-child(3) span {
    color: var(--color-6);
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin: 10px 0;
}

.person .person-item .person-item-box div:nth-child(3) p {
    color: var(--color-3);
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin: 10px 0;
}

.person .person-item .person-item-box div:nth-child(3) b {
    color: var(--color-5);
    font-size: 25px;
}

.person .person-item .person-item-box div:nth-child(1) {
    max-width: 300px;
}

.person .person-item .person-item-box div:nth-child(1) img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.person .person-item .person-item-box .person-item-split {
    width: 50px;
    height: 100%;
}

/* 游戏视频 */
.videolist {
    margin: auto;
    width: 60%;
}

.videolist ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.videolist ul li {
    position: relative;
    width: 20%;
    aspect-ratio: 16/9;
    margin: 10px;
}

.videolist ul li>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.play {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000007c;
    border-radius: 10px;
}

.play img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play svg {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.floatvideo {
    position: fixed;
    top: var(--header-height);
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    z-index: 999;
    background-color: #00000073;
    backdrop-filter: blur(5px);
    display: none;
}

.floatvideo-content {
    position: relative;
    width: 80%;
    height: auto;
    background-color: #00000073;
    backdrop-filter: blur(5px);
}

.floatvideo-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #00000073;
    backdrop-filter: blur(5px);
}

.floatvideo a {
    position: absolute;
    right: -45px;
    top: 0;
}

.floatvideo a img {
    width: 40px;
    height: 40px;
}

/* 底部 */
.footer {
    padding: 10px;
    color: #ffffff;
    background-color: #252525;
}

.footer-top {
    display: flex;
    padding: 20px 40px;
}

.footer-left {
    width: 30%;
}

.footer-left-shuoming {
    display: flex;
}

.footer-left-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-left-title h2 {
    margin-bottom: 5px;
    font-size: 20px;
}

.footer-left-title h3 {
    font-size: 16px;
    color: #d8d8d8;
}

.footer-left img {
    height: 80px;
    margin-right: 10px;
}

.footer-left p {
    margin: 10px 0;
    color: #cacaca;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.footer-center {
    width: 40%;
    display: flex;
    justify-content: space-around;
    gap: 0 10px;
}

.footer-center div {
    display: flex;
    flex-direction: column;
}

.footer-center div h2 {
    text-align: center;
    margin: 10px 0;
    font-size: 20px;
}

.footer-center div a {
    text-align: center;
    font-size: 16px;
    margin: 2px 0;
    display: block;
    color: #858585;
}

.footer-center div a:hover {
    color: rgb(156, 209, 255);
}

.footer-right {
    width: 30%;
}

.footer-right ul {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-right ul li {
    width: 33%;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right ul li a>img {
    width: 50%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.footer-right ul li>a {
    color: #858585;
    display: block;
    width: 100px;
    aspect-ratio: 1/1;
}

.footer-bottom {
    margin: auto;
    margin-bottom: 30px;
    width: 90%;
}

.footer-bottom ul {
    padding: 10px;
    border-radius: 5px;
    background-color: #7777778e;
}

.footer-bottom ul li {
    display: inline;
    margin: 0 5px;
    line-height: 1.5;
}

.footer-bottom ul li a {
    color: #c0c0c0;
}

.footer-bottom ul li a:hover {
    color: #97cdff;
}

.footer-copy {
    padding-bottom: 10px;
    margin: auto;
    width: 60%;
    text-align: center;
}

.footer-copy a {
    color: #c0c0c0;
    margin: 10px 0;
}

.footer-copy a:hover {
    color: red;
    text-decoration: underline;
}

.footer-copy svg {
    width: 25px;
    height: 25px;
    margin: 0 5px;
}

.footer-copy p:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 移动端底部导航栏 */
.mobile-footer-nav {
    display: none;
}

.footer-mobile-Placeholding {
    width: 100vw;
    height: 50px;
    display: none;
}

.footer-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 70px;
    background-color: var(--color-2);
}

.footer-mobile ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-mobile ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-mobile ul li a>svg {
    width: 25px;
    height: 25px;
    margin-bottom: 5px;
}

.footer-mobile ul li a>p {
    font-size: 14px;
    color: #2d2d2d;
    font-weight: bold;
}

.jkyx {
    text-align: center;
    line-height: 1.5;
}

/* 文章列表页面 */
.main-article .banner .banner-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.main-article .article-list {
    margin: 0 auto;
    width: 70%;
    display: flex;
}

.main-article .crumbs {
    margin: 50px auto 20px auto;
    width: 70%;
    color: #833400;
}

.main-article .article-list-left {
    width: 300px;
    background-color: #ece8d794;
    border: 2px solid var(--color-8);
    padding: 40px 0;
    position: relative;
}

.main-article .article-list-left ul {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    left: auto;
}

.main-article .article-list-left li {
    text-align: center;
    margin: 20px 0;
}

.main-article .article-list-left li>span {
    font-size: 20px;
}

.main-article .article-list-left li>img {
    width: 60%;
}

.main-article .article-list-right {
    flex: 1;
    max-width: 100%;
}

.main-article .article-list-right li>a {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 0 10px 10px 0;
}

.main-article .article-list-right li>a:hover {
    background-color: var(--color-2);
}

.main-article .article-list-right li>a:hover .article-icon2 {
    margin-right: 0;
}

.main-article .article-list-right .article-icon2 {
    margin-right: 20px;
    margin-left: auto;
}

.main-article .article-list-right li a .article-title h2 {
    font-size: 25px;
    color: #ff730091;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.main-article .article-list-right li a .article-title p {
    font-size: 17px;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.main-article .article-list-right li>a svg {
    width: 30px;
    height: 30px;
}

.main-article .page-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-article .page-btn a {
    color: var(--color-8);
    margin: 0 5px;
    font-size: 16px;
}

.main-article .page-btn a:active{
    font-size: 14px;
}

.main-article .page-btn span {
    color: var(--color-2);
    margin: 0 5px;
}

.main-article .article-icon{
    margin-right: 10px;
}

/* 标签列表页面 */
.main-tags .crumbs {
    margin: 50px auto 20px auto;
    width: 95%;
    color: var(--flaot-bj-color);
}

.main-tags .banner .banner-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.main-tags .tags {
    margin: 0 auto;
    width: 95%;
}

.main-tags .tags a {
    color: var(--color-8);
    background-color: var(--color-6);
    border-radius: 5px;
    padding: 10px 20px;
    line-height: 50px;
}

.main-tags .tags a:hover {
    background-color: var(--color-2);
    color: var(--color-1);
}

/* 文章详情页 */
.main hr {
    border-bottom: 1px solid var(--text-color);
}

.main-article .article-content {
    padding: 10px;
    color: var(--text-color3);
}

.main-article .article-content p {
    width: 100%;;
    font-size: 18px;
    line-height: 1.8;
}

.main-article .article-content a {
    color: #61c5ff;
}

.main-article .article-content h1 {
    text-align: center;
    color: #c57936;
    font-size: 25px;
}

.main-article .article-content-text p img{
    margin: 5px auto;
}

.main-article .article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 5px 0;
}

.main-article .article-content .article-time {
    color: var(--text-color);
    text-align: center;
    margin: 10px 0 40px 0;
}

.main-article .article-content .article-content-source {
    margin-top: 20px;
    color: var(--text-color);
    font-size: 16px;
}

.main-article .article-content .article-content-read {
    margin-top: 5px;
    color: var(--text-color);
    font-size: 16px;
}

.main-article .article-list-right .essay {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.main-article .article-list-right .essay div {
    width: 40%;
}

.main-article .article-list-right .essay div:nth-child(1) {
    text-align: left;
}

.main-article .article-list-right .essay div:nth-child(2) {
    text-align: right;
}

.main-article .article-list-right .essay div h2 {
    color: #656565;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.main-article .article-list-right .essay div a:active {
    font-size: 14px;
}

.main-article .article-list-right .essay div a:hover {
    color: #4e8bff;
}

.main-article .article-list-right .essay div a>span {
    color: black;
}

.main-article .article-list-right .correlation {
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
}

.main-article .article-list-right .correlation ol {
    padding: 10px;
    border: 2px dashed #ccc;
}

.main-article .article-list-right .correlation ol li {
    width: calc(100% - 30px);
    margin: 10px 0;
    margin-left: 30px;
    list-style: auto;
}

.main-article .article-list-right .correlation h2 {
    text-align: left;
    margin: 0 0 10px 0;
}

.main-article .article-list-right .correlation li>a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.main-article .article-content-text .tags a{
    color: var(--color-8);
    background-color: var(--color-2);
    border-radius: 5px;
    padding: 5px 10px;
    line-height: 30px;
}

.main-article .article-list-right .correlation li>a{
    padding: 0;
}

/* 自适应布局 */
@media screen and (max-width: 1300px) {

    /* 自适应人物介绍区块 */
    .person {
        width: 80%;
    }

    .person .person-item .person-item-box div:nth-child(1) {
        max-width: 370px;
    }

    /* 自适应文章区块 */
    .article {
        width: 80%;
    }

    /* 自适应文章列表页面 */
    .main-article .article-list,
    .main-article .crumbs {
        width: 90%;
    }
}

@media screen and (max-width: 1100px) {

    /* 自适应人物介绍区块 */
    .person .person-item .person-item-box .person-item-split {
        display: none;
    }

    /* 自适应视频区块 */
    .videolist {
        width: 80%;
    }
}

@media screen and (max-width: 1000px) {

    /* 自适应顶部导航栏 */
    .layui-nav .layui-nav-item a {
        padding: 0;
    }

    /* 自适应左侧悬浮区块 */
    .float-left {
        display: none;
    }
    
    /*自适应首页banner区块*/
    .banner-img img{
        height: 100%;
    }

    /* 自适应下载区块 */
    .banner-download {
        position: static;
        bottom: 0;
        left: 0;
        transform: matrix(1, 0, 0, 1, 0, 0);
        margin: auto;
        margin-top: 50px;
        width: 60%;
        height: auto;
    }

    .banner-download-btn {
        width: 100%;
        left: auto;
        transform: matrix(1, 0, 0, 1, 0, 0);
    }

    .banner-download-btn a {
        margin: 0 5px;
        width: auto;
        padding: 0 10px;
    }

    /* 自适应底部区块 */
    .footer-top {
        align-items: center;
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
    }

    .footer-center {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-right ul li {
        margin-bottom: 0;
    }

    .footer-right ul li>a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-copy {
        width: 90%;
    }

    /* 自适应文章列表页面 */
    .main-article .article-list-left {
        width: 200px;
    }
}

@media screen and (max-width: 800px) {

    /* 自适应顶部导航栏 */
    .header .nav-menu {
        display: none;
    }

    /* 自适应主体区块 */
    .main {
        padding-bottom: 100px;
    }

    /* 自适应分割区块 */
    .split {
        width: 70%;
    }

    /* 自适应下载区块 */
    .banner-download {
        width: 70%;
    }

    /* 自适应轮播图区块 */
    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add] {
        right: -60px;
    }
    
    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]:active {
        right: -70px;
    }

    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow {
        left: -60px;
    }
    
    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow:active {
        left: -70px;
    }

    /* 自适应人物介绍区块 */
    .person {
        width: 100%;
    }

    .person .person-item .person-item-box div:nth-child(3) {
        min-width: 330px;
        padding: 0;
    }

    .person .person-item .person-item-box div:nth-child(3) span {
        margin: 5px 0;
        font-size: 17px;
    }

    .person .person-item .person-item-box div:nth-child(3) p {
        margin: 0;
        font-size: 17px;
    }

    .person .person-item .person-item-box div:nth-child(3) b {
        font-size: 20px;
    }

    /* 自适应视频区块 */
    .videolist {
        width: 90%;
    }

    .videolist ul li {
        width: 30%;
    }

    /* 自适应底部 */
    .footer-top {
        padding: 0;
    }

    /* 自适应文章列表页面 */
    .main-article .article-list-left {
        display: none;
    }
    
    .main-article .article-list-right li>a{
        border-radius: 10px;
    }
    
    .main-article .crumbs{
        margin: 10px auto 0px auto;
    }

}

@media screen and (max-width: 600px) {

    /* 自适应顶部导航栏 */
    .header {
        padding: 0 10px;
    }

    /* 自适应banner区块 */
    .banner {
        margin-top: var(--header-height);
    }

    /* 自适应下载区块 */
    .banner-download {
        display: none;
    }

    /* 自适应分割区块 */
    .split {
        width: 100%;
        margin: 30px auto 10px auto;
    }

    /*自适应轮播图区块*/
    .carousel-box .layui-carousel {
        width: 70%;
    }

    /* 自适应文章区块 */
    .article {
        width: 95%;
    }

    /* 自适应角色介绍区块 */
    .person .person-item .person-item-box div:nth-child(3) {
        min-width: 220px;
    }

    .person {
        height: 250px;
    }

    .person .person-item .person-item-box div:nth-child(3) span {
        -webkit-line-clamp: 2;
    }

    .person .person-item .person-item-box div:nth-child(3) p {
        -webkit-line-clamp: 4;
    }

    /* 自适应游戏视频区块 */
    .videolist {
        width: 100%;
    }

    .videolist ul li {
        width: 40%;
    }

    .floatvideo a {
        top: auto;
        right: auto;
        margin: auto;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .floatvideo-content {
        width: 90%;
    }

    /* 自适应底部区块 */
    .footer-center {
        display: none;
    }

    .main {
        padding-bottom: 70px;
    }

    .footer-left-shuoming {
        flex-direction: column;
        align-items: center;
    }

    /* 自适应移动端底部导航栏区块 */
    .footer-mobile {
        display: flex;
    }

    .footer-mobile-Placeholding {
        display: block;
    }

    /* 自适应文章区块 */
    .article .article-icon2 svg {
        width: 30px;
        height: 30px;
    }

    .main-article .banner .banner-img img {
        height: 100px;
    }

    /* 自适应标签页面 */
    .main-tags .banner .banner-img img {
        height: 100px;
    }


}

@media screen and (max-width: 500px) {

    /* 自适应游戏特色区块 */
    .carousel-box .layui-carousel-arrow {
        width: 30px;
        height: 30px;
    }

    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow {
        left: -40px;
    }
    
    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow:active {
        left: -50px;
    }

    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add] {
        right: -40px;
    }
    
    .carousel-box .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]:active {
        right: -50px;
    }

    /* 自适应角色介绍区块 */
    .person {
        height: 200px;
    }

    .person .person-item .person-item-box div:nth-child(3) p {
        -webkit-line-clamp: 3;
    }

    .person .person-item .person-item-box div:nth-child(3) {
        min-width: 170px;
    }

    /* 自适应文章列表页面 */
    .main-article .article-list-right li a .article-title h2 {
        font-size: 20px;
    }

    .main-article .article-list-right li a .article-title p {
        font-size: 14px;
    }

    .article .layui-tab-content ul li {
        padding: 10px;
    }
    
    .article .layui-tab-content ul li:hover {
        margin-left: 0;
        background-color: #ffffff;
    }

}

@media screen and (max-width: 400px) {

    /* 自适应角色介绍区块 */
    .person {
        height: 130px;
    }

    .person .person-item .person-item-box div:nth-child(3) b {
        font-size: 18px;
    }

    .person .person-item .person-item-box div:nth-child(3) p {
        display: none;
    }

    .article .layui-tab .layui-tab-title li {
        font-size: 16px;
        padding: 0 20px;
    }

    /* 自适应文章区块 */
    .layui-tab-bar {
        display: none;
    }

    .article .layui-tab .layui-tab-title {
        overflow-x: scroll;
    }

    .layui-tab .layui-tab-title li {
        min-width: 104px;
    }
}