      /* styles.css - 美化后的CSS文件 */

/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
    text-decoration: none;
}

:root {
    --primary: #E53935;  /* 鲜红色主题 */
    --secondary: #C62828;
    --accent: #F44336;
    --light: #FFEBEE;
    --dark: #B71C1C;
    --success: #E53935;
}

body {
    background-color: var(--light);
    color: #333;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 头部样式 */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
    color: #FFF;
    font-size: 1.2rem;
}

/* 导航样式 */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 15px;
}

.desktop-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.desktop-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 99;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-nav.active {
    display: block;
    max-height: 500px;
}

.mobile-nav ul {
    list-style: none;
    padding: 10px 0;
}

.mobile-nav ul li {
    padding: 8px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.contact-btn {
    background-color: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--accent);
    white-space: nowrap;
    font-size: 0.85rem;
}

.contact-btn:hover {
    background-color: transparent;
    color: white;
}

/* 轮播图样式 */
.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item:nth-child(1) {
    background-image: url('https://www.zdfdc.com/uploads/190315/1-1Z3151J420K6.jpg');
}

.carousel-item:nth-child(2) {
    background-image: url('https://www.zdfdc.com/uploads/190315/1-1Z3151J43XQ.jpg');
}

.carousel-item:nth-child(3) {
    background-image: url('https://www.zdfdc.com/uploads/190315/1-1Z3151J4021K.jpg');
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.carousel-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-overlay p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: none;
}

.carousel-control.prev {
    left: 15px;
}

.carousel-control.next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.carousel-indicator.active {
    background-color: white;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(rgba(229, 57, 53, 0.85), rgba(198, 40, 40, 0.9));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.feature-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: white;
}

.feature-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.85rem;
}

/* 服务流程 */
.process-section {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    width: 150px;
    margin: 0 auto 20px;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -70px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.step-icon {
    width: 65px;
    height: 65px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border: 2px solid var(--secondary);
}

.step-icon i {
    font-size: 1.6rem;
    color: var(--primary);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.step p {
    font-size: 0.85rem;
}

/* 核心服务 */
.services-section {
    padding: 60px 0;
    background-color: var(--light);
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.15);
}

.service-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-content ul {
    list-style-type: none;
    margin: 15px 0;
}

.service-content ul li {
    padding: 6px 0;
    border-bottom: 1px dashed #f8c8c8;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.service-content ul li i {
    color: rgb(8, 154, 30);
    margin-right: 8px;
    font-size: 0.9rem;
}

/* 公司介绍 */
.about-section {
    padding: 60px 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: 250px;
    background: url('https://www.zdfdc.com/uploads/TP/pz7.jpg') center/cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.15);
}

.about-text {
    width: 100%;
    max-width: 800px;
}

.about-text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* 合作医院 */
.hospitals-section {
    padding: 60px 0;
    background-color: var(--light);
}

.hospitals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.hospital-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.hospital-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.1);
}

.hospital-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.hospital-item h3 {
    font-size: 1rem;
}

/* 常见问题 */
.faq-section {
    padding: 60px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f8c8c8;
    padding: 15px 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-top: 10px;
    color: #049c28;
    line-height: 1.7;
    display: none;
    font-size: 0.9rem;
}

.faq-answer ul, 
.faq-answer ol {
    padding-left: 20px;
    margin: 8px 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* 资讯中心 */
.news-section {
    padding: 60px 0;
    background-color: var(--light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.15);
}

.news-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-content-wrapper {
    display: flex;
    padding: 18px;
    gap: 15px;
}

.news-image {
    flex: 0 0 40%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.news-header h3 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.3;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 0.8rem;
    color: #E53935;
    background: rgba(229, 57, 53, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    flex-shrink: 0;
}

.news-excerpt p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 护工展示 */
.workers-section {
    padding: 60px 0;
    background-color: white;
}

.workers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
}

.worker-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.08);
    transition: all 0.3s;
    padding: 18px;
}

.worker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.15);
}

.worker-content {
    display: flex;
    flex-direction: column;
}

.worker-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.worker-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
    flex-shrink: 0;
    border: 3px solid var(--light);
}

.worker-info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.worker-info h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-right: 10px;
    margin-bottom: 0;
}

.worker-tag {
    display: inline-block;
    background-color: var(--light);
    color: rgb(8, 173, 32);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
}

