body {
    background-color: #f9f9f9 !important;
}

#test-body{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0 0 0;
}

.index-section-block{
    width: 100%;
    padding: 24px;
    border-radius: 10px;
}

.index-section-block:nth-child(3n+1){
    background-color: #ecf1f4;
}

.index-section-block:nth-child(3n+2){
    background-color: #ecf4f0;
}

.index-section-block:nth-child(3n+3){
    background-color: #f1ecf4;
}

.index-section-block:nth-child(4n+4){
    background-color: #f4f2ec;
}

.index-section-block:nth-child(5n+5){
    background-color: #f4eeec;
}

.index-section-block h2{
    font-size: 18px;
    color: #333;
    line-height: 46px;
    border-bottom: 1px #ccc solid;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .index-section-block{
        padding: 12px 8px;
    }

    .index-section-block h2{
        font-size: 16px;
        line-height: 36px;
    }
}


#top-test{
    padding: 20px 0 0 0;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

#top-test a{
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
}

#top-test a img{
    max-width: 100%;
}

#top-test a p{
    font-size: 14px;
    color: #999;
    text-align: center;
    padding: 8px 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    #top-test{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

#articles{
    margin-top: 20px;
    background-color: #ffffff;
}

#articles a.more{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    background-color: #1a9120;
    color: #ffffff;
    margin: 0 auto;
}

#articles a.more:hover{
    background-color: #4d7e13;
}

#index-banner{
    padding: 30px 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #e0e8e8;
    border-radius: 20px 60px 20px 40px;
}

#index-banner span,
#index-banner b {
    color: #1a9120;
}

#index-banner p{
    text-align: center;
    line-height: 1.2em;
}

#index-banner p:nth-child(1){
    font-size: 42px;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.8em;
}

#index-banner p:nth-child(2){
    font-size: 16px;
    color: #666;
    margin-bottom: 1.2em;
}

#index-banner p:nth-child(3){
    width: fit-content;
    font-size: 16px;
    color: #cadeca;
    background-color: #2d3339;
    padding: 10px 20px;
    border-radius: 12px;
}

@media (max-width: 600px) {
    #index-banner{
        padding: 15px 10px;
        border-radius: 10px 30px 10px 15px;
    }

    #index-banner p:nth-child(1){
        font-size: 28px;
    }

    #index-banner p:nth-child(2){
        font-size: 14px;
    }

    #index-banner p:nth-child(3){
        font-size: 14px;
    }
}