<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.scheme {
    display: flex;
}

.scheme_list {
    margin-right: 30px;
}

.scheme_item {
    width: 260px;
    height: 120px;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    box-shadow: 0px 0px 10px 0px rgba(64, 136, 254, 0.2);
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.scheme_item div {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 35px 0 0 80px;
}

.scheme_item img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.scheme_item img:nth-child(2) {
    display: none;
}

.scheme_list .scheme_active {
    color: #FFFFFF;
}

.scheme_list .scheme_active img:nth-child(2) {
    display: block;
}

.scheme_list .scheme_active img:first-child {
    display: none;
}

.scheme_detail {
    width: 910px;
    display: none;
}
.scheme_detail_active{
    display: block;
}

.scheme_title {
    font-weight: bold;
    font-size: 16px;
    color: #040404;
    line-height: 35px;
    text-align: center;
}

.scheme_referral {
    font-size: 14px;
    color: #3F3E3E;
    line-height: 28px;
    text-indent: 2em;
}

.science {
    margin-top: 30px;
    color: #3F3E3E;
    font-weight: bold;
    font-size: 16px;
}

.science img {
    width: 10px;
    height: 20PX;
    position: relative;
    top: 4px;
    margin-right: 5px;
}

.science_img {
    margin-top: 20px;
    width: 910px;
    height: 540px;
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    box-sizing: border-box;
    padding: 20px 10px;
}

.science_img img {
    width: 887px;
    height: 499px;
}

.feature {
    margin: 20px 0 30px 0;
    display: flex;
    flex-wrap: wrap;
}

.feature_item {
    width: 445px;
    height: 120px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(64, 136, 254, 0.2);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.feature_item:nth-of-type(odd) {
    margin-right: 20px;
}

.feature_item div:first-child {
    font-weight: bold;
    color: #4088FE;
    position: relative;
    padding-left: 12px;
}

.feature_item div:first-child::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4088FE;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 7px;
}

.feature_item div:last-child {
    color: #333333;
    line-height: 22px;
}</pre></body></html>