/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
    color: #000000;
    background-color: #f0fff4;
    line-height: 1.7;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* 上海水帘洞品茶工作室 - 所有类名以sld开头 */
.sld-container {
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}

.sld-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sld-btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.sld-btn-secondary {
    background: transparent;
    border: 3px solid #fff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.sld-btn-secondary:hover {
    background: #fff;
    color: #2E7D32;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.sld-btn:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.sld-section-title {
    text-align: center;
    margin-bottom: 80px;
}

.sld-section-title h2 {
    font-size: 42px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sld-section-title p {
    font-size: 18px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 顶部联系栏样式 */
.sld-top-bar {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #ffffff;
    font-size: 14px;
    padding: 15px 0;
    position: relative;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    overflow: hidden;
}

/* 顶部栏装饰效果 */
.sld-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sld-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.sld-top-contact {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sld-top-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e8eef3;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 5px 0;
}

.sld-top-contact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #C8E6C9);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sld-top-contact-item:hover {
    color: #fff;
    transform: translateY(-2px);
}

.sld-top-contact-item:hover::after {
    width: 100%;
}

.sld-top-contact-item i {
    font-size: 20px;
    color: #A5D6A7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.sld-top-contact-item:hover i {
    color: #ffffff;
    transform: scale(1.3) rotate(10deg);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.sld-top-contact-item span {
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    color: #e8eef3;
    letter-spacing: 0.5px;
}

.sld-top-contact-item:hover span {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sld-top-social {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sld-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    color: #e8eef3;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.sld-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.sld-social-link:hover::before {
    left: 100%;
}

.sld-social-link:hover {
    background: linear-gradient(135deg, #ffffff, #C8E6C9);
    color: #2E7D32;
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.5);
    border-color: #ffffff;
}

.sld-social-link i {
    font-size: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sld-social-link:hover i {
    transform: scale(1.3);
}

/* 主导航栏样式 */
header.sld-main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.sld-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
    flex-wrap: wrap;
}

/* Logo区域 */
.sld-header-logo {
    flex: 0 0 auto;
}

.sld-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.sld-logo-text {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sld-main-header:hover .sld-logo-text {
    transform: scale(1.02);
}

.sld-logo-text span {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sld-logo-slogan {
    font-size: 13px;
    color: #000000;
    margin: 8px 0 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.sld-logo-slogan::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    transition: width 0.3s ease;
}

.sld-main-header:hover .sld-logo-slogan::before {
    width: 100%;
}

.sld-main-header:hover .sld-logo-slogan {
    color: #000000;
}

/* 搜索框 */
.sld-header-search {
    flex: 1;
    max-width: 500px;
    min-width: 200px;
}

.sld-search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.sld-search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e8eef3;
    border-radius: 30px;
    font-size: 15px;
    color: #2c3e50;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
}

.sld-search-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.sld-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.sld-search-btn:hover {
    background-color: #388E3C;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* 预约按钮 */
.sld-header-cta {
    flex: 0 0 auto;
}

.sld-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
    border: none;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.sld-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.sld-cta-btn:hover::before {
    left: 100%;
}

.sld-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
}

.sld-cta-btn i {
    font-size: 18px;
    transition: all 0.4s ease;
}

.sld-cta-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* 主导航 */
.sld-main-nav {
    position: relative;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: 10px 0;
}

.sld-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sld-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    outline: none;
    position: relative;
}

.sld-menu-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2E7D32;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

/* 导航菜单 */
.sld-nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sld-nav-menu li {
    position: relative;
}

.sld-nav-menu li a {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    padding: 12px 0;
    display: block;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
}

.sld-nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.sld-nav-menu li a:hover {
    color: #000000;
    transform: translateY(-2px);
}

.sld-nav-menu li a:hover::before {
    width: 100%;
}

.sld-nav-menu li:hover {
    transform: translateY(-2px);
}

/* 首页专用样式 */
.sld-nav-menu li a[href="#home"] {
    color: #4CAF50;
    font-weight: 700;
}

/* 联系我们按钮样式 */
.sld-nav-menu li a.contact-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    margin-left: 10px;
}

.sld-nav-menu li a.contact-btn:hover {
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.sld-nav-menu li a.contact-btn::before {
    display: none;
}

/* 二级菜单样式 */
.sld-nav-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    list-style: none;
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.sld-nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.sld-nav-menu ul li {
    margin: 0;
    width: 100%;
}

.sld-nav-menu ul li a {
    padding: 10px 25px;
    border-bottom: none;
    font-size: 14px;
    color: #000000;
    text-transform: none;
    letter-spacing: normal;
    border-radius: 0;
}

.sld-nav-menu ul li a:hover {
    background-color: #f1f8e9;
    color: #000000;
    border-bottom: none;
    padding-left: 30px;
}

/* 三级菜单样式 */
.sld-nav-menu ul ul {
    top: 0;
    left: 100%;
    margin-left: 10px;
    transform: translateY(0);
}

.sld-nav-menu li:hover > ul ul {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .sld-header-content {
        gap: 20px;
    }
    
    .sld-nav-menu {
        gap: 30px;
    }
    
    .sld-logo-text {
        font-size: 28px;
    }
    
    .sld-cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .sld-top-bar {
        display: none;
    }
    
    header.sld-main-header {
        top: 0;
    }
    
    .sld-header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px 0;
    }
    
    .sld-header-logo {
        order: 1;
    }
    
    .sld-header-search {
        order: 3;
        max-width: none;
    }
    
    .sld-header-cta {
        order: 2;
        text-align: center;
    }
    
    .sld-main-nav {
        order: 4;
    }
    
    .sld-mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .sld-nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        flex-direction: column;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.08);
        width: 300px;
        height: 100vh;
        padding: 80px 20px 20px;
        gap: 15px;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .sld-nav-menu.active {
        right: 0;
    }
    
    .sld-nav-menu li a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(76, 175, 80, 0.15);
    }
    
    .sld-nav-menu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 1px solid rgba(76, 175, 80, 0.15);
        border-radius: 6px;
        margin: 10px 0 10px 20px;
        padding: 10px 0;
        transform: none;
    }
    
    .sld-nav-menu ul ul {
        margin-left: 20px;
    }
    
    .sld-nav-menu ul li a {
        padding: 10px 15px;
    }
    
    .sld-nav-menu ul li a:hover {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .sld-logo-text {
        font-size: 24px;
    }
    
    .sld-logo-slogan {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .sld-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sld-header-content {
        padding: 10px 0;
    }
    
    .sld-logo {
        align-items: center;
    }
    
    .sld-logo-text {
        font-size: 22px;
    }
    
    .sld-search-input {
        padding: 10px 40px 10px 15px;
        font-size: 14px;
    }
    
    .sld-search-btn {
        width: 35px;
        height: 35px;
    }
}

/* Hero区域样式 - 首页 */
.sld-hero {
    height: 100vh;
    background: linear-gradient(rgba(76, 175, 80, 0.4), rgba(76, 175, 80, 0.4)), url('https://picsum.photos/id/225/1920/1080') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.sld-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, rgba(255,255,255,0.1));
    pointer-events: none;
}

