/* 新版成果详情页样式 */

/* 基础样式 */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
    background-color: #EBEDF8;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* 成就详情容器 */
.achievement-detail {
    padding-bottom: 50px;
}

/* 返回按钮 */
.back-button {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* 标题样式 */
.achievement-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
    padding: 10px 15px;

    background-color: #fff;
}

/* 标签列表 */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 15px;
    background-color: #fff;
}

.tag-list .van-tag {
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 12px;
    color: #32C6A2;
    border-color: #32C6A2;
}
.tag-list .van-tag--danger {
    background-color: white;
    color: #FF4D4F;
    border: 1px solid #FF4D4F;
}

.tag-list .van-tag--warning {
    background-color: white;
    color: #ff976a;
    border: 1px solid #ff976a;
}
/* 信息卡片 */
.info-card {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 0 15px;
    border-radius: 8px;
    position: relative;
}

.info-item {
    display: flex;
    padding: 10px 0 0 0;
}

.info-item:first-child {
    border-top: 1px solid #f0f0f0;
}

.info-label {
    flex: 1;
    color: #666;
}

.info-value {
    flex: 2;
    color: #333;
}

/* 展开/收起按钮样式 */
.expand-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    color: #383838;
    font-size: 14px;
    cursor: pointer;
}

.expand-button span {
    margin-right: 5px;
}

.expand-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
    transform: rotate(0deg); /* 默认箭头向右 */
    color: #B6B6B6 !important;
}

.arrow-up {
    transform: rotate(-90deg) !important; /* 收起时箭头向上 */
}

/* 展开内容的动画效果 */
.info-expanded {
    transition: all 0.3s ease;
    .info-item:first-child {
    border-top: none;
}
}

/* 简介部分 */
.intro-section {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.intro-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.intro-content {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 专家部分 */
.expert-section {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.expert-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.expert-item:last-child {
    border-bottom: none;
}

.expert-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.expert-info {
    display: flex;
    align-items: center;
    height: 100%;
}

.expert-name {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
    flex: 1;
}

.expert-position {
    color: #666;
    font-size: 12px;
    flex: 1.5;
}

.expert-title {
    color: #999;
    font-size: 12px;
}

/* 弹出层样式 */
.popup-hidden {
    display: none !important;
}

.popup-visible {
    display: block !important;
}

/* 消息弹出层 */
.message__popup {
    height: 60%;
    border-radius: 16px 16px 0 0;
}

/* 附件弹出层 */
.attachments__popup {
    height: 60%;
    border-radius: 16px 16px 0 0;
}

/* 分享弹出层 */
.share__popup {
    height: 40%;
    border-radius: 16px 16px 0 0;
}

/* 推荐者弹出层 */
.recommenders__popup {
    height: 60%;
    border-radius: 16px 16px 0 0;
}