.DecPla {
    width: 95%;
    margin: 7.5rem auto 0;
    padding-bottom: 4.25rem;
    display: none;
}
.DecPla.active {
    display: block;
}
.DecPlaSm {
    position: fixed;
    right: 2.5%;
    top: 8rem;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #3aa0ff;
}

.DecPlaSm img {
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.2rem;
}

.zoomable-image {
  width: 100%;
}
/* 遮罩层样式 */
.popup-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}

/* 弹窗主体 */
.popup-content {
    position: fixed;
    bottom: -100%;
    left: 2%;
    width: 96%;
    background: #fff;
    border-radius: 0.75rem 0.75rem 0 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}

    /* 弹窗激活状态 */
    .popup-content.active {
        bottom: 0rem;
    }

/* 弹窗头部 */
.popup-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.4rem 0;
    border-bottom: 0.0625rem dashed #e9e9e9;
    position: relative;
    top: 0;
    background: #fff;
}

.popup-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

/* 关闭按钮 */
.popup-close {
    font-size: 1.2rem;
    color: #555;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
}

/* 内容区域 */
.popup-body {
    overflow-y: auto;
    height: 70vh;
}

.detail-item {
    color: #333;
}

    /* 明细项样式 */
    .detail-item > h3 {
        text-align: center;
        padding-bottom: 0.5rem;
        margin: 0.75rem 0;
        border-bottom: 0.0625rem dashed #e9e9e9;
    }

.detailUlItem {
    padding: 0 1rem 1rem;
}
    .detailUlItem h3 {
        font-size: 1rem;
    }

.detailLiItem {
    padding: 0 1rem;
    color: #666;
    line-height: 1.5rem;
}

    .detailLiItem img {
        width: 0.875rem;
        height: 0.875rem;
        margin-right: 0.5rem;
    }
    .detailLiItem p em {
        font-style: normal;
        padding: 0 4px;
        font-size: 13px;
        margin-left: 4px;
        display: inline-block;
        line-height: 1.35;
		text-shadow:-1px 0px 0px #fff,1px 0px 0px #fff,0px 1px 0px #fff,1px 1px 0px #fff,0px -1px 0px #fff,-1px 1px 0px #fff,-1px -1px 0px #fff,1px -1px 0px #fff,-1px 1px 0px #fff;
		border-radius:0.12rem;
    }

