*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    padding:  15px 15px 15px;
    position: relative;
}

.header {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
    padding-top:15px;
    padding-bottom:15px;
    color: #333333;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.header p {
    font-size: 14px;
    opacity: 0.9;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}


.card-title {
    display: flex;
    align-items: center;
    color: #1a2a6c;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f8;
}
.card-timg {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f8;
}
.card-timg img{
    width: 50%;
}
.card50{
    width: 50%;
}
.cardimg img{
    width: 50%;
}

.cardzsimg img{
    width: 20%;
}


.user-info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: #f6f6f6;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 20px; padding-bottom: 20px;
    border-radius: 12px;
}

.info-item {
    flex: 1;
    padding: 0 5px;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    font-size: 18px;
    font-weight: bold;
    color: #1a2a6c;
}

.scores-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    text-align: center;
}

.score-item {
    flex: 1;
    padding: 15px 5px;
    position: relative;
}

.score-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: #e0e6ed;
}

.score-label {
    font-size: 16px;
    color: #1a2a6c;
    font-weight: 600;
    margin-bottom: 10px;
}

.score-value {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b6b;
    text-shadow: 0 2px 4px rgba(255,107,107,0.2);
}

.countdown {
    margin: 0px 0;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    padding-top: 5px; padding-bottom: 5px;
}

.countdown-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.countdown-title i {
    margin-right: 8px;
    font-size: 20px;
}


.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.countdown-label {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.countdown-value {
    font-size: 22px;
    font-weight: 800;
    color: #ffd700;

}
.analysis-section {
    margin-top: 20px;
}

.analysis-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e6ed;
}

.analysis-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.analysis-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 12px;
}

.analysis-title i {
    margin-right: 8px;
    color: #ff6b6b;
}

.analysis-content {
    font-size: 16px;
    color: #444;
    line-height: 2.0;
}

.highlight {
    color: #e54d42;
    font-weight: bold;
    font-size: 18px;
}

.progress-container {
    margin-top: 10px;
    height: 10px;
    background: #e0e6ed;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 5px;
}

.blue-bar {
    background: linear-gradient(90deg, #1a2a6c, #4b86b4);
    width: 89%;
}

.green-bar {
    background: linear-gradient(90deg, #0ba360, #3cba92);
    width: 69.5%;
}



.stat-card {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 12px;
    border-left: 4px solid #4b86b4;
}

.stat-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a6c;
}

.trend-section {
    margin-top: 15px;
}

.trend-item {
    margin-bottom: 15px;
    padding: 12px;
    background: #f9fbfd;
    border-radius: 10px;
    border-left: 3px solid #ff6b6b;
}

.trend-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 8px;
}

.trend-content {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.footer {
    width: 1000px;
    margin: 0 auto;
    color: 0b162e;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1080px) {
    .scores-container {
        flex-direction: column;
        gap: 15px;
    }

    .score-item:not(:last-child)::after {
        display: none;
    }


}
.uniimg{width: 50px; margin-top:2px; margin-right: 8px; }
.uni-gray{font-size: 11px; background: #f0f0f0 ; padding-left: 4px;}
.cu-avatar{width: 30px; height: 30px; border-radius: 4px; line-height: 30px; text-align: center; background: #e54d42; font-weight: bold; color: white}
.cu-avatar2{width: 30px; height: 30px; border-radius: 4px; line-height: 30px; text-align: center; background: #1cbbb4; font-weight: bold; color: white}
.cu-avatar3{width: 30px; height: 30px; border-radius: 4px; line-height: 30px; text-align: center; background: #f37b1d; font-weight: bold; color: white}
.cu-avatar4{width: 30px; height: 30px; border-radius: 4px; line-height: 30px; text-align: center; background: #333333; font-weight: bold; color: white}

.solid-bottom{
    border-bottom: 1px solid #dbe0e3;
}
.solid{
    border: 1px solid #dbe0e3;
}
.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}
.padding-xs {
    padding: 5px;
}
.bg-gray {
    background-color: #f0f0f0;
    color: var(--black);
}
.margin-top-xs {
    margin-top: 5px;
}
.text-sm {
    font-size: 11px;
}
.text-xl {
    font-size: 12px;
}
.text-bold {
    font-weight: bold;
}
.padding-left-sm {
    padding-left: 10px;
}
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.padding-top {
    padding-top: 15px;
}

.cu-tag {
    font-size: 12px;
    padding: 0px 8px;
    height: 24px;
    background: #e54d42;
    white-space: nowrap;
    line-height: 24px;
    color: white;
}
.grid {
    display: flex;
    flex-wrap: wrap;
}
.grid.col-3>div {
    width: 33.33%;
}
.grid.col-2>div {
    width: 50%;
}

.padding-lr {
    padding-left: 15px;
    padding-right: 15px;
}
.margin-sm {
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
}

.tbox{text-align: center;margin-top: 10px;}
.tbox5{text-align: center; color: #333333;
    font-size: 18px; font-weight: bold;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
    background: #f1f1f1;
}
.tbox1{text-align: center;margin-top: 10px; width: 100%; padding-top: 10px; padding-bottom: 10px; background: #e54d42; color: white; border-radius: 6px; font-size: 16px; font-weight: bold;}
.tbox2{text-align: center;margin-top: 10px; width: 100%; padding-top: 10px; padding-bottom: 10px; background: #1cbbb4; color: white; border-radius: 6px; font-size: 16px; font-weight: bold;}
.tbox3{text-align: center;margin-top: 10px; width: 100%; padding-top: 10px; padding-bottom: 10px; background: #f37b1d; color: white; border-radius: 6px; font-size: 16px; font-weight: bold;}
.tbox4{text-align: center;margin-top: 10px; width: 100%; padding-top: 10px; padding-bottom: 10px; background: #333333; color: white; border-radius: 6px; font-size: 16px; font-weight: bold;}

.pt50{
    padding-top: 50px;
}
.padding-tb {
    padding-top: 15px;
    padding-bottom: 15px;
}
.padding-tb-sm {
    padding-top: 10px;
    padding-bottom: 10px;
}
.text-lg {
    font-size: 16px;
}
.radius {
    border-radius: 3px;
}
.text-center {
    text-align: center;
}
.text-black{color: #333333}
.padding-bottom {
    padding-bottom: 15px;
}
.padding-bottom-xs {
    padding-bottom: 5px;
}

.bg-red {
    background-color: #e54d42；
}
.fl{ float: left;}
.fr{float: right;}
.cl{ clear: both;}
