/* 自定义样式 - 基于DaisyUI */

/* 系统Logo */
.system-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    position: relative;
    display: inline-block;
}

.system-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
    opacity: 0.9;
}

.system-logo::after {
    content: '乐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #667eea;
    font-size: 12px;
    font-weight: bold;
}

/* 轮播区域样式 */
.hero-carousel {
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* 功能图标样式 */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* 优势编号样式 */
.advantage-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.advantage-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* 目标对象图标样式 */
.target-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.target-card {
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
}

/* 联系方式图标 */
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 导航链接平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 300px;
    }
    
    .hero-slide h1 {
        font-size: 2rem !important;
    }
    
    .advantage-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .target-icon {
        width: 64px;
        height: 64px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 卡片悬停效果增强 */
.card:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* 按钮悬停效果 */
.btn:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* 轮播指示器样式 */
.carousel .btn-xs {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.carousel .btn-xs:hover {
    opacity: 1;
}

/* 统计数据样式增强 */
.stats .stat-value {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 表单样式增强 */
.form-control .input:focus,
.form-control .textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 页脚Logo样式 */
footer .system-logo {
    width: 48px;
    height: 48px;
}

footer .system-logo::before {
    width: 30px;
    height: 30px;
}

footer .system-logo::after {
    font-size: 16px;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}