p{line-height:20px;}
/* 轮播图区域 */
        .hero {
            position: relative;
            height: 500px;
            overflow: hidden;
            margin-bottom: 40px;
            border-bottom: 5px solid var(--gold);
        }
        
        .carousel {
            display: flex;
            height: 100%;
            transition: transform 0.8s ease;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
        }
        
        .slide-content {
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
            width: 100%;
        }
        
        .slide-content h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .slide-content a{color: white;}
        .slide-content p {
            max-width: 600px;
            font-size: 1.1rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            z-index: 10;
        }
        
        .carousel-btn {
            background-color: rgba(198, 47, 47, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .carousel-btn:hover {
            background-color: var(--primary-red);
            transform: scale(1.1);
        }
        
        /* 最新动态 */
        .latest-news {
            margin: 50px 0;
        }
        
        .section-title {
            position: relative;
            font-size: 2.2rem;
            color: var(--dark-red);
            margin-bottom: 30px;
            padding-bottom: 15px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--gold), var(--primary-red));
            border-radius: 2px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			position: relative;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .news-img {
            height: 130px;
            background-size: cover;
            background-position: center;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-content h3 {
            color: var(--primary-red);
            margin-bottom: 10px;
            font-size: 1.0rem;
			max-height: 57px;
			line-height: 20px;
			overflow: hidden;
        }
        
        .news-content p {
            margin-bottom: 15px;
            color: #555;
			max-height: 100px;
			line-height: 20px;
			overflow: hidden;
        }
        
        .news-date {
            color: #888;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
			position: absolute;
			bottom: 5px;
        }
        
        .news-date i {
            margin-right: 5px;
        }
        
        /* 内容板块 */
        .content-section {
            background-color: var(--section-bg);
            border-radius: 15px;
            padding: 40px 30px;
            margin-top:15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(214, 177, 71, 0.2);
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(198, 47, 47, 0.2);
        }
        
        .section-icon {
            width: 60px;
            height: 60px;
            background-color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-red);
            margin-right: 20px;
        }
        
        .section-header h2 {
            color: var(--dark-red);
            font-size: 1.8rem;
        }
        .section-links .section-link:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .policy-card {
			position: relative;
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-red);
        }
        
        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        }
        
        .policy-card h3 {
            color: var(--dark-red);
            margin-bottom: 10px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        
        .policy-card h3 i {
            margin-right: 10px;
            color: var(--gold);
        }        
        .policy-card p {
            color: #555;
            margin-bottom: 20px;
        }
		.mt10{height:5px;}
		.policy-card .news-img{margin-bottom: 30px;}
        .btnbox{width:100%;height:5px;display:black;}
        .btn {
			position: absolute;
			bottom: 8px;
            display: inline-block;
            padding: 5px 15px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(198, 47, 47, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(198, 47, 47, 0.4);
        }
        
        .btn i {
            margin-left: 8px;
        }
        
        /* 四个家园部分 */
        .four-homes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .home-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .home-card:hover {
            transform: scale(1.03);
        }
        
        .home-header {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .home-content {
            padding: 20px;
        }
        
        .home-content ul {
            list-style: none;            
        }
        
        .home-content li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        
        .home-content li::before {
            content: '•';
            color: var(--gold);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }

        /* 新增卡片样式 */
        .feature-card {
			position: relative;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .feature-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .feature-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 10px;
            color: white;
			line-height:1.2rem;
        }
        
        .feature-content {
            padding: 20px;
		    margin-bottom: 20px;
        }
        
        .feature-content h3 {
            color: var(--primary-red);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .feature-content p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }        
        
        
        
        /* 响应式设计*/
        @media (max-width: 992px) {
           
			.content-section{padding: 20px 10px;}
			.home-content{padding:5px;}
			.home-content ul {            
            padding-left: 0px;
			}
			
        }
        
        @media (max-width: 768px) {	
			h3{font-size: 1rem;}
            .hero {
                height: 350px;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
				line-height:20px;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .policy-card {
                padding: 15px;
            }
			.policy-card p{font-size: 0.725rem;}
			.btn { padding: 5px 10px;border-radius: 15px;font-size: 0.725rem;}
			.carousel-btn{width:25px;height:25px;}
			.policy-card h3{line-height: 1.4rem; font-size: 1.0rem;}
			.news-grid {            
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 5px;
			}
			.policy-grid {            
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            }
			.news-img{max-height: 100px;}
			.four-homes {    
				grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
				gap: 10px;
				margin-top: 10px;
			}
			.news-content{padding: 8px;}
			.news-content p{line-height: 0.8rem;font-size: 0.725rem;}
			.home-content p,.feature-content p{font-size: 0.825rem;line-height: 0.925rem;}
			.feature-grid{grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));}
			.feature-img{max-height: 100px;}
			.feature-overlay{padding:5px;}
            .feature-overlay h3{font-size: 1rem;}
			
        }
        
        @media (max-width: 480px) {
            .hero {
                height: 250px;
            }          
            
            .slide-content {
                padding: 10px;
            }
            
            .slide-content h2 {
                font-size: 1.3rem;
            }
            
            .slide-content p {
                font-size: 0.85rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            
			.section-header h2{font-size: 1.4rem;}
			.section-icon{width: 40px; height: 40px;font-size: 1.2rem;}
        }