/* 推荐模组页面样式 */
.recommend-section {
    flex: 1;
    padding: 90px 20px 60px;
    background: #f5f7fa;
    min-height: calc(100vh - 200px);
}

.recommend-section .container {
    max-width: 1000px;
}

/* 模组结果卡片 */
.module-result-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.module-result-item{
    margin-bottom: 20px;
}
.module-detail {
    flex: 1;
}

.module-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.module-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon svg {
    color: #fff;
}

.module-info {
    flex: 1;
}

.module-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.module-model {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.module-rate {
    font-size: 14px;
    color: #999;
}

.module-rate .rate-high {
    color: #52c41a;
    font-weight: 600;
}

.module-rate .rate-middle {
    color: #faad14;
    font-weight: 600;
}

.module-rate .rate-low {
    color: #ff4d4f;
    font-weight: 600;
}

/* 模组详情 */
.module-detail {
    padding-top: 10px;
}

.network-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.network-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 13px;
}

.network-name {
    color: #333;
}

.network-status {
    font-weight: 600;
}

.status-success {
    color: #52c41a;
}

.status-warning {
    color: #faad14;
}

.status-error {
    color: #ff4d4f;
}

/* 模组底部 */
.module-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

.detail-link {
    color: #0066cc;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.detail-link:hover {
    color: #0052a3;
}

.detail-link span {
    transition: transform 0.3s;
}

.detail-link:hover span {
    transform: translateX(3px);
}
/* 表单提示文字 */
.form-tip {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}
/* 响应式 */
@media (max-width: 768px) {
    .recommend-section {
       padding: 90px 0 20px;
    }
    .module-info {
        width: 100%;
    }

    .detail-item {
        padding: 10px 12px;
    }

    .network-type {
        font-size: 13px;
    }
}


