﻿html {
    font-family: PingFangSC, sans-serif
}

.color-blue {
    color: #d95454;
}

.color-ora {
    color: rgb(105 99 191);
}

.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, #5f5691, #2c3067 50%, #160881), linear-gradient(#353889, #0f1561);
    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: #7047cf;
    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: #7047cf;
}

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;
}

a {
    text-decoration: none;
}
.post-section {
    padding: 3rem 0;
}

.post-section .header h2 {
    margin-bottom: 2rem;
}

.post-section .post-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media screen and (max-width: 1024px) {
    .post-section .post-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .post-section .post-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .post-section .post-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.post-section .post-item {
    background: #ffffff;
    box-shadow: 0 0 8px 2px #c9c9c9;
    border-radius: 8px;
    overflow: hidden;
}

.post-section .post-item .item-box {

}

.post-section .post-item .item-box .img,
.post-section .post-item .item-box .img img
{
    width: 100%;
}

.post-section .post-item .item-box .img img {
    aspect-ratio: 1.8;
}

.post-section .post-item .item-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-section .post-item .item-box .post-body {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-section .post-item .item-box .post-body .time {
    font-size: .8rem;
}

.post-item a {
    color: #7047cf;
}

.breadcrumbs {
    background-color: #f3f3f3;
    padding: 4rem 0;
}


.breadcrumbs .breadcrumbs-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.breadcrumbs h2 {
    font-size: 3rem;
    margin-bottom: .8rem;
}

.breadcrumbs nav {
    padding: 20px 0;
    border-top: 2px solid rgb(255 255 255 / 35%);;
}

.breadcrumbs nav ol {
    padding-left: 0;
    display: flex;
    list-style: none;
}

.breadcrumbs nav ol li + li {
    padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #222222;
    content: "/";
}

.breadcrumbs a {
    color: #78b539;
}

.breadcrumbs .image-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.breadcrumbs .pages-images {
    background: #ffffff;
    padding: 46px;
    border-radius: 2px;
    top: 40px;
    border: 2px solid #eeeeee;

}

.breadcrumbs .pages-images img {
    height: 200px;
}

@media screen and (max-width: 1200px) {
    .breadcrumbs .breadcrumbs-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .breadcrumbs .image-right {
        justify-content: center;
    }
}

.category-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding: 4rem 0;
}

.category-container h3 {
    font-size: 2rem;
}

.category-container .category-links {
    margin-top: 2rem;
}