.detail_bg {
    width: 19.20rem;
    min-height: 27.41rem;
    background: url('../images/news/detail_bg.png') no-repeat center center;
    background-size: cover;
    padding: 0.2rem 0;
    position: relative;
}

/* 上部分样式 */
.detail_top {
    width: 10rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.category_buttons {
    display: flex;
    gap: 0.2rem;
}

.category_buttons .tab {
    cursor: url('../images/p1/pointer.png'), pointer;
    position: relative;
}

.category_buttons .tab img {
    width: 1.28rem;
    height: 0.57rem;
}

.category_buttons .tab .normal {
    display: none;
}

.category_buttons .tab .hover {
    display: block;
}

.current_location {
    color: #846e5f;
    font-size: 0.14rem;
}
.current_location span{
  cursor:pointer;
}
.current_location span a{
  text-decoration: none;
  color:#846e5f
}
/* 中间部分样式 */
.detail_content {
    width: 10rem;
    margin: 0 auto;
    padding: 0.4rem;
    border-radius: 0.1rem;
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    max-height: 17rem;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.detail_content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.detail_title {
    font-size: 0.24rem;
    color: #333;
    text-align: center;
    margin-bottom: 0.2rem;
    position: sticky;
    top: 0;
    padding: 0.2rem 0;
    z-index: 1;
}

.detail_time {
    text-align: center;
    color: #666;
    font-size: 0.14rem;
    margin-bottom: 0.3rem;
    position: sticky;
    top: 0.64rem;
    padding: 0.1rem 0;
    z-index: 1;
}

.detail_text {
    color: #333;
    line-height: 1.8;
    font-size: 0.16rem;
    padding-top: 0.1rem;
    overflow-y: auto;
    max-height: 15rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.detail_text::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.detail_text p {
    margin-bottom: 0.15rem;
}

/* 下部分样式 */
.detail_navigation {
    width: 10rem;
    margin: 0.2rem auto;
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.prev_page, .next_page {
    color: #846e5f;
    font-size: 0.3rem;
}

.prev_page a, .next_page a {
    color: #88deea;
    text-decoration: none;
    margin-left: 0.1rem;
}

.prev_page a:hover, .next_page a:hover {
    color: #846e5f;
}

@media screen and (max-width: 1366px) {
    .detail_text p img {
        width: 100% !important;
        height: auto !important;
    }
}
