body{
    font-family: "Microsoft Yahei",-apple-system,"PingFang SC","Helvetica Neue",STHeiti,Tahoma,Simsun,sans-serif;
}
#mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #666;
    opacity: 0.5;
    filter: alpha(opacity=50)-moz-opacity: 0.5;
    display: none;
}
.popup {
    position: absolute;
    left: 50%;
    width: 600px;
    height: 380px;
    background: #faebd7;
    z-index: 1000;
    border: 3px solid #6c757;
    display: none;
    padding: 1.4%;
    border-radius: 10px;
    box-shadow: #495057 -3px 0px 10px, #495057 3px 0px 10px, #495057 0px -3px 10px, #495057 0px 3px 10px;
}

.popup2 {
    position: absolute;
    left: 50%;
    width: 300px;
    height: 368px;
    background: #faebd7;
    z-index: 1000;
    border: 3px solid #6c757;
    display: none;
    padding: 1.4%;
    border-radius: 5px;
    box-shadow: #495057 -3px 0px 10px, #495057 3px 0px 10px, #495057 0px -3px 10px, #495057 0px 3px 10px;
}

.btn_close,.btn_close2 {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #721c24;
    border-radius: 10px;
    background-color: #ffc107;
}
/* .form-inline {
    width: 200px;
}*/
.row {
margin-right: 0px;
margin-left: 0px;
}

#footer {
    position:relative;
    bottom:0;
    width:100%;
    height:60px;
}

blockquote {
    margin: 1em 0;
    padding: 0.5em;
    border-left: 4px solid #ffc107;
    color: #664d03;
    background-color: #fff9e6;
    font-weight: bold;
    border-radius: 12px;
}

.table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}

.table-danger {
    background-color: #f5c6cb;
}

.table-warning {
    background-color: #ffeeba;
}

.table-success {
    background-color: #c3e6cb;
}

th {
    text-align: center!important;
}

th a {
	color: #FFFFFF;
	text-decoration: none;
}

/* 直接在table上实现圆角 */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    text-align: left;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* 使用伪元素创建圆角效果 */
table:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

thead {
    background: linear-gradient(135deg, #4a6fa5, #2c3e50);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

thead th {
    padding: 16px 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

thead th:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

tbody tr:hover {
    background-color: #e9f7fe;
}

tbody td {
    padding: 14px 15px;
    border-bottom: 1px solid #eaecef;
    color: #444;
    line-height: 1.5;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* 第一列特殊样式 */
tbody td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .table-container {
        border-radius: 8px;
    }

    table {
        font-size: 14px;
    }

    thead th, tbody td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    table {
        font-size: 13px;
    }

    thead th, tbody td {
        padding: 10px 8px;
    }
}

/* 亮度降到85%，自动变深 */

a:hover {
  filter: brightness(0.98);
  text-decoration: none;
}



a:hover font {
  color: inherit;
  filter: brightness(2);
}