.sld-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.sld-hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.sld-hero-content p {
    font-size: 22px;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.95;
}

.sld-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sld-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.35);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sld-hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
}

.sld-hero-btn-outline {
    background: transparent;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.sld-hero-btn-outline:hover {
    background: #fff;
    color: #2E7D32;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* 首页快捷导航 */
.sld-quick-nav {
    background: #fff;
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.sld-quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.sld-quick-nav-item {
    text-align: center;
    padding: 35px 20px;
    background: linear-gradient(135deg, #f1f8e9 0%, #fff 100%);
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.sld-quick-nav-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.15);
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
}

.sld-quick-nav-item:hover .sld-quick-nav-icon {
    color: #fff;
    transform: scale(1.2);
}

.sld-quick-nav-icon {
    font-size: 42px;
    color: #4CAF50;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.sld-quick-nav-item h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 关于我们样式 */
.sld-about {
    background-color: #fff;
    padding: 120px 0;
}

.sld-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sld-about-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.15);
}

.sld-about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.sld-about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sld-about-img:hover img {
    transform: scale(1.03);
}

.sld-about-text h3 {
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.sld-about-text h2 {
    font-size: 38px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.sld-about-text p {
    font-size: 17px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.9;
}

.sld-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.sld-about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f1f8e9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sld-about-feature:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateX(5px);
}

.sld-about-feature:hover .sld-about-feature-icon {
    color: #fff;
}

.sld-about-feature-icon {
    font-size: 28px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.sld-about-feature span {
    font-size: 15px;
    font-weight: 600;
}

/* 娱乐推荐样式 */
.sld-entertainment {
    background: linear-gradient(135deg, #f1f8e9 0%, #fff 50%, #f1f8e9 100%);
    padding: 120px 0;
}

/* 分类选项卡 */
.sld-entertainment-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.sld-tab-btn {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #e8eef3;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sld-tab-btn:hover {
    border-color: #4CAF50;
    color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.sld-tab-btn.active {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    border-color: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sld-entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

@media (min-width: 768px) {
    .sld-entertainment-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 1200px) {
    .sld-entertainment-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.sld-entertainment-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    min-height: 380px;
}

.sld-entertainment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
}

.sld-entertainment-card.hidden {
    display: none;
}

.sld-entertainment-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.sld-entertainment-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(255,255,255,0.8));
}

.sld-entertainment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-entertainment-card:hover .sld-entertainment-img img {
    transform: scale(1.1);
}

.sld-entertainment-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sld-entertainment-content {
    padding: 20px;
}

.sld-entertainment-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.sld-entertainment-tag {
    padding: 4px 10px;
    background: #f1f8e9;
    color: #4CAF50;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sld-entertainment-card:hover .sld-entertainment-tag {
    background: #4CAF50;
    color: #fff;
}

.sld-entertainment-content h4 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.sld-entertainment-content p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sld-entertainment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(76, 175, 80, 0.15);
    margin-bottom: 15px;
}

.sld-entertainment-duration {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sld-entertainment-price {
    font-size: 18px;
    color: #4CAF50;
    font-weight: 800;
}

.sld-entertainment-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.2);
}

.sld-entertainment-btn:hover {
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

/* 技师风采样式 */
.sld-technicians {
    background-color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.sld-technicians .sld-container {
    position: relative;
}

.sld-technicians-slider {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    margin: 0 -15px;
}

.sld-technicians-slider::-webkit-scrollbar {
    display: none;
}

.sld-technicians-grid {
    display: inline-flex;
    gap: 40px;
    padding: 0 15px;
}

.sld-technician-card {
    background: linear-gradient(135deg, #f1f8e9 0%, #fff 100%);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
    width: 250px;
    flex-shrink: 0;
    min-height: 620px;
}

.sld-technician-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.15);
}

.sld-technician-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.sld-technician-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-technician-card:hover .sld-technician-img img {
    transform: scale(1.05);
}

.sld-technician-info {
    padding: 25px 30px 0;
}

.sld-technician-info h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 8px;
    font-weight: 700;
}

.sld-technician-info p {
    color: #000000;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.sld-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    color: #4CAF50;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.sld-slider-btn:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.sld-slider-prev {
    left: 10px;
}

.sld-slider-next {
    right: 10px;
}

@media (max-width: 768px) {
    .sld-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .sld-technician-card {
        width: 260px;
    }
    
    .sld-technicians-grid {
        gap: 20px;
    }
}

/* 环境展示样式 */
.sld-environment {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    padding: 120px 0;
    color: #fff;
}

.sld-environment .sld-section-title h2 {
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #81C784 100%);
}

.sld-environment .sld-section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.sld-environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.sld-environment-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sld-environment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.sld-environment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-environment-item:hover img {
    transform: scale(1.05);
}

.sld-environment-item h4 {
    padding: 20px 25px 0;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.sld-environment-item p {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
}

/* 优惠活动样式 */
.sld-promotions {
    background: linear-gradient(135deg, #f0f9e8 0%, #ffffff 50%, #e8f5e8 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.sld-promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.sld-promotions .sld-container {
    position: relative;
    z-index: 1;
}

.sld-promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.sld-promotion-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.sld-promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
}

.sld-promotion-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.25);
}

.sld-promotion-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.sld-promotion-card:hover .sld-promotion-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.sld-promotion-card h3 {
    padding: 40px 35px 20px;
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
}

.sld-promotion-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 35px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
    border-radius: 3px;
}

