/* 外层div的样式 */
.outer-div {
    text-align: center; /* 使用text-align替代align属性 */
    position: relative;
    top: 115px;
}

/* 内层div的样式 */
.inner-div {
    position: absolute;
    left: 540px;
    right: 80px;
    bottom: -8px;
    top: 1px;
}

a {
    text-decoration: none; /* 移除下划线 */
    color: dodgerblue; /* 继承父元素的颜色 */
    cursor: pointer; /* 改变鼠标指针样式 */
    outline: none; /* 移除轮廓 */
    transition: color 0.3s ease, background-color 0.3s ease; /* 添加过渡效果 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); /* 添加文本阴影 */
    font-family: 'Arial', sans-serif; /* 设置字体家族 */
    font-weight: 500; /* 调整字体粗细，使其不太明显 */
}

a:hover {
    color: orange; /* 点击时改变颜色 */
    text-decoration: underline; /* 点击时添加下划线 */
}

table {
    border: 1px solid black;
    border-collapse: collapse;
    width: 100%;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

th, td {
    border: 1px solid black;
    padding: 2px;
    text-align: center;
    font-weight: bold;
}

.tdNoneBorder {
    border: none;
}


