/* 公共样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 登录页面样式 (index.html) */
.index-body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.index-login-container {
    width: 80%;
    max-width: 400px;
    margin: 80px auto 0;
    padding: 40px 0;
    flex: 1;
}

/* 添加输入框聚焦效果 */
.index-phone-input-wrapper:focus-within,
.index-password-input-wrapper:focus-within {
    box-shadow: 0 0 0 2px rgba(54, 142, 255, 0.1);
}

/* 添加layui表单样式覆盖 */
.index-layui-form {
    margin-bottom: 60px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .index-login-container {
        margin-top: 40px;
        padding: 20px;
    }

    .index-logo-container img {
        max-width: 100px;
    }
}

.index-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.index-logo-container img {
    max-width: 120px;
    height: auto;
}

.index-phone-input-wrapper {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 8px;
    background-color: #F8F8F8;
    overflow: hidden;
    height: 48px;
}

.index-phone-prefix {
    position: relative;
    padding: 0 15px;
    color: #666;
    height: 48px;
    line-height: 48px;
}

.index-phone-prefix::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #E6E6E6;
}

.index-phone-input-wrapper input {
    border: none;
    flex: 1;
    height: 100%;
    padding: 0 15px;
    outline: none;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

.index-form-item {
    margin-bottom: 25px;
}

.index-password-input-wrapper {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 8px;
    background-color: #F8F8F8;
    overflow: hidden;
    height: 48px;
}

.index-password-label {
    position: relative;
    padding: 0 15px;
    color: #666;
    height: 48px;
    line-height: 48px;
}

.index-password-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #E6E6E6;
}

