        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        }
        
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--gray-dark);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        

        /* 主内容区域 */
        main {
            margin-top: 10px;
        }
 		
        section {
            padding: var(--spacing-xl) 5%;
            max-width: 1400px;
            margin: 0 auto;
			            --primary-color: #ea6897; 
            --primary-light: #e8f7f4;
            --primary-dark: #4a9e8d;
            --gray-light: #f8f9fa;
            --gray-medium: #e9ecef;
            --gray-dark: #495057;
            --white: #ffffff;
            --black: #212529;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 32px;
            /* --spacing-lg: 64px; */
            --spacing-xl: 30px;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }
        
        .section-header {
            text-align: center;
			    padding-top: 20px;
            margin-bottom: var(--spacing-lg);
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #d81b60;
            margin-bottom: var(--spacing-sm);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #f48fb1, #d81b60);
        }
        
        .section-subtitle {
            font-size: 1.3rem;
    color: #8d6e7e;
    margin-top: 20px;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeIn 1.2s ease;
        }
        
 
        
        /* 优势展示 */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
			            --primary-color: #6bc9b7; /* 薄荷绿 */
            --primary-light: #e8f7f4;
            --primary-dark: #4a9e8d;
            --gray-light: #f8f9fa;
            --gray-medium: #e9ecef;
            --gray-dark: #d81b60;
            --white: #ffffff;
            --black: #212529;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 32px;
            --spacing-lg: 64px;
            --spacing-xl: 30px;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #d81b60;
            margin-bottom: var(--spacing-sm);
        }
        
        .feature-title {
            font-size: 1.25rem;
            margin-bottom: var(--spacing-xs);
            color: #d81b60;
        }
        
        
        /* 客户案例 - 优化部分 */
        .testimonials-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        
        .testimonials-wrapper {
            position: relative;
            height: 300px;
            overflow: hidden;
        }
        
        .testimonials {
            display: flex;
            transition: transform 0.6s ease-in-out;
            height: 100%;
        }
        
        .testimonial-card {
            min-width: 100%;
            background: var(--white);
            padding: var(--spacing-md);
            box-shadow: var(--box-shadow);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: var(--spacing-sm);
            max-width: 700px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .client-info {
            font-weight: 500;
            color: #ea6897;
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: var(--spacing-md);
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray-medium);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .nav-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }
        
        .testimonial-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .testimonial-btn:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .prev-btn {
            left: 15px;
        }
        
        .next-btn {
            right: 15px;
        }
        
 
        
        /* 新闻区域 */
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
			            --primary-color: #6bc9b7; /* 薄荷绿 */
            --primary-light: #e8f7f4;
            --primary-dark: #4a9e8d;
            --gray-light: #f8f9fa;
            --gray-medium: #e9ecef;
            --gray-dark: #495057;
            --white: #ffffff;
            --black: #212529;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 32px;
            --spacing-lg: 64px;
            --spacing-xl: 30px;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }
        
        .news-column {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            box-shadow: var(--box-shadow);
        }
        
        .news-item {
            padding: var(--spacing-sm) 0;
            border-bottom: 1px solid var(--gray-medium);
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-title {
            font-weight: 500;
            margin-bottom: 4px;
			font-size: 18px;
        }
        .news-title a:hover{
			color:#ea6897;
			}
        .news-date {
            font-size: 0.85rem;
            color: #ea6897;
        }
        
 
        /* 响应式设计 */
        @media (max-width: 768px) {

            
            .section-title {
                font-size: 1.6rem;
            }
            
            section {
                padding: var(--spacing-lg) 5%;
            }
            
            .testimonial-btn {
                width: 35px;
                height: 35px;
            }
        }
        
        @media (max-width: 480px) {

            
            .section-title {
                font-size: 1.4rem;
            }
            
            .testimonial-content {
                font-size: 1rem;
            }
            
            .client-info {
                font-size: 0.95rem;
            }
        }
/*卡片式交互*/
        .containerka {
            display: flex;
            gap: 25px;
            width: 95%;
            max-width: 1400px;
            height: 70vh;
            padding: 0 10px;
        }
        
        .left-section {
            flex: 1;
            display: flex;
            gap: 25px;
            height: 100%;
        }
        
        .right-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
            height: 100%;
        }
        
        .left-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
            height: 100%;
        }
        
        .card {
            background: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(216, 27, 96, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(216, 27, 96, 0.25);
            z-index: 10;
        }
        
        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .card:hover .card-image {
            transform: scale(1.1);
        }
        
        .card-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            z-index: 2;
            color: white;
            pointer-events: none;
        }
        
        .card-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: white;
            text-shadow: 0 2px 8px rgba(0,0,0,0.6);
            transition: all 0.4s ease;
        }
        
        .card:hover .card-title {
            transform: scale(1.15);
            text-shadow: 0 4px 12px rgba(0,0,0,0.8);
        }
        
        .card-description {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            line-height: 1.5;
            max-width: 85%;
            text-shadow: 0 1px 4px rgba(0,0,0,0.5);
            transition: all 0.4s ease;
        }
        
        .card:hover .card-description {
            transform: scale(1.1);
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(216, 27, 96, 0.7) 0%, rgba(216, 27, 96, 0.3) 50%, transparent 100%);
            opacity: 0.7;
            transition: opacity 0.4s ease;
        }
        
        .card:hover .overlay {
            opacity: 0.9;
        }
        
        /*.btn {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            color: #d81b60;
            border: none;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0; 
            pointer-events: none;
            z-index: 3;
        }
        */
        .card:hover .btn {
            opacity: 1;
            pointer-events: auto;
            bottom: 30px;
        }
        
        .btn:hover {
            background: #fce4ec;
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        }
        
        .bottom-row {
            display: flex;
            gap: 25px;
            height: 50%;
        }
        
        .bottom-row .card {
            flex: 1;
        }
        

        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            color: #d81b60;
            font-size: 1.1rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
            background: #d81b60;
            color: white;
            box-shadow: 0 6px 12px rgba(216, 27, 96, 0.25);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 1100px) {
            .containerka {
                flex-direction: column;
                height: auto;
            }
            
            .bottom-row {
                flex-direction: column;
                height: auto;
            }
            
            .left-section, .right-section {
                height: auto;
            }
        }