.sld-promotion-card p {
    padding: 0 35px 30px;
    color: #000000;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}

.sld-promotion-date {
    padding: 0 35px 40px;
    color: #4CAF50;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.sld-promotion-date::before {
    content: '📅';
    margin-right: 8px;
    font-size: 16px;
}

/* 招聘技师样式 */
.sld-recruitment {
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sld-recruitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 20%);
    z-index: 0;
}

.sld-recruitment .sld-container {
    position: relative;
    z-index: 1;
}

.sld-recruitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sld-recruitment-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.sld-recruitment-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 480px;
}

.sld-recruitment-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.sld-recruitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-recruitment-image-wrapper:hover img {
    transform: scale(1.1);
}

.sld-recruitment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(76, 175, 80, 0.9) 0%, rgba(76, 175, 80, 0.6) 40%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: all 0.4s ease;
}

.sld-recruitment-info {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(76, 175, 80, 0.1);
    height: 100%;
    min-height: 480px;
}

.sld-recruitment-overlay-content h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.sld-recruitment-overlay-content ul {
    list-style: none;
    padding: 0;
}

.sld-recruitment-overlay-content li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sld-recruitment-overlay-content li::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
    color: #fff;
}

.sld-recruitment-info {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.sld-recruitment-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.sld-recruitment-info h3 {
    font-size: 30px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    position: relative;
}

.sld-recruitment-info h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
    border-radius: 4px;
}

.sld-recruitment-info p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.sld-recruitment-section {
    margin-bottom: 30px;
}

.sld-recruitment-section h4 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.sld-recruitment-section h4 i {
    margin-right: 10px;
    color: #4CAF50;
    font-size: 22px;
}

