* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background: #ffffff;
    font-size: 14px;
    color: #333;
}

/* 弹窗外层容器 */
.pop-wrap {
    width: 92%;
    width: 340px;

    background: #e8f2ff;
    border-radius: 16px;
    padding: 16px 16px;
    position: relative;
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 20px;
    right: 16px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

/* 头部标题 */
.pop-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pop-header .star-icon {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.pop-header h2 {
    font-size: 18px;
    color: #222;
}

/* 滚动列表容器 */
.scroll-box {
    max-height: 680px;
    overflow-y: auto;
    padding-right: 4px;
}

.scroll-box::-webkit-scrollbar {
    width: 4px;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: #c8d8f0;
    border-radius: 4px;
}

/* 单条项目卡片 */
.item-card {
    position: relative;
    padding-top: 0px;
}

.item-card-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px 16px 6px 16px;
    margin-bottom: 16px;
    box-shadow: 0px 4px 10px #bed1f580;

}

.item-card-bg {
    width: 90%;
    margin: 0 auto;
    height: 10px;
    border-radius: 16px 16px 0px 0px;
    background: #ffffff99;
}

/* 顶部标签组 */
.tag-group {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.tag-red {
    background: #ffe9eb;
    color: #f04040;
    border: 1px solid #f8c8cc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag-orange {
    background: #fff2e0;
    color: #ff9427;
    border: 1px solid #ffddb0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* 项目标题 */
.item-title {
    font-size: 14px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.item-title a{
    color: #222;
    text-decoration:none
}
    /* 双栏物资模块 */
    .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #f7f8fa;
    border-radius: 10px;
    padding: 14px 12px;
    margin-bottom: 18px;
}

.col-block h4 {
    font-size: 14px;
    color: #222;
    margin-bottom: 4px;
}

.col-block p {
    font-size: 12px;
    color: #888;
}

/* 信息条目 */
.info-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #555;
}

.info-line span span {

    color: #282828;
}

.info-line .icon {
    width: 20px;
    height: 20px;
    color: #99b3d8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 底部查看更多 */
.more-txt {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
}

.more-txt a {

    color: #0062B0;
    text-decoration: none;
}

.fixed-max {
    display: none;
    cursor: pointer;
}

.fixed-box {
    position: fixed;
    top: 50%;
    gap: 4px;
    right: 0;
    transform: translate(0%, -50%);
    width: 52px;
    height: 180px;
    border-radius: 8px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    background: #eef4ff;
    box-shadow: 0px 4px 10px #0000001a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #282828;
    font-family: "Microsoft YaHei";
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;

}