#main {
    margin-top: 1.5rem;
    width: 100%;
    height: auto;
    background-color: #000;
    /* border-bottom: 1px solid #fff; */
}

.main-headBg {
    width: 10rem;
    height: 7.6rem;
    background: url('../img/main/bg-main.jpg');
    background-size: 10rem 7.6rem;
    background-position: center top;
    background-repeat: no-repeat;
}

.main-titleBg {
    width: 10rem;
    height: 1.25rem;
    background: url('../img/public/box-head.png');
    background-size: 10rem 1.25rem;
}

.main-titleBg {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-titleBg>div:nth-child(1) {
    font-size: 0.5rem;
    margin-left: 0.5rem;
    color: #c58953;
}

.main-titleBg>div:nth-child(2) {
    font-size: 0.3rem;
    margin-right: 0.5rem;
    color: #beb2b0;
}

.newsBtn-box {
    margin: 0 auto 0;
    width: 10rem;
    height: 1.3rem;
    border-bottom: #a89996 1px solid;
    background-image: url('../img/public/btn-box-small.png');
    background-size: 10rem 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsBtn {
    width: 2rem;
    height: 1.3rem;
    text-align: center;
    line-height: 1.6rem;
    font-size: 0.43rem;
    color: #a89996;
}

.newsBtn.newsBtn-active {
    border-bottom: #c58953 2px solid;
    color: #c58953;
}

.newsPage-box {
    position: relative;
    width: 10rem;
    height: 13.4rem;
    background-color: #322321;
    overflow: hidden;
}

.newsPage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0 ease, visibility 0 ease;
}

.newsPage.newsPage-active {
    opacity: 1;
    visibility: visible;
}

.newsPageList {
    width: 10rem;
    height: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: #a89996 1px dashed;
}

.newsPageList>div>a {
    font-size: 0.35rem;
    color: #a89996;
    display: block;
    width: 8.5rem;
    /* 固定宽度 */
    white-space: nowrap;
    /* 禁止换行 */
    overflow: hidden;
    /* 隐藏溢出内容 */
    text-overflow: ellipsis;
    /* 显示省略号 */
}

.newsPageList>div {
    font-size: 0.35rem;
    color: #726764;
    margin-right: 0.2rem;
}

.guideBoxList {
    width: 10rem;
    height: 3rem;
    border-bottom: #a89996 1px dashed;
}

.guideBoxList>a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guideBoxList>a>img {
    width: 3.2rem;
    height: 2.2rem;
}

.guideBoxList>a>div {
    width: 6rem;
    height: 2.2rem;
    font-size: 0.35rem;
    color: #a89996;
    margin-left: 0.2rem;
}