/*文章详情*/
.details{
   /*padding: 0 15px;*/
}
.details_box>h1{
    text-align: center;
    padding: 20px;
    font-weight: 700;
    font-size: 24px;
}
.details_box>p{
    text-align: center;
    font-size: 14px;
}
.details_content{
    margin-top: 20px;
}
.details_content p{
    line-height: 25px;
    font-size: 16px;
}
.details_content img{
    max-width: 100%;
}
.flipping{
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
.flipping .box{
    width: 500px;
    padding: 10px;
    overflow: hidden; /* 确保超出容器的内容被裁剪 */
    white-space: nowrap; /* 确保文本在一行内显示 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
}
.next{
    text-align: center;
}
.box a:hover {
    color: #9d0711;
}