.worker-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-left: auto;
}

.worker-badge {
    background-color: rgb(247, 178, 5);
    color: white;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: bold;
}

.worker-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    padding-left: 80px;
}

/* 客户评价 */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
    flex-shrink: 0;
    border: 3px solid var(--light);
}

.client-info h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    position: relative;
    padding-top: 15px;
}

.testimonial-content::before {
    content: """;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
}

/* 页脚 */
footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-column {
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-column p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: #FFB74D;
    padding-left: 5px;
}

.footer-column ul li i {
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3d0000;
    color: #FFD1A4;
    font-size: 0.8rem;
}

/* 气泡特效 */
.bubble {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.4);
    z-index: -1;
    pointer-events: none;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) translateX(20px) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-60px) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-btn {
        display: block;
    }
    
    .contact-btn {
        margin-left: auto;
        margin-right: 10px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .process-steps {
        justify-content: center;
    }
    
    .carousel {
        height: 350px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        padding: 10px;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .services,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel {
        height: 300px;
    }
    
    .worker-header {
        flex-wrap: wrap;
    }
    
    .worker-badges {
        margin-left: 0;
        width: 100%;
        margin-top: 5px;
    }
    
    .worker-description {
        padding-left: 0;
        margin-top: 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    header {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    .mobile-nav-btn {
        font-size: 1.2rem;
    }
    
    .mobile-nav {
        top: 50px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-item i {
        font-size: 1.8rem;
    }
    
    .feature-item h3 {
        font-size: 0.95rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .hospitals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hospital-item h3 {
        font-size: 0.9rem;
    }
    
    .carousel {
        height: 250px;
    }
    
    .worker-img {
        width: 55px;
        height: 55px;
    }
    
    .worker-info h3 {
        font-size: 1rem;
    }
    
    .worker-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .news-content-wrapper {
        flex-direction: row;
        padding: 15px;
        gap: 12px;
    }
    
    .news-image {
        flex: 0 0 40%;
        aspect-ratio: 4/3;
    }
    
    .news-content {
        flex: 0 0 60%;
    }
    
    .news-header {
        flex-direction: column;
    }
    
    .news-date {
        margin-left: 0;
        margin-top: 5px;
        align-self: flex-start;
    }
    
    .news-header h3 {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }
    
    .news-excerpt p {
        font-size: 0.85rem;
    }
     }
    
     
        .gongzuo {
            width: 100%;
            margin: 1em auto;
          
        }
        
        .wenan {
            margin: 1rem 0.7rem;
            text-align: center;
        }
        
        .wenan-title {
            background: #08c138;
            color: #fff;
            font-size: 20px;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .gelitu {
            display: block;
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .fuwu-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
          padding: 12px;
        }
        
        .fuwu-item {
            background: #fff;
            border: 1px solid #e68306;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .fuwu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .fuwu-img {
            width: 100%;
            height: 180px;
            object-fit: cover;           
         
        }
        
        .fuwu-title {
            background: #08c138;
            color: #fff;
            text-align: center;
            padding: 8px;
            font-size: 18px;
            font-weight: bold;
        }
        
        .fuwu-desc {
            padding: 15px;
            color: #09942d;
            flex-grow: 1;
            overflow: scroll;
            line-height: 1.5;
        }
        
        /* 平板设备样式 */
        @media (max-width: 992px) {
            .fuwu-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* 移动设备样式 */
        @media (max-width: 768px) {
            .fuwu-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
            
            .wenan-title {
                font-size: 18px;
            }
        }
        
        /* 小屏幕手机样式 */
        @media (max-width: 576px) {
            .fuwu-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2em .8em;
            }
            
            .wenan-title {
                font-size: 16px;
                padding:  8px;
            }
            
            .fuwu-desc {
                padding: 12px;
                font-size: 12px;
                height: 70px;
                overflow-y: scroll;
                scrollbar-width: thin;
                scrollbar-color: #08c138 #f0f0f0;
            }
            
            .fuwu-desc::-webkit-scrollbar {
                width: 5px;
            }
            
            .fuwu-desc::-webkit-scrollbar-track {
                background: #f0f0f0;
                border-radius: 10px;
            }
            
            .fuwu-desc::-webkit-scrollbar-thumb {
                background: #08c138;
                border-radius: 10px;
            }
            
            .fuwu-img {
                height: 50%;
            }
        }
        
        