.mb-30 {
    margin-bottom: 30px;
}
.shadow {
    box-shadow: 0px 4px 7px 1px rgba(121,121,121,0.16);
}
.article-detail {
    min-width: 1248px;
}
.text-center {
    text-align: center;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.placeholder-map {
    width: 100%;
    height: 560px;

}
.detail-wrapper {
    padding-top: 38px;
    padding-bottom: 55px;
}
.cur-position {
    margin-top: 50px;
    font-family: 'PingFang_Medium';
    font-weight: 500;
    font-size: 18px;
    color: #797979;
}
.detail-content {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.detail-content-left {
    padding: 65px 44px 0 0;
}
.detail-title {
    max-width: 840px;
    font-family: 'PingFang_Heavy';
    font-weight: 800;
    font-size: 25px;
    color: #161616;
}
.detail-info {
    margin-top: 18px;
    max-width: 840px;
    font-family: 'PingFang_Medium';
    font-weight: 500;
    font-size: 19px;
    color: #797979;
}

.detail-html {
    max-width: 840px;
}
.detail-text {
    white-space: pre-wrap;
    font-family: 'PingFang_Medium';
    font-weight: 500;
    font-size: 19px;
    color: #797979;
    line-height: 36px;
}
.QR-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    height: 380px;
    background: #FFFFFF;
    box-shadow: 0px 4px 7px 1px rgba(121,121,121,0.16);
    border-radius: 10px;
    margin-bottom: 30px;
}
.QR-code-title {
    align-self: flex-start;
    margin-top: 28px;
    margin-left: 44px;
    font-family: 'PingFang_Regular';
    font-weight: normal;
    font-size: 22px;
    color: #303030;
}
.QR-code-img {
    width: 230px;
    height: 230px;
    margin-top: 30px;
    background: #C5C5C5;
    border-radius: 10px;
}
.QR-code-describe {
    margin-top: 16px;
    font-family: 'PingFang_Regular';
    font-weight: normal;
    font-size: 19px;
    color: #797979;
}
.detail-mark {
    width: 350px;
    height: 362px;
    background: #FFFFFF;
    box-shadow: 0px 4px 7px 1px rgba(121,121,121,0.16);
    border-radius: 10px;
    padding:31px 43px ;
}
.mark-title {
    font-family: 'PingFang_Regular';
    font-weight: normal;
    font-size: 19px;
    color: #303030;
    margin-bottom: 15px;
}
.detail-mark-content {
    width: max-content;
    height: 36px;
    background: rgba(197, 197, 197, 0.4);
    border-radius: 18px;
    font-family: 'PingFang_Regular';
    font-weight: normal;
    font-size: 17px;
    color: #797979;
    padding: 0px 10px;
    margin-bottom: 20px;
    z-index: 0;
}
.detail-mark-content.mark-active {
    background: rgba(255, 207, 174, 0.4);
    color: #F46813;
}
.gap-line {
    width: 840px;
    height: 1px;
    border: 1px solid #FFCFAE;
    margin-top: 93px;
}
.page-turning {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 840px;
    margin-top: 31px;
    font-family: 'PingFang_Medium';
    font-weight: 500;
    font-size: 19px;
    color: #797979;
}
.page-turning-btn {
    display: inline-block;
}
.register-modal {
    display: none !important; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    z-index: 999; /* 确保在最上层 */
    
    /* 实现视口居中 */
    display: flex;
    justify-content: center;
    align-items: center;
}
.register-modal.active {
    display: flex !important;
}