* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.logo {
    width: 200px;
}

.back-button {
    background-color: #00aeef;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.news-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 30px 0;
}

.news-title {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.news-meta {
    display: flex;
    justify-content: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.news-meta span {
    margin: 0 15px;
}

.con-title {
    text-align: center;
}

.con-body {
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}

.title {
    display: inline-block;
    color: #404040;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
    border-bottom: 1px solid #404040;
}

.title2 {
    text-align: center;
    color: white;
    background-color: red;
    font-weight: 700;
}

.news-body {
    font-size: 16px;
    color: #444;
}

.news-body .text-bold {
    font-weight: 700;
}

.news-body p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.news-body img {
    display: block;
    width: 60%;
    margin: 0 auto;
}

.news-body .con-footer {
    border-top: 1px solid #f5f5f5;
    padding-top: 100px;
}

.news-body .con-list {
    width: 100%;
    margin-left: 100px;
    margin-bottom: 50px;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 22px;
    }
}