:root {
    --color-brand-primary: #a86d3f;
    --color-brand-dark: #5c3b1e;
    --color-brand-light: #f6efe7;
    --color-neutral-100: #ffffff;
    --color-neutral-200: #f2eee8;
    --color-neutral-300: #e0d8cf;
    --color-neutral-500: #8a7461;
    --color-text-main: #4a321d;
    --shadow-soft: 0 25px 60px rgba(87, 56, 35, 0.12);
    --shadow-card: 0 16px 40px rgba(122, 79, 48, 0.15);
    --radius-large: 40px;
    --radius-medium: 28px;
    --radius-small: 16px;
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* , *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--color-text-main);
    /*background: linear-gradient(180deg, #faf8f5, #f0ebe5);*/
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}





.page {
    min-height: 100vh;
}

.container {
    width: min(var(--container-max), calc(100% - 64px));
    margin-inline: auto;
}

.hero {
    margin-top: 10px;
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 1090px;
    padding-block: 32px 120px;
    background-image: url("/assets/image/banner/banner1.jpg");
    background-size: cover;
    background-position: center;
}
/* 背景图层 */
.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

/* 当前显示的背景 */
.bg-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(90deg, rgba(28, 16, 10, 0.75) 0%, rgba(38, 25, 17, 0.15) 80%);*/
}


.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 66px;
    height: 45px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fdfaf5, rgba(255, 255, 255, 0.2));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
}

.brand-mark span {
    border-radius: 12px;
}

.brand-mark span:nth-child(1) {
    background: #5b895c;
}

.brand-mark span:nth-child(2) {
    background: #c19b6b;
}

.brand-mark span:nth-child(3) {
    background: #f4c27e;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.primary-nav {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
}

