 
            /* Banner轮播区域 */
            .banner-section {
                border-radius: 20px;
                margin-bottom: 20px;
                position: relative;
                overflow: hidden;
            }

            .banner-slider {
                position: relative;
                width: 100%;
                height: 300px;
                overflow: hidden;
                border-radius: 20px;
            }
                @media (max-width: 1024px) {
               .banner-slider {
	             height: 150px;
                }
                }
            .banner-item {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 0.5s ease;
                display: block;
                cursor: pointer;
            }

            .banner-item.active {
                opacity: 1;
                z-index: 1;
            }

            .banner-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .banner-default {
                width: 100%;
                height: 300px;
                border-radius: 20px;
                overflow: hidden;
            }

            .banner-default img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

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

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

            .dot.active {
                width: 24px;
                border-radius: 5px;
                background: white;
            }

            .banner-stats {
                display: flex;
                justify-content: center;
                gap: 80px;
                margin-top: 20px;
                background: white;
                padding: 20px;
                border-radius: 12px;
                box-shadow: var(--shadow-hover);
            }

            .stat-item {
                text-align: center;
            }

            .stat-value {
                font-size: 36px;
                font-weight: 700;
                color: var(--primary);
            }

            .stat-label {
                font-size: 14px;
                color: var(--text-muted);
                margin-top: 5px;
            }

            /* 公告区域 */
            .announcement-section {
                background: white;
                border-radius: 12px;
                padding: 12px 20px;
                margin-bottom: 30px;
                box-shadow: var(--shadow-hover);
            }

            .announcement-content {
                display: flex;
                align-items: center;
                gap: 12px;
                color: var(--primary);
                font-size: 14px;
            }

            .announcement-content i {
                font-size: 18px;
            }

            .announcement-label {
                background: var(--primary);
                color: white;
                padding: 2px 10px;
                border-radius: 4px;
                font-size: 12px;
                font-weight: 500;
            }

            .announcement-scroll {
                flex: 1;
                height: 24px;
                overflow: hidden;
                position: relative;
            }

            .announcement-item {
                height: 24px;
                line-height: 24px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .announcement-text {
                color: var(--text);
            }

            .announcement-link {
                color: var(--primary);
                margin: 0 10px;
            }

            .announcement-link:hover {
                color: var(--primary-dark);
                text-decoration: underline;
            }

            .announcement-divider {
                color: #ccc;
                margin: 0 5px;
            }

            .no-announcement {
                color: var(--text-muted);
                font-size: 14px;
                flex: 1;
            }

            /* 宠物卡片 */
            .pets-section {
                margin-bottom: 40px;
                background: var(--bg-white);
                border-radius: var(--radius);
                box-shadow: var(--shadow-hover);
                padding: 30px 20px;
            }

         
@media (max-width: 768px){
.pets-section {
        padding: 20px;
                margin-bottom: 20px;
            }
 

}
            .section-more {
                font-size: 14px;
                color: var(--primary);
            }

            .pets-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 20px;
            }

            .pet-card {
                background: white;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: var(--shadow-hover);
                transition: all 0.3s;
            }

