﻿.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.skiewCard {
    will-change: transform, opacity; /* 预通知浏览器优化 */
    transform: translateZ(0); /* 强制开启 GPU 加速 */
    backface-visibility: hidden; /* 避免渲染闪烁 */
    background: #8C5518;
}
/*底部折叠卡*/
:root {
    --gap: 2.5%;
    --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --closed: 12%;
    --open: 50%;
    --accent: #8C5518;
}

.track {
    display: flex;
    gap: var(--gap);
    align-items: flex-start;
    justify-content: center;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
}

    .track::-webkit-scrollbar {
        display: none;
    }

.project-card {
    position: relative;
    flex: 0 0 var(--closed);
    /*    aspect-ratio: 204/667;*/
    height: 47.65rem;
    border-radius: 2.57rem;
    overflow: hidden;
    cursor: pointer;
    transition: flex-basis var(--speed), transform var(--speed);
}

    .project-card[active] {
        flex-basis: var(--open);
        transform: translateY(-6px);
        box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
    }

.project-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(75%);
    transition: filter 0.3s, transform var(--speed);
}

.project-card:hover .project-card__bg {
    filter: brightness(0.9) saturate(100%);
    transform: scale(1.06);
}

.project-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    padding: 0;
    background: linear-gradient(transparent 70%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

    .project-card__content .content-box {
        justify-content: center;
    }

.project-card__title {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    writing-mode: vertical-rl;
}

.project-card__thumb,
.project-card__desc,
.project-card__btn {
    display: none;
}

.project-card[active] .project-card__content {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    padding: 1.2rem 2rem;
}

    .project-card[active] .project-card__content .content-box {
        justify-content: space-between;
    }

.project-card[active] .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 2rem;
}

.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__btn {
    display: block;
}

.project-card__thumb {
    width: 133px;
    height: 269px;
    border-radius: 0.45rem;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.project-card__desc {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 16rem;
}

.project-card__btn {
    cursor: pointer;
}

    .project-card__btn:hover {
    }
/*底部折叠卡*/
.group {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    will-change: transform, opacity;
    transform: translateZ(0);
}

    .group .item {
        width: 14.57rem;
        height: 47.65rem;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        margin: 0 1rem;
        border-radius: 2.57rem;
        display: inline-block;
        cursor: pointer;
        will-change: transform, opacity;
        transform: translateZ(0);
    }

.about-dot {
    width: 2rem;
    aspect-ratio: 1/1;
    background: #8C5518;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

    .about-dot::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #8C5518;
        animation: pulseHalo 1.5s ease-out infinite;
        z-index: -1;
    }

.svg-point {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svg-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    aspect-ratio: 1/1;
    background: #8C5518;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    transition: transform 240ms cubic-bezier(.2,.9,.2,1);
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
    border: 2px solid #8C5518;
}

.dot-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    border-radius: 50%;
}

.svg-dot.is-active {
    transform: translate(-50%, -50%) scale(6);
    /*        background: url('/imgs/index/2.png');
        background-size: 100% 100%;
        border: 2px solid #8C5518;
        z-index:100;*/
}

.svg-label {
/*    position: absolute;*/
    transform: translateY(20%);
    writing-mode: vertical-rl;
    color: #8C5518;
    pointer-events: auto;
    z-index: 1;
    white-space: nowrap;
}

.nb-mover {
    pointer-events: none;
}



@keyframes pulseHalo {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70%, 100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -30;
    }
}

.nb-connection-path {
    stroke: #8C5518;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5,5;
    stroke-linecap: round;
    animation: nb-dashFlow 0.8s linear infinite;
    transition: stroke-width 180ms;
}

.nb-connection-accelerate {
    animation-duration: 0.45s !important;
}

#sectionPin {
    width: 100%;
    position: relative;
    display: flex;
    left: 0;
    box-sizing: border-box;
}

.pin-wrap {
    /*    overflow-x: auto;*/
    /*    overflow: hidden;*/
    width: 100%;
    height: 706px;
    padding: 0 285px;
    box-sizing: border-box;
}

.divider-vertical {
    position: absolute;
    top: 348px;
    width: 100vw;
    height: 0px;
    border: 1px solid #C6A467;
    z-index: 10;
}

.pin-title {
    width: 80%;
    position: absolute;
    left: 110%;
}

.pin-item {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    height: 100%;
}

/* 奇数项样式 - 位于线上方 */
.pin-item-even {
    align-items: start;
    margin-bottom: auto;
}

/* 偶数项样式 - 位于线下方 */
.pin-item-odd {
    align-items: end;
    margin-bottom: auto;
}

.pin-content {
    align-items: center;
}

.text-truncate-multiline2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.scroll-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    margin: 0;
}

.scroll-img {
    height: 100%;
    object-fit: cover;
}

.scroll-left {
    /*    transform: translateX(-100%);*/
    position: relative;
    /*    left: 50%;*/
    left: 10px;
    z-index: 10;
}

.scroll-center {
    flex: 1;
    min-height: 0;
    /*    width: 100%;*/
    /*    clip-path: inset(0 48%);*/
    transform-origin: center;
    position: relative;
}

.scroll-right {
    /*    transform: translateX(100%);*/
    position: relative;
    /*    right:50%;*/
    right: 10px;
    z-index: 10;
}

