/* news index.css */

.news-main {
    min-width: 1200px;
}

/* 大牛微信公众号样式 - 炫酷渐变背景 */
.wechat-account {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 25%, #f5f7ff 50%, #faf8ff 75%, #fff5f5 100%);
    padding: 30px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 40px rgba(234, 63, 40, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(234, 63, 40, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wechat-account::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ea3f28, #ff6b4a, #ff8f70, #07c160, #07c160);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.wechat-account::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(7, 193, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.wechat-account:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(234, 63, 40, 0.15), 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* 微信二维码容器 */
.wechat-account img {
    width: 120px;
    height: 120px;
    margin-right: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wechat-account:hover img {
    transform: scale(1.05);
}

/* 微信信息区域 */
.wechat-info {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    flex: 1;
}

.wechat-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wechat-name::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #07c160, #10b981);
    border-radius: 50%;
    display: inline-block;
}

/* 标题样式统一 */
.news-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ea3f28, #ff6b4a);
    border-radius: 2px;
}

/* 新闻卡片样式优化 */
.news-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(234, 63, 40, 0.08);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(234, 63, 40, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.news-card-img {
    border-radius: 12px 12px 0 0;
}