@media (max-width: 1024px) {
    .pet-card{
        width: 100%;
    }
}            
.pet-card:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-hover);
            }

            .pet-image-wrap {
                position: relative;
                height: 200px;
            }

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

            .gender-tag {
                position: absolute;
                top: 10px;
                right: 10px;
                width: 32px;
                height: 32px;
                background: rgba(0,0,0,0.5);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 14px;
            }

            .gender-tag.male {
                background: rgba(78, 205, 196, 0.9);
            }

            .gender-tag.female {
                background: rgba(255, 107, 107, 0.9);
            }

            .tag {
                position: absolute;
                top: 10px;
                left: 10px;
                padding: 4px 10px;
                border-radius: 4px;
                font-size: 12px;
                color: white;
            }

            .tag.vaccinated {
                background: #4ECDC4;
            }

            .tag.sterilized {
                background: #FF9800;
                left: 80px;
            }

            .pet-info {
                padding: 15px;
            }

            .pet-name {
                font-size: 18px;
                font-weight: 600;
                color: #333;
                margin-bottom: 10px;
            }

            .pet-meta {
                display: flex;
                gap: 15px;
                margin-bottom: 8px;
            }

            .meta-item {
                font-size: 13px;
                color: #666;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .pet-location {
                font-size: 13px;
                color: #999;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .pet-desc {
                font-size: 14px;
                color: #666;
                line-height: 1.6;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                margin-bottom: 12px;
            }

            .pet-footer {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding-top: 12px;
                border-top: 1px solid #f0f0f0;
            }

            .adopt-status {
                padding: 1px 6px;
                border-radius: 20px;
                font-size: 12px;
                color: white;
                background: var(--primary);
            }

            .adopt-status.pending {
                background: #FF9800;
            }

            .adopt-status.adopted {
                background: #999;
            }

            /* 社区动态 */
            .community-section {
               margin-bottom: 40px;
               background: var(--bg-white);
               border-radius: var(--radius);
               box-shadow: var(--shadow-hover);
               padding: 30px 20px;
            }
            @media (max-width: 768px) {
               .community-section {
                     padding: 20px!important;
                }

          }
            .posts-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 20px;
            }

            .post-card {
                background: white;
                border-radius: 12px;
                padding: 20px;
                box-shadow: var(--shadow-hover);
                transition: all 0.3s;
            }

            .post-card:hover {
                transform: translateY(-3px);
                box-shadow: var(--shadow-hover);
            }

            .post-header {
                display: flex;
                gap: 10px;
                margin-bottom: 15px;
            }

            .user-avatar {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                object-fit: cover;
            }

            .user-name {
                font-weight: 600;
                color: #333;
            }

            .post-time {
                font-size: 12px;
                color: #999;
            }

            .post-title {
                font-size: 16px;
                font-weight: 600;
                color: #333;
                margin-bottom: 10px;
            }

            .post-content {
                font-size: 14px;
                color: #666;
                line-height: 1.6;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                margin-bottom: 15px;
            }

            .post-images {
                display: flex;
                gap: 8px;
                margin-bottom: 15px;
            }

            .post-images img {
                width: calc(33.33% - 6px);
                height: 80px;
                object-fit: cover;
                border-radius: 6px;
            }

            .post-footer {
                display: flex;
                gap: 20px;
                font-size: 13px;
                color: #999;
            }

            /* 知识推荐 */
            .knowledge-section {
            margin-bottom: 40px;
            background: var(--bg-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            padding: 30px 20px;
}


            @media (max-width: 768px) {
               .knowledge-section {
                     padding: 20px!important;
                }

          }

            .knowledge-list {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
            }

            .knowledge-item {
                display: flex;
                gap: 15px;
                background: white;
                padding: 20px;
                border-radius: 12px;
                box-shadow: var(--shadow-hover);
                transition: all 0.3s;
            }

            .knowledge-item:hover {
                transform: translateY(-2px);
                box-shadow: var(--shadow-hover);
            }

            .knowledge-icon {
                width: 50px;
                height: 50px;
                background: var(--primary-light);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                font-size: 20px;
                flex-shrink: 0;
            }

            .knowledge-info h3 {
                font-size: 16px;
                font-weight: 600;
                color: #333;
                margin-bottom: 5px;
            }

            .knowledge-info p {
                font-size: 13px;
                color: #999;
            }

            /* 合作伙伴 */
            .partners-section {
                text-align: center;
                padding: 40px 0;
                background: white;
                border-radius: 16px;
                box-shadow: var(--shadow-hover);
            }

            .partners-grid {
                display: flex;
                justify-content: center;
                gap: 40px;
                flex-wrap: wrap;
                margin-top: 20px;
            }

            .partner-item {
                width: 120px;
                height: 60px;
                background: #f5f5f5;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #999;
                font-size: 14px;
            }

            @media (max-width: 768px) {
                .banner-content h1 {
                    font-size: 32px;
                }

                .banner-stats {
                    gap: 30px;
                }

                .stat-value {
                    font-size: 24px;
                }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
}
                .pets-grid, .posts-grid, .knowledge-list {
                    grid-template-columns: 1fr;
                }
            }
            
            
                    .stats {
            
            margin-top: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
            
        }
 
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            background: var(--bg-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            padding: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .stat-icon i {
            font-size: 28px;
            color: var(--primary);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
        }


        .section-header {
            text-align: center;
            margin-bottom: 30px;
                flex-wrap: wrap;
    flex-direction: column;
        }
			   @media (max-width: 768px) {
				           .section-header {
            text-align: center;
            margin-bottom: 20px;
        }
				      }

        .section-tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500; 
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1px;
        }
		   @media (max-width: 768px) {
		 .section-title {
                font-size: 20px;
                font-weight: 600;
                color: #333;
				margin-bottom: 8px;
            }
		   }
		       .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
 @media (max-width: 768px) {
	 
        .section-desc {
            font-size: 12px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
 }
        /* 特色功能 */
            .features {
            margin-bottom: 40px;
            background: var(--bg-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            padding: 30px 20px;
}


            @media (max-width: 768px) {
               .kfeatures {
                     padding: 20px!important;
                }

          }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--border);
        }

 @media (max-width: 768px) {
              .feature-card {
               padding: 10px 10px;
                }

          }
          
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: transparent;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-light) 0%, #c8e6c9 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
@media (max-width: 768px){
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 5px;
}
    
}
        .feature-icon i {
            font-size: 36px;
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text);
        }

 @media (max-width: 768px) {
             .feature-card h3 {
             margin-bottom: 0px;
                }

          }
          
        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
                    @media (max-width: 768px) {
               .feature-card p {
                     display: none;
                }

          }
        
                /* 关于我们 */
            .about{
            margin-bottom: 40px;
            background: var(--bg-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            padding: 30px 20px;
}


            @media (max-width: 768px) {
               .about {
                     padding: 20px!important;
                }

          }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary) 0%, #00bfa5 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(7, 193, 96, 0.3);
        }

        .about-image-main i {
            font-size: 150px;
            color: white;
            opacity: 0.9;
        }

        .about-image-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--secondary);
            color: white;
            padding: 20px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
        }

        .about-image-badge .number {
            font-size: 36px;
            font-weight: 700;
        }

        .about-image-badge .text {
            font-size: 14px;
            opacity: 0.9;
        }

        .about-content {
            padding-right: 20px;
        }

        .about-content .section-tag {
            background: rgba(7, 193, 96, 0.1);
        }

        .about-content .section-title {
            text-align: left;
            margin-bottom: 24px;
        }

        .about-text {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .about-feature:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .about-feature-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature-icon i {
            font-size: 22px;
            color: var(--primary);
        }

        .about-feature-text h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
        }

        .about-feature-text p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .about-cta {
            display: flex;
            gap: 16px;
        }

        /* 移动端关于我们 */
        @media (max-width: 768px) {
            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
 .stats-grid {
                grid-template-columns: 1fr 1fr;
                padding: 20px;
                gap: 20px;
            }
            .about-content {
                padding-right: 0;
                order: 1;
            }

            .about-image {
                order: 0;
            }

            .about-image-main {
                height: 280px;
            }

            .about-image-badge {
                bottom: -15px;
                right: 15px;
                padding: 15px 20px;
            }

            .about-image-badge .number {
                font-size: 28px;
            }

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

            .about-cta {
                flex-direction: column;
            }

            .about-cta .btn {
                justify-content: center;
            }
        }
   