/* style.css */
.tabs-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    /*background-color: #f9f9f9;*/
    padding:0 20px;
    border-radius: 10px;
    /*box-shadow: 0px 0px 15px rgba(0,0,0,0.1);*/
}

.tabs {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.tabs li {
    margin: 0 10px;
    display: inline-block;
    font-size: 24px !important;
}

/* 默认标签状态 */
.tabs a {
    padding: 10px;
    /*background-color: white; !* 背景色始终为白色 *!*/
    color: black; /* 默认文字颜色为黑色 */
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

/* 标签选中状态 */
.tabs a.active {
    color: #8b073d; /* 选中时文字颜色为 #8b073d */
}

/* 自定义分隔符 | 的样式 */
.tabs li a {
    display: inline-block;
    color:black;
}

.tabs li a::after {
    /*content: '|';*/
    /*margin-left: 10px;*/
}

.tabs li:last-child a::after {
    content: ''; /* 最后一个标签后不显示分隔符 */
}

.tab-content {
    display: flex;
    flex-direction: column;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}
.post-item h4{
    margin:5px !important;
}

.post-item{
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dashed #ccc; /* 添加虚线下滑线 */
}

.post-header a{
    color:black;
}

.post-item  a:hover{
    color:#8b073d !important;
}
.post-item .post-list{
    margin:0px !important;
    font-size: 12px;
    color:black !important;
}



.post-date {
    display: flex;
    flex-direction: column;
    font-size: 20px; /* 调整整个日期的字体大小 */
    color: #888;
    align-items: center;
    justify-content: center;
    /*margin-top: 10px;*/
    margin:0px !important;
}

.month-day {
    font-size: 28px; /* 月/日的字体更大 */
    font-weight: bold;
}

.year {
    font-size: 18px; /* 年份的字体稍小 */
}

.tabs-container .tabs-body{
    display: flex !important;
    justify-content: space-between;
}

.more-info{
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 20px;
}

.tabs-content-section{
    width: 60%;
}
.image-section{
    width: 35%;
}
.show-more-btn{
    background: #8B073D !important;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    font-size: 16px !important;
    font-weight: 400 !important;
}
button{
    background-color: #8B073D !important;
}