        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        .news-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .news-header h1 {
            font-size: 58px;
            color: #003087;
            margin-bottom: 10px;
        }
        .news-header p {
            font-size: 24px;
            color: #666;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px 60px;
            /* 修改为：上下60px，左右30px */
            padding: 60px 15px;
        }
        .news-card {
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .news-card:hover {
            transform: translateY(-5px);
        }
        .news-image {
            width: 100%;
            height: 275px;
            overflow: hidden;
        }
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-content {
            padding: 20px;
        }
        .news-date {
            text-indent: 2em; /* 2 个汉字宽度 */
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            background: url("/skin/jinwa/images/time.png") no-repeat;
        }
        .news-title {
            font-size: 20px;
            color: #003087;
            margin-bottom: 15px;
            line-height: 1.4;
        }
            .news-title:hover{
            font-size: 22px;
            color: #00ae9b;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .news-excerpt {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-link {
            color: #003087;
            text-decoration: none;
            font-weight: bold;
        }
        .news-link:hover {
            color: #00ae9b;
            text-decoration: none;            
        }
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }