<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fx_top_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fx_top_cont{
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 250px;
    height: 100px;
    border-radius: 4px;
}
.fx_top_title{
    flex-direction: column;
}
.fx_top_title h3,
.fx_top_title p{
    box-sizing: border-box;
    width: 100%;
    color: #333;
    padding: 0 60px;
}
.fx_top_title h3{
    line-height: 28px;
    font-size: 20px;
}
.fx_top_title p{
    line-height: 24px;
    font-size: 16px;
}
.fx_top_data img{
    width: 54px;
    margin-right: 16px;
}
.fx_top_num p{
    color: #333;
    line-height: 24px;
    font-size: 16px;
}
.fx_top_num h5{
    color: #333;
    font-weight: bold;
    line-height: 32px;
    font-size: 24px;
}

.fx_course_list{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fx_course_list li{
    width: 380px;
}
.fx_course_list a{
    display: block;
}
.fx_course_list a img{
    display: block;
    width: 100%;
    height: 220px;
}
.fx_course_list a p{
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2; 
    overflow: hidden;
    color: #333333;
    text-align: justify;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    margin-top: 16px;
}
@media screen and (min-width: 1310px) and (max-width: 1709px) {
    .fx_course_list li{
        width: 280px;
    }
    .fx_course_list li a img{
        height: 170px;
    }
}

@media screen and (max-width: 1309px) {
    .fx_course_list{
        margin: .5rem auto 0;
        flex-wrap: wrap;
    }
    .fx_course_list li{
        width: 48%;
        margin: .1rem 1%;
    }
    .fx_course_list a img{
        width: 100%;
        height: 5rem;
    }
    .fx_course_list a p{
        font-size: .7rem;
        line-height: 1rem;
        height: 2rem;
        margin-top: .2rem;
    }
}</pre></body></html>