body {
    margin: 0;
    font-family: "微软雅黑", sans-serif;
    background-color: #f3f3f3;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
}

.module {
    width: 30%;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.module:hover {
    transform: scale(1.05);
}

.top {
    padding: 20px;
}

.top .image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.middle {
    padding: 10px;
}

.middle h3 {
    font-size: 20px;
    color: #333;
}

.bottom {
    padding: 10px;
    background-color: #f9f9f9;
}

.bottom a {
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

.bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .module {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .module {
        width: 90%;
    }
}

.total_tag{
    color: #666;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
/*标题*/

.container_title_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: 10rem;
}

.container_title_title {
    flex-grow: 1;
    text-align: center;
}

.container_title_title h1 {
    font-size: 30px;
    color: #333;
}

.container_title_button .container_title_btn img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .container_title_header {
        flex-direction: column;
        text-align: center;
    }
    .container_title_button {
        margin-top: 10px;
    }
}
/*头部的大分类*/
/* 整体外层容器 */
.title_head_wrapper {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: left; /* 水平居中 */
}

/* 左右两侧竖线 */
.title_head_line {
    width: 5px;
    height: 30px;
    background-color: #FFC73D;
    margin: 0 10px;
}

/* 标题内容区域 */
.title_head_content {
    display: flex;
    align-items: center; /* 内部垂直居中 */
}

/* 斜边矩形效果的容器 */
.title_head_box {
    background-color: #FFC73D;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    padding: 5px 8px;
}

/* 高亮文字“详” */
.title_head_highlight {
    color: #FFFFFF; /* 白色字体 */
    font-size: 28px;
    font-weight: bold;
}

/* 描述文字“情介绍” */
.title_head_description {
    color: #FFC73D;
    font-size: 23px;
    font-weight: 400;
    margin-left: 8px;
}

/* 详情*/
.news-container {
    background-color: #fff;
    margin-top: 20px;
    width: 80%;
}

.news-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.news-image {
    width: 240px;
    height: 160px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.news-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* 多媒体插件区域 */
.media-container {
    margin-top: 20px;
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.media-container img {
    width: 100%;
    max-width: 800px;
    margin: 10px 0;
    border-radius: 8px;
}

.media-container video {
    width: 100%;
    max-width: 800px;
    height: 450px;
    object-fit: cover;
    margin: 10px 0;
    border-radius: 8px;
}

.media-container audio {
    width: 100%;
    margin-top: 20px;
}
/*下滑按钮*/
#sel_scroll_top {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 10%;
    background-image: url('../icon/scr_top.png'); /* 替换为按钮图片的路径 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none; /* 默认隐藏 */
    cursor: pointer;
    z-index: 1000; /* 保证按钮在页面最前方 */
}

#sel_scroll_top:hover {
    opacity: 0.8; /* 悬停效果 */
}