.arti-content {
    font-family: "Noto Serif SC", "SimSun", serif;
    line-height: 1.8;
    color: #3a4a3a;
    background-color: #f8faf8;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236d8c6d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 20px;
}


/* 标题样式 */
.arti-content h1 {
    color: #4a6b4a;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #8caa8c;
    position: relative;
}

.arti-content h1::after {
    content: "🍃";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 10px;
    font-size: 1.5rem;
}

.arti-content h3 {
    color: #5a7c5a;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #8caa8c;
    background-color: #f0f5f0;
    padding: 10px 15px;
    border-radius: 0 8px 8px 0;
}

/* 段落样式 */
.arti-content p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
}

/* 强调文字 */
.arti-content strong {
    color: #5a7c5a;
    font-weight: 700;
    position: relative;
}

/* 图片样式 */
.arti-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #d0e0d0;
}

/* 表格样式 */
.arti-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    overflow: hidden;
}

.arti-content th, .arti-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #d0e0d0;
}

.arti-content th {
    background-color: #6d8c6d;
    color: #f8faf8;
    font-weight: 600;
}

.arti-content tr:nth-child(even) {
    background-color: #f0f5f0;
}

.arti-content tr:hover {
    background-color: #e8f0e8;
}

/* 列表样式 */
.arti-content ol, .arti-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.arti-content li {
    margin-bottom: 10px;
    position: relative;
}

.arti-content ol li::marker {
    color: #8caa8c;
    font-weight: bold;
}

.arti-content ul li::before {
    content: "•";
    color: #8caa8c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    
    .arti-content h1 {
        font-size: 1.8rem;
    }
    
    .arti-content h3 {
        font-size: 1.3rem;
    }
}

/* 装饰元素 */
.arti-content .tea-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
    font-size: 10rem;
    color: #6d8c6d;
}

.arti-content .tea-leaf-1 {
    top: 50px;
    right: -30px;
    transform: rotate(15deg);
}

.arti-content .tea-leaf-2 {
    bottom: 100px;
    left: -40px;
    transform: rotate(-10deg);
}

/* 最后一个段落特殊样式 */
.arti-content p:last-of-type {
    background-color: #f0f5f0;
    border-left: 4px solid #8caa8c;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}