.sld-recruitment-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.sld-recruitment-section li {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.sld-recruitment-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
}

.sld-recruitment-contact {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.sld-recruitment-contact h4 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.sld-recruitment-contact h4 i {
    margin-right: 10px;
    color: #4CAF50;
    font-size: 22px;
}

.sld-recruitment-contact p {
    margin-bottom: 20px;
}

.sld-recruitment-contact ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.sld-recruitment-contact li {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.sld-recruitment-contact li i {
    margin-right: 12px;
    color: #4CAF50;
    width: 20px;
    text-align: center;
}

.sld-recruitment-contact .sld-btn {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .sld-recruitment-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sld-recruitment-image-wrapper {
        height: 500px;
    }
    
    .sld-recruitment-info {
        padding: 40px;
    }
}

.sld-recruitment-info li {
    color: #000000;
    line-height: 2.2;
    font-size: 17px;
    margin-bottom: 10px;
}

.sld-recruitment-contact h3 {
    font-size: 28px;
    color: #2E7D32;
    margin-bottom: 25px;
    font-weight: 700;
}

.sld-recruitment-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sld-recruitment-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f1f8e9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sld-recruitment-contact li:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateX(10px);
}

.sld-recruitment-contact li i {
    font-size: 24px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.sld-recruitment-contact li:hover i {
    color: #fff;
    transform: scale(1.2);
}

.sld-recruitment-contact li p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* 新闻资讯样式 */
.sld-news {
    background: linear-gradient(135deg, #f1f8e9 0%, #fff 50%, #f1f8e9 100%);
    padding: 120px 0;
}

.sld-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.sld-news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
}

.sld-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.15);
}

.sld-news-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.sld-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-news-card:hover .sld-news-img img {
    transform: scale(1.08);
}

.sld-news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4CAF50;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.sld-news-info {
    padding: 30px;
}

.sld-news-info h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sld-news-card:hover .sld-news-info h3 {
    color: #000000;
}

.sld-news-info p {
    color: #000000;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.sld-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(76, 175, 80, 0.15);
}

.sld-news-meta span {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.sld-news-more {
    text-align: center;
    margin-top: 50px;
}



.sld-form-group {
    margin-bottom: 25px;
}

.sld-form-group input,
.sld-form-group select,
.sld-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(76, 175, 80, 0.15);
    border-radius: 12px;
    font-size: 16px;
    color: #000000;
    background-color: #fff;
    transition: all 0.3s ease;
}

.sld-form-group input:focus,
.sld-form-group select:focus,
.sld-form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
    transform: translateY(-2px);
}

.sld-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* 环境展示样式 */
.sld-environment {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    padding: 120px 0;
    color: #fff;
}

.sld-environment .sld-section-title h2 {
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #81C784 100%);
}

.sld-environment .sld-section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.sld-environment-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-bottom: 60px;
}

.sld-env-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.sld-env-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.sld-env-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-env-gallery-item:hover img {
    transform: scale(1.1);
}

.sld-env-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sld-env-gallery-item:hover .sld-env-gallery-overlay {
    transform: translateY(0);
}

.sld-env-gallery-overlay h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.sld-env-gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.sld-env-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.sld-env-feature {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.sld-env-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.sld-env-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.sld-env-feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sld-env-feature p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* 优惠活动样式 */
.sld-promotions {
    background: linear-gradient(135deg, #f1f8e9 0%, #fff 50%, #f1f8e9 100%);
    padding: 120px 0;
}

.sld-promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.sld-promotion-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.sld-promotion-card.featured {
    border: 3px solid #4CAF50;
}

.sld-promotion-card.featured::before {
    content: '推荐';
    position: absolute;
    top: 25px;
    right: -30px;
    background: #4CAF50;
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.sld-promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
}

.sld-promotion-header {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.sld-promotion-header.discount {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
}

.sld-promotion-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.sld-promotion-header p {
    opacity: 0.9;
    font-size: 15px;
}

.sld-promotion-body {
    padding: 35px;
}

.sld-promotion-body h4 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.sld-promotion-body ul {
    list-style: none;
    margin-bottom: 25px;
}

.sld-promotion-body ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
}

.sld-promotion-body ul li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
}

.sld-promotion-price {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.sld-promotion-price .original {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.sld-promotion-price .current {
    font-size: 36px;
    color: #4CAF50;
    font-weight: 800;
}

.sld-promotion-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 25px;
}

/* 招聘技师样式 */
.sld-recruitment {
    background-color: #fff;
    padding: 120px 0;
}

.sld-recruitment-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.sld-recruitment-info h3 {
    font-size: 14px;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.sld-recruitment-info h2 {
    font-size: 38px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.sld-recruitment-info p {
    color: #000000;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
}

.sld-recruitment-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.sld-recruitment-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f1f8e9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sld-recruitment-benefit:hover {
    background: #4CAF50;
    color: #fff;
}

.sld-recruitment-benefit-icon {
    font-size: 32px;
    color: #4CAF50;
}

.sld-recruitment-benefit:hover .sld-recruitment-benefit-icon {
    color: #fff;
}

.sld-recruitment-benefit span {
    font-size: 15px;
    font-weight: 600;
}

.sld-recruitment-jobs {
    display: grid;
    gap: 25px;
}

.sld-job-card {
    background: linear-gradient(135deg, #f1f8e9 0%, #fff 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(76, 175, 80, 0.15);
    transition: all 0.4s ease;
}

.sld-job-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

.sld-job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sld-job-header h4 {
    font-size: 22px;
    color: #000000;
}

.sld-job-salary {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
}

.sld-job-requirements {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sld-job-requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #558b2f;
    font-size: 14px;
}

.sld-job-requirement i {
    color: #4CAF50;
}

.sld-job-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sld-job-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.35);
}

/* 新闻资讯样式 */
.sld-news {
    background: linear-gradient(135deg, #f1f8e9 0%, #fff 50%, #f1f8e9 100%);
    padding: 120px 0;
}

.sld-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.sld-news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
}

.sld-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.15);
}

.sld-news-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.sld-news-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(255,255,255,0.8));
}

