﻿/* 图片容器样式，用于整体布局图片 */
.image-container {
    background-color: #131313;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 平均分布图片 */
    gap: 10px; /* 图片之间的间距，可根据需要调整 */
    padding: 15px 20px 20px 20px; /* 可根据需要调整内边距 */
}

/* 单个图片及文字的样式 */
.image-item {
    width: calc(16.666%); /* 每行显示6个图片时每个图片大致占比，减去间距 */
    text-align: center;
    font-size: 10px;
}

    .image-item img {
        width: 50%;
        height: auto;
        margin-top: 5px;
    }

    .image-item p {
        margin: 5px 0 0 0;
    }

/* 整体布局设置，让左右两个div并排显示 */
.news {
    display: flex;
    margin-top: 10px;
}

/* 左边图片div的样式 */
.left-image {
    flex: 1;
}

/* 右边div的样式 */
.right-div {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

/* 右边div的样式 */
.right-div1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    margin-right: 10px;
}

/* 上层部分样式 */
.upper-section {
    display: flex;
    align-items: center;
}

/* 加粗竖线样式 */
.golden-line {
    width: 3px;
    height: 14px;
    background-color: gold;
    margin-right: 5px;
}

/* 标题文字样式 */
.title-text {
    color: #FFD699;
    font-size: 12px;
    font-weight: bold;
}

/* 中层部分样式 */
.middle-section {
    font-size: 10px;
}

/* 下层部分样式 */
/* 将按钮固定在右下方的设置 */
.lower-section {
    /*display: flex;*/
    justify-content: flex-end;
    align-items: flex-end;
}

/* 按钮样式 */
.detail-button {
    background-color: #FFD699;
    color: #9B5810;
    font-size: 10px;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/* 这里设置了Font Awesome图标的样式，使其与按钮文字垂直对齐等 */
.arrow-icon {
    margin-left: 5px;
    vertical-align: middle;
}
