/* 成绩查询页面样式 */
.page-container {
    background-color: #F5F7FA;
    min-height: 100vh;
    padding: 15px;
}

.card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.section-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background-color: #1989fa;
    border-radius: 3px;
}

/* 表单元素 */
.form-item {
    margin-bottom: 15px;
}

.form-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-required:before {
    content: '*';
    color: #ee0a24;
    margin-right: 4px;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ebedf0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.form-input:focus {
    border-color: #1989fa;
    outline: none;
}

/* 查询按钮 */
.btn-primary {
    width: 100%;
    height: 45px;
    border: none;
    background-color: #1989fa;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-outline {
    width: 100%;
    height: 45px;
    border: 1px solid #1989fa;
    background-color: transparent;
    color: #1989fa;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 学生信息 */
.student-info {
    background-color: #f7f9fc;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    margin-bottom: 10px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    width: 80px;
    font-size: 14px;
    color: #666;
}

.info-value {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* 成绩表格 */
.score-table {
    border: 1px solid #ebedf0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.table-header {
    display: flex;
    background-color: #f7f9fc;
    border-bottom: 1px solid #ebedf0;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #ebedf0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    flex: 1;
    padding: 12px 10px;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-row {
    background-color: #f7f9fc;
    font-weight: 500;
}

.result-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.result-tag.pass {
    background-color: rgba(7, 193, 96, 0.1);
    color: #07c160;
}

.result-tag.fail {
    background-color: rgba(238, 10, 36, 0.1);
    color: #ee0a24;
}

/* 备注 */
.score-remark {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ebedf0;
}

.remark-title {
    font-weight: 500;
    margin-bottom: 5px;
}

/* 空状态 */
.empty-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
}

.empty-icon {
    font-size: 48px;
    color: #999;
    margin-bottom: 15px;
}

.icon-info {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: #f5f5f5;
    border-radius: 50%;
    position: relative;
}

.icon-info::before {
    content: "i";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-style: normal;
    font-family: sans-serif;
    font-weight: bold;
    color: #999;
}

.empty-text {
    font-size: 14px;
    color: #999;
    text-align: center;
} 