.nav-link {
    min-width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 999px;
    color: #000000;
    transition: background 0.3s, color 0.3s;
    cursor:pointer;
    position: relative;
    display: inline-block;
    text-align: center;
}
.nav-hide{
    position: absolute;
    top: 90px;
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    width: 121px;
    overflow: hidden;
}
.nav-child{
    text-align: center;
    width: 121px;
    height: 29px;
    line-height: 29px;
    font-size: 15px;
}
.selected{
    background: linear-gradient(90deg, #8F6039, #B98F5F);
    color: #ffffff;
}
.index-nav-text:hover{
    color: #8F6039;
}
.brand-nav-text:hover{
    color: #8F6039;
}
.news-nav-text:hover{
    color: #8F6039;
}
.server-nav-text:hover{
    color: #8F6039;
}
.nav-selected{
    color: #8F6039;
    height: 3px;
    background: linear-gradient(90deg, #8F6039, #B98F5F);
}
.nav-link:hover,
.nav-link:focus-visible {
    /*background: rgba(255, 255, 255, 0.18);*/
    /*color: #8F6039;*/
}

.nav-link.is-active {
    background: rgba(255, 255, 255, 0.25);
    color: black;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.sousuo{
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}
.btn {
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 600;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn:focus-visible {
    outline: 2px solid #c79463;
    outline-offset: 3px;
}

.btn.solid {
    background: linear-gradient(120deg, #b77a46, #d9aa70);
    color: white;
    box-shadow: 0 12px 30px rgba(183, 122, 70, 0.35);
}

.btn.solid:hover {
    transform: translateY(-2px);
}
.gray{
    color: #999999;
}
.search{
    border:1px solid #BFBFBF;
    border-radius: 10px;
    background: #FFFFFF;
    padding-left: 5px;
    height: 28px;
    line-height: 28px;
}
.btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.btn.outline {
    border: 1px solid var(--color-brand-primary);
    color: var(--color-brand-primary);
    background: transparent;
}

.btn.outline.light {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn.text {
    color: var(--color-brand-primary);
    padding-inline: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 640px;
}

.eyebrow {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    line-height: 1.25;
}

.lead {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}
.value-container{
    position: relative;
    background-image: url("/assets/image/1762096525720.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat ;
}
@media screen and (min-width: 769px) and (max-width: 1740px) {
    .section-header{
        width: 70%;
    }
    .footer-links{
        font-size: 12px;
    }
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    padding: 0;
}
.section {
    padding-block: 90px 20px;
}
.white{
    color: #ffffff !important;
}
.section-header {
    /*width: 100%;*/
    margin: -80px auto 36px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-headers{
    margin: 0 auto 36px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-header-news{
    margin: -80px auto 36px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-header .eyebrow {
    color: var(--color-brand-dark);
}
.section-header-news .eyebrow {
    color: var(--color-brand-dark);
}
.section-header.light .eyebrow,
.section-header.light .section-note {
    color: rgba(255, 255, 255, 0.85);
}

.section-note {
    color: var(--color-neutral-500);
    margin-top: 10px;
}

.divider {
    width: 72px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-brand-primary);
    margin: 8px auto 0;
}

.divider.light {
    background: rgba(255, 255, 255, 0.5);
}

.core-value {
    margin-top: -80px;
    padding-bottom: 40px;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    /*gap: 18px;*/
}

.core-tile {
    position: relative;
    /*border-radius: var(--radius-medium);*/
    /*padding: 24px;*/
    min-height: 260px;
    background: linear-gradient(140deg, #fffdfa, #f7f1ea);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible; /* 关键：允许子元素超出 */
}

.core-tile .tile-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: opacity 0.4s, transform 0.4s;
}

.core-tile h3 {
    font-size: 1.2rem;
    color: var(--color-brand-dark);
}

.core-tile p {
    color: #6e5848;
    line-height: 1.4;
}

.core-tile .tile-visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: inherit;
    opacity: 0;
    /*transform: scale(1.1);*/
    transition: opacity 0.4s, transform 0.5s;
    filter: saturate(1.05);
    width: 100%;
    height: 100%;
    z-index: 1; /* 确保在伪元素之上 */
    box-shadow: 0 15px 50px rgba(145, 98, 59, 0.3);
}


/* 鼠标悬停时显示阴影 */
.core-tile:hover .tile-visual::before {
    opacity: 1;
}

.core-tile.is-interactive::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /*border: 1px solid rgba(255, 255, 255, 0.35);*/
    opacity: 0;
    transition: opacity 0.4s;
}

.core-tile.is-interactive:hover .tile-visual,
.core-tile.is-interactive:focus-within .tile-visual {
    opacity: 1;
    transform: scale(1);
}

.core-tile.is-interactive:hover .tile-text,
.core-tile.is-interactive:focus-within .tile-text {
    opacity: 0;
    transform: translateY(8px);
}

.core-tile.is-interactive:hover::after,
.core-tile.is-interactive:focus-within::after {
    opacity: 1;
}

.core-anchor {
    background: linear-gradient(160deg, #77472a, #c99461);
    color: white;
    border-top-left-radius: 5px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.core-anchor-end{
    background: linear-gradient(160deg, #77472a, #c99461);
    color: white;
    border-bottom-right-radius: 5px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.core-anchor-end p,
.core-anchor-end h3 {
    color: white;
}
.core-anchor p,
.core-anchor h3 {
    color: white;
}

.featured-services {
    background-image: url("/assets/image/index/1762012068217.png");
    padding-block: 56px;
}
.more{
    width: 153px;
    height: 36px;
    text-align: center;
    background: #8F5D39;
    color: #ffffff;
    border-radius: 18px;
}
.core-tile-right{
    text-align: right;
    margin-top: 42px;
}
.services-track {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

.service-card {
    flex: 1;
    min-height: 420px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: 32px;
    color: white;
    transition: flex 0.5s ease, opacity 0.3s;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--service-image);
    background-size: cover;
    background-position: center;
    filter: saturate(0.85);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
}

.service-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-index {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
}

.service-card h3 {
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.services-track.has-hover .service-card {
    flex: 0.8;
    opacity: 0.55;
}

.services-track.has-hover .service-card:hover,
.services-track.has-hover .service-card:focus-visible {
    flex: 2.4;
    opacity: 1;
}

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

.news {
    padding-block: 90px;
}

.tabs {
    display: inline-flex;
    gap: 12px;
    margin-top: 16px;
}

.tab {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(168, 109, 63, 0.2);
    background: white;
    color: var(--color-brand-dark);
}

.tab.is-active {
    background: var(--color-brand-primary);
    color: white;
}

.news-grid {
    display: none;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: start;
}
.news-grid.active{
    display: grid;
}
.news-highlight {
    position: relative;
    background: white;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border-radius: 5px;
}
.news-content{

    position: absolute;
    top: 0;
    padding:80px 50px 30px;
    color: #ffffff;
    width: 100%;
    height: 450px;
}
.news-highlight-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.news-title{
    margin-top: 20px;
}
.news-time{
    margin-top: 50px;
}
.news-highlight-media {
    position: relative;

}

.news-highlight img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.play-button {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button span {
    width: 0;
    height: 0;
    border-left: 14px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.news-highlight-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.news-item {

    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}
.news-item-right{
    width: 50%;
}
.news-tag {
    font-size: 0.8rem;
    color: var(--color-brand-primary);
    letter-spacing: 0.2em;
    margin-top: 10px;
}
.news-item img{
    width: 50%;
    height: 195px;
    border-radius: 5px;
    object-fit: cover;
}
.news-item time {
    position: absolute;
    bottom: 0;
    color: #9a8a7d;
    font-size: 0.85rem;
}
.footer-container{
    width: 80%;
    margin: 0 auto;
}
.site-footer {
    margin-top: 32px;
    background: #F4F4F4;
    padding-top: 60px;
}
.address{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #333333;
}

.footer-brand p {
    color: #6f5a4a;
    line-height: 1.7;
}

.footer-tags {
    list-style: none;
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-tags li {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(168, 109, 63, 0.3);
    font-size: 0.85rem;
    color: var(--color-brand-dark);
}

.footer-label {
    font-weight: 600;
    color: var(--color-brand-dark);
    margin-bottom: 10px;
}

.footer-contact p,
.footer-links a {
    color: #6f5a4a;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-qrcodes {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}
.modal {
    display: none;
    position: fixed;
    top: 35%;
    right: 100px;
    width: 200px;
    height: 200px;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
.qr-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 10px;
}

.footer-bottom {
    padding-block: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #8c7564;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #8c7564;
    font-size: 0.95rem;
}

.footer-meta {
    width: 80%;
    margin: 0 auto;
    text-align: right;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #333333;
}
.gz-text{
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
}
.e-text{
    font-size: 14px;
    color: #333333;
    line-height: 24px;
}
.floating-nav {
    position: fixed;
    right: 32px;
    top: 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.floating-item {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(89, 55, 33, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-brand-dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-item:hover,
.floating-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(89, 55, 33, 0.25);
}

.floating-icon {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #d6b28a, #a26438);
    position: relative;
}

.floating-icon.wechat::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
    border-bottom: none;
    top: 5px;
    left: 4px;
}

.floating-icon.visit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 2px;
    top: 4px;
    left: 5px;
}

.floating-icon.join::after {
    content: "+";
    color: white;
    font-size: 14px;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon.top::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid white;
    top: 4px;
    left: 3px;
}

.floating-label {
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .services-track {
        gap: 10px;
    }

    .core-grid {
        padding: 32px;
    }
}

@media (max-width: 992px) {
    .site-header {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-track {
        flex-direction: column;
    }

    .service-card {
        min-height: 360px;
        border-radius: 10px;

    }

    .services-track.has-hover .service-card,
    .services-track.has-hover .service-card:hover,
    .services-track.has-hover .service-card:focus-visible {
        flex: 1;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 32px);
    }
    .footer-container{
        width: calc(100% - 12px);
    }
    .hero-media {
        padding-block: 24px 80px;
    }

    .site-header {
        padding: 16px;
    }

    .hero-content {
        gap: 16px;
    }

    .core-grid {
        padding: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-qrcodes {
        padding: 20px;
    }
    .qr-placeholder{
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .core-tile {
        min-height: 160px;
    }

    .news-item {
        /*flex-direction: column;*/
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
.flex{
    display: flex;
    align-items: center;
}
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #F3F2F2;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #3498db;
}
.mobile-nav{
    display: none;
}
/* 汉堡菜单按钮 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    justify-content: space-between;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #b8743a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.nav-menu {
    display: flex;
    list-style: none;
}

@media (max-width: 768px) {
    .hero-media{
        min-height: 400px;

    }
    .news-tag{
        margin-bottom: 10px;
    }
    .section-header{
        flex-wrap: wrap;
        width: 60%;
        margin: 0 auto;
    }
    .tab{
        padding: 5px 10px;
    }
    .tabs{
        margin-bottom: 20px;
    }
    .brand img{
        height: 50px;
    }
    /* 显示汉堡菜单，隐藏桌面导航 */
    .hamburger {
        display: flex;
    }
    .nav-header{
        display: none !important;
    }
    .mobile-nav{
        display: flex;
        padding: 15px;
        background: #ffffff;
        align-items: center;
        justify-content: space-between;
        left: 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 9999;

    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-link {
        height: 50px !important;
        line-height: 50px !important;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* 调整下拉菜单为移动端样式 */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #FFFFFF;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        color: #000000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}
/* 左右箭头样式 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    color: #333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow.prev {
    left: 5%;
}

.carousel-arrow.next {
    right: 5%;
}

/* 底部指示点样式 */
.carousel-dots {
    position: absolute;
    bottom: 125px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
    border-color: #3498db;
}

