/* 售货机项目详情页 - 项目优势列表样式 */


.project-advantages {
    margin-top: 30px;
}

.project-advantages .row-header {
    margin-bottom: 20px;
}

.project-advantages .row-header .title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B35;
}

/* 优势列表容器 */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 单个优势项 */
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

/* 绿色勾图标 */
.advantage-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

/* 优势文本 */
.advantage-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .advantage-item {
        padding: 12px;
        gap: 10px;
    }
    
    .advantage-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .advantage-text {
        font-size: 14px;
    }
    
    .project-advantages .row-header .title {
        font-size: 18px;
    }
}

/* 暗黑模式支持 */
body.dark-mode .project-advantages .row-header .title {
    color: #e0e0e0;
}

body.dark-mode .advantage-item {
    background: #2a2a2a;
}

body.dark-mode .advantage-item:hover {
    background: #333;
}

body.dark-mode .advantage-text {
    color: #e0e0e0;
}

/* 动画效果 */
.advantage-item {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.15s; }
.advantage-item:nth-child(3) { animation-delay: 0.2s; }
.advantage-item:nth-child(4) { animation-delay: 0.25s; }
.advantage-item:nth-child(5) { animation-delay: 0.3s; }
.advantage-item:nth-child(6) { animation-delay: 0.35s; }
.advantage-item:nth-child(7) { animation-delay: 0.4s; }
.advantage-item:nth-child(8) { animation-delay: 0.45s; }
.advantage-item:nth-child(9) { animation-delay: 0.5s; }
.advantage-item:nth-child(10) { animation-delay: 0.55s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