.swiper-container {
    width: 100%;
    overflow: hidden !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

.scroll-title {
    transition: color 0.5s ease;
    cursor: pointer;
}

    .scroll-title.active {
        color: #83662A !important;
    }
/* 遮罩层样式 */
.mask-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 70%, rgba(0, 0, 0, 0.85) 100%);
    /*    background: #BAA173;
    mix-blend-mode: multiply;*/
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mask-content {
    color: white;
    transition: transform 0.3s ease;
}

.scroll-detail:active {
    transform: scale(0.9) translateY(8px);
}

.scroll-detail:hover {
    transform: scale(1.2);
}

.scroll-img-box:hover .mask-overlay {
    opacity: 1;
}

.worship {
    overflow: hidden;
    background: #F9F4E7;
    z-index: 10;
}

.worship-top {
    background: #F9F4E7;
    z-index: 10;
}

.worship-bottom {
    background: #F9F4E7;
    z-index: 10;
}

.worshipContent {
    top: 0;
    bottom: 0;
    box-sizing: border-box;
    background: #8C5518;
    margin: auto 0;
    z-index: 8;
    box-shadow: inset 0 15px 15px -10px rgba(0, 0, 0, 0.3), inset 0 -15px 15px -10px rgba(0, 0, 0, 0.3);
}

.worshipTxt {
    font-weight: 600;
    line-height: 133.75%;
    text-align: center;
    color: #F9F4E7;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.traffics div {
    margin-top: 10px;
}

.slide-inner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.swiper-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1000px) {
    .pin-wrap {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
        gap: 40px;
        overflow: hidden;
    }

    .divider-vertical {
        display: none;
    }

    .pin-item {
        width: 100%;
        align-items: center !important;
    }

    .pin-title {
        position: relative !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }

    .pin-img {
        width: 100% !important;
    }

    .pin-content {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

        .pin-content img {
            width: 100%;
            height: auto;
            max-width: 100%;
            margin-bottom: 15px;
        }

        .pin-content .saiethefont36 {
            position: static !important;
            width: 100% !important;
            text-align: center;
            margin-top: 15px;
        }

    .dotLine {
        display: none; /* 隐藏装饰性点线 */
    }

    .pin-wrap::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }

    #sectionPin {
        height: auto;
        overflow: hidden;
    }

    .svg-bottom-box {
        margin-bottom: 100px;
    }



    /*    .gushu {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .news-title {
        font-size: 36px !important;
        margin-bottom: 15px;
    }*/
    .scroll-bt {
        margin: 0 !important;
    }

    .about-dot {
        width: 1rem;
    }

    .svg-dot {
        width: 1rem;
    }
    /*    底部折叠卡*/
    :root {
        --closed: 4rem;
        --open: 22rem;
    }

    .track {
        flex-direction: column;
        scroll-snap-type: y mandatory;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .project-card {
        height: 20rem;
    }

    .project-card__title {
        font-size: 1rem;
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        padding-inline: 0.3rem;
    }
}

.adopt-img-button {
    width: 275px;
    height: max-content;
}
.buttons-row {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    gap: 1.25rem; /* 按钮间距，可按需调整 */
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}
.chenling-button {
    width: 235px;
    height: 235px;
    background-image: url('/imgs/index/new-scroll/button.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:  21.3%;
    aspect-ratio: 1/1;
    box-sizing: border-box;
}
.chenling-text {
    background: linear-gradient(180deg, #B34301 0%, #993A01 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 

}
@media (max-width: 1199.98px) {
    .chenling-button {
        width: clamp(180px, 20vw, 210px); /* 稍小但保持接近正方形 */
        height:auto;
        aspect-ratio: 1/1;
        padding: 21.3%;
    }
}

/* ---------- 小屏（手机） ---------- */
@media (max-width: 767.98px) {
    /* 单列占满宽度时的按钮样式 */
    .chenling-button {
        width: 150px;
        height: 150px;
        aspect-ratio: 1/1;
        padding: 21.3%;
        font-size: 1.2rem; /* 可选：调整字体大小以适应较小屏幕 */
    }

    /* 如果你希望按钮垂直堆叠并有更大间距，可调整容器 */
    .buttons-row {
        gap: 0.75rem;
/*        flex-direction: column;*/
        align-items: center;
    }
}
@media (max-width: 767px) {
    .shouzbai {
        margin-left: 0 !important;
    }

    .adopt-img-button {
        width: 100px;
    }

    : root {
        --closed: 100%;
        --open: 100%;
        --gap: 0.8rem;
    }

    .track {
        flex-direction: column;
        scroll-snap-type: y mandatory;
        gap: 0.8rem;
        padding-bottom: 20px;
    }

    .project-card {
        height: auto;
        min-height: 80px;
        flex: 0 0 auto;
        width: 100%;
        scroll-snap-align: start;
    }

        .project-card[active] {
            min-height: 300px;
            transform: none;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

    .project-card__content {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
        align-items: center;
        gap: 1rem;
    }

    .project-card__title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.2rem;
        margin-right: auto;
    }

    .project-card__thumb,
    .project-card__desc,
    .project-card__btn {
        display: none;
    }

    .project-card[active] .project-card__content {
        align-items: flex-end;
        padding: 1.5rem;
    }

        .project-card[active] .project-card__content .content-box {
            justify-content: space-between;
        }

    .project-card[active] .project-card__title {
        font-size: 1.8rem;
    }

    .project-card[active] .project-card__thumb {
        width: 200px;
        height: 267px;
        border-radius: 0.35rem;
        margin-bottom: 1rem;
    }

    .project-card[active] .project-card__desc {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .project-card[active] .project-card__btn {
        align-self: center;
        text-align: center;
        padding: 0.7rem;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

    .hero-slider .swiper-button-prev:after {
        font-family: "bootstrap-icons";
        content: "\F12F";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

    .hero-slider .swiper-button-next:after {
        font-family: "bootstrap-icons";
        content: "\F138";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.my12-7 {
    margin: clamp(40px, 8vw, 120px) auto clamp(20px, 4vw, 70px);
}

.my10-10 {
    margin: clamp(33.3px, 6.7vw, 100px) auto;
}

.my25-0 {
    margin: clamp(83.3px, 16.7vw, 250px) auto 0;
}

.my10-20 {
    margin: clamp(33.3px, 6.7vw, 100px) auto clamp(83.3px, 10.7vw, 200px);
}



.bawhites_ {
    position: relative;
}

#offcanvasWithBothOptions {
    z-index: 999999 !important; /* 需高于Live2D容器 */
}

.live2d-widget-container {
    pointer-events: revert-layer !important;
    cursor: pointer;
}

.saiethefont40 {
    font-size: 40px;
}

.saiethefont48 {
    font-size: 48px;
}

.saiethefont22 {
    font-size: 22px;
}

.saiethefont36 {
    font-size: 36px;
}

.saiethefont34 {
    font-size: 34px;
}

.clockimg {
    width: 25%;
    position: absolute;
    bottom: 0;
    left: 8%;
}

.live2d-widget-container:hover .new-box {
    position: absolute;
    right: 0;
    display: block;
}

/*.live2d-widget-container .new-box { position: absolute; right: 0; display: block; }*/

.new-box {
    position: absolute;
    right: 0;
    display: none;
}

    .new-box::after {
        content: url('/imgs/close.png');
        padding: 0;
        margin: 0 auto;
        display: inline-block;
    }

/*.bawhites_top ::after {
    content: '';
    height: 100%;
    width: 50%;
    background-color: var(--bs-whites) !important;
    position: absolute;
    top: 0;
    left: -50%;
}*/

.shouzbai {
    margin-top: 81px;
    margin-left: -2rem;
}

.transition_ {
    height: 140px; /* 保持图片比例 */
    transition: transform 0.3s ease; /* 平滑放大效果 */
}

    .transition_:hover {
        transform: scale(1.1); /* 放大到110% */
    }

.line-container {
    position: relative;
    top: -20px;
    width: 2px;
    height: 322px;
    background-color: #BE8547;
    left: 3%;
}

.line-container1 {
    position: relative;
    top: -20px;
    width: 2px;
    height: 370px;
    background-color: #BE8547;
    left: 3%;
}

.line-container2 {
    position: relative;
    top: -20px;
    width: 2px;
    height: 461px;
    background-color: #BE8547;
    left: 3%;
}

.line-container3 {
    position: relative;
    top: 0;
    width: 2px;
    height: 300px;
    background-color: #BE8547;
    left: 3%;
}

.line-container4 {
    position: relative;
    top: 0;
    width: 2px;
    height: 300px;
    background-color: #BE8547;
    left: 3%;
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #BE8547;
}

.circles {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #BE8547;
    border-radius: 50%;
}

.clock {
    width: 400px;
    height: 536px;
    /*    top: 12px;*/
}

.circles_ {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #BE8547;
    border-radius: 50%;
}

.overlay_ {
    position: relative;
    width: 100%;
    height: 690px;
    top: -40px;
    z-index: 9;
}

.circle {
    position: absolute;
    width: 488px;
    height: 488px;
    top: 86px;
}

.yuans {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #B07615;
    z-index: 9;
    border-radius: 50%;
    top: 244px;
    left: 260px;
}

.border_ {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('/imgs/index/pi.png') no-repeat center center;
    background-size: cover;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 2s ease;
    left: -50%;
    top: 5%;
}

.part {
    position: absolute;
    width: 70%;
    height: 70%;
    background-size: cover;
    top: 20%;
    left: -35%;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 0.3;
    z-index: 9;
}

.image-display-xuan {
    height: 690px;
    background-color: rgba(140, 85, 24, 0.9);
}

.image-display {
    width: 100%;
    height: 690px;
    background-size: cover;
    background-position: center;
    position: absolute;
    transition: opacity 1s ease-in-out;
    opacity: 0.3; /*    visibility: hidden;*/
}

    .image-display.visible {
        opacity: 1; /*        visibility: visible;*/
    }

.text-display {
    position: absolute;
    top: 220px;
    left: 300px;
    font-size: 40px;
    color: #fff;
    opacity: 0;
    z-index: 9;
    white-space: nowrap;
}

.char {
    font-size: 24px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 1s ease-out forwards;
    cursor: pointer;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#model-container {
    width: 500px !important;
    height: 500px !important; /*    position: absolute;*/ /*    top: 0;
    right: -10px;*/
    z-index: 999;
}

    #model-container canvas { /*        position: absolute;*/ /*        top: 0;
        right: 0;*/
        width: 500px !important;
        height: 500px !important;
        background-color: transparent; /*        display: none !important;*/
    }

.search_index {
    position: absolute;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    bottom: 100px;
}

.newlist {
    /*    background-image: url('/imgs/index/new-background-2.png');*/
    /*    background-size: cover;*/
    width: 100%; /*    height: 100vh;*/
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    background-repeat: no-repeat;
    /*    padding: 0 6rem;*/
    align-items: center;
}

.introductiont {
    padding-left: 6rem;
}

.list {
    width: 420px;
    border-radius: 12px;
    position: relative;
    margin: 10px 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 8px 20px -6px rgba(0,0,0,.15);
    color: #83662A;
    height: 533px;
    display:flex;
    flex-direction:column;
}

.color_g {
    color: #A44A3F;
}

.back_1 {
    bottom: -8%;
}

.newlist1_ {
    height: 948px;
    top: -20px;
    position: relative;
}



.newlist2 {
    background-image: url('/imgs/index/new-background-6-2.jpg');
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    position: relative;
    height: 908px;
    top: -40px;
    background-size: 100% 908px;
}


.newlist3_ {
    background-image: url('/imgs/index/new-background3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    overflow: hidden;
}

.newlist3 {
    /*    background-color: #8c5518;*/
    background-color: #F9F4E7;
    width: 100%;
    position: relative;
    /*    top: -42px;*/
}

.new_top {
    margin-top: 20px;
}

.tabtext_ {
    align-items: center;
}

.text-container {
    z-index: 1;
    padding-left: 300px;
}

.text-item {
    width: 40%;
    margin-bottom: 20px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    display: flex;
}

.gradient-text {
    background-image: none;
    color: white;
    transition: background-image 0.5s ease;
    writing-mode: tb-rl;
}

.text-item.active .gradient-text {
    background: linear-gradient(to bottom, #ECE1A3, #FFA800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    color: transparent;
    writing-mode: tb-rl;
}

.image-container {
    overflow: hidden;
}

.textlist {
    margin-top: 157px;
}

.carousel-image {
    width: 100%;
    overflow: hidden;
    position: absolute;
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
    transform: translateX(100%);
}

    .carousel-image.active {
        opacity: 1;
        transform: translateX(0);
    }

.new_ViewMore {
    background-image: url('/imgs/index/new-gray.png');
    background-size: cover;
    box-sizing: border-box;
    width: 88px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new_jin {
    background-image: url('/imgs/index/new-jin.png');
    background-size: 88px 26px;
    box-sizing: border-box;
    width: 88px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EDD98E;
    margin: 1px;
}

.body_list_ {
    background-image: var(--bg-image-url1);
    background-size: cover;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.five_ {
    margin-top: 100px;
}

.baishu {
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: space-around;
}

    .baishu .baishu-icon {
        width: 53px;
        height: 46px;
        z-index: 9;
    }

.vertical-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.vertical-text {
    writing-mode: vertical-rl;
    color: #8C5518;
    font-family: 'Arial', sans-serif;
    line-height: 1.2;
    height: 300px;
    overflow: hidden;
    margin: 28px 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    transform-origin: right;
}

.body_list_1 {
    background-image: var(--bg-image-url2);
    background-size: cover;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.body_list_2 {
    overflow: hidden;
    /*    background-color: #000;*/
    background-color: #F9F4E7;
    background-size: cover;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    z-index: 0;
    /*    top: -40px;*/
}

.zuo {
    margin-top: 85px;
    display: none;
    align-items: center;
    justify-content: end;
}

    .zuo div {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background-color: rgba(000, 000, 000, 0.2);
        border-radius: 50%;
    }
/*    文创v1*/
.my-carousel {
    position: relative;
}

.my-carousel__swiper {
    padding-bottom: 200px;
}

.my-carousel__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.my-carousel__control {
    display: inline-flex;
    border-radius: 5em;
    font-size: 20px;
    font-weight: 500;
    padding: 1em 2em;
}

    .my-carousel__control:hover {
        cursor: pointer;
    }

.swiper-card {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 50px 1px rgba(0, 0, 0, 0.3);
    aspect-ratio: 398/524;
    border-radius: 10px;
    /*    width: 396px !important;*/
}

    .swiper-card > div {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        font-weight: bold;
        aspect-ratio: 2/3;
        width: 368px;
        color: #fff;
        border-radius: 50em;
    }

/*文创v1*/
/*文创*/
.creative-carousel {
    position: relative;
    z-index: 1000;
    height: 100vh;
    overflow: hidden;
    cursor: grab;
    cursor: -webkit-grab;
    pointer-events: none;
}

.creative-carousel-item {
    --items: 10;
    --width: clamp(150px, 30vw, 300px);
    --height: clamp(200px, 40vw, 400px);
    --x: calc(var(--active) * 800%);
    --y: calc(var(--active) * 200%);
    --rot: calc(var(--active) * 120deg);
    --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
    --scale: 1;
    overflow: hidden;
    position: absolute;
    z-index: var(--zIndex);
    width: var(--width);
    height: var(--height);
    margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
    border-radius: 10px;
    top: 50%;
    left: 50%;
    user-select: none;
    transform-origin: 0% 100%;
    box-shadow: 0 1px 50px 1px rgba(0, 0, 0, 0.3);
    pointer-events: all;
    transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(var(--scale));
    transition: transform 1.8s cubic-bezier(0, 0.02, 0, 1);
}

    .creative-carousel-item .creative-carousel-box {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
        opacity: var(--opacity);
    }

        .creative-carousel-item .creative-carousel-box::before {
            content: "";
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
        }

    .creative-carousel-item .title {
        position: absolute;
        z-index: 1;
        color: #fff;
        bottom: 20px;
        left: 20px;
        transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
        font-size: clamp(20px, 3vw, 30px);
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    }

    .creative-carousel-item .num {
        position: absolute;
        z-index: 1;
        color: #fff;
        top: 10px;
        left: 20px;
        transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
        font-size: clamp(20px, 10vw, 80px);
    }

    .creative-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }


/*文创*/

.list_right { /*    background-image: url('/imgs/public/emperor.png');*/
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 100%;
}

.img_background_1 {
    width: 160px;
    height: 610px;
}

.body_list_children {
    height: 400px;
}

    .body_list_children img {
        width: 100%; /* 确保图片宽度适应容器 */
        height: auto; /* 保持图片比例 */
        transition: transform 0.3s ease; /* 平滑放大效果 */
    }

    .body_list_children:hover img {
        transform: scale(1.1); /* 放大到110% */
    }

.body_list_children_ {
    height: 600px;
}

    .body_list_children_ img {
        width: 100%; /* 确保图片宽度适应容器 */
        height: auto; /* 保持图片比例 */
        transition: transform 0.3s ease; /* 平滑放大效果 */
    }

    .body_list_children_:hover img {
        transform: scale(1.1); /* 放大到110% */
    }

.image1 {
    animation: scroll1 10s linear infinite;
}

.image2 {
    animation: scroll2 8s linear infinite;
}

.image3 {
    animation: scroll3 12s linear infinite;
}

.image4 {
    animation: scroll4 9s linear infinite;
}

@keyframes scroll1 {
    0%, 100% {
        transform: translateY(-7%);
    }

    50% {
        transform: translateY(7%);
    }
}

@keyframes scroll2 {
    0%, 100% {
        transform: translateY(7%);
    }

    50% {
        transform: translateY(-7%);
    }
}

@keyframes scroll3 {
    0%, 100% {
        transform: translateY(-7%);
    }

    50% {
        transform: translateY(7%);
    }
}

@keyframes scroll4 {
    0%, 100% {
        transform: translateY(7%);
    }

    50% {
        transform: translateY(-7%);
    }
}



.four_ {
    width: 50%;
    right: 10px;
    position: absolute;
    margin-top: 10%;
}

.publd_ {
    position: absolute;
    top: 5%;
    left: 5%;
    writing-mode: tb-rl;
    display: flex;
    align-items: center;
    bottom: 12%;
}

    .publd_ img {
        width: 30px;
        height: 20px;
        margin-bottom: 8px;
    }

.xuxian {
    border: 1px dashed #fff;
    height: 120px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.carousel-control-next {
    z-index: 0;
}

.carousel-control-prev {
    z-index: 0;
}

.ccc {
    position: absolute;
    top: 0;
    width: 100%;
    padding-bottom: 60%;
}

.content {
    background-image: url('/imgs/public/banner.png');
    background-size: cover;
    width: 100%; /*    padding-bottom: 60%;*/
    position: relative;
    box-sizing: border-box;
}

.img_background {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 45rem;
}

.content-body {
    position: fixed;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 999;
    bottom: 135px;
}

.content_ {
    width: 42px;
    height: 42px;
    background-color: var(--bs-color-l);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bs-whites);
    border-radius: 50%
}

.toolbar-item {
    border-radius: 50%;
}

    .toolbar-item:hover .content_ {
        background-color: var(--bs-whites);
        color: var(--bs-color-g);
    }

    .toolbar-item:hover .text_ {
        color: var(--bs-color-l);
    }

    .toolbar-item:hover .content_img_ {
        width: 24px;
        height: 24px;
        display: block;
    }

    .toolbar-item:hover .content_img {
        display: none;
    }

.rgi { /*display: none;*/
    position: absolute; /*    right: 75px;*/
}

.a_1 {
    background-color: #FFFEF5;
    display: block;
    line-height: 40px;
    text-align: center;
}

.a_2 {
    background-color: #BBCDC5;
}

.a_3 {
    background-color: #212529;
    display: block;
    line-height: 40px;
    text-align: center;
}


.a_4 {
    background-color: #106898;
}

.rgi a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 5px 5px;
}

.top2_ { /*padding-left: 140px;*/
}

.top_2 {
}

.toolbar-relative {
    display: none;
    position: relative;
}

.toolbar-absolute {
    padding-right: 10px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.top_2:hover .toolbar-relative {
    display: block;
}

.top_1 {
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .top_1 .rgi {
        width: 165px;
        display: none;
    }

    .top_1:hover .rgi {
        display: block;
    }

.toolbar-item:hover .content_img {
    display: none;
}

.toolbar-item:hover .content_img_ {
    width: 24px;
    height: 24px;
    display: block;
}

.content_img {
    width: 24px;
    height: 24px;
}

.modal-dialog_ {
    margin-right: auto !important;
}

.text_ {
    font-size: 14px;
    color: var(--bs-whites);
}

.content_list {
    width: 146px;
    height: 124px;
    background-color: var(--bs-color-l);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .content_list img {
        width: 76px;
        height: 64px;
    }

.listtext_ {
    font-size: 20px;
    color: var(--bs-whites);
}

.list { /*    background-color: var(--bs-scenic-area);*/ /*    padding: 30px;*/
}

.footers {
    background-image: url('/imgs/public/footers.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer_ {
    display: flex;
    align-items: center;
}



.footer_footra {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .footer_footra div {
        margin: 0 5px;
    }

.footer_footr {
    background-image: url('/imgs/video/5.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 23%;
    position: relative;
    box-sizing: border-box;
}


.foot_img {
    width: 185px;
    height: 185px;
    margin-right: 10px;
    margin-top: 5px;
}

.imgs {
    width: 244px;
    height: 146px;
    margin-top: 15px;
    margin-right: 10px;
}

.imgs_ {
    width: 100%;
    height: 240px;
}

.imgs_s {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img_background_2 {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.list_ {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bs-whites);
    overflow: hidden;
}

    .list_ img {
        width: 100%;
        transition: transform 0.4s ease;
    }

    .list_:hover img {
        transform: scale(1.1);
    }

.list_s {
    display: flex;
    flex-direction: column;
}

.img_s {
    width: 100%;
    height: 100%;
}

.content_img_ {
    display: none;
}

.list_ div {
    font-size: 26px;
}

/*.foot_nav {
    background-color: #4A593D;*/
/*    background: url('/imgs/index/dibu.png') no-repeat;*/
/*width: 100%;
    color: var(--bs-whites);*/ /*    overflow: hidden;*/
/*}*/

/*
.foot_body {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}*/

.foot_s {
    font-size: 14px;
    margin: 0 22.5px;
}

.span_ {
    /*    width: 24px;
    height: 28px;
    background-color: var(--bs-color-s);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--bs-color-a);*/
}

.fot_span span {
    margin: 0 2px;
    /*    font-size: 26px;*/
}

.rows_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /*    align-items: center;*/
}

.rows_list div {
    margin-left: 28px;
}

/*.carousel-inner {
    z-index: 9;
}
*/
.carousel-pagination {
    position: absolute;
    z-index: 15;
    bottom: 10% !important;
    display: flex;
    left: 0 !important;
    right: 0 !important;
    justify-content: center;
}

    .carousel-pagination .indicator-button {
        width: 62px !important;
        height: 26px !important;
        background: url('/imgs/index/yunbu.png') no-repeat;
        background-size: 100% 100%;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        background-color: transparent !important;
    }

        .carousel-pagination .indicator-button.active {
            background: url('/imgs/index/yunzhong.png')no-repeat;
            background-size: 100% 100%;
            background-color: transparent !important;
        }

.images- {
    height: 100vh;
}

.rgiimg {
    width: 100px;
    height: 100px;
}
/* 针对较小屏幕的样式 */
@media (max-width: 1700px) {
    .textlist {
        margin-top: 127px;
    }

    .newlist2 {
        height: 840px;
        background-size: 100% 840px;
    }

    .saiethefont40_ {
        font-size: 34px;
    }

    .line-container1 {
        position: relative;
        top: -20px;
        width: 2px;
        height: 360px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container2 {
        position: relative;
        top: -20px;
        width: 2px;
        height: 417px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container3 {
        position: relative;
        top: 0;
        width: 2px;
        height: 280px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container4 {
        position: relative;
        top: 0;
        width: 2px;
        height: 280px;
        background-color: #BE8547;
        left: 3%;
    }

    .text-container {
        padding-left: 270px;
    }

    .image-container {
        margin-top: 3%;
    }
}

@media (max-width: 1500px) {
    .newlist1 {
        height: 700px;
    }

    .image-container {
        margin-top: 5%;
    }

    .newlist1_ {
        height: 700px;
    }

    .img_background_1 {
        width: 140px;
        height: 410px;
    }

    .four_ {
        width: 50%;
        right: 10px;
        position: absolute;
        margin-top: 9%;
    }

    .newlist2 {
        height: 800px;
        background-size: 100% 800px;
    }
    /*    .image-box {
        w
    }*/

    .image-display-xuan {
        height: 460px;
    }

    .text-container {
        padding-left: 160px;
    }

    .five_ {
        margin-top: 60px;
    }

    .image-display {
        height: 460px;
    }

    .image-container {
        height: 749px;
    }

    .overlay_ {
        height: 460px;
    }

    .yuans {
        position: absolute;
        top: 144px;
        left: 160px;
    }

    .text-display {
        position: absolute;
        top: 120px;
        left: 200px;
    }

    .carousel-image { /*        width: 712px;
        height: 749px;*/
    }

    .newlist2 {
        background-image: url('/imgs/index/new-background-6-2.jpg');
        background-size: cover;
        width: 100%;
        background-repeat: no-repeat;
        position: relative;
        height: 768px;
        background-size: 100% 768px;
    }

    .circle {
        width: 288px;
        height: 288px;
    }

    .foot_img {
        width: 145px;
        height: 145px;
    }

    .imgs {
        margin-top: 15px;
        width: 304px;
        height: 146px;
    }

    .images- {
        height: 800px;
    }
}

@media (max-width: 1399.98px) {
    .content-body {
        position: fixed;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        z-index: 999;
        bottom: 115px;
    }

    .textlist {
        margin-top: 50px;
    }

    .newlist2 {
        height: 750px;
        background-size: 100% 750px;
    }

    .line-container {
        height: 230px;
    }

    .line-container1 {
        position: relative;
        top: -20px;
        width: 2px;
        height: 270px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container2 {
        position: relative;
        top: -20px;
        width: 2px;
        height: 343px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container3 {
        position: relative;
        top: 0;
        width: 2px;
        height: 280px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container4 {
        position: relative;
        top: 0;
        width: 2px;
        height: 280px;
        background-color: #BE8547;
        left: 3%;
    }

    #PublicInformation_ {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: -4px;
    }

    .content_ {
        width: 2.75rem;
        height: 2.75rem;
        background-color: var(--bs-color-l);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .top_1 { /*        width: 60px;*/
        display: flex;
        align-items: center;
        justify-content: center; /*        background-color: red;*/
    }

        .top_1 .rgi {
            width: 45px;
            display: none;
        }

        .top_1:hover .rgi {
            display: block;
        }

    .rgi a {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin: 5px 5px;
    }

    .a_1 {
        background-color: #FFFEF5;
        display: block;
        line-height: 25px;
        text-align: center;
    }

    .a_3 {
        background-color: #212529;
        display: block;
        line-height: 25px;
        text-align: center;
    }

    .toolbar-item:hover .content_ {
        background-color: var(--bs-whites);
        color: var(--bs-color-g);
    }

    .toolbar-item:hover .text_ {
        color: var(--bs-color-l);
    }

    .toolbar-item:hover .content_img_ {
        width: 24px;
        height: 24px;
        display: block;
    }

    .toolbar-item:hover .content_img {
        display: none;
    }

    .top_1:hover .rgi {
        display: block;
        position: absolute;
        right: 40px;
    }

    .rgiimg {
        width: 50px;
        height: 50px;
    }

    .rgi a {
        width: 25px;
        height: 25px;
        border: 1px solid var(--bs-whites);
        border-radius: 50%;
        margin: 3px 5px;
    }


    .content_img {
        width: 24px; /* 设置图片大小，根据需要调整 */
        height: 24px;
    }
}

@media (max-width: 1200px) {
    .saiethefont40 {
        font-size: 30px;
    }

    .saiethefont34 {
        font-size: 24px;
    }

    .newlist2 {
        height: 620px;
        background-size: 100% 620px;
    }

    .five_ {
        margin-top: 10px;
    }

    .line-container2 {
        height: 312px;
    }

    .line-container3 {
        height: 230px;
    }

    .line-container4 {
        height: 230px;
    }

    .shouzbai {
        margin-top: 31px;
    }

    .xuxian {
        border: 1px dashed #fff;
        height: 15px; /*        margin-top: 10px;
        margin-bottom: 50px;*/
    }

    .newlist1 {
        height: 580px;
    }

    .newlist1_ {
        height: 580px;
    }

    .img_background_1 {
        width: 100px;
        height: 310px;
    }

    .four_ {
        width: 50%;
        right: 15px;
        position: absolute;
        margin-top: 7%;
    }

    .image-display-xuan {
        height: 500px;
    }

    .image-display { /*        margin-top: 100px;*/
        height: 500px;
    }

    .overlay_ {
        height: 500px;
    }

    .border_ {
        position: absolute; /*        top: 100px;*/
    }

    .part {
        position: absolute; /*        top: 25%;*/
    }

    .yuans {
        position: absolute;
        top: 142px;
        left: 160px;
    }

    .text-display {
        position: absolute;
        top: 118px;
        left: 200px;
    }

    .carousel-image { /*        width: 638px;
        height: 669px;*/
    }

    .body_list_children_ {
        height: 400px;
    }

    .zuo {
        margin-top: 15px;
    }

    .images- {
        height: 600px;
    }

    .foot_img {
        width: 120px;
        height: 120px;
    }

    .text-container {
        padding-left: 50px;
    }

    .imgs {
        margin-top: 15px;
        width: 200px;
        height: 92px;
    }
}



@media (max-width: 930px) {
    .foot_img {
        width: 65px;
        height: 65px;
    }

    .foot_img {
        width: 85px;
        height: 85px;
    }

    .imgs {
        margin-top: 15px;
        width: 178px;
        height: 75px;
    }

    .image-container {
        margin-top: 6%;
    }

    .textlist {
        margin-top: 10px;
    }

    .newlist2 {
        height: 540px;
        background-size: 100% 540px;
    }

    .imgs {
        margin-top: 10px;
        width: 148px;
        height: 55px;
        margin-right: 0px;
    }

    .publd_ {
        bottom: 50px;
    }

    .saiethefont40_ {
        font-size: 24px;
    }

    .line-container {
        height: 202px;
    }

    .line-container1 {
        height: 222px;
    }

    .line-container2 {
        height: 252px;
    }

    .line-container3 {
        height: 200px;
    }

    .line-container4 {
        height: 200px;
    }
}

@media (max-width: 800px) {
    .xuxian {
        border: 1px dashed #fff;
        height: 15px; /*        margin-top: 10px;
        margin-bottom: 50px;*/
    }


    .carousel-pagination {
        z-index: 15;
        bottom: 15%;
    }

    .publd_ {
        font-size: 20px !important;
    }

        .publd_ img {
            width: 20px;
            height: 10px;
        }

    .newlist1 {
        height: 430px;
    }

    .newlist1_ {
        height: 430px;
    }

    .img_background_1 {
        width: 60px;
        height: 230px;
    }

    .four_ {
        width: 50%;
        right: 10px;
        position: absolute;
        margin-top: 7%;
    }

    .images- {
        height: 300px;
    }



    .search_index {
        display: none;
    }

    .content-body {
        position: fixed;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        z-index: 999;
        bottom: 115px;
    }

    .content_ {
        width: 2.75rem;
        height: 2.75rem;
        background-color: var(--bs-color-l);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .toolbar-item:hover .content_ {
        background-color: var(--bs-whites);
        color: var(--bs-color-g);
    }

    .toolbar-item:hover .text_ {
        color: var(--bs-color-l);
    }

    .toolbar-item:hover .content_img_ {
        width: 24px;
        height: 24px;
        display: block;
    }

    .toolbar-item:hover .content_img {
        display: none;
    }

    .top_1:hover .rgi {
        display: block;
        position: absolute;
        right: 35px;
    }

    .rgiimg {
        width: 50px;
        height: 50px;
    }

    .rgi a {
        width: 25px;
        height: 25px;
        border: 1px solid var(--bs-whites);
        border-radius: 50%;
        margin: 3px 5px;
    }


    .content_img {
        width: 24px; /* 设置图片大小，根据需要调整 */
        height: 24px;
    }

    .text_ {
        font-size: 8px;
        color: var(--bs-whites);
    }
}

@media (max-width: 883px) {
    .clock {
        width: 334px;
        height: 480px;
        top: 0;
    }

    .line-container {
        position: relative;
        top: -20px;
        width: 2px;
        height: 122px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container1 {
        position: relative;
        top: -20px;
        width: 2px;
        height: 170px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container2 {
        position: relative;
        top: -20px;
        width: 2px;
        height: 192px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container3 {
        position: relative;
        top: 0;
        width: 2px;
        height: 164px;
        background-color: #BE8547;
        left: 3%;
    }

    .line-container4 {
        position: relative;
        top: 0;
        width: 2px;
        height: 164px;
        background-color: #BE8547;
        left: 3%;
    }

    .text-container {
        padding-left: 70px;
    }

    .new_top { /*        margin-top: 115px;*/
    }

    .image-display-xuan {
        height: 300px;
    }

    .image-display {
        height: 300px;
    }

    .overlay_ {
        height: 300px;
    }

    .border_ {
        position: absolute;
    }

    .part {
        position: absolute;
    }

    .yuans {
        position: absolute;
        top: 48px;
        left: 60px;
        width: 20px;
        height: 20px;
    }

    .text-display {
        position: absolute;
        top: 39px;
        left: 90px;
        font-size: 20px;
    }

    .five_ {
        margin-top: 40px;
    }

    .image-container {
        height: 700px;
    }

    .carousel-image {
        width: 100%; /*        height: 400px;*/
        z-index: 9;
    }

    .newlist2 {
        background-image: url('/imgs/index/new-background-6-2.jpg');
        background-size: cover;
        width: 100%;
        background-repeat: no-repeat;
        position: relative;
        height: 468px;
        background-size: 100% 468px;
    }

    .circle {
        width: 108px;
        height: 108px;
    }

    .body_list_children_ {
        height: 400px;
    }

    .zuo {
        margin-top: 15px;
    }



    .body_list_children {
        height: 200px;
    }

    .text-truncate-multiline5 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 3; /* 控制显示为三行 */
    }
}

@media (max-width: 770px) {
    .newlist2 {
        height: 100%;
        background-size: 100% 100%;
    }

    .clockimg {
        width: 25%;
        position: absolute;
        bottom: 7%;
        left: 8%;
    }
}


@media (max-width: 570px) {

    .text-truncate-multiline5 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 11; /* 控制显示为三行 */
    }

    .image-container {
        height: 510px;
    }

    .font-size {
        font-size: 20px;
    }

    .clockimg {
        width: 25%;
        position: absolute;
        bottom: 20%;
        left: 8%;
    }
}

@media (max-width: 500px) {
    .clock {
        width: 334px;
        height: 480px;
    }

    .xuxian {
        display: none;
    }

    .publd_ {
        font-size: 14px !important;
    }

        .publd_ img {
            width: 14px;
            margin-bottom: 5px;
        }

        .publd_ .spans_ {
            display: none;
        }

    .newlist1 {
        height: 230px;
    }

    .newlist1_ {
        height: 230px;
    }

    .img_background_1 {
        width: 50px;
        height: 130px;
    }

    .four_ {
        width: 50%;
        right: 15px;
        position: absolute;
        margin-top: 5%;
    }

    .foot_img {
        width: 50px;
        height: 50px;
    }

    .imgs {
        margin-top: 15px;
        width: 100px;
        height: 42px;
    }

    .font-size {
        font-size: 20px;
    }
}
