.entry-content {
    line-height: 2;
    font-size: 16px;
}

.entry-content h2 {
    font-size: 24px;
    padding-bottom: 10px;
    margin: 40px 0 25px;
}

.entry-content h3 {
    font-size: 20px;
    margin: 35px 0 20px;
    padding-left: 12px;
}

/* 图片样式 */
.entry-content img {
    max-width: 100%;
    margin: 30px auto;
    display: block;
}

/* 引用块样式 */
.entry-content blockquote {
    background-color: #f8fafa;
    border-left: 4px solid #6c6b6b;
    margin: 25px 0;
    padding: 20px 25px;
    color: #666;
}

/* 列表样式 */
.entry-content ul {
    padding-left: 30px;
    margin: 20px 0;
}

.entry-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    list-style: none;
}

.entry-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

/* 段落间距 */
.entry-content p {
    text-align: justify;
}

/* 强调文字 */
.entry-content strong {
    font-weight: 600;
}

/* 链接样式 */
.entry-content a {
    text-decoration: underline;
    transition: color 0.3s;
}

/* 代码块样式 */
.entry-content pre {
    background: #f8fafa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e0f0f0;
    margin: 20px 0;
    overflow-x: auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .entry-content {
        font-size: 15px;
        padding: 0 15px;
    }

    .entry-content h2 {
        font-size: 20px;
        margin: 30px 0 20px;
    }

    .entry-content h3 {
        font-size: 18px;
        margin: 25px 0 15px;
    }

    .entry-content blockquote {
        padding: 15px;
        margin: 20px 0;
    }
}

/* 广告盒子 */
.blog_ad_box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 23px 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* 背景图层1 - 橙色柱状图 */
.ad_bg_layer1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: linear-gradient(to top, rgba(255, 140, 50, 0.6) 0%, rgba(255, 140, 50, 0.2) 60%, transparent 100%);
    opacity: 0.8;
    z-index: 1;
}

.ad_bg_layer1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 90px;
    width: 80px;
    height: 190px;
    background: linear-gradient(to top, #ff8c32 0%, rgba(255, 140, 50, 0.5) 100%);
    border-radius: 4px 4px 0 0;
}

/* 背景图层2 - 渐变点阵 */
.ad_bg_layer2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(255, 140, 50, 0.3) 0%, rgba(255, 100, 150, 0.2) 50%, transparent 80%);
    opacity: 0.7;
    z-index: 1;
}

.ad_bg_layer2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 140, 50, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 20% 15%, rgba(255, 140, 50, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 30% 20%, rgba(255, 120, 80, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 40% 25%, rgba(255, 120, 100, 0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 30%, rgba(255, 100, 120, 0.2) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 35%, rgba(255, 100, 140, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, rgba(255, 100, 150, 0.1) 1px, transparent 1px);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.ad_content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.ad_title {
    font-size: 20px;
    font-weight: 700;
    color: #F56624;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.ad_subtitle {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 19px 0;
}

.ad_btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8533 0%, #ff6600 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    cursor: pointer;
}