/* =========================================================
   clone.css — 复刻补充样式
   base.css / score.css 保持与原站一致，本文件仅补齐：
   1. 验证码图片
   2. 成绩单视图（蓝底 + 白色边框卡片，与原站成功页一致）
   ========================================================= */

/* —— 验证码图片 —— */
.yanZm_img {
    width: 55px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #bbb;
}

/* —— 查询按钮等待态 —— */
.g-btn.loading {
    color: #5a5a5a;
    background-color: #d8d8d8;
    cursor: default;
}

/* —— 错误提示 —— */
#tip {
    display: block;
    padding: .2rem .5rem;
    min-height: 14px;
}

/* —— 成绩单视图 —— */
#Transcript {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1.8rem 1.2rem 2.5rem;
    color: #fff;
}

/* 白色边框卡片 */
#Transcript .score-card {
    border: 2px solid #fff;
    padding: 1.4rem 2.2rem 2.8rem;
}

/* 顶部：左侧徽标 + 居中标题 */
#Transcript .score-head {
    position: relative;
    height: 78px;
}
#Transcript .score-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 74px;
    height: 74px;
    background-image: url(title.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}
#Transcript .score-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 74px;
    letter-spacing: 2px;
}

/* 成绩正文 */
#Transcript .score-body {
    margin-top: 1.8rem;
    font-size: 1.3rem;
    line-height: 2.4;
}
#Transcript .score-body p {
    margin: 0;
}
#Transcript .score-body .label {
    letter-spacing: 2px;
}
#Transcript .score-body u {
    text-decoration: underline;
    text-underline-offset: 4px;
}
#Transcript .score-body .detail u {
    word-spacing: 6px;
}

/* 返回按钮 */
#Transcript .back-row {
    width: 16rem;
    margin: 2rem auto 0;
}
#Transcript .back-row .g-btn {
    width: 100%;
    height: 2.6rem;
    line-height: 2.6rem;
    font-size: .95rem;
}