.index-password-input-wrapper input,
.index-phone-input,
.index-password-input {
    border: none;
    flex: 1;
    height: 100%;
    padding: 0 15px;
    outline: none;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

.index-login-btn {
    width: 100%;
    height: 44px;
    background-color: #368EFF;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.index-login-btn:hover {
    background-color: #2a7ae2;
}

.index-forgot-password {
    text-align: center;
    margin-top: 15px;
}

.index-forgot-password a {
    color: #999999;
    text-decoration: none;
}

.index-forgot-password a:hover {
    color: #666;
}

.index-register-tip {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.index-register-tip a {
    color: #368EFF;
    text-decoration: none;
}

.index-register-tip a:hover {
    text-decoration: underline;
}

/* 登录页面样式 (login.html) */
.login-body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
}

.login-logo {
    margin-bottom: 40px;
    text-align: center;
}

.login-logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.login-phone-input-wrapper,
.login-password-input-wrapper {
    width: 100%;
    height: 52px;
    background-color: #f5f5f5;
    border-radius: 26px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.login-phone-input,
.login-password-input {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.login-password-input-wrapper {
    position: relative;
}

.login-password-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.login-password-toggle img {
    width: 20px;
    height: 20px;
}

.login-login-btn {
    width: 100%;
    height: 52px;
    background-color: #368EFF;
    color: white;
    border: none;
    border-radius: 26px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.3s;
}

.login-login-btn:hover {
    background-color: #2080FF;
}

.login-register-tip {
    position: fixed;
    bottom: 20px;
    font-size: 14px;
    color: #666;
}

.login-register-link {
    color: #368EFF;
    text-decoration: none;
}

/* 学习页面样式 (learning_page.html) */
.learning-body {
    background-color: #F8F9FA;
    color: #333;
}

.learning-navbar {
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.learning-back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.learning-back-button img {
    width: 14px;
    height: 20px;
}

.learning-navbar-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: center;
    margin: 0 -40px;
}

.learning-contact-service {
    color: #051427;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.learning-contact-service img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.learning-tabs {
    display: flex;
    background-color: #FFFFFF;
    margin-bottom: 8px;
}

.learning-tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    position: relative;
    cursor: pointer;
}

.learning-tab.active {
    color: #2080FF;
}

.learning-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #2080FF;
    border-radius: 1.5px;
}

.learning-filter-container {
    background-color: #FFFFFF;
    padding: 12px 16px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.learning-filter-select {
    margin-right: 12px;
    padding: 8px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    background-color: #FFFFFF;
    appearance: none;
    min-width: 80px;
    position: relative;
}

.learning-filter-select::after {
    content: '▼';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
}

.learning-knowledge-list {
    margin-top: 12px;
}

.learning-knowledge-card {
    background-color: #FFFFFF;
    margin: 0 16px 12px 16px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.learning-knowledge-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.learning-tags-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.learning-knowledge-tags {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.learning-tag {
    padding: 4px 10px;
    background-color: #F0F7FF;
    color: #2080FF;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

.learning-knowledge-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
    white-space: nowrap;
    gap: 16px;
}

.learning-action-buttons {
    display: flex;
    gap: 10px;
}

.learning-action-btn {
    padding: 10px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
}

.learning-action-btn.primary {
    background-color: #2080FF;
}

.learning-action-btn.secondary {
    background-color: #4CAF50;
}

.learning-action-btn.tertiary {
    background-color: #FD7045;
}

.learning-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.learning-modal-content {
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 360px;
    box-sizing: border-box;
    position: relative;
}

.learning-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.learning-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #0049A4;
    margin: 0;
}

.learning-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-modal-description {
    color: #0049A4;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.learning-customer-service-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    background: linear-gradient(to bottom, #E3EFFF, #fff);
    padding: 20px;
    border-radius: 12px;
}

.learning-customer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.learning-qrcode {
    margin-bottom: 10px;
}

.learning-qrcode-placeholder {
    width: 100px;
    height: 100px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    position: relative;
}

.learning-qrcode-placeholder::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-image:
        linear-gradient(45deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(135deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(225deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(315deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(to right, #000 2px, transparent 2px),
        linear-gradient(to bottom, #000 2px, transparent 2px);
    background-size: 8px 8px;
}

.learning-teacher-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 5px 0;
}

.learning-phone-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.learning-phone-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
}

.learning-teacher-phone {
    color: #2080FF;
    font-size: 13px;
    margin: 0;
    vertical-align: middle;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .learning-action-buttons {
        flex-wrap: wrap;
    }

    .learning-action-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 结果页面样式 (result.html) */
.result-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #2080FF;
    color: #333333;
    line-height: 1.5;
    background-image: url('../img/rbg.png');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 40% auto;
}

.result-header {
    background-color: transparent;
    padding: 16px 16px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.result-back-button {
    margin-right: 12px;
    display: flex;
    align-items: center;
    line-height: 0;
}

.result-back-button img {
    width: 20px;
    height: 20px;
}

.result-title {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
    text-align: center;
}

.result-star-rating {
    background-color: transparent;
    padding: 20px 16px;
    text-align: center;
    color: white;
}

.result-star-rating h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.result-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.result-star {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.result-star-filled img,
.result-star-empty img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-answer-card {
    background-color: white;
    margin: 16px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.result-answer-card-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.result-answer-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.result-stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.result-stat-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.result-stat-dot-unanswered {
    background-color: #E6E6E6;
}

.result-stat-dot-correct {
    background-color: #2080FE;
}

.result-stat-dot-wrong {
    background-color: #FF3B30;
}

.result-stat-label {
    font-size: 14px;
    color: #666;
}

.result-question-numbers {
    display: flex;
    gap: 12px;
}

.result-question-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.result-question-number-unanswered {
    background-color: #E6E6E6;
    color: #333;
}

.result-question-number-current {
    background-color: #FF3B30;
    color: white;
}

.result-question-number-correct {
    background-color: #2080FE;
    color: white;
}

.result-question-content {
    background-color: white;
    margin: 16px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.result-question-header {
    margin-bottom: 16px;
}

.result-question-number-title {
    font-size: 18px;
    font-weight: 500;
    margin-right: 8px;
}

.result-question-type {
    display: inline-block;
    padding: 4px 8px;
    background-color: #E7F1FF;
    color: #2080FE;
    border-radius: 4px;
    font-size: 14px;
}

.result-question-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.result-answer-section {
    margin-bottom: 24px;
}

.result-answer-item {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.result-answer-label {
    font-size: 14px;
    color: #666;
}

.result-answer-content {
    display: flex;
    gap: 16px;
}

.result-answer-value {
    font-size: 16px;
    border-bottom: 1px solid #d1d1d1;
    padding: 0 8px;
}

.result-answer-value-correct {
    color: #2080FF;
}

.result-answer-value-user {
    color: #EF2220;
}

.result-analysis-section {
    border-top: 1px solid #E6E6E6;
    padding-top: 16px;
}

.result-analysis-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.result-analysis-title img {
    width: 14px;
    height: 14px;
    margin-left: 8px;
}

.result-analysis-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.result-analysis-content p {
    margin-bottom: 8px;
}

.result-continue-button {
    margin: 16px;
    padding: 0 16px 20px;
}

.result-continue-btn {
    width: 100%;
    height: 48px;
    background-color: #368EFF;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.result-continue-btn:hover {
    background-color: #2a7ae2;
}

/* 响应式调整 */
@media (max-width: 375px) {
    .result-title {
        font-size: 16px;
    }

    .result-question-text {
        font-size: 14px;
    }
}

/* 考试页面样式 (exam.html) */
.exam-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.5;
}

/* 顶部导航 */
.exam-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #D0E4FC 0%, #FFFFFF 100%);
    padding: 16px 16px 20px;
    display: flex;
    align-items: center;
}

.exam-back-button {
    margin-right: 12px;
    display: flex;
    align-items: center;
    line-height: 0;
}

.exam-back-button img {
    width: 20px;
    height: 20px;
}

.exam-title {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 信息栏 */
.exam-info-bar {
    display: flex;
    padding: 12px 16px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F8F8F8;
    justify-content: space-between;
}

.exam-info-item {
    display: flex;
    align-items: center;
}

.exam-info-item img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.exam-info-item .exam-card-info {
    color: #2080FE;
}

.exam-card-item {
    cursor: pointer;
}

/* 题卡弹出框样式 */
.exam-card-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 70vh;
    background-color: #FFFFFF;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.exam-card-popup-active {
    bottom: 0;
}

.exam-card-popup-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #F8F8F8;
}

.exam-card-popup-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    flex: 1;
    text-align: center;
}

.exam-close-button {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    font-size: 24px;
    color: #999999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.exam-close-button:hover {
    background-color: #F8F8F8;
    color: #333333;
}

.exam-card-grid {
    padding: 20px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.exam-card-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    margin: 10px auto;
}

.exam-card-item-unanswered {
    background-color: #EAEAEA;
    color: #333333;
}

.exam-card-item-answered {
    background-color: #2080FF;
    color: #FFFFFF;
}

.exam-card-item-current {
    border-color: #2080FF;
    box-shadow: 0 2px 8px rgba(32, 128, 254, 0.3);
}

.exam-card-item:hover {
    /* 移除悬停缩放效果以避免卡顿 */
}

/* 遮罩层样式 */
.exam-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 1999;
}

.exam-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* 分割线 */
.exam-divider {
    height: 8px;
    background-color: #F8F8F8;
}

/* 题目内容 */
.exam-question-section {
    padding: 16px;
}

.exam-question-number {
    font-size: 18px;
    margin-right: 8px;
}

.exam-question-type {
    display: inline-block;
    padding: 4px 8px;
    background-color: #E7F1FF;
    color: #2080FE;
    border-radius: 4px;
    font-size: 14px;
}

.exam-question-header {
    margin-bottom: 12px;
}

.exam-question-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* 富文本内容区域 */
.exam-rich-text-content {
    padding: 16px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    min-height: 120px;
    background-color: #FFFFFF;
    margin-bottom: 80px;
}

/* 底部导航按钮 */
.exam-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 16px;
    background-color: #FFFFFF;
    border-top: 1px solid #E6E6E6;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.exam-nav-button {
    flex: 0 0 45%;
    height: 48px;
    background-color: #368EFF;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
}

/* 响应式调整 */
@media (max-width: 375px) {
    .exam-title {
        font-size: 16px;
    }

    .exam-nav-button {
        font-size: 14px;
    }
}

/* 追根溯源页面样式 (trace_origin.html) */
.trace-body {
    background-color: #F8F9FA;
    color: #333;
}

.trace-navbar {
    background: linear-gradient(180deg, #D0E4FC 0%, #FFFFFF 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trace-back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trace-back-button img {
    width: 24px;
    height: 24px;
}

.trace-navbar-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: center;
    margin: 0 -40px;
}

.trace-contact-service {
    color: #051427;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.trace-contact-service img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.trace-main-header {
    background-color: #FFFFFF;
    padding: 20px 16px;
}

.trace-header-content {
    background-color: #E8F2FF;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.trace-header-image {
    width: 100%;
    height: auto;
    line-height: 0;
}

.trace-knowledge-section {
    background-color: #FFFFFF;
}

.trace-section-title {
    font-size: 15px;
    color: #9DA0A5;
    padding: 0 16px;
}

.trace-knowledge-items {
    padding: 0 16px;
}

.trace-knowledge-item {
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trace-knowledge-item:last-child {
    border-bottom: none;
}

.trace-item-cont {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.trace-item-image-cont {
    width: 120px;
    height: 70px;
    background: #E8F2FF;
    position: relative;
    border-radius: 8px;
    margin-right: 12px;
}

.trace-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}

.trace-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.trace-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.trace-item-progress {}

.trace-progress-status {
    font-size: 12px;
    color: #FE3A3A;
}

.trace-progress-bar {
    height: 8px;
    background-color: #F0F0F0;
    border-radius: 4px;
    overflow: hidden;
}

.trace-progress-fill {
    height: 100%;
    background-color: #FD7045;
    border-radius: 4px;
}

.trace-progress-done .trace-progress-fill {
    background-color: #2080FF;
}

.trace-progress-done .trace-progress-status {
    color: #2080FF;
}

.trace-progress-text {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.trace-item-button {
    padding: 8px 16px;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 12px;
    flex-shrink: 0;
}

.trace-item-button.secondary {
    background-color: #E8F2FF;
    color: #2080FF;
}

.trace-item-button.primary {
    background-color: #2080FF;
    color: #FFFFFF;
}

.trace-continue-button {
    padding: 12px 16px;
    margin: 20px 16px;
}

.trace-continue-btn {
    width: 100%;
    padding: 12px;
    background-color: #2080FF;
    color: #FFFFFF;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 480px) {
    /* .trace-knowledge-item {
        flex-direction: column;
        align-items: flex-start;
    } */

    .trace-item-button {
        margin-left: 0;
        /* margin-top: 12px; */
    }
}

/* 学习页面样式 */
.learning-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #F8F9FA;
    color: #333;
    margin: 0;
    padding: 0;
}

.learning-navbar {
    background-color: #FFFFFF;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    position: sticky;
    top: 0;
}

.learning-back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.learning-back-button img {
    width: 14px;
    height: 20px;
}

.learning-navbar-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: center;
    margin: 0 -40px;
}

.learning-contact-service {
    color: #051427;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.learning-contact-service img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.learning-tabs {
    display: flex;
    background-color: #FFFFFF;
    margin-bottom: 8px;
}

.learning-tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    position: relative;
    cursor: pointer;
}

.learning-tab-active {
    color: #2080FF;
}

.learning-tab-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #2080FF;
    border-radius: 1.5px;
}

.learning-filter-container {
    background-color: #FFFFFF;
    padding: 12px 16px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.learning-filter-select {
    margin-right: 12px;
    padding: 8px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    background-color: #FFFFFF;
    appearance: none;
    min-width: 80px;
    position: relative;
}

.learning-filter-select::after {
    content: '▼';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
}

.learning-knowledge-list {
    margin-top: 12px;
}

.learning-knowledge-card {
    background-color: #FFFFFF;
    margin: 0 16px 12px 16px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.learning-knowledge-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.learning-tags-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.learning-knowledge-tags {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.learning-tag {
    padding: 4px 10px;
    background-color: #F0F7FF;
    color: #2080FF;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

.learning-knowledge-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
    white-space: nowrap;
    gap: 16px;
}

.learning-action-buttons {
    display: flex;
    gap: 10px;
}

.learning-action-btn {
    padding: 10px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
}

.learning-action-btn-primary {
    background-color: #2080FF;
}

.learning-action-btn-secondary {
    background-color: #4CAF50;
}

.learning-action-btn-tertiary {
    background-color: #FD7045;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .learning-action-buttons {
        flex-wrap: wrap;
    }

    .learning-action-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 客服弹窗样式 */
.learning-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.learning-modal-content {
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 360px;
    box-sizing: border-box;
    position: relative;
}

.learning-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.learning-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #0049A4;
    margin: 0;
}

.learning-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-modal-description {
    color: #0049A4;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.learning-customer-service-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    background: linear-gradient(to bottom, #E3EFFF, #fff);
    padding: 20px;
    border-radius: 12px;
}

.learning-customer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.learning-qrcode {
    margin-bottom: 10px;
}

.learning-qrcode-placeholder {
    width: 100px;
    height: 100px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    position: relative;
}

.learning-qrcode-placeholder::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-image:
        linear-gradient(45deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(135deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(225deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(315deg, #000 25%, transparent 25%) -2px -2px,
        linear-gradient(to right, #000 2px, transparent 2px),
        linear-gradient(to bottom, #000 2px, transparent 2px);
    background-size: 8px 8px;
}

.learning-teacher-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 5px 0;
}

.learning-phone-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.learning-phone-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
}

.learning-teacher-phone {
    color: #2080FF;
    font-size: 13px;
    margin: 0;
    vertical-align: middle;
}

/* 数学视频页面样式 */
.math-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
}

.math-navbar {
    background: linear-gradient(180deg, #D0E4FC 0%, #FFFFFF 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.math-back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.math-back-button img {
    width: 20px;
    height: 20px;
}

.math-navbar-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: center;
    margin: 0 -40px;
}

.math-contact-service {
    color: #051427;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.math-contact-service img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.math-tabs {
    display: flex;
    background-color: #fff;
    margin-bottom: 8px;
}

.math-tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    position: relative;
    cursor: pointer;
}

.math-tab-active {
    color: #2080FF;
}

.math-tab-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #2080FF;
    border-radius: 1.5px;
}

.math-video-container {
    background-color: #fff;
    margin: 0 16px 16px 16px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.math-video-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.math-video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.math-video-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.math-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.math-play-button img {
    width: 50px;
    height: 50px;
    margin-left: 3px;
    object-fit: contain;
}

.math-continue-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 12px;
    background-color: #2080FF;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(32, 128, 255, 0.3);
    transition: background-color 0.3s;
}

.math-continue-btn:hover {
    background-color: #1873E8;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .math-video-title {
        font-size: 16px;
    }
}

/* forgot-password页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.forgot-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
}

.forgot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
}

.forgot-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-header-left img {
    width: 24px;
    height: 24px;
}

.forgot-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-page-title {
    text-align: center;
    margin: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.forgot-reset-container {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
}

.forgot-form-item {
    margin-bottom: 20px;
}

.forgot-phone-input-wrapper,
.forgot-email-input-wrapper,
.forgot-verification-input-wrapper,
.forgot-password-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 12px;
    background-color: #FAFAFA;
}

.forgot-phone-prefix,
.forgot-email-prefix,
.forgot-verification-prefix,
.forgot-password-prefix {
    color: #999999;
    margin-right: 12px;
    white-space: nowrap;
}

.forgot-phone-input,
.forgot-email-input,
.forgot-verification-input,
.forgot-password-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

.forgot-phone-input::placeholder,
.forgot-email-input::placeholder,
.forgot-verification-input::placeholder,
.forgot-password-input::placeholder {
    color: #BBBBBB;
}

.forgot-verification-input-wrapper {
    position: relative;
}

.forgot-verification-input {
    padding-right: 120px;
}

.forgot-send-code-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 12px;
    background-color: #2080FF;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.forgot-send-code-btn:disabled {
    background-color: #CCCCCC;
    cursor: not-allowed;
}

.forgot-reset-button {
    width: 100%;
    padding: 14px;
    background-color: #2080FF;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
}

.forgot-reset-button:hover {
    background-color: #1873E8;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .forgot-page-title {
        font-size: 16px;
        margin: 16px 0;
    }

    .forgot-reset-container {
        padding: 16px;
    }

    .forgot-phone-input-wrapper,
    .forgot-email-input-wrapper,
    .forgot-verification-input-wrapper,
    .forgot-password-input-wrapper {
        padding: 10px;
    }

    .forgot-phone-input,
    .forgot-email-input,
    .forgot-verification-input,
    .forgot-password-input {
        font-size: 14px;
    }

    .forgot-send-code-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .forgot-reset-button {
        padding: 12px;
        font-size: 14px;
    }
}

/* trace_origin页面样式 */
.trace-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8F9FA;
}

.trace-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(180deg, #D0E4FC 0%, #FFFFFF 100%);
    color: #FFFFFF;
}

.trace-back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.trace-back-button img {
    width: 24px;
    height: 24px;
}

.trace-navbar-title {
    font-size: 18px;
    font-weight: 600;
}

.trace-contact-service {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.trace-contact-service img {
    width: 20px;
    height: 20px;
}

.trace-main-header {
    padding: 16px;
    background-color: #FFFFFF;
}

.trace-header-content {
    background-color: #E8F2FF;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.trace-header-image {
    max-width: 100%;
    height: auto;
}

.trace-knowledge-section {
    padding: 16px;
    background-color: #FFFFFF;
}

.trace-section-title {
    margin-bottom: 16px;
    color: #9DA0A5;
}

.trace-knowledge-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trace-knowledge-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.trace-item-cont {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.trace-item-image-cont {
    width: 120px;
    height: 70px;
    background-color: #E8F2FF;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.trace-item-play {
    width: 24px;
    height: 24px;
}

.trace-item-info {
    flex: 1;
}

.trace-item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.trace-item-progress {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trace-progress-status {
    font-size: 12px;
    color: #666;
}

.trace-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #EEEEEE;
    border-radius: 4px;
    overflow: hidden;
}

.trace-progress-fill {
    height: 100%;
    background-color: #FD7045;
    border-radius: 4px;
}

.trace-item-progress-done .trace-progress-status {
    color: #2080FF;
}

.trace-item-progress-done .trace-progress-fill {
    background-color: #2080FF;
}

.trace-item-button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.trace-item-button-primary {
    background-color: #2080FF;
    color: #FFFFFF;
    border: 1px solid #2080FF;
}

.trace-item-button-primary:hover {
    background-color: #1E6FFF;
    border-color: #1E6FFF;
}

.trace-item-button-secondary {
    background-color: #FFFFFF;
    color: #666;
    border: 1px solid #DDDDDD;
}

.trace-item-button-secondary:hover {
    background-color: #F8F9FA;
}

.trace-continue-button {
    padding: 16px;
    background-color: #FFFFFF;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.trace-continue-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #2080FF;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.trace-continue-btn:hover {
    background-color: #1E6FFF;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .trace-navbar {
        padding: 12px;
    }

    .trace-navbar-title {
        font-size: 16px;
    }

    .trace-contact-service {
        font-size: 12px;
    }

    .trace-contact-service img {
        width: 18px;
        height: 18px;
    }

    .trace-main-header {
        padding: 12px;
    }

    .trace-header-content {
        padding: 16px;
    }

    .trace-knowledge-section {
        padding: 12px;
    }

    .trace-section-title {
        font-size: 16px;
    }

    .trace-knowledge-item {}

    .trace-item-cont {
        width: 100%;
    }

    .trace-item-image-cont {
        width: 100px;
        height: 56px;
    }

    .trace-item-title {
        font-size: 14px;
    }

    .trace-item-button {
        align-self: flex-end;
        padding: 6px 12px;
        font-size: 12px;
    }

    .trace-continue-button {
        padding: 12px;
    }

    .trace-continue-btn {
        padding: 12px;
        font-size: 14px;
    }
}

.report-body{
    padding-bottom: 20px;
}
.forgot-header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.forgot-header-content {
    display: flex;
    align-items: center;
}

.forgot-back-button {
    margin-right: 10px;
}

.forgot-back-button img {
    width: 12px;
    height: 20px;
}

.forgot-page-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.reset-container {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0;
}

.form-item {
    margin-bottom: 25px;
}

.phone-input-wrapper,
.verification-code-wrapper,
.password-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #F8F8F8;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

.phone-prefix,
.code-label,
.password-label {
    position: relative;
    padding: 0 15px;
    color: #666;
    height: 48px;
    line-height: 48px;
}

.phone-prefix::after,
.code-label::after,
.password-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #E6E6E6;
}

.phone-input-wrapper input,
.password-input-wrapper input {
    border: none;
    flex: 1;
    height: 100%;
    padding: 0 15px;
    outline: none;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

.verification-code-wrapper input {
    border: none;
    flex: 1;
    height: 100%;
    padding: 0 15px;
    outline: none;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

.get-code-button {
    padding: 0 15px;
    color: #368EFF;
    font-size: 14px;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
}

.reset-button {
    width: 100%;
    height: 48px;
    background-color: #368EFF;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 40px;
}

.reset-button:hover {
    background-color: #2979FF;
}

@media (max-width: 768px) {
    .reset-container {
        width: 90%;
    }

    .forgot-header {
        padding: 15px;
    }
}

.report-body {
    background: #1C93FF;
}

.report-header {
    padding: 20px;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
}

.report-title {
    margin-left: 10px;
    width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.report-header img {
    width: 20px;
    height: 20px;
}

.report-info {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.report-info .repot-left {
    display: flex;
    color: #fff;
    position: relative;
    
}

.repot-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.report-info .repot-left .report-item {
    margin-right: 20px;
}

.report-item-content {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 4px;
}

.report-item-label {
    background: rgba(255, 255, 255, 0.336);
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
    margin-right: 4px;
}

.report-right {
    background: #fff;
    padding: 1px 4px;
    border-radius: 20px;
    position: relative;
    padding: 80px 20px 20px;
}

.report-right .tx-img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);

}

.report-right .tx-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 4px;

}

.report-right .tx-name {
    font-size: 14px;
    text-align: center;
}

.report-ritem {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report-ritem-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.report-ritem-content::before {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    background: #E6E6E6;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.report-ritem-content:last-child::before {
    display: none;
}

.report-ritem-content span {
    font-size: 14px;
    color: #999999;
}

.report-ritem-content .t1 {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.re-bgw {
    background: #F8F8F8;
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
}

.re-list-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.re-list-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.re-list-item div {
    flex-shrink: 0;
    margin: 3px 4px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-right: 10px;
}

.re-list-item div.blue {
    background: #368EFF;
}

.re-list-item div.error {
    background: #FF4D4F;
}
.color-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-item div {
    font-size: 14px;
    color: #333333;
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.color-item .t1 {
    background: #F07320;
    width: 40px;
    height: 15px;
    display: inline-block;
    border-radius: 2px;
    margin-left: 5px;
}
.color-item .t2 {
    background: #2DE1B9;
    width: 40px;
    height: 15px;
    display: inline-block;
    border-radius: 2px;
    margin-left: 5px;
}
.progress-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.progress-label {
    font-size: 14px;
    color: #999999;
    display: flex;
    align-items: center;
    margin-right: 10px;
    width: 42px;
}
.progress-warp {
    flex: 1;
    height: 10px;
    background: #cdcdcd;
    border-radius: 5px;
    overflow: hidden;
}
.progress-bar {
    height: 10px;
    background: #368EFF;
    border-radius: 5px;
}
.progress-count {
    font-size: 14px;
    color: #1C93FF;
    margin-left: 5px;
}
.progress-bar1 {
    height: 10px;
    background: #2DE1B9;
    border-radius: 5px;
}
.re-list-title1 {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
    text-indent: 10px;
}
.re-list-title1::after {
    content: '';
    display: block;
    width: 4px;
    height: 14px;
    background: #F0AE20;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.re-list-item1 {
    margin-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 10px;
}
.re-list-item1 .item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
    /* text-indent: 10px; */
    display: flex;
    align-items: center;
}
.re-list-item1 .item-title img {
    width: 14px;
    height: 14px;
    margin-left: 5px;
}
.re-list-item1 .color-list {
    display: flex;
    align-items: center;
}
.re-list-item1 .color-list div {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-right: 10px;
}
.re-list-item1 .color-list div.error {
    background: #FF4D4F;
}
.re-list-item1 .color-list div.blue {
    background: #368EFF;
}
.pb0{
    padding-bottom: 0;
}
.pb5{
    padding-bottom: 5px;
}
.detail-link-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.re-list-content {    font-size: 14px;
    color: #333333;
}
.btn-warp {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
    margin-top: 20px;
}
.btn-primary {
    background: #368EFF;
    box-shadow: 0px 4px 1px 0px #106BE1;
}
.btn-primary1 {
    background: #0DB690;
    box-shadow: 0px 4px 1px 0px #048769;
}



@media (max-width: 768px) {
    .report-info {
        flex-direction: column;
    }

    .repot-left {
        width: 100%;
        justify-content: space-between;
        height: 150px;
        align-items: center;
    }

    .report-right {
        width: 100%;
    }
}