/* 重置基本元素样式 */
body, h2, table, th, td, label, select {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* 设置页面背景和字体 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 0;
}

/* 美化标题 */
h2 {
    color: #333;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 10px;
    margin-bottom: 20px;
	font-size: 1.25em;
}

/* 美化选择框和文本框 */
label {
    font-weight: bold;
    margin-right: 10px;
}

select, input[type="text"] {
    padding: 8px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

select:focus, input[type="text"]:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

/* 链接样式 */
a {
    margin-left: 1em;
    cursor: pointer;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* 美化表格 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

thead {
    background-color: #4a90e2;
    color: #fff;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: bold;
}

td {
    background-color: #fff;
}

/* 美化复选框 */
input[type="checkbox"] {
    margin: 0 10px;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

p.fee_report {
	line-height:2em;
}

p.fee_report span {
    display:inline-block;
    margin-right:2em;
	
	padding: 0 1em;

	border-bottom: 1px solid gray;
}

/* Vue.js 渲染时隐藏元素 */
[v-cloak] {
    display: none;
}

/* 加载动画样式 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 按钮链接样式 */
.button-link {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 1em;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    outline: none;
}

.button-link:hover {
    background-color: #0056b3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.button-link:active {
    background-color: #003580;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-link:focus {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    select, input[type="text"] {
        width: 100%;
        font-size: 14px;
    }

    table, thead, th, td {
        font-size: 14px;
    }

    .button-link {
        padding: 8px 15px;
        font-size: 14px;
    }

}
