
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       

        /* 新闻列表容器 */
        .news-container {
position: relative;

            /* position: absolute;
            top: 30%;
            left: 50%;*/
            
            width: 95%;
            max-width: 1200px;
            background: #347AD0;
            border: 3px solid #347AD0;
            border-radius: 25px;
            padding: 2rem;
            z-index: 4;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.15),
                inset 0 2px 5px rgba(255, 255, 255, 0.1),
                inset 0 -2px 5px rgba(0, 0, 0, 0.1);
 margin: 200px auto 50px;
        }

        /* 新闻标题 */
        .news-title {
            font-size: 2.5rem;
            color: white;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.5rem;
        }

        /* 新闻列表 */
        .news-list {
            list-style: none;
        }

        /* 新闻项 */
        .news-item {
            display: flex;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        /* 新闻日期 */
        .news-date {
            flex-shrink: 0;
            width: 120px;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 15px;
            text-align: center;
            margin-right: 2rem;
text-decoration: none; 
        }

        .news-date .day {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
text-decoration: none; 
        }

        .news-date .month {
            font-size: 0.9rem;
            color: white;
text-decoration: none; 
        }

        /* 新闻内容 */
        .news-content {
            flex: 1;
        }

        .news-content h3 {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
.news-content a {
    color: white; /* 匹配整体白色文字风格 */
    text-decoration: none; /* 核心：去除下划线 */
    transition: all 0.3s ease; /* 过渡效果，提升交互体验 */
}


        .news-item:hover .news-content h3 {
            color: white;
        }

        .news-content p {
            font-size: 1rem;
            color: white;
            line-height: 1.5;
        }

       /* 分页导航样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding: 1rem 0;
            flex-wrap: wrap;
        }

        .pagination a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 0 0.2rem;
        }

        .pagination a:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .page-btn {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .page-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .page-info {
            color: white;
            font-size: 0.95rem;
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* 分页数字样式 */
        .page-num {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 0 0.2rem;
        }

        .page-num:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .page-num-current {
            background: rgba(255, 255, 255, 0.4);
            color: #347AD0;
            border-color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
          
            
            .news-container {
                top: 25%;
                padding: 1.5rem;
                max-width: 1000px;
            }
            
            .news-title {
                font-size: 2rem;
            }
            
            .news-item {
                padding: 1.2rem;
            }
        }

        @media (max-width: 992px) {
           
            
            .news-container {
               margin: 180px auto 50px;
                max-width: 900px;
            }
            
            .news-date {
                width: 100px;
                padding: 0.8rem;
                margin-right: 1.5rem;
            }
            
            .news-date .day {
                font-size: 1.2rem;
            }
            
            .news-content h3 {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
           
            .news-container {
                        margin: 160px auto 50px;
                padding: 1.2rem;
            }
            
            .news-title {
                font-size: 1.5rem;
            }
            
            .news-item {
                flex-direction: row;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .news-date {
                width: 80px;
                margin-right: 0.5rem;
                text-align: center;
                flex-shrink: 0;
            }
        }

        @media (max-width: 480px) {
            
            
            .news-container {
               margin: 120px auto 50px;
                padding: 1rem;
            }
            
            .news-title {
                font-size: 1.2rem;
            }
            
            .news-item {
                flex-direction: row;
                align-items: flex-start;
                gap: 0.8rem;
                padding: 1rem;
            }
            
            .news-date {
                width: 70px;
                margin-right: 0.3rem;
                padding: 0.6rem;
            }
            
            .news-date .day {
                font-size: 1rem;
            }
            
            .news-date .month {
                font-size: 0.7rem;
            }
            
            .news-content h3 {
                font-size: 1rem;
            }
            
            .news-content p {
                font-size: 0.9rem;
            }
            
            /* 分页导航响应式 */
            .pagination {
                gap: 0.3rem;
                margin-top: 1.5rem;
            }
            
            .page-btn {
                padding: 0.5rem 0.8rem;
                font-size: 0.85rem;
            }
            
            .page-info {
                font-size: 0.85rem;
                padding: 0.5rem 0.8rem;
            }
        }

        /* 漂浮元素响应式调整 */
        @media (max-width: 768px) {
            .element {
                font-size: 2rem;
            }
            
            /* 调整漂浮元素位置 */
            .pulse {
                top: 40%;
                left: 15%;
            }
            
            .acupuncture {
                top: 80%;
                right: 15%;
            }
            
            .herb {
                bottom: 20%;
                left: 25%;
            }
            
            .medicine-pot {
                top: 60%;
                right: 25%;
            }
            
            .message-board {
                bottom: 50%;
                left: 15%;
            }
        }

        @media (max-width: 480px) {
            .element {
                font-size: 1.8rem;
            }
        }