/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #4a3f36;
}
.beian{
    color: #fff;
}
/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(33, 26, 22, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    font-size: 24px;
    color: #4a3f36;
}

.logo p {
    font-size: 14px;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b69175;
}

.nav-links .active a {
    color: #b69175;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Banner Styles */
.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.gradient-text {
    /* font-size: 40px;
    background: linear-gradient(to right, #eed7c0, #ba9579);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem; */
}
.skin{
   background-image: url('../images/skin.png');
   background-size: 100% 100%;
   background-position: center;
   width: 566px;
   height: 44px;
   margin: 2rem auto;
}
.restore{
    background-image: url('../images/restore.png');
    background-size: 100% 100%;
    background-position: center;
    width: 566px;
    height: 44px;
    margin: 2rem auto;
 }

.slide-content h3 {
    font-size: 60px;
    margin-bottom: 1rem;
    white-space: nowrap;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 30px;
    color: #d6b8a1;
}

/* Decorative Lines */
.decorative-lines {
    position: relative;
    width: 100%;
}

.line {
    height: 2px;
    width: 100%;
}

.line-1 {
    background-color: #b69175;
}

.line-2 {
    background-color: #d9c3b2;
}

/* Company Profile Section */
.company-profile {
    padding: 5rem 0;
    background-color: white;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-content {
    flex: 1;
    padding-right: 2rem;
}

.profile-content h2 {
    font-size: 60px;
    color: #4a3f36;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.profile-content h3 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 2rem;
}
.company-profile-text{
    width: 628px;
    height: 135px;
    background-image: url('../images/company-profile-text.png');
    background-size: 100% 100%;
    background-position: center;
    margin: 0 auto;
}
.profile-image {
    flex: 1;
}

.profile-image img {
    width: 75%;
    height: auto;
    border-radius: 10px;
    margin-left: auto;
    margin-top: 2rem;
    display: block;
}

/* Service Items Section */
.service-items {
    padding: 5rem 0;
    background-color: #f0eeeb;
}
.flex-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.service-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.service-container h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.service-container h3 {
    font-size: 50px;
    color: #4a3f36;
    margin-bottom: 3rem;
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab {
    padding: 10px 30px;
    margin: 0 1rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    color: #4a3f36;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    border: 1px solid #4a3f36;
    border-radius: 50px;
    display: flex;
}

.tab.active {
    border: 0px solid #4a3f36;
    color: #fff;
    background-color: #b69175;
}

.tab i {
    margin-right: 0.5rem;
}
.service-tab-icon{
    width: 30px;
    height: 30px;
    /* background-image: url(../images/service-tab-icon.png); */
    background-size: 100% 100%;
    background-position: center;
    margin-right: 10px;
}
.service-tab-icon.fa-smile{
    background-image: url(../images/smile.png);
}
.service-tab-icon.fa-pen{
    background-image: url(../images/pen.png);
}
.tab.active .service-tab-icon.fa-smile{
    background-image: url(../images/smile-active.png);
}
.tab.active .service-tab-icon.fa-pen{
    background-image: url(../images/pen-active.png);
}
.service-content {
    position: relative;
    min-height: 300px;
}
.fa-smile:before{
    content: '';
    display: none;
}
.fa-pen:before{
    content: '';
    display: none;
}
.content-panel {
    display: none;
    /* padding: 2rem; */
    /* background-color: white; */
    /* border-radius: 10px; */
   
    /* background-image: url('../images/01-pic1-1.jpg'); */
    /* background-size: cover;
    background-position: center; */
}

.content-panel.active {
    display: block;
}

.service-panel-content {
    background-size: cover;
    background-position: center;
    padding: 10rem;
    border-radius: 10px;
    color: white;
    text-align: left;
    position: relative;
}

#life-beauty .service-panel-content {
    background-image: url('../images/life-beauty.png');
    background-size: cover;
    background-position: center;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

#medical-beauty .service-panel-content {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/medical-beauty.jpg'); */
    background-image: url('../images/medical-beauty.png');
    background-size: cover;
    background-position: center;
}

.content-panel h4 {
    font-size: 28px;
    color: white;
    margin-bottom: 1rem;
}

.content-panel p {
    color: white;
    margin-bottom: 2rem;
    font-size: 18px;
    line-height: 1.6;
    width: 400px;
}

.learn-more {
    padding: 0.8rem 2.5rem;
    /* background-color: ; */
    background: linear-gradient(to right, #CCA98F, #B38A6B);
    
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin-top: 50px;
    a{
        text-decoration: none;
        color: white;
        font-weight: 500;
        /* transition: color 0.3s; */
    }
    /* border: 1px solid #fff; */
}

/* .learn-more:hover {
    background-color: #b69175;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

/* Footer Styles */
footer {
    background-color: #211a16;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.copyright p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 750px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .profile-container {
        flex-direction: column;
    }

    .profile-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 40px;
    }

    .slide-content h3 {
        font-size: 40px;
        white-space: nowrap;
    }

    .slide-content p {
        font-size: 24px;
    }

    .physician-content {
        flex-direction: column;
    }
    .physician-container{
        background-image: url('../images/physician-content-doctor.jpg') !important;
        /* background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        padding: 10rem; */
    }
    .physician-info {
        text-align: center;
    }
    
    .specialty-list {
        justify-content: center;
        display: block !important;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-qrcode {
        flex: 0 0 150px;
    }
}

/* Page Banner Styles */
.page-banner {
    height: 400px;
    /* background-image: url('../images/about-banner.jpg'); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 80px; */
}
.about-banner{
    background-image: url('../images/about-banner.jpg');
}
.services-banner{
    background-image: url('../images/services-banner.jpg');
}
.doctors-banner{
    background-image: url('../images/doctors-banner.jpg');
}
.stores-banner{
    background-image: url('../images/stores-banner.jpg');
}
.stores-header{
    width: 528px;
    height: 135px;
    /* background-image: url(../images/physician-header.png); */
    background-size: 100% 100%;
    background-position: center;
    margin-bottom: 100px;
    background-image: url('../images/stores-header.png');

}
.page-banner::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    /* background: rgba(0, 0, 0, 0.5); */
}

.banner-content {
    position: relative;
    text-align: center;
    color: white;
    
    background-size: cover;
    background-position: center;
    width: 610px;
    height: 109px;
}
.about-banner .banner-content {
    background-image: url('../images/banner-content.png');
}
.services-banner .banner-content {
    background-image: url('../images/banner-services.png');
    width: 478px;
}
.stores-banner .banner-content {
    background-image: url('../images/banner-stores.png');
    width: 666px;
}
.banner-content h1 {
    font-size: 48px;
    margin-bottom: 1rem;
    font-size: 0;
}

.banner-content h2 {
    font-size: 36px;
    font-size: 0;
}

/* About Us Section */
.about-us {
    padding: 5rem 0;
    background-color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}
.about-us-brand{
    background-image: url(../images/about-us-brand.png);
    background-size: 100% 100%;
    background-position: center;
    /* width: 474px; */
    height: 144px;
    margin-right: 30px;
    width: 335px;
    margin-bottom: 203px;
}
.about-company-text{
    font-size: 20px;
    color: #806A59;
    line-height: 30px;
    padding-top: 63px;
    padding-bottom: 95px;
}

.about-content h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.about-content h3 {
    font-size: 32px;
    color: #4a3f36;
    margin-bottom: 2rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* History Section */
.history {
    padding: 5rem 0;
    background-color: #f0eeeb;
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
    
}
.history-image{
    background-image: url('../images/history-content.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 528px;
}
.history-content {
    
    text-align: center;
    display: flex;
    justify-content: space-between;
    /* padding: 0 10rem; */
}
.history-brand{
    background-image: url(../images/history-brand.png);
    background-size: 100% 100%;
    background-position: center;
    width: 297px;
    height: 144px;
    margin-right: 30px;
}

.history-content h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.history-content h3 {
    font-size: 32px;
    color: #4a3f36;
    margin-bottom: 3rem;
}

.timeline {
    /* max-width: 800px; */
    margin: 0 auto;
    position: relative;
   
}

/* .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #b69175;
} */

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #b69175;
    border-radius: 50%;
}

.year {
    /* flex: 1; */
    text-align: left;
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 24px;
    font-weight: bold;
    color: #806A59;
    /* width: 100px; */
}
.year::before{
    content: '';
    position: absolute;
    left: 96px;
    /* transform: translateX(-50%); */
    width: 34px;
    height: 4px;
    background-image: url(../images/year-line.png);
    background-size: cover;
    background-position: center;
    top: 50%;
    margin-top: -2px;
    /* background-color: #b69175;
    border-radius: 50%; */
}

.event {
    flex: 1;
    padding-left: 2rem;
    color: #806A59;
    white-space: nowrap;
    text-align: left;
}

/* Brand Story Section */
.brand-story {
    padding: 5rem 0;
    background-color: white;
}

.story-container {
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 4rem; */
}

.story-content {
    flex: 1;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content:center;
}

.story-content h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.story-content h3 {
    font-size: 32px;
    color: #4a3f36;
    margin-bottom: 2rem;
}
.story-text{
    width: 577px;
    height: 110px;
    font-family: MicrosoftYaHei;
    font-size: 20px;
    color: #806A59;
    line-height: 30px;
    text-align: justifyLeft;
    font-style: normal;
    text-transform: none;
}
.story-text h4 {
    font-size: 24px;
    color: #261508;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #806A59;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.partners {
    padding: 144px 0;
    /* background-color: #f0eeeb; */
    background-image: url('../images/partners.jpg');
    background-size: cover;
    background-position: center;
    /* height:816px ; */
}

.partners-container {
    /* min-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

.partners-container h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.partners-container h3 {
    font-size: 32px;
    color: #4a3f36;
    margin-bottom: 3rem;
}
.partners-cooperation{
    background-image: url('../images/partners-cooperation.png');
    background-size: cover;
    background-position: center;
    width: 474px;
    height: 144px;
    margin-right: 30px;
}
.story-brand{
    background-image: url('../images/story-brand.png');
    background-size: cover;
    background-position: center;
    width: 474px;
    height: 144px;
    margin-right: 30px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
    /* gap: 2rem; */
}

.partner-item {
    width: 304px;
    height: 214px;
    /* background-color: white; */
    /* padding: 2rem; */
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    /* transition: transform 0.3s; */
}

/* .partner-item:hover {
    transform: translateY(-5px);
} */

.partner-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-container,
    .story-container {
        flex-direction: column;
    }

    .about-content,
    .story-content {
        margin-bottom: 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: 0;
    }

    .year {
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .event {
        padding-left: 0;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Page Styles */
.life-beauty,
.medical-beauty {
    padding: 5rem 0;
}

.life-beauty {
    background-color: white;
}

.medical-beauty {
    background-color: #f0eeeb;
}
.life-beauty-bg{
    background-image: url(../images/life-beauty-bg.png);
    background-size: 100% 100%;
    background-position: center;
    /* width: 474px; */
    height: 134px;
    margin-right: 160px;
    width: 412px;
}
.medical-aesthetics-bg{
    background-image: url(../images/medical-aesthetics-bg.png);
    background-size: 100% 100%;
    background-position: center;
    /* width: 474px; */
    height: 134px;
    margin-right: 160px;
    width: 412px;
}
.service-header {
    /* text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    padding-bottom: 95px; */
    /* align-items: center; */
    /* max-width: 528px; */
    /* height: 135px; */
    display: flex;
    /* background-image: url(../images/service-header.png); */
    background-size: 100% 100%;
    background-position: center;
    margin: 0 auto;
    justify-content: center;
    /* padding-bottom: 95px; */
    margin-bottom: 3rem;
}

.service-header h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 30px;
    color: #261508;
    text-align: left;
    margin-bottom:0;
}
.life-beauty-text{
    font-size: 20px;
    color: #806A59;
    line-height: 30px;
    width: 528px;
    line-height: 30px;
    text-align: left;
    padding-top: 44px;
}

.service-content-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-sidebar {
    flex: 0 0 250px;
}

.service-menu {
    list-style: none;
    border-right: 1px solid #e0e0e0;
}

.service-menu li {
    margin-bottom: 1rem;
}

.service-menu a {
    display: block;
    padding: 13px;
    color: #806A59;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid #E6DFDA;
    text-align: left;
    /* border-radius: 5px; */
}

.service-menu li.active a,
.service-menu a:hover {
    border-bottom: 2px solid #261508;
    color: #261508;
}
.service-menu li.active a::before,
.service-menu a:hover::before {
    content: '●';
    position: relative;
    left: -10px;
    top: 0;
    width: 10px;
    height: 10px;
    /* background-color: #261508; */
    color: #261508;
    /* font-size: 24px; */
}
.service-details {
    flex: 1;
}

.service-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    /* background-image: url(../images/life-beauty-bg.png); */
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* width: 474px; */
    height: 384px;
    /* margin-right: 30px; */
    width: 1056px;
    padding: 49px;
    box-sizing: border-box;
    padding-top: 30px;
}

.service-panel.active {
    display: block;
}

.service-panel h4 {
    font-size: 28px;
    color: #4a3f36;
    /* margin-bottom: 1.5rem; */
    text-align: left;
}
.yuebishi{
    background-image: url(../images/yuebishi.png);
}
.ultrasound{
    background-image: url(../images/ultrasound.png);
}

.service-description {
    width: 337px;
    font-size: 20px;
    color: #806A59;
    line-height: 30px;
    padding-top: 100px;
    text-align: left;
    /* position: relative;
    bottom: 50px; */
    
}
.pad-t-100{
    padding-top: 90px;
}

.service-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-features li {
    color: #4a3f36;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b69175;
}

.service-image {
    margin-top: 2rem;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Service Page */
@media (max-width: 768px) {
    .service-content-wrapper {
        flex-direction: column;
    }

    .service-sidebar {
        flex: none;
        margin-bottom: 2rem;
    }

    .service-menu {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Doctors Page Styles */
.doctors-banner {
    background-image: url('../images/doctors-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.doctors-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); */
}

.doctors-banner .banner-content {
    /* position: relative;
    z-index: 1; */
    background-image: url('../images/doctors-banner-content.png');
    width: 485px;
    height: 109px;
}
.information{
    background-image: url('../images/information.png');
    background-size: 100% 100%;
    background-position: center;
    width: 453px;
    height: 135px;
    margin-left: 150px;
}
.doctors-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.doctors-banner h2 {
    font-size: 2rem;
    font-weight: 300;
}

.doctors-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.doctors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.doctor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doctor-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.doctor-title {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.doctor-specialty {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.doctor-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Styles for Doctors Page */
@media (max-width: 768px) {
    .doctors-banner {
        height: 300px;
    }

    .doctors-banner h1 {
        font-size: 2rem;
    }

    .doctors-banner h2 {
        font-size: 1.5rem;
    }

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

    .doctor-image {
        height: 250px;
    }
}

/* Stores Page Styles */
.stores-banner {
    background-image: url('../images/stores-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    /* margin-top: 80px; */
}

.stores-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); */
}

.stores-banner .banner-content {
    position: relative;
    z-index: 1;
}

.stores-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.stores-banner h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1rem;
    color: #d6b8a1;
    line-height: 1.6;
}

/* Store Information Section */
.store-info {
    padding: 5rem 0;
    background-color: white;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.store-header {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.store-title {
    /* flex: 1;
    min-width: 300px; */
    background-image: url('../images/store-title.png');
    background-size: 100% 100%;
    background-position: center;
    width: 558px;
    height: 135px;
}

.store-title h2 {
    font-size: 2.5rem;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.store-title h3 {
    font-size: 3rem;
    color: #4a3f36;
    margin-bottom: 2rem;
}

.store-description {
    flex: 2;
    width: 625px;
    
}

.store-description h4 {
    font-size: 1.8rem;
    color: #261508;
    margin-bottom: 1.5rem;
}

.store-description p {
    color: #806A59;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Store List Section */
.store-list {
    padding: 5rem 0;
    background-color: #f0eeeb;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.store-card {
    /* background: white; */
    /* border-radius: 10px; */
    overflow: hidden; 
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* transition: transform 0.3s ease; */
}

/* .store-card:hover {
    transform: translateY(-5px);
} */

.store-image {
    position: relative;
    /* width: 460px; */
    height: 260px;
    background: #F0F0F0;
    overflow: hidden;
    text-align: center;
    padding: 40px 0;
}
.main-image-text{
    font-weight: bold;
    font-size: 22px;
    color: #664329;
    border-top: 1px solid #664329;
    border-bottom: 1px solid #664329;
    padding: 5px 0;
    width: fit-content;
    margin: 0 auto;
    margin-top: 30px;

}
.store-image-img {
    position: absolute;
    width: 210px;
    height: 91px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
/* .store-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
} */

.store-image .main-image {
    opacity: 1;
}

.store-image .hover-image {
    opacity: 0;
    /* opacity: 0; */
    position: absolute;
    top: 0;
    left: 0;
}

.store-card:hover .store-image .main-image {
    opacity: 0;
}

.store-card:hover .store-image .hover-image {
    opacity: 1;
}

.store-details {
    padding: 1.5rem;
    text-align: center;
}

.store-details h3 {
    font-size: 1.5rem;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.store-address, .store-phone, .store-hours {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.store-address i, .store-phone i, .store-hours i {
    margin-right: 0.5rem;
    color: #b69175;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container h2 {
    font-size: 2rem;
    color: #4a3f36;
    margin-bottom: 2rem;
    text-align: center;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for Stores Page */
@media (max-width: 768px) {
    .stores-banner {
        height: 300px;
        /* margin-top: 60px; */
    }

    .stores-banner h1 {
        font-size: 2rem;
    }

    .stores-banner h2 {
        font-size: 1.5rem;
    }

    .store-header {
        flex-direction: column;
        gap: 2rem;
    }

    .store-title, .store-description {
        flex: 1;
        width: 100%;
    }

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

/* Contact Page Styles */
.contact-banner {
    background-image: url('../images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
}

.contact-banner .banner-content {
    /* position: relative;
    z-index: 1; */
    background-image: url('../images/contact-banner-content.png');
    width: 409px;
}

.contact-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.contact-banner h2 {
    font-size: 2rem;
    font-weight: 400;
}

/* Communication Section */
.communication {
    /* padding: 4rem 0; */
    /* padding-top: 98px; */
    /* background-color: #f9f9f9; */
    text-align: center;
    /* position: absolute; */
}

.communication-header {
    background-image: url('../images/communication-header.png');
    background-size: 100% 100%;
    background-position: center;
    width: 576px;
    height: 135px;
}

.communication-header h3 {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
}

/* Contact Information Section */
.contact-info {
    /* padding: 4rem 0; */
    width: 1440px;
    margin: 0 auto;
    margin-top: 98px;
    /* margin: 0 auto; */
    /* padding: 0 2rem; */
    background-image: url('../images/contact-container.jpg');
    background-size: 1920px 770px;
    background-position: center;
    width: 1440px;
    height: 574px;
    margin-bottom: 96px;
}

.contact-container {
    /* max-width: 1200px; */
    width: 500px;
    margin-top: 209px;
    margin-left: 220px;
    text-align: right;
}

/* .contact-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
} */

.contact-details {
    flex: 1;
    padding: 3rem;
}

.contact-details h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-phone {
    /* justify-content: start; */
    color: #806A59;
    padding-top: 43px;
}

.contact-phone i, .contact-hours i {
    margin-right: 1rem;
    color: #4a90e2;
}

.contact-qrcode {
    margin-top: 2rem;
    text-align: center;
}

.contact-qrcode img {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.contact-qrcode p {
    color: #666;
    font-size: 0.9rem;
}

.contact-image {
    flex: 1;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form Section */
.contact-form {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background-color: #4a90e2;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #357abd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-banner {
        height: 300px;
    }

    .contact-banner h1 {
        font-size: 2.5rem;
    }

    .contact-banner h2 {
        font-size: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
    }

    .contact-details {
        padding: 2rem;
    }

    .contact-image {
        height: 300px;
    }

    .form-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .contact-banner h1 {
        font-size: 2rem;
    }

    .contact-banner h2 {
        font-size: 1.2rem;
    }

    .communication-header h2 {
        font-size: 2rem;
    }

    .communication-header h3 {
        font-size: 1.2rem;
    }

    .contact-details h3 {
        font-size: 1.5rem;
    }

    .contact-phone, .contact-hours {
        font-size: 1rem;
    }
}

/****个人调整******/
.logo{
    width: 170px;
    height: 80px;
    background-size: contain;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
}
.logo h1{
    display:none;
}   
.logo p{
    display:none;
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #fff;
}

/* Ace Physician Section */
.ace-physician {
    padding: 5rem 0;
    background-color: white;
}

.physician-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 3rem 10rem;
    text-align: left;
    background-image: url('../images/doctor-swq.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.physician-header{
    width: 528px;
    height: 135px;
    background-image: url(../images/physician-header.png);
    background-size: 100% 100%;
    background-position: center;
    margin-bottom: 100px;
}
.physician-container h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.physician-container h3 {
    font-size: 50px;
    color: #4a3f36;
    margin-bottom: 3rem;
}

.physician-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.physician-info {
    flex: 1;
    text-align: left;
}

.physician-info h4 {
    font-size: 36px;
    color: #4a3f36;
    margin-bottom: 0.5rem;
}

.physician-title {
    font-size: 24px;
    color: #4a3f36;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    display: inline-block;
    /* background-color: #c5a993; */
    height: 66px;
    width: 176px;
    background-image: url(../images/specialty-tag.png);
    background-size: 100% 100%;
    background-position: center;
    color: white;
    padding: 0 1.5rem;
    line-height: 56px;
    /* border-radius: 25px; */
    margin-bottom: 1.5rem;
    font-size: 18px;
    box-sizing: border-box;
    text-align: center;
}

.specialty-list {
    display: flex;
    gap: 2rem;
}

.specialty-list ul {
    list-style-type: none;
    padding: 0;
}

.specialty-list li {
    color: #4a3f36;
    margin-bottom: 0.8rem;
    font-size: 16px;
    position: relative;
    padding-left: 1.5rem;
}

.specialty-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c5a993;
}

.physician-image {
    flex: 1;
}

.physician-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Branch Stores Section */
.branch-stores {
    padding: 5rem 0;
    /* background-color: #f0eeeb; */
    background-image: url('../images/map-texture.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stores-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 10rem;
    text-align: left;

}

.stores-container h2 {
    font-size: 40px;
    color: #4a3f36;
    margin-bottom: 1rem;
}

.stores-container h3 {
    font-size: 50px;
    color: #4a3f36;
    margin-bottom: 3rem;
}

.stores-map {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 620px;
}
.number{
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.no1{
    background-image: url('../images/no1.png');
}   
.no2{
    background-image: url('../images/no2.png');
}
.no3{
    background-image: url('../images/no3.png');
}
.no4{
    background-image: url('../images/no4.png');
}
.no5{
    background-image: url('../images/no5.png');
}
.no6{
    background-image: url('../images/no6.png');
}
.store-btn {
    padding: 0.8rem 1.5rem;
    background-color: white;
    color: #4a3f36;
    border: 1px solid #c5a993;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    width: 280px;
    display: flex;
}

.store-btn:hover {
    background-color: #c5a993;
    color: white;
}

.map-container {
    width: 100%;
    /* height: 400px; */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Call to Action Section */
.call-to-action {
    padding: 4rem 0;
    background-color: #3a302a;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-content h3 {
    font-size: 32px;
    color: #d3c1b4;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 24px;
    color: #d3c1b4;
}

.cta-qrcode {
    flex: 0 0 200px;
}

.cta-qrcode img {
    width: 100%;
    height: auto;
    /* border: 2px solid #c5a993; */
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .stores-banner {
        height: 300px;
        /* margin-top: 60px; */
    }

    .stores-banner h1 {
        font-size: 2rem;
    }

    .stores-banner h2 {
        font-size: 1.5rem;
    }

    .store-header {
        flex-direction: column;
        gap: 2rem;
    }

    .store-title, .store-description {
        flex: 1;
        width: 100%;
    }

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

@media (max-width: 480px) {
    .stores-banner h1 {
        font-size: 2rem;
    }

    .stores-banner h2 {
        font-size: 1.2rem;
    }

    .communication-header h2 {
        font-size: 2rem;
    }

    .communication-header h3 {
        font-size: 1.2rem;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-qrcode {
        flex: 0 0 150px;
    }
}

/* Image Gallery Section */
.image-gallery {
    padding: 0;
    background-color: white;
    width: 100%;
    overflow: hidden;
}

.gallery-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 0;
}

.gallery-item {
    position: relative;
    width: 33.333%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover .image-overlay {
    opacity: 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        gap: 0;
    }

    .gallery-item {
        width: 100%;
    }
}

/* 医生信息部分 */
.doctor-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 300;
}

.section-subtitle {
    font-size: 24px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

/* 医生个人资料 */
.doctor-profile {
    margin-top: 40px;
    background-image: url('../images/doctor-profile.jpg');
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position-y: -190px;
    padding-top: 240px;
    background-repeat: no-repeat;
}

.doctor-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
   margin: 0 auto;
}

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

.doctor-text h3 {
    font-size: 32px;
    color: #261508;
    margin-bottom: 10px;
}

.hospital {
    font-size: 18px;
    color: #261508;
    margin-bottom: 30px;
}

.expertise {
    margin-bottom: 30px;
}

.expertise h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    background-image: url('../images/expertise-bg.png');
    background-size: 100% 100%;
    background-position: center;
    width: 180px;
    height: 66px;
    text-align: center;
    line-height: 52px;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 400;
}

.expertise ul {
    list-style: none;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    /* gap: 15px; */
}

.expertise li {
    color: #806A59;
    position: relative;
    padding-left: 20px;
}

.expertise li:before {
    content: "•";
    color: #c0a16b;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.experience {
    color: #666;
}

.exp-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #806A59;
    width: 240px;
}

/* 医生照片 */
.doctor-image {
    position: relative;
    width: 400px;
}

.doctor-image img {
    width: 100%;
    border-radius: 10px;
}

.ace-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
}

.ace-badge img {
    width: 100%;
    height: 100%;
}

/* 认证信息 */
.certifications {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    /* background-color: #f8f8f8; */
    padding: 30px;
    border-radius: 10px;
}

.cert-item {
    flex: 1;
    text-align: center;
    padding: 27px;
    background-image: url('../images/cert-bg.png');
    background-size: 100% 100%;
    background-position: center;
    width: 345px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cert-item-img{
    width: 45px;
    height: 55px;
    margin-right: 20px;
    background-image: url('../images/cert-item-img.png');
    background-size: 100% 100%;
    /* background-position: center; */
    /* margin-bottom: 15px; */
}
/* .cert-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
} */

.cert-item p {
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    width: 144px;
    text-align: left;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .doctor-details {
        flex-direction: column;
    }
    
    .doctor-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .certifications {
        flex-wrap: wrap;
    }
    
    .cert-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100vw;
        background: #fff;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 0;
        margin: 0;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        margin: 0;
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-links li a {
        display: block;
        padding: 16px 0;
        color: #333;
        font-size: 18px;
        text-decoration: none;
    }
    .mobile-menu {
        display: block;
        cursor: pointer;
        font-size: 28px;
        color: #333;
    }
    .navbar .nav-links {
        position: absolute;
        right: 0;
        left: 0;
        background: #fff;
    }
}

.mobile-menu {
    display: none;
}
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}

/* 轮播图样式，仅about页面story-carousel使用 */
.story-carousel {
    position: relative;
    width: 100%;
    height: 720px;
    margin: 83px auto 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
}
.story-carousel .carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.story-carousel .carousel-img {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}
.story-carousel .carousel-img.active {
    opacity: 1;
    z-index: 2;
}
.story-carousel .carousel-controls {
    position: absolute;
    right: 240px;
    bottom: 16px;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.story-carousel .carousel-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #CCB5A3;
    cursor: pointer;
    outline: none;
    /* transition: background 0.3s, border 0.3s; */
    color: #fff;
    margin: 0 10px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
}
.story-carousel .carousel-btn.active {
    background: #664F3D;
    /* border-color: #b69175; */
}
.carousel-img1{
    background-image: url('../images/carousel1.jpg');
    background-size: cover;
    background-position: center;
}
.carousel-img2{
    background-image: url('../images/carousel2.jpg');
    background-size: cover;
    background-position: center; 
}
.carousel-img2 .carousel-img-content-title{
    background-image: url('../images/carousel-img-content-title2.png');
}
.carousel-img-content{
    width: 530px;
    color: #fff;
    margin-left: 240px;
}
.carousel-img-content p{
   margin-bottom: 50px;
}
.carousel-img-content-title{
    background-image: url('../images/carousel-img-content-title.png');
    background-size: 100% 100%;
    background-position: center;
    width: 501px;
    height: 36px;
    margin-bottom: 50px;
    margin-top: 143px;
}
.carousel-img-content-text{
    width: 239px;
    height: 48px;
    background: linear-gradient(to right, #EED7C0, #BA9579);
    border-radius: 24px;
    line-height: 48px;
    color: #46270F;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}
@media (max-width: 600px) {
    .story-carousel {
        width: 98vw;
        height: 44vw;
        min-height: 160px;
        max-width: 100%;
    }
}

/* 移动端全局适配优化 */
@media (max-width: 750px) {
    body {
        font-size: 15px;
    }
    .nav-container, .profile-container, .about-container, .history-container, .partners-container, .stores-container, .service-content-wrapper, .doctor-details, .form-container {
        max-width: 100vw;
        padding: 0 10px !important;
        box-sizing: border-box;
    }
    .about-container, .history-container, .partners-container, .stores-container {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .about-content, .about-image, .history-content, .partner-grid, .store-header, .store-description, .profile-content, .profile-image {
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .about-image img, .profile-image img, .story-image img, .doctor-image img, .partner-item img, .store-image-img, .map-container img, .cta-qrcode img {
        width: 100% !important;
        height: auto !important;
        max-width: 100vw !important;
    }
    .story-content, .history-content, .partners-container, .doctor-details {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: flex-start !important;
    }
    .story-text, .about-company-text, .life-beauty-text, .service-description, .event, .year {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 16px !important;
        padding: 0 !important;
    }
    .story-carousel {
        width: 100vw !important;
        height: 220px !important;
        min-height: 120px !important;
        margin: 32px 0 0 0 !important;
        border-radius: 0 !important;
    }
    .carousel-img-content {
        width: 90vw !important;
        margin-left: 0 !important;
        font-size: 15px !important;
    }
    .carousel-img-content-title, .carousel-img-content-text {
        width: 80vw !important;
        min-width: 0 !important;
        font-size: 18px !important;
        margin: 20px 0 !important;
    }
    .story-carousel .carousel-controls {
        right: 10px !important;
        left: 10px !important;
        bottom: 10px !important;
        gap: 6px !important;
    }
    .story-carousel .carousel-btn {
        width: 18px !important;
        height: 18px !important;
        margin: 0 4px !important;
    }
    .partner-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    .partner-item {
        width: 100% !important;
        height: auto !important;
    }
    .service-tabs, .store-buttons {
        /* flex-direction: column !important; */
        align-items: stretch !important;
        gap: 20px!important;
    }
    .service-tabs .tab, .store-btn {
        font-size: 16px !important;
        padding: 10px !important;
        /* width: 100% !important; */
        min-width: 0 !important;
        margin: 0;
    }
    .service-panel-content {
        padding: 2rem !important;
        width: 100% !important;
        font-size: 15px !important;
    }
    .content-panel p {
        width: 100% !important;
        font-size: 15px !important;
    }
    .doctor-info-section, .doctor-details, .doctor-text, .certifications {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    .cert-item {
        width: 100% !important;
        min-width: 0 !important;
        padding: 10px !important;
    }
    .cta-container {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    .cta-content, .cta-qrcode {
        width: 100% !important;
        margin: 0 auto !important;
    }
    /* .map-container {
        height: 200px !important;
        min-height: 120px !important;
    } */
    .footer-content {
        padding: 0 10px !important;
    }
}
/* @media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    .story-carousel {
        height: 120px !important;
    }
    .carousel-img-content, .carousel-img-content-title, .carousel-img-content-text {
        font-size: 13px !important;
        width: 95vw !important;
        margin: 10px 0 !important;
    }
    .service-panel-content {
        padding: 1rem !important;
    }
    .map-container {
        height: 120px !important;
    }
    .cta-qrcode img {
        width: 100px !important;
        height: 100px !important;
    }
} */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 750px) {
  .ace-physician {
    background: #fff;
    padding: 2rem 0 0rem 0;
  }
  .ace-physician .physician-container {
    background: none !important;
    box-shadow: none;
    padding: 0 0 2rem 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ace-physician .physician-header {
    width: 100%;
    background: none;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .ace-physician .physician-header::before {
    content: 'ACE PHYSICIAN';
    display: block;
    font-size: 2.1rem;
    color: #4a3f36;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .ace-physician .physician-header::after {
    content: '王牌医师 · 技卓誉扬';
    display: block;
    font-size: 1.3rem;
    color: #8c6239;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }
  .ace-physician .physician-content {
    flex-direction: column !important;
    background-image: url('../images/physician-content-doctor.jpg') !important;
    align-items: center;
    gap: 0;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    /* background: #fff; */
    /* box-shadow: 0 2px 12px rgba(0,0,0,0.04); */
    /* border-radius: 18px; */
    padding: 1.5rem 1rem 0 1rem;
    margin-bottom: 0rem;
    width: 100%;
    /* max-width: 400px; */
  }
  .ace-physician .physician-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ace-physician .physician-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .ace-physician .physician-info {
    text-align: center;
    margin: 0 auto;
    padding: 0;
    padding-top: 477px;
  }
  .ace-physician .physician-info h4 {
    font-size: 1.5rem;
    color: #4a3f36;
    margin-bottom: 0.2rem;
    font-weight: 600;
  }
  .ace-physician .physician-title {
    font-size: 1.1rem;
    color: #8c6239;
    margin-bottom: 1.2rem;
    font-weight: 400;
  }
  .ace-physician .specialty-tag {
    display: inline-block;
    background: #b69175;
    color: #fff;
    border-radius: 18px;
    padding: 0.3rem 1.2rem;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    height: auto;
    width: auto;
    line-height: 2.2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  }
  .ace-physician .specialty-list {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.2rem;
    margin-bottom: 0.5rem;
  }
  .ace-physician .specialty-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
    min-width: 120px;
  }
  .ace-physician .specialty-list li {
    color: #4a3f36;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    padding-left: 0;
    position: relative;
    text-align: left;
  }
  .ace-physician .specialty-list li::before {
    content: '•';
    color: #b69175;
    margin-right: 0.5em;
    font-size: 1.1em;
    position: static;
  }
/* } 

@media (max-width: 750px) { */
  .branch-stores {
    background: #f7f7f7;
   
    padding: 2.5rem 0 2.5rem 0;
  }
  .branch-stores .stores-container {
    padding: 0 0.5rem !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .branch-stores .stores-header {
    width: 100%;
    max-width: 100vw;
    height: auto;
    background: none;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .branch-stores .stores-header::before {
    content: 'BRANCH STORES';
    display: block;
    font-size: 2.1rem;
    color: #4a3f36;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
  }
  .branch-stores .stores-header::after {
    content: '多店直营 · 诚邀体验';
    display: block;
    font-size: 1.3rem;
    color: #8c6239;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-align: center;
  }
  .branch-stores .stores-map {
    /* background-image: url('../images/branch-stores-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    width: 100%;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .map-container{
    background-image: url('../images/branch-stores-bg.jpg');
    background-size: 100% 100% ;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    margin-top: -439px;
    margin-bottom: 200px;

  }
  /* .branch-stores .map-container {
    width: 100vw !important;
    max-width: 95vw !important;
    height: auto !important;
    min-height: 160px !important;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    background: #fff;
  }
  .branch-stores .map-container img {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 16px;
  } */
  .branch-stores .store-buttons {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    top: 208px;
  }
  .branch-stores .store-btn {
    width: 100%;
    min-width: 0;
    /* max-width: 180px; */
    font-size: 14px !important;
    padding: 0.7rem 0.5rem;
    border-radius: 24px;
    border: 1.5px solid #b69175;
    background: #fff;
    color: #4a3f36;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: background 0.2s, color 0.2s;
    gap: 0.5rem;
  }
  .branch-stores .store-btn .number {
    margin-right: 0.5rem;
    width: 24px;
    height: 24px;
    background-size: contain !important;
  }
  .branch-stores .store-btn:hover {
    background: #b69175;
    color: #fff;
    border-color: #b69175;
  }
} 
.mobile-imgs-wrapper img{
    width:100vw;
    max-width:480px;
    object-fit:cover;
}