﻿html {
    font-family: PingFangSC, sans-serif
}

.color-blue {
    color: #053e94;
}

.color-ora {
    color: rgba(248, 150, 0, 1);
}

.banner-bg {
    background-image: url('/static/home/images/pc_new_banner_bg.png');
    background-repeat: no-repeat;
    background-position: top left;
    width: 100%;
    height: 100%;
    inset: 0;
}

.banner-context {
    padding: 5rem;
}

@media screen and (max-width: 600px) {
    .banner-context {
        padding: 1rem;
    }
}

.blue-line {
    display: inline-block;
    width: 14px;
    height: 4px;
    background-color: #053e94;
}

.banner-btn {
    width: 321px;
    line-height: 73px;
    background-image: linear-gradient(90deg, #f8a900, #f89600 50%, #f8a900), linear-gradient(#f89600, #f89600);
    background-blend-mode: normal, normal;
    box-shadow: 0 3px 9px 1px rgba(50, 86, 232, .35);
    border-radius: 36px;
    color: #FFFFFF;
    font-weight: bold;
    animation: banner-button-animate 1.2s linear 1s infinite;
    text-align: center;
    font-size: 1.5rem;
}

.banner-btn.btn-green {
    background-image: none;
    background-color: #78b539;
}

.animate-btn {
    animation: banner-button-animate 1.2s linear 1s infinite;
}

@keyframes banner-button-animate {
    0% {
        transform: scale(1);
        animation-timing-function: linear;
    }
    50% {
        transform: scale(1.1);
        animation-timing-function: linear;
    }
    100% {
        transform: scale(1);
        animation-timing-function: linear;
    }
}

.btn-list .btn-item {
    text-align: center;
    position: relative;
    line-height: 73px;
    border: 1px solid #3874b7;
    border-radius: 36px;
    overflow: hidden;
}

.btn-list .btn-item .h4 {
    line-height: 73px;
}


.btn-list .btn-item:hover {
    color: white;
}

.btn-list .btn-item span {
    color: #3874b7;
}

.btn-list .btn-item {
    cursor: pointer;
}

.btn-list .btn-item:hover span {
    color: #ffffff;
}

.btn-list .btn-item:before {
    content: "";
    position: absolute;
    width: 120%;
    left: -124%;
    top: -5px;
    bottom: -5px;
    background-color: #3874b7;
    transform: skewX(-30deg);
    transition: left .5s ease-in-out;
}


.btn-list .btn-item:hover:before {
    left: -10%;
}

.btn-list .btn-item .icon-white {
    display: none;
}

.btn-list .btn-item:hover .icon-blue {
    display: none;
}

.btn-list .btn-item:hover .icon-white {
    display: block;
}

.pc-second-bg {
    background-image: url('/static/home/images/pc_second_bg.png');
}

.hot .body .lists{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(5, minmax(auto, 1fr));
}

.hot .body .lists .item {
    padding: 1rem 0;
    background-color: #fff;
    box-shadow: 0 1px 7px 0 rgba(31, 70, 146, .27);
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .hot .body .lists {
        grid-template-columns: repeat(2, minmax(auto, 1fr));
    }
}

@media screen and (max-width: 400px) {
    .hot .body .lists {
        grid-template-columns: repeat(1, minmax(auto, 1fr));
    }
}

footer {
    background-color: #021f49;
}

footer .btn-list .btn-item {
    border-color: white;

}

footer .btn-list .btn-item span {
    color: #FFFFFF;
}

footer .btn-list .btn-item:before {
    background-color: #fff;
}

footer .btn-list .btn-item:hover span {
    color: #ef8f05;
}