/* 自定义样式，用于覆盖或添加特定样式 */

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 通用链接样式 */
a {
    transition: color 0.3s ease;
}

a:hover {
    color: #009f4a;
    text-decoration: underline;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 8px 16px;
    background: #207f4c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #009f4a;
    color: white;
    text-decoration: none;
}

/* 卡片样式 */
.card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* 表单样式 */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* 表格样式 */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th,
.table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.table th {
    background: #f5f5f5;
    font-weight: bold;
}

/* 提示框 */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.alert-info {
    background: #d9edf7;
    border: 1px solid #bce8f1;
    color: #31708f;
}

.alert-warning {
    background: #fcf8e3;
    border: 1px solid #faebcc;
    color: #8a6d3b;
}

.alert-danger {
    background: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background: #f5f5f5;
    border-radius: 4px;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li+li:before {
    content: "/ ";
    padding: 0 5px;
    color: #ccc;
}

/* 分页样式 */
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination li {
    display: inline;
}

.pagination li a {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #207f4c;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination li.active a {
    color: #fff;
    background-color: #207f4c;
    border-color: #207f4c;
}

