/* 提示框外层容器 */
#tm-info-tip-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto !important; /* 横向居中 */
}

/* 提示框样式 */
#tm-info-tip {
    background-color: #e6ffe6; /* 浅绿色背景 */
    color: #006400; /* 深绿色文字 */
    padding: 10px 20px;
    border: 2px dashed #c8e6c9; /* 边框颜色 */
    border-radius: 4px;
    margin: 10px;
    box-sizing: border-box;
    position: relative;
    font-size: 14px;
    text-align: left;
    line-height: 200%;
    margin-bottom: 20px;
}
/* 提示框样式 */
#tm-info-tip .bt20 {
    margin-bottom: 20px; /* 由原来的 20px 调整为 10px */
}
#tm-info-tip .bt10 {
    margin-bottom: 10px; /* 由原来的 20px 调整为 10px */
}
/* 加粗文字 */
.tm-info-bold {
    font-weight: bold;
}

/* 链接样式 */
.tm-info-link {
    color: #006400; 
    text-decoration: underline;
}

/* 关闭按钮样式 */
.tm-info-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    color: #006400;
    font-size: 16px;
    cursor: pointer;
}

/* 鼠标悬停时关闭按钮变暗 */
.tm-info-close-btn:hover {
    color: #004d00;
}