/*旋转*/
        .body1 {
            background: linear-gradient(135deg, #ffeff3 0%, #ffe6ed 100%);
            height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            color: #5a3a4c;
        }
        .header3d {
            text-align: center;
            margin-bottom: 20px;
            max-width: 900px;
            padding: 0 20px;
            z-index: 10;
        }
        
        <!-- h2 { -->
            <!-- font-size: 3rem; -->
            <!-- margin-bottom: 10px; -->
            <!-- color: #d81b60; -->
            <!-- text-shadow: 3px 3px 6px rgba(0,0,0,0.1); -->
            <!-- position: relative; -->
            <!-- display: inline-block; -->
            <!-- <!-- animation: fadeInDown 1s ease; --> -->
        <!-- } -->
        
        <!-- h2:after { -->
            <!-- content: ''; -->
            <!-- position: absolute; -->
            <!-- bottom: -8px; -->
            <!-- left: 50%; -->
            <!-- transform: translateX(-50%); -->
            <!-- width: 120px; -->
            <!-- height: 4px; -->
            <!-- background: linear-gradient(to right, #f48fb1, #d81b60); -->
            <!-- border-radius: 2px; -->
        <!-- } -->
        
        .subtitle {
            font-size: 1.2rem;
            color: #8d6e7e;
            margin-top: 15px;
            font-weight: 300;
            line-height: 1.5;
            animation: fadeIn 1.2s ease;
        }
        
        .main-container {
            display: flex;
            width: 100%;
            height: calc(100vh - 150px);
            max-width: 1400px;
            position: relative;
        }
        
        .carousel-container {
            position: relative;
            width: 70%;
            height: 100%;
            perspective: 1200px;
            margin: 0 auto;
        }
        
        .carousel {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .team-card {
            position: absolute;
            width: 280px;
            height: 380px;
            left: 50%;
            top: 50%;
            margin-left: -160px;
            margin-top: -210px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(216, 27, 96, 0.25);
            transition: all 0.8s ease;
            background: white;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .team-image {
            width: 280px;
            height: 380px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .team-info {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            background: linear-gradient(to top, rgb(157 26 77 / 80%) 0%, rgba(216, 27, 96, 0.4) 50%, transparent 100%);
            color: white;
            text-align: center;
            z-index: 2;
            opacity: 1;
            transition: opacity 0.5s ease;
        }
        
        .team-title {
            font-size: 1.8rem;
            font-weight: 700;
			color: white;
            margin-bottom: 12px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
            transition: all 0.5s ease;
        }
        
        .team-description {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 15px;
            opacity: 0.9;
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
            transition: all 0.5s ease;
        }
        
        .team-stats {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 15px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }
        
        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 3px;
        }
        
        .stat-label {
            font-size: 0.8rem;
            opacity: 0.9;
        }
        
        .navigation {
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 10;
        }
        
        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            color: #d81b60;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .nav-btn:hover {
            background: #d81b60;
            color: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(216, 27, 96, 0.3);
        }
        
        .team-details-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: 30%;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
            z-index: 5;
        }
        
        .team-details-panel.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .detail-title {
            color: #d81b60;
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .detail-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #5a3a4c;
            margin-bottom: 20px;
        }
        
        .team-quote {
            font-style: italic;
            font-size: 1.1rem;
            padding: 15px;
            border-left: 4px solid #f8bbd0;
            margin: 20px 0;
            background: rgba(255, 245, 247, 0.7);
            border-radius: 0 15px 15px 0;
        }
        
        .team-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            max-width: 800px;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
        
        .category-btn {
            background: white;
            color: #d81b60;
            border: 2px solid #f8bbd0;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        
        .category-btn:hover, .category-btn.active {
            background: #d81b60;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(216, 27, 96, 0.25);
        }
        
        .footer {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: #8d6e7e;
            font-size: 0.9rem;
            z-index: 10;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: white;
            border-radius: 50%;
            color: #d81b60;
            font-size: 1rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
            background: #d81b60;
            color: white;
            box-shadow: 0 6px 12px rgba(216, 27, 96, 0.25);
        }
        
        .close-details {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background: #d81b60;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-details:hover {
            transform: rotate(90deg) scale(1.1);
            background: #b7154c;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 1100px) {
            .carousel-container {
                width: 100%;
            }
            
            .team-details-panel {
                display: none;
            }
            
            .team-card {
                width: 280px;
                height: 380px;
                margin-left: -140px;
                margin-top: -190px;
            }
 
        }
		
        /* 画廊容器样式 */
        .tu-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            padding: 0 30px; /* 整体版块左右边距30px */
        }
        
        /* 标题样式 */
        .tu-title {
            text-align: center;
            margin-bottom: 30px;
            color: #e94b7c;
            font-size: 28px;
            font-weight: bold;
        }
        
        /* 滚动区域样式 */
        .tu-scroll-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 20px;
        }
        .tu-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        /* 图片网格容器 */
        .tu-image-grid {
            display: flex;
            width: max-content;
            gap: 20px;
            transition: transform 0.3s ease;
        }
        
        /* 图片卡片样式 */
        .tu-image-card {
            width: 330px;
            border-radius: 12px;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 5px 15px rgba(233, 75, 124, 0.1);
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
        }
        .tu-image-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(233, 75, 124, 0.2);
        }
        
        /* 图片标题样式 - 调整为图片中间显示 */
        .tu-image-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 8px 15px;
            background-color: rgba(255, 255, 255, 0.7); /* 半透明白色背景 */
            color: #e94b7c;
            font-size: 26px;
            font-weight: 500;
            border-radius: 4px;
            white-space: nowrap;
            z-index: 10;
        }
        
        /* 图片样式 */
        .tu-image-container {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .tu-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .tu-image-card:hover .tu-image-container img {
            transform: scale(1.05);
        }
        
        /* 滑动控制按钮 */
        .tu-scroll-btn {
            position: absolute;
            top: 60%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            color: #e94b7c;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tu-scroll-btn:hover {
            background-color: white;
            color: #d33f66;
        }
        .tu-scroll-btn.prev {
            left: 40px; /* 调整左侧按钮位置，避免与边距重叠 */
        }
        .tu-scroll-btn.next {
            right: 40px; /* 调整右侧按钮位置，避免与边距重叠 */
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .tu-image-card {
                width: 250px;
            }
        }
        @media (max-width: 768px) {
            .tu-image-card {
                width: calc(50vw - 40px);
            }
            .tu-title {
                font-size: 24px;
            }
            .tu-scroll-btn.prev {
                left: 20px;
            }
            .tu-scroll-btn.next {
                right: 20px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            .tu-container {
                padding: 0 15px; /* 移动端适当减小边距 */
            }
            .tu-image-card {
                width: calc(50vw - 25px);
            }
            .tu-image-title {
                font-size: 14px;
                padding: 6px 12px;
            }
            .tu-image-container {
                height: 150px;
            }

            .tu-scroll-btn.next {
                right: 10px;
            }
        }