.toggle-container {
    position: relative;
    margin: 1em 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.toggle-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

/* 阅读全文样式 - 居中且文字更大 */
.toggle-button {
    display: block; /* 改为块级元素以便居中 */
    text-align: center; /* 文字居中 */
    margin: 1em 0 0; /* 顶部留出间距，取消左侧间距 */
}

.toggle-button a {
    color: #165DFF; /* 蓝色文字 */
    text-decoration: none;
    cursor: pointer;
    font-weight: bold; /* 保持加粗 */
    font-size: 18px; /* 文字变大 */
    /* 移除所有按钮相关样式 */
    padding: 0;
    border-radius: 0;
    background: none;
    transition: color 0.3s ease; /* 仅保留颜色过渡 */
}

.toggle-button a:hover {
    color: #0E42D2; /*  hover时颜色加深 */
    background: none; /* 移除背景色 */
}

.toggle-less {
    display: none;
}

/* 适配ripro v5主题的额外样式 */
.ripro-v5 .toggle-container {
    border: 1px solid #f0f0f0;
}

.ripro-v5 .toggle-content p {
    margin-bottom: 10px;
}

.ripro-v5 .toggle-content img {
    max-width: 100%;
    height: auto;
}
