.subject-overview {
    margin-top: 20px;
}

.subject-overview-grid {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 50px;
    text-align: center;
    font-size: 26px; */
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: center;
    font-size: 26px;
}

.subject-overview-grid-item {
    width: 220px;
    height: 100px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}


.my-subject {
    color: #fff;
    background-color: #169BD5;
    line-height: 250px;
    text-align: center;
    width: 250px;
    font-size: 26px;
    border-radius: 10px;
    margin-left: 50px;
}

.subject-list {
    width: calc(50% - 5px);
    padding: 15px;
    margin-top: 20px;
    border: solid 1px #aaa;
    height: 100%
}

.subject-hot-activity_title {
    --title-border: orange;
}

.subject-latest-result_title {
    --title-border: green;
}

.subject-title {
    border-left: var(--title-border) 5px solid;
    padding-left: 5px;
    font-weight: bold;
}

.subject-details {
    font-size: 12px;
    color: #333;
}

.subject-list_header {
    padding-bottom: 10px;
    border-bottom: solid 2px #aaa;
}

.subject-list_list_item {
    border-bottom: solid 1px #aaa;
    display: flex;
    justify-content: space-between;
    padding: 10px
}


.subject-apply {
    display: inline-block;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 5px;
    min-width: 80px;
    background-color: #169BD5;
    color: #fff;
}

.subject-list_list .subject-list_list_item:last-child {
    border-bottom: none;
}

.subject-list_list_item_subtitle {
    color: #169BD5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.subject-list_list_item_subtitle div {
    width: 100%;
    text-align: right;
}