﻿
/*.mud-paper {
    border: 1px solid rgb(111, 111, 111, 0.44);*/ /* 边框颜色和宽度 */
    /*background-color: rgb(aa, aa, aa, 0.44);
}*/

.mud-table {
    background-color: rgb(111, 111, 111, 0.1);
}

.background {
    background-image: url('/images/topography.svg'); /* 确保路径正确 */
    background-size: 20%; /* 根据需要调整比例，越小显示的纹理越多 */
    background-repeat: repeat; /* 允许背景图重复 */
    position: fixed; /* 或者 absolute，根据需求 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 确保在底层 */
    opacity: 0.1; /* 设置透明度 */
}


.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* 居中内容 */
    align-items: center; /* 垂直居中 */
    text-align: center;
    padding: 10px 0;
    background: white; /* 可以选择背景颜色 */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* 添加阴影 */
}