.sld-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-news-card:hover .sld-news-img img {
    transform: scale(1.08);
}

.sld-news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4CAF50;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.sld-news-content {
    padding: 30px;
}

.sld-news-date {
    color: #000000;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sld-news-content h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sld-news-card:hover .sld-news-content h3 {
    color: #4CAF50;
}

.sld-news-content p {
    color: #000000;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.sld-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.sld-news-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    font-size: 14px;
}

.sld-news-author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.sld-news-read-more {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sld-news-read-more:hover {
    color: #000000;
    transform: translateX(5px);
}

/* 联系我们样式 */
.sld-contact {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    padding: 120px 0;
    color: #fff;
}

.sld-contact .sld-section-title h2 {
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #81C784 100%);
}

.sld-contact .sld-section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.sld-contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.sld-contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sld-contact-info h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.sld-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sld-contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sld-contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.sld-contact-item-text h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.sld-contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
}

.sld-contact-social {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sld-contact-social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sld-contact-social-link:hover {
    background: #4CAF50;
    transform: translateY(-5px);
}

.sld-contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.sld-contact-form h3 {
    font-size: 26px;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
}

.sld-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.sld-form-group {
    margin-bottom: 25px;
}

.sld-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
}

.sld-form-group input,
.sld-form-group select,
.sld-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8eef3;
    border-radius: 12px;
    font-size: 16px;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: #f8faf8;
}

.sld-form-group input:focus,
.sld-form-group select:focus,
.sld-form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
    background: #fff;
}

.sld-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.sld-contact-form .sld-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 10px;
}

/* 工作室介绍样式 */
.sld-about {
    background-color: #fff;
}

.sld-about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sld-about-img {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.12);
}

.sld-about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sld-about-text {
    flex: 1;
}

.sld-about-text h3 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}

.sld-about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.8;
}

/* 茶品展示样式 */
.sld-tea-products {
    background-color: #f1f8e9;
}

.sld-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sld-product-card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.sld-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.18);
}

.sld-product-img {
    height: 250px;
    overflow: hidden;
}

.sld-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.sld-product-card:hover .sld-product-img img {
    transform: scale(1.05);
}

.sld-product-info {
    padding: 25px;
}

.sld-product-info h4 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
}

/* 品茶标签样式 */
.sld-product-tags {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sld-product-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e8f5e8;
    color: #4CAF50;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.sld-product-info p {
    color: #000000;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.sld-product-price {
    font-size: 18px;
    color: #4CAF50;
    font-weight: 600;
}

/* 服务区域样式 */
.sld-services {
    background-color: #fff;
}

.sld-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sld-service-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #f1f8e9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sld-service-card:hover {
    background-color: #e8f5e8;
}

.sld-service-card i {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.sld-service-card h4 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 15px;
}

.sld-service-card p {
    color: #000000;
}

/* 预约区域样式 */
.sld-booking {
    background: linear-gradient(rgba(76, 175, 80, 0.85), rgba(76, 175, 80, 0.85)), url('https://picsum.photos/id/430/1920/800') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.sld-booking .sld-section-title h2 {
    color: #fff;
}

.sld-booking .sld-section-title p {
    color: #e8eef3;
}

.sld-booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 6px;
}

.sld-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.sld-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3d5a80;
    font-weight: 500;
}

.sld-form-group input, .sld-form-group select, .sld-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0dce0;
    border-radius: 4px;
    font-size: 16px;
    color: #2c3e50;
}

.sld-form-group textarea {
    resize: vertical;
    min-height: 120px;
}



/* 固定联系方式栏目 */
.sld-fixed-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* 电话栏 */
.sld-phone-bar {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(255, 107, 53, 0.3);
    animation: phoneBarPulse 2s ease-in-out infinite;
}

/* 电话栏装饰效果 */
.sld-phone-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: phoneBarShimmer 3s infinite;
}

@keyframes phoneBarPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 2px 15px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    }
}

@keyframes phoneBarShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.sld-phone-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.sld-phone-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoneIconPulse 2s ease-in-out infinite;
}

@keyframes phoneIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.sld-phone-icon i {
    color: #fff;
    font-size: 24px;
    animation: phoneIconRotate 2s ease-in-out infinite;
}

@keyframes phoneIconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

.sld-phone-content {
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.sld-phone-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sld-phone-number {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sld-phone-number:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.sld-phone-action {
    flex-shrink: 0;
}

.sld-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sld-call-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.sld-call-btn i {
    font-size: 18px;
    animation: callBtnPulse 1.5s ease-in-out infinite;
}

@keyframes callBtnPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* 微信复制栏 */
.sld-wechat-bar {
    background: #f0f0f0;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.sld-wechat-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.sld-wechat-copy input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background: #fff;
}

.sld-copy-wechat-btn {
    padding: 8px 20px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sld-copy-wechat-btn:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.sld-copy-wechat-btn.sld-copy-success {
    background: #4CAF50;
}

/* 联系图标栏 */
.sld-contact-icons {
    background: #2E7D32;
    padding: 0;
}

.sld-icons-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 20px;
}

.sld-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.sld-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.sld-icon-btn i {
    font-size: 24px;
}

.sld-icon-btn span {
    font-size: 12px;
    font-weight: 600;
}

/* 联系弹窗 */
.sld-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sld-contact-modal.sld-modal-show {
    opacity: 1;
    visibility: visible;
}

.sld-modal-content {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.sld-contact-modal.sld-modal-show .sld-modal-content {
    transform: scale(1);
}

.sld-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sld-modal-close:hover {
    color: #333;
}

.sld-modal-body {
    text-align: center;
}

.sld-modal-body h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.sld-qr-container {
    margin-bottom: 20px;
}

.sld-qr-container img {
    width: 200px;
    height: 200px;
    border: 2px solid #e8eef3;
    border-radius: 10px;
}

.sld-contact-details {
    margin-top: 20px;
}

.sld-contact-id {
    font-size: 18px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8faf8;
    border-radius: 8px;
    border: 1px solid #e8eef3;
}

.sld-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 15px;
}

.sld-copy-btn:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.sld-copy-btn.sld-copy-success {
    background: #4CAF50;
}

.sld-contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* 页脚样式 */
footer {
    background-color: #2E7D32;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    margin-bottom: 70px; /* 为固定联系方式栏目留出空间 */
}

/* 页脚背景装饰 */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* 主页脚区域 */
.sld-footer-main {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(76, 175, 80, 0.15);
}

.sld-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 70px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.sld-footer-col {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 页脚Logo */
.sld-footer-logo {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.sld-footer-logo h3 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.sld-footer-logo h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.sld-footer-col:hover .sld-footer-logo h3::before {
    transform: scaleX(1);
    transform-origin: left;
}

.sld-footer-logo h3 span {
    color: #5b8a72;
    position: relative;
    z-index: 2;
}

/* 页脚描述 */
.sld-footer-description {
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 1.8;
    color: #e8eef3;
    flex: 1;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.sld-footer-col:hover .sld-footer-description {
    opacity: 1;
}

/* 页脚社交图标 */
.sld-footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.sld-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 19px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.sld-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.sld-social-icon:hover::before {
    left: 100%;
}

.sld-social-icon:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    transform: translateY(-4px) scale(1.05);
    color: #fff;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    border-color: transparent;
}

/* 页脚标题 */
.sld-footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #fff;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.sld-footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
    border-radius: 2px;
    transform: scaleX(0.8);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sld-footer-col:hover .sld-footer-title::before {
    transform: scaleX(1);
}

.sld-footer-title::after {
    content: '';
    position: absolute;
    left: 75px;
    bottom: 1px;
    width: 20px;
    height: 4px;
    background: #4CAF50;
    border-radius: 2px;
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease 0.1s;
}

.sld-footer-col:hover .sld-footer-title::after {
    transform: scaleX(1);
}

/* 页脚链接列表 */
.sld-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.sld-footer-links li {
    margin-bottom: 18px;
    position: relative;
}

.sld-footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #4CAF50 0%, transparent 100%);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.sld-footer-links li:hover::before {
    width: 100%;
}

.sld-footer-link {
    color: #c5d0db;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    z-index: 2;
}

.sld-footer-link:hover {
    color: #81C784;
    padding-left: 12px;
}

.sld-footer-link::before {
    content: '➤';
    position: absolute;
    left: -20px;
    top: 0;
    color: #4CAF50;
    transition: all 0.3s ease;
    font-size: 12px;
    opacity: 0;
    transform: translateX(10px);
}

.sld-footer-link:hover::before {
    left: -12px;
    opacity: 1;
    transform: translateX(0);
}

/* 页脚联系方式 */
.sld-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.sld-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 8px;
    transition: padding-left 0.3s ease;
}

.sld-contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, #4CAF50 0%, #81C784 100%);
    border-radius: 1.5px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.sld-contact-item:hover::before {
    transform: scaleY(1);
}

.sld-contact-item:hover {
    padding-left: 15px;
}

.sld-contact-item i {
    font-size: 20px;
    color: #4CAF50;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sld-contact-item:hover i {
    transform: scale(1.2) translateX(5px);
    color: #81C784;
}

.sld-contact-item span {
    color: #e8eef3;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.sld-contact-item:hover span {
    color: #fff;
}

/* 页脚分隔线 */
.sld-footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.3) 50%, transparent 100%);
    margin: 0;
    position: relative;
    z-index: 2;
}

