/* 全局样式 */
body {
    padding-top: 56px; /* 为固定导航栏留出空间 */
}

/* 轮播图样式 */
.hero-swiper {
    height: 600px;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
}

/* 卡片样式 */
.card {
    transition: transform 0.3s ease;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* 数据统计样式 */
.count {
    font-weight: bold;
    color: #333;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-swiper {
        height: 400px;
    }
}

/* 作品集页面样式 */
.video-container {
    position: relative;
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-play i {
    color: #333;
}

/* 作品分类导航样式 */
.nav-pills .nav-link {
    color: #333;
    border-radius: 20px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: #fff;
}

/* 列表视图样式 */
.works-list .work-item {
    width: 100%;
}

.works-list .card {
    flex-direction: row;
}

.works-list .card-img-top {
    width: 300px;
    height: 100%;
}

.works-list .card-body {
    flex: 1;
}

/* 加载更多按钮样式 */
#loadMore {
    padding: 10px 30px;
    border-radius: 20px;
}

/* 视频模态框样式 */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 15px 20px;
}

.modal-body {
    padding: 0;
}

.embed-responsive {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

/* 关于我页面样式 */
/* 时间轴样式 */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #007bff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #007bff;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: calc(50% - 50px);
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 2px;
    background: #007bff;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -20px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -20px;
}

/* 技能进度条样式 */
.skill-item .progress {
    height: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
}

.skill-item .progress-bar {
    background-color: #007bff;
    border-radius: 5px;
    transition: width 1s ease;
}

/* 品牌logo样式 */
.brand-logo {
    max-height: 80px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-badge {
        left: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
    }
}

/* 合作咨询页面样式 */
/* 合作卡片样式 */
.cooperation-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cooperation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cooperation-card.featured {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: #fff;
}

.cooperation-card.featured .card-title,
.cooperation-card.featured .price {
    color: #fff;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0,123,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooperation-card.featured .icon-wrapper {
    background: rgba(255,255,255,0.2);
}

.cooperation-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.cooperation-card ul li i {
    position: absolute;
    left: 0;
    top: 4px;
}

.price {
    color: #333;
    font-weight: bold;
}

/* 表单样式 */
.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: none;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
}

/* 联系方式样式 */
.contact-item {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.social-links a {
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #007bff !important;
    transform: scale(1.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .cooperation-card {
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
}

/* 粉丝互动页面样式 */
/* 活动卡片样式 */
.event-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* 倒计时样式 */
.event-timer {
    background: rgba(0,123,255,0.1);
    padding: 10px;
    border-radius: 10px;
}

.timer-item {
    text-align: center;
}

.timer-item span {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    display: block;
}

.timer-item small {
    color: #666;
}

/* 福利卡片样式 */
.reward-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.reward-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.reward-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reward-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.reward-info {
    flex: 1;
}

.points {
    color: #ff6b6b;
    font-weight: bold;
}

/* VIP特权样式 */
.vip-privileges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.privilege-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.privilege-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privilege-item i {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

/* 留言板样式 */
.comments-list .card {
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
}

.reply-form {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.replies {
    margin-top: 15px;
    padding-left: 50px;
}

.reply-item {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* 抽奖转盘样式 */
.lottery-wheel {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    transition: transform 3s ease-out;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .vip-privileges {
        grid-template-columns: 1fr;
    }
    
    .reward-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reward-item img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .replies {
        padding-left: 20px;
    }
} 