.head {
    width: 100%;
    height: 60vh;
    box-sizing: border-box;
    background-image: url(../image/-49478.jpg);
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    color: #ffffff;
}

.head-title {
    width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.head-title1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 80px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 8px;
}

.head-title2 {
    font-size: 28px;
    line-height: 50px;
    font-weight: 500;
}

/* 资讯分类 */
.news-section {
    width: 100%;
    background-color: rgb(250, 250, 250);
    padding: 60px 0;
}

.news-container {
    width: 1200px;
    margin: 0 auto;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.news-tab {
    font-size: 16px;
    color: #666666;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s ease;
}

.news-tab:hover,
.news-tab.active {
    color: #333333;
    font-weight: 600;
}

.news-tab.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #00ffc0;
}

/* 新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 300px;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
    display: flex;
    padding: 30px;
}

.news-date {
    width: 80px;
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid #e0e0e0;
    margin-right: 30px;
}

.day {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #00ffc0;
    line-height: 1;
}

.month {
    display: block;
    font-size: 14px;
    color: #999999;
    margin-top: 5px;
}

.news-info {
    flex: 1;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.news-summary {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-more {
    font-size: 13px;
    color: #609ee9;
    text-decoration: none;
}

.news-more:hover {
    color: #00ffc0;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn,
.page-num {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-num:hover {
    border-color: #00ffc0;
    color: #00ffc0;
}

.page-num.active {
    background-color: #00ffc0;
    border-color: #00ffc0;
    color: #ffffff;
}

.page-ellipsis {
    color: #999999;
}

/* 行业洞察 */
.insights {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.insights-container {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insights-title {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.insights-subtitle {
    font-size: 14px;
    color: #666666;
    font-family: Arial Black;
    margin-bottom: 50px;
}

.insights-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.insight-card {
    width: 33.33%;
    background-color: rgb(250, 250, 250);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-tag {
    display: inline-block;
    margin: 20px 20px 10px;
    padding: 4px 12px;
    background-color: #00ffc0;
    color: #ffffff;
    font-size: 12px;
    border-radius: 4px;
}

.insight-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 20px 15px;
    line-height: 1.5;
}

.insight-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 20px 25px;
}
