/* 详情页样式 */
.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.detail-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.detail-breadcrumb-item {
    color: #303133;
    font-weight: 700;
    text-decoration: none;
}

.detail-breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

.detail-breadcrumb-active {
    color: #333;
    font-weight: 500;
}

.detail-box {
    background-color: #fff;
    padding: 20px;
    /* border: 1px solid #eee; */
    margin-bottom: 30px;
    width: 65%;
    margin: 0 auto;
}

.detail-title {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 22px;
    color: #434343;
    line-height: 22px;
    text-align: center;
    font-style: normal;
    padding-bottom: 30px;
    border-bottom: 1px solid #a0a0a0;
}

.detail-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    color: #a0a0a0;
    font-size: 16px;
    text-align: center;
}

.detail-info-item {
    margin: 0 15px;
}

.detail-content {
    margin-top: 30px;
    text-indent: 2em;
    font-family: PingFangSC, PingFang SC;
    font-size: 18px;
    color: #434343;
    font-weight: 400;
    line-height: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #a0a0a0;
}

/* 段落样式 */
.text-intro {
    margin-top: 0;
    margin-bottom: 15px;
    margin-left: 0;
    text-indent: 0;
    text-align: justify;
    line-height: 1.5em;
    font-family: 微软雅黑;
}

.text-para {
    margin-top: 0;
    margin-bottom: 15px;
    text-indent: 43px;
    text-align: justify;
    line-height: 1.5em;
    font-family: 仿宋_GB2312;
    font-size: 16px;
}

.text-spacer {
    height: 20px;
}

.text-right {
    text-align: right;
    line-height: 1.5em;
    font-family: 微软雅黑;
}

.detail-content p {
    margin-bottom: 15px;
}

.detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}

.detail-nav {
    display: flex;
    /* flex-direction: column; */
    padding-top: 20px;
    /* border-top: 1px solid #e6e6e6; */
    justify-content: space-between;
    /* margin-top: 20px; */
    align-items: center;
    color: #646464;
}

.detail-nav-prev,
.detail-nav-next {
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	width: 50%;
}

@media screen and (max-width: 768px) {
    .detail-box{
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .detail-title{
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .detail-info{
        flex-direction: column;
    }
}