/* ===================== 第三段：瑞丽医美完整页面样式 ===================== */
        /* 全局基础样式（整合所有全局重置） */
        body {
            margin: 0;
            padding: 0;
            background-color: #fff;
            width: 100%;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            direction: ltr;
            line-height: 1.2;
        }

        /* 头部区域样式（仅保留非导航部分） */
        .main-content {
            width: 100%;
            position: relative;
        }

        .sub-nav {
            width: 80%;
            background-color: #f5f5f5;
            z-index: 90;
			margin:50px auto 0 auto;
        }

        .sub-nav-container {
            width: 100%;
            max-width: 1520px;
            margin: 0 auto;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: stretch;
            -moz-box-pack: stretch;
            -ms-flex-pack: stretch;
            -webkit-justify-content: stretch;
            justify-content: stretch;
            flex-direction: row;
            flex-wrap: nowrap;
        }

        .sub-nav-item {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
            text-align: center;
            padding: 12px 0;
            text-decoration: none;
            color: #47d1c3;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            border-right: 1px solid #e0e0e0;
            display: block;
            position: relative;
            zoom: 1;
            white-space: nowrap;
        }

        .sub-nav-item:last-child {
            border-right: none;
        }

        .sub-nav-item.active {
            color: #fff; 
            background-color: #47d1c3;
        }

        .sub-nav-item:hover {
            color: #fff;
            background-color: #47d1c3;
        }

        /* 走马灯区域样式 */
        .honor-carousel-section {
            min-width: 100%;
            padding: 50px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            position: relative;
            margin: 0;
            left: 0;
            right: 0;
        }

        .carousel-title-container {
            width: 80%; 
            max-width: 1520px;
            margin: 0 auto;
            padding:0 10px 0 30px; 
            box-sizing: border-box;
            text-align: left; 
            border: none;
        }
        
        .news-title {
            display: flex; 
            flex-direction: column; 
            align-items: flex-start; 
            gap: 4px; 
            line-height: 1.2; 
        }
        
        .news-title .main-title {
            font-size: 36px; 
            font-weight: 500; 
            color: #47d1c3; 
            margin: 0;
            line-height: 1;
            letter-spacing: 1px; 
        }
        
        .news-title .sub-title {
            font-size: 25px; 
            font-weight: 400;
            color: #333333; 
            margin-top: 15px;
            line-height: 1;
            padding-bottom: 0;
            letter-spacing: 0.5px; 
        }

        .carousel-container {
            width: calc(527px * 4); 
            height: 476px;          
            margin: 0 auto 20px;    
            overflow: hidden;                  
            position: relative;                
            padding: 0;
            box-sizing: border-box;
        }

        .carousel-list {
            display: flex;                     
            height: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
            transition: transform 0.5s ease;   
        }

        .carousel-item {
            width: 527px;           
            height: 476px;          
            flex-shrink: 0;        
            display: flex;          
        }

        .carousel-img-wrapper {
            width: 100%;            
            height: 100%;
            max-width:527px;        
            max-height:476px;       
        }

        .carousel-img-wrapper img {
            width: 100%;
            height: 100%;
            max-width: 527px;       
            max-height: 476px;      
            object-fit: cover;     
            display: block;         
        }

        .carousel-control-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 80%;            
            max-width: 600px;      
            margin: 0 auto;        
            z-index: 10;
            padding: 10px 0 0; 
            box-sizing: border-box;
        }

        .carousel-btn {
            border: none; 
            background: transparent; 
            padding: 0; 
            margin: 0; 
            cursor: pointer; 
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background-color: transparent;          
        }

        .progress-bar {
            flex: 1; 
            height: 2px;
            background-color: #e0e0e0;         
            margin: 0 15px; 
            position: relative;
            overflow: hidden;
            max-width: 800px; 
        }

        .progress-indicator {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 20%;
            background-color: #47d1c3;         
            transition: left 0.5s ease;        
        }

        .carousel-indicators {
            display: none;
        }

        