

@media (max-width: 600px) {
    .logo-image-phone {
        height: 70px !important;
    }
}
#sp-logo, .logo {
    height: auto !important;
    min-height: unset !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

/* Slideshow 基础样式 */
.Slideshow {
    position: relative;
    width: 100vw;
    min-height: 500px;
    overflow: hidden;
    background: #111;
}

.Slideshow__Carousel {
    width: 100%;
    height: 100%;
}

.Slideshow__Slide {
    position: relative;
    width: 100vw;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: #111;
}

.Slideshow__ImageContainer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.Slideshow__ImageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Slideshow__Content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    color: #fff;
    max-width: 600px;
}

.Slideshow__Content--bottomLeft {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 32px 40px;
}

.SectionHeader__SubHeading {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.SectionHeader__Heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.1;
}

.SectionHeader__ButtonWrapper {
    margin-top: 18px;
}

.ButtonGroup__Item.Button {
    background: #ffffff;
    color: #111;
    border: none;
    border-radius: 4px;
    padding: 12px 32px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.ButtonGroup__Item.Button:hover {
    background: #7ccf1a;
    color: #fff;
}

/* ProgressNav 样式 */
.ProgressNav {
    position: absolute;
    left: 40px;
    bottom: 20px;
    z-index: 10;
    width: auto;
}

.ProgressNav__Items {
    display: flex;
    gap: 24px;
}

.ProgressNav__Item {
    cursor: pointer;
    min-width: 120px;
    padding: 0 8px;
    text-align: left;
}

.ProgressNav__Label {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.ProgressNav__Item.is-active .ProgressNav__Label {
    color: #ffffff;
    opacity: 1;
    font-weight: bold;
}

.ProgressNav__Progress {
    background: #333;
    border-radius: 2px;
    height: 4px;
    width: 100%;
    overflow: hidden;
}

.ProgressNav__Bar {
    background: #ffffff;
    height: 100%;
    width: 0;
    transition: width 0.5s linear;
}

/* 响应式 */
@media (max-width: 900px) {
    .Slideshow__Content--bottomLeft {
        left: 10px;
        bottom: 10px;
        padding: 18px 16px;
    }
    .ProgressNav {
        left: 10px;
        bottom: 10px;
    }
    .Slideshow__Content {
        padding: 20px 10px;
    }
}

@media (max-width: 600px) {
    .Slideshow__Content--bottomLeft {
        max-width: 95vw;
        padding: 10px 6px;
    }
    .SectionHeader__Heading {
        font-size: 1.3rem;
    }
    .ProgressNav__Items {
        gap: 8px;
    }
    .ProgressNav__Item {
        min-width: 70px;
        font-size: 0.8rem;
    }
}

.sppb-section {
    margin: auto !important;
  
}




/* 让轮播section和轮播本身全屏宽高（为进度条留出空间） */

.Slideshow,
.Slideshow--fullscreen,
.Slideshow__Carousel,
.Slideshow__Slide,
.Slideshow__ImageContainer {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100vh - 60px) !important;        /* 关键：为进度条留出60px空间 */
    min-height: calc(100vh - 60px) !important;
    max-height: calc(100vh - 60px) !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    overflow: visible; 
}

/* 让轮播图片铺满整个区域 */
.Slideshow__ImageContainer img {
    width: 100vw !important;
    min-width: 100vw !important;
    height: calc(100vh - 60px) !important;
    min-height: calc(100vh - 60px) !important;
    max-height: calc(100vh - 60px) !important;
    object-fit: cover !important;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: #000;
}

/* 让内容始终在图片之上 */
.Slideshow__Content, .Slideshow__Content--bottomLeft {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 60%;
    bottom: auto;
    transform: translate(-50%, -50%);
    padding: 40px 60px;
    color: #fff;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
}

/* 进度条导航全宽居中 */
.ProgressNav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 90px;
    z-index: 10;
    width: 100vw;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.ProgressNav__Items {
    display: flex;
    gap: 24px;
    pointer-events: auto;
}
.ProgressNav__Item {
    min-width: 120px;
    text-align: center;
    cursor: pointer;
}
.ProgressNav__Label {
    color: #fff;
    opacity: 0.8;
    font-size: 1.5rem;
    margin-bottom: 6px;
    display: block;
}
.ProgressNav__Item.is-active .ProgressNav__Label {
    color: #222222;
    opacity: 1;
    font-weight: bold;
}
.ProgressNav__Progress {
    background: #333;
    border-radius: 2px;
    height: 4px;
    width: 100%;
    overflow: hidden;
}
.ProgressNav__Bar {
    background: #ffffff;
    height: 100%;
    width: 0;
    transition: width 0.5s linear;
}

/* 响应式适配 */
@media (max-width: 900px) {
    .Slideshow__Content,
    .Slideshow__Content--bottomLeft {
        padding: 18px 16px;
        max-width: 95vw;
    }
    .ProgressNav__Items {
        gap: 8px;
    }
    .ProgressNav__Item {
        min-width: 70px;
        font-size: 0.8rem;
    }
}
@media (max-width: 600px) {
    .Slideshow__Content,
    .Slideshow__Content--bottomLeft {
        padding: 10px 6px;
        max-width: 98vw;
    }
    .SectionHeader__Heading {
        font-size: 1.3rem;
    }
}