/* CSS Document */

/* 业务概览 - 响应式布局样式 */
        .ywjj-container {
            width: 80%;
            max-width: 1520px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            padding: 50px 0;
        }
        .ywjj-image-section {
            flex: 0 0 47%;
            max-width: 47%;
            min-width: 300px;
            min-height: 500px;
        }
        .ywjj-image-section img {
            width: 100%;
            height: 100%;
			max-height:722px;
			max-width:696px;
            object-fit: cover;
        }
        .ywjj-text-section {
            flex: 0 0 50%;
            max-width: 50%;
            min-width: 300px;
            padding:0 30px;
            color: #333;
            line-height: 1.8;
            width: 100%;
        }
        .ywjj-text-section h2 {
            font-size: clamp(24px, 3vw, 36px);
			font-size:36px;
            font-weight: 500;
            color: #47d1c3;
            margin: 0;
            line-height: 1;
            letter-spacing: 1px;
        }
        .ywjj-text-section h3 {
            font-size: clamp(18px, 2vw, 25px);
			font-size:25px;
            font-weight: 400;
            color: #333333;
            margin: 0;
            line-height: 1;
            letter-spacing: 0.5px;
            margin:15px 0 35px 0;
        }
        .ywjj-text-section p {
            width: 100%;
            font-size: clamp(12px, 1.5vw, 14px);
			font-size:14px;
            margin-bottom: 15px;
            text-align: justify;
        }
        /* 业务概览小屏幕适配 */
        @media (max-width: 800px) {
            .ywjj-image-section, .ywjj-text-section {
                flex: 1 1 100%;
                max-width: 100%;
                min-width: unset;
            }
            .ywjj-image-section {
                min-height: 300px;
            }
            .ywjj-text-section {
                padding: 20px 10px;
            }
        }

        /* 走马灯相关样式 */
        body {
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        .carousel-title-container {
            width: 80%;
			max-width: 1520px;
            margin: 0 auto;
            padding: 50px 0;
            box-sizing: border-box;
            text-align: left;
        }
        .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: 20px; 
            font-weight: 400;
            color: #333333; 
            margin: 0;
            line-height: 1;
            padding-bottom: 0;
            letter-spacing: 0.5px; 
        }
        .carousel-container {
            width: calc(782px * 3);
            height: 475px;          
            margin: 0 auto 20px;
            overflow: hidden;                  
            position: relative;                
            padding: 0;
        }
        .carousel-list {
            display: flex;                     
            height: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
            transition: transform 0.5s ease;   
        }
        .carousel-item {
            width: 782px;           
            height: 475px;          
            flex-shrink: 0;        
            display: flex;          
        }
        .carousel-img-wrapper {
            width: 47%;             
            height: 100%;
			max-width:367px;
			max-height:475px;           
        }
        .carousel-img-wrapper img {
            width: 100%;
            height: 100%;
            max-width: 782px;       
            max-height: 475px;      
            object-fit: cover;     
            display: block;         
        }
        .carousel-text-wrapper {
            width: 53%;             
            padding: 40px 30px;
            background: #f5f5f5; 
            display: flex;
            flex-direction: column;
            justify-content: flex-start; 
            box-sizing: border-box; 
            overflow-y: auto;       
            max-height: 475px;      
            scrollbar-width: none;
        }
        .carousel-text-wrapper::-webkit-scrollbar {
            display: none;
        }
        .text-title {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0px;
            margin: 0 0 20px 0;
        }
        .title-number {
            font-size: 20px;
            font-weight: 300;
            color: #47d1c3;
            line-height: 1;
            display: block;
        }
        .title-text {
            font-size: 24px;
            font-weight: 400;
            color: #333333;
            line-height: 1.2;
            letter-spacing: 0.3px;
            display: block;
			padding-left:20px;
        }
        .carousel-text-wrapper p {
            font-size: 14px;
            line-height: 1.8;
            color: #666666;
            margin: 0;
            text-align: left;
            letter-spacing: 0.5px;
            text-indent: 0;
        }
        .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 40px;
        }
        .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: 25%;
            background-color: #47d1c3;         
            transition: left 0.5s ease;        
        }
        .carousel-indicators {
            display: none;
        }

        /* 医疗美容管理咨询+器械产品销售样式 */
        .business-wrapper {
            width: 100%;
            min-width: 320px;
            padding: clamp(30px, 5vw, 50px) 0;
            background-color: #ffffff;
			padding-bottom:50px;
        }

        .ywjj2-container {
            width: 80%;
            max-width: 1520px;
            margin: 0 auto 60px;
            padding: 0;
        }
        
        .ywjj2-container:last-child {
            margin-bottom: 0;
        }

        .ywjj2-title-english {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 500;
            color: #47d1c3;
            margin: 0;
            line-height: 1;
            letter-spacing: 1px;
        }

        .ywjj2-title-chinese {
            font-size: clamp(18px, 2vw, 25px);
            font-weight: 400;
            color: #333333;
            margin: 0;
            line-height: 1;
            letter-spacing: 0.5px;
            margin:15px 0 55px 0;
        }

        .ywjj2-description {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #666;
            line-height: 1.8;
            margin-bottom:25px;
            text-align: justify;
        }

        .ywjj2-image-box {
            width: 100%;
            overflow: hidden;
            border-radius: 4px;
            margin-top: 15px;
        }

        .ywjj2-image-box img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        

        @media (max-width: 768px) {
            .business-wrapper {
                padding: 20px 0;
            }
            .ywjj2-container {
                width: 90%;
                margin: 0 auto 40px;
            }
            .ywjj2-title-chinese {
                margin: 15px 0 35px 0;
            }
            .ywjj2-description {
                line-height: 1.7;
            }
        }