body {
	padding-top: 60px;
}
.tom01 {
    line-height: 36px;
}

/* 添加响应式设计，针对手机屏幕进行优化 */
@media (max-width: 768px) {
    .tom01 {
        line-height: 1.6; /* 在手机上使用相对单位，更易读 */
        font-size: 16px; /* 设置合适的字体大小 */
        word-wrap: break-word; /* 长单词换行 */
        overflow-wrap: break-word; /* 现代浏览器的换行支持 */
    }
    
    /* 确保图片在移动端自适应 */
    .tom01 img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 10px auto;
    }
}

/* 更小屏幕的额外优化 */
@media (max-width: 480px) {
    .tom01 {
        line-height: 1.5;
        font-size: 15px;
    }
}
pre {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 1rem;
    border-radius: 0.25rem;
    overflow: auto;
}
.tom-map1{
    max-height:150px;
}

/* 确保文章内容中的图片自适应宽度 */
.card-text img {
    max-width: 100%;
    height: auto;
}