body * {
    box-sizing: border-box;
    flex-shrink: 0;
}

body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
    margin: 0;
}

input {
    background-color: transparent;
    border: 0;
    outline: none;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

ul, ol, p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

table td {
    border: none;
}

button:active {
    opacity: 0.6;
}

hr {
    background-color: #EAEAEA;
    height: 1px;
    border: none;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-srk-1 {
    flex-shrink: 1;
}

.flex-g-1 {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.page {
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    width: 100%;
    height: fit-content;
}

.container {
    max-width: 1200px;
    min-height: 100%;
    height: 100%;
    margin: 0 auto;
}

.verse-img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.left-content {
    width: 860px;
}

.more-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #F8F8F8;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
    text-align: center;
    cursor: pointer;
    margin-top: 16px;
}

.more-block:before {
    content: '查看全部';
}

.more-block:after {
    display: inline-block;
    content: '';
    background-image: url(/statics/images/bj/gray_more_ar.png);
    background-size: contain;
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

.dashang {
    width: 114px;
    background: var(--primary-color);
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
}

.dashang .shang {
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    color: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
}

.dashang .txt {
    display: inline-block;
    margin-left: 4px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    text-align: left;
    font-style: normal;
}

.line-2,
.line-3 {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.line-3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}


.header {
    display: block;
    width: 100%;
}

.header-banner {
    width: 100%;
    position: relative;
}

.banner-bg {
    width: 100%;
    margin: auto;
    min-height: 80px;
}

.banner-logo {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.banner-logo > div {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.banner-logo img {
    max-width: 400px;
    max-height: 50%;
}

.content-block {
    max-width: 1200px;
    margin: 10px auto;
}

.menu-container {
    width: 860px;
    height: 48px;
    font-size: 0;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    cursor: default;
    padding: 0 5px;
}

.high-light_text {
    color: var(--primary-color) !important;
    position: relative;
}

.high-light_text:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-text {
    margin-right: 40px;
    width: fit-content;
    height: 36px;
    line-height: 36px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
}

.menu-text:hover {
    color: var(--primary-color);
}

.menu-text.mobile-show {
    display: none;
}

.menu-text:last-child {
    margin-right: 0px;
}

.expanded {
    display: none;
    width: 36px;
    height: 36px;
    background: linear-gradient(#FFFFFF 33.3333%, var(--primary-color) 0%, var(--primary-color) 66.6666%, #FFFFFF 33.3333%);
    background-size: 100% 12px;
}

.always {
    display: none;
}

#menus .menu-more {
    position: relative;
}

#menus .menu-more .rotate-icon {
    transform: rotateZ(90deg);
}

#menus .menu-more.hover .rotate-icon {
    transform: rotateZ(-90deg);
}

#menus .menu-more .rotate-icon .icon-gengduo {
    font-size: 20px;
}

#menus .menu-more .menu-more-pop {
    display: none;
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    color: rgba(153, 153, 153, 1);
}

#menus .menu-more .menu-more-pop .icon-xialasanjiao {
    display: block;
    width: 16px;
    height: 16px;
    transform: rotateZ(180deg);
    color: #F1F1F1;
    margin-right: 30px;
    margin-left: auto;
}

#menus .menu-more .menu-more-pop .icon-xialasanjiao:before {
    position: absolute;
    bottom: 14px;
    height: 16px;
}

#menus .menu-more .menu-more-pop .pop-content {
    --pop-item-width: 80px;
    background-color: #F1F1F1;
    height: fit-content;
    min-height: 100px;
    width: calc(var(--pop-item-width) * 4 + 20px + 10px * 3);
    padding: 10px;
    border-radius: 10px;
}

#menus .menu-more .menu-more-pop .pop-content .pop-item {
    cursor: pointer;
    width: var(--pop-item-width);
    height: 36px;
    margin-bottom: 10px;
    text-align: center;
    margin-right: 10px;
}

#menus .menu-more .menu-more-pop .pop-content .pop-item:hover {
    color: var(--primary-color);
}

#menus .menu-more .menu-more-pop .pop-content .pop-item:nth-child(4) {
    margin-right: 0px;
}

#menus .menu-more.hover .menu-more-pop {
    display: block;
}

.footer {
    background-color: rgba(32, 32, 32, 1);
    padding: 20px;
}

.footer .footer-box {
    max-width: 1200px;
    margin: 0 auto;
    color: #666666;
    font-size: 14px;
}

.footer-box a {
    color: #666666;
}

.footer-title {
    color: #999999;
    font-size: 18px;
    margin: 10px 0;
}

#share-layer-pop-container {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#share-layer-pop-container .wx-share-img {
    display: block;
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    .page {
        min-height: 0;
        margin: 10px 0;
    }

    .container {
        flex-wrap: wrap;
    }

    .container .left-content {
        margin-top: 0px;
        width: 100%;
        box-sizing: border-box;
        padding: 0px 8px;
    }

    .content-block {
        box-sizing: border-box;
    }

    .banner-logo img {
        margin-left: 10px;
    }

    .menu-container {
        width: 100%;
        height: 37px;
        flex-wrap: wrap;
        overflow: hidden;
        position: relative;
        transition: height 0.5s;
    }

    .menu-text {
        width: 100%;
    }

    .menu-text.mobile-show {
        display: block;
    }

    .menu-text:after {
        display: none;
    }

    .expanded {
        position: absolute;
        right: 5px;
        top: 0;
        display: block;
    }

    #menus .menu-more {
        display: none;
    }

    .menu-container::-webkit-scrollbar {
        display: none;
    }

    .always {
        display: block;
        font-size: 26px;
    }

    .menu-line {
        border-bottom: 1px var(--primary-color) solid;
        width: 100%;
    }
}

@media screen and (max-width: 730px) {
    img.banner-bg {
        object-fit: cover;
    }
}