.sld-footer-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
    border-radius: 2px;
    opacity: 0.7;
}

/* 底部版权区域 */
.sld-footer-bottom {
    padding: 35px 0;
    background: linear-gradient(135deg, #1B5E20 0%, #0D47A1 100%);
    border-top: 1px solid rgba(76, 175, 80, 0.15);
    position: relative;
    z-index: 2;
}

.sld-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* 版权信息 */
.sld-copyright {
    color: #e8eef3;
    font-size: 14px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.sld-copyright:hover {
    color: #fff;
}

.sld-copyright::before {
    content: '©';
    margin-right: 5px;
    color: #4CAF50;
    font-weight: 600;
}

/* 法律链接 */
.sld-legal-links {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.sld-legal-link {
    color: #e8eef3;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

.sld-legal-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.sld-legal-link:hover {
    color: #81C784;
    padding: 5px 8px;
}

.sld-legal-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.sld-legal-separator {
    color: rgba(232, 238, 243, 0.5);
    font-size: 12px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.sld-legal-links:hover .sld-legal-separator {
    color: rgba(232, 238, 243, 0.7);
}

/* 响应式设计 */


/* 服务项目板块样式 */
.sld-service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.sld-service-item-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
}

.sld-service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.15);
}

.sld-service-item-img {
    height: 220px;
    overflow: hidden;
}

.sld-service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sld-service-item-card:hover .sld-service-item-img img {
    transform: scale(1.05);
}

.sld-service-item-content {
    padding: 30px;
}

.sld-service-item-content h3 {
    font-size: 22px;
    color: #2E7D32;
    margin-bottom: 15px;
    font-weight: 600;
}

.sld-service-item-content > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sld-service-item-content > div span:first-child {
    font-size: 20px;
    color: #4CAF50;
    font-weight: 700;
}

.sld-service-item-content > div span:last-child {
    background-color: #e8f5e8;
    color: #4CAF50;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.sld-service-item-content ul {
    color: #558b2f;
    line-height: 1.8;
    margin-bottom: 25px;
    list-style: none;
}

.sld-service-item-content ul li {
    margin-bottom: 8px;
}

.sld-service-item-content .sld-btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* 服务优势板块样式 */
.sld-service-features {
    background-color: #e8f5e8;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 70px;
}

.sld-service-features h3 {
    font-size: 24px;
    color: #2E7D32;
    margin-bottom: 30px;
    text-align: center;
}

.sld-service-features > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.sld-service-features > div > div {
    text-align: center;
}

.sld-service-features > div > div i {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.sld-service-features > div > div h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.sld-service-features > div > div p {
    color: #6b7c8a;
}

/* 茶艺师板块样式 */
.sld-tea-artists {
    background-color: #fff;
    padding: 80px 0;
}

.sld-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.sld-artist-card {
    background-color: #f1f8e9;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.08);
}

.sld-artist-card > div:first-child {
    height: 300px;
    overflow: hidden;
}

.sld-artist-card > div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sld-artist-card > div:last-child {
    padding: 0 20px;
}

.sld-artist-card h3 {
    font-size: 20px;
    color: #2E7D32;
    margin: 20px 0 10px;
}

.sld-artist-card p:first-of-type {
    color: #66BB6A;
    margin-bottom: 15px;
    font-size: 14px;
}

.sld-artist-card > div:last-child > div {
    color: #e8a87c;
    margin-bottom: 15px;
}

.sld-artist-card p:last-of-type {
    color: #558b2f;
    line-height: 1.6;
}

/* 品茶工作室环境板块样式 */
.sld-environment-features > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.sld-environment-features > div > div {
    text-align: center;
}

.sld-environment-features > div > div i {
    font-size: 36px;
    margin-bottom: 15px;
}

.sld-environment-features > div > div h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sld-environment-features > div > div p {
    opacity: 0.9;
    font-size: 14px;
}

/* 茶艺师服务承诺样式 */
.sld-artist-promise {
    text-align: center;
    background-color: #4CAF50;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.sld-artist-promise h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.sld-artist-promise p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 品茶工作室环境板块样式 */
.sld-studio-environment {
    background-color: #fff;
    padding: 80px 0;
}

.sld-environment-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.sld-environment-gallery > div {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.1);
}

.sld-environment-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.sld-environment-gallery > div > div {
    padding: 15px;
    background-color: #fff;
}

.sld-environment-gallery h4 {
    font-size: 16px;
    color: #2E7D32;
    margin-bottom: 5px;
}

.sld-environment-gallery p {
    color: #66BB6A;
    font-size: 14px;
}

/* 工作室环境特色样式 */
.sld-environment-features {
    background: linear-gradient(rgba(76, 175, 80, 0.85), rgba(76, 175, 80, 0.85)), url('https://picsum.photos/id/458/1920/600') center/cover no-repeat;
    color: #fff;
    padding: 50px;
    border-radius: 8px;
}



@media (max-width: 992px) {
    .sld-about-content, .sld-contact-content {
        flex-direction: column;
    }

    /* 平板端茶品布局 */
    .sld-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sld-hero-content h1 {
        font-size: 45px;
    }

    .sld-section-title h2 {
        font-size: 30px;
    }
    
    .sld-mobile-menu-toggle {
        display: flex;
    }
    
    .sld-nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.99);
        box-shadow: -3px 0 15px rgba(0, 0, 0, 0.12);
        width: 250px;
        height: calc(100vh - 80px);
        padding: 30px 20px;
        gap: 20px;
        transform: translateX(100%);
        overflow-y: auto;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .sld-nav-menu.active {
        transform: translateX(0);
    }
    
    .sld-nav-menu li a {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .sld-nav-menu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 1px solid #c8e6c9;
        margin-top: 10px;
        margin-left: 20px;
        padding: 10px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    /* 平板端茶品布局 */
    .sld-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 平板端服务项目布局 */
    .sld-service-items-grid {
        grid-template-columns: 1fr;
    }

    /* 平板端茶艺师布局 */
    .sld-artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sld-hero-content h1 {
        font-size: 36px;
    }

    .sld-hero-content p {
        font-size: 18px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .sld-mobile-menu-toggle {
        width: 30px;
        height: 24px;
    }
    
    .sld-nav-menu {
        width: 200px;
        top: 70px;
    }

    /* 移动端茶品布局 */
    .sld-products-grid {
        grid-template-columns: 1fr;
    }

    /* 移动端茶艺师布局 */
    .sld-artists-grid {
        grid-template-columns: 1fr;
    }
}

/* 固定联系方式栏目响应式设计 */
@media (max-width: 768px) {
    .sld-phone-number {
        font-size: 16px;
    }
    
    .sld-wechat-copy {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .sld-wechat-copy input {
        width: 100%;
        max-width: 300px;
    }
    
    .sld-copy-wechat-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .sld-icons-row {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sld-icon-btn {
        min-width: 60px;
        flex: 1;
        max-width: 80px;
    }
    
    .sld-icon-btn i {
        font-size: 20px;
    }
    
    .sld-icon-btn span {
        font-size: 10px;
    }
    
    .sld-modal-content {
        padding: 20px;
    }
    
    .sld-qr-container img {
        width: 160px;
        height: 160px;
    }
    
    .sld-modal-body h3 {
        font-size: 20px;
    }
    
    .sld-contact-id {
        font-size: 16px;
    }
    
    .sld-copy-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    footer {
        margin-bottom: 180px; /* 为固定联系方式栏目留出更多空间 */
    }
}

@media (max-width: 480px) {
    .sld-phone-number {
        font-size: 14px;
    }
    
    .sld-icons-row {
        gap: 10px;
    }
    
    .sld-icon-btn {
        min-width: 50px;
        padding: 8px;
    }
    
    .sld-icon-btn i {
        font-size: 18px;
    }
    
    .sld-icon-btn span {
        font-size: 9px;
    }
    
    footer {
        margin-bottom: 200px; /* 为固定联系方式栏目留出更多空间 */
    }
}