@charset "UTF-8";
body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #343a40;
    line-height: 1.4;
}
.flex { display: flex; }
.flex-align-center { align-items: center; }
.flex-pack-justify { justify-content: space-between; }
.flex-pack-center { justify-content: center; }
.flex-direction-column { flex-direction: column; }
.flex-1 { flex: 1; }

/* 页面容器 */
.page-wrap {
    position: relative;
    min-height: 100vh;
    padding-bottom: 1.2rem;
}
.content {
    padding-bottom: 0.24rem;
}

/* 顶部横幅 */
.top-banner {
    background: linear-gradient(135deg, #3eaf7c 0%, #5ac725 100%);
    padding: 0.24rem;
    margin-bottom: 0.24rem;
    border-radius: 0 0 0.24rem 0.24rem;
    box-shadow: 0 0.04rem 0.16rem rgba(0,0,0,0.08);
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 0.16rem;
}
.banner-icon {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.4rem;
    color: #fff;
}
.banner-text .banner-title {
    display: block;
    font-size: 0.32rem;
    color: #ffffff;
    font-weight: 600;
}
.banner-text .banner-subtitle {
    display: block;
    font-size: 0.24rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.08rem;
}

/* 列表区域 */
.item-area {
    padding: 0 0.24rem;
}
.item {
    background: #fff;
    border-radius: 0.16rem;
    box-shadow: 0 0.02rem 0.08rem rgba(0,0,0,0.05);
    margin-bottom: 0.24rem;
    padding: 0.24rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s;
}
.item:active {
    transform: translateY(-0.02rem);
    box-shadow: 0 0.04rem 0.16rem rgba(0,0,0,0.08);
}
.item-left {
    width: 1rem;
    flex-shrink: 0;
    padding-top: 0.08rem;
    text-align: center;
}
.avatar {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #3eaf7c;
    color: #fff;
    text-align: center;
    line-height: 0.8rem;
    font-size: 0.3rem;

}
.user-name {
    font-size: 0.24rem;
    color: #495057;
    margin-top: 0.08rem;
}
.item-right {
    flex: 1;
}
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.16rem;
}
.create-time {
    font-size: 0.24rem;
    color: #888;
}
.status-tag {
    background: rgba(62,175,124,0.1);
    color: #3eaf7c;
    font-size: 0.22rem;
    padding: 0.04rem 0.12rem;
    border-radius: 999rem;
}
.item-title {
    font-size: 0.24rem;
    color: #adb5bd;
    margin-bottom: 0.08rem;
}
.item-detail {
    font-size: 0.28rem;
    color: #495057;
    line-height: 1.6;
    background: #f8f9fa;
    padding: 0.24rem;
    border-radius: 0.08rem;
    position: relative;
    word-break: break-all;
}
.item-detail::before {
    content: '';
    position: absolute;
    top: 0.12rem;
    left: 0.12rem;
    width: 0.04rem;
    height: 0.04rem;
    border-radius: 50%;
    background: #3eaf7c;
}

/* 底部按钮 */
.fixed-bottom-btn {
    position: fixed;
    bottom: 0.2rem;
    left: 0;
    right: 0;
    text-align: center;
}
.custom-btn {
    display: inline-block;
    width: 80%;
    height: 0.96rem;
    line-height: 0.96rem;
    background: linear-gradient(135deg, #5ac725 0%, #2d9460 100%);
    color: #fff;
    border: none;
    border-radius: 0.48rem;
    font-size: 0.32rem;
    box-shadow: 0 0.06rem 0.2rem rgba(62,175,124,0.2);
}