.banner-glide {
    width: 100%;
    height: 100%;
}
.banner-glide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.glide__arrow {
    position: absolute;
    display: block;
    top: 50%;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 150ms ease;
    width: 70px;
}
.glide__arrow:focus {
    outline: none;
}
.glide__arrow:hover {
    opacity: 1;
}
.glide__arrow--left {
    left: 2em;
}
.glide__arrow--right {
    right: 2em;
}
.search-box {
    display: block;
    width: 1080px;
    height: 66px;
    background-color: #fff;
    clip-path: polygon(40px 0%, calc(100% - 40px) 0%, 100% 100%, 0% 100%);
    padding: 0 80px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 540px);
    opacity: 0;
}
.search-box .search-input {
    width: 100%;
    height: 100%;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
}
.search-input input {
    width: calc(100% - 40px);
    height: 100%;
    border: none;
    font-size: 16px;
}
.search-input input::placeholder {
    color: #b1c1ff;
}
.search-input input:focus {
    outline: none;
}
.search-btn {
    width: 19px;
    height: 100%;
    background: url('../images/icon_search_gray.png') 0 center no-repeat;
    cursor: pointer;
    border: 0;
}
.search-btn:hover {
    background-position: -19px center;
}
.news {
    padding: 60px 0;
    overflow: hidden;
}
.news .container {
    display: flex;
    justify-content: space-between;
    gap: 56px;
}
.notices {
    flex: 1;
    opacity: 0;
}
.news-block-title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 30px;
}
.news-block-title span {
    margin-left: 10px;
    text-transform: uppercase;
}
.news-item {
    border-bottom: 1px solid var(--primary-bdcolor);
    padding-bottom: 6px;
    margin-bottom: 24px;
    overflow: hidden;
}
.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.news-item img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    margin-bottom: 13px;
}
.news-item p {
    font-size: 14px;
    line-height: 1;
    color: var(--desc-text-color);
    margin: 0 0 16px 0;
}
.news-item h4 {
    font-weight: normal;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-item:first-child p {
    margin-top: 0;
}
.news-item:hover h4 {
    color: var(--primary-color);
}
.news-item:hover img {
    scale: 1.1;
}
.dynamic {
    width: 678px;
    border-left: 1px solid var(--primary-bdcolor);
    border-right: 1px solid var(--primary-bdcolor);
    position: relative;
}
.dynamic-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.dynamic-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.dynamic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.dynamic-image:hover img {
    scale: 1.1;
}
.dynamic-info {
    height: 100%;
    padding: 0 40px 80px;
}
.dynamic-info a:hover .dynamic-title {
    color: var(--primary-color);
}
.dynamic-block-title {
    margin: 26px 0 36px;
    font-size: 18px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.dynamic-block-title::before,
.dynamic-block-title::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--primary-color);
}
.dynamic-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 18px;
    color: var(--main-text-color);
    margin-bottom: 20px;
}
.dynamic-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--desc-text-color);
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
}
.dynamic-arrows {
    position: absolute;
    width: calc(100% - 40px);
    bottom: 24px;
    left: 20px;
    display: flex;
    justify-content: space-between;
}
.dynamic-arrow {
    width: 55px;
    height: 20px;
    border-bottom: 1px solid var(--primary-color);
    cursor: pointer;
    opacity: 0.5;
    position: relative;
}
.dynamic-arrow:hover {
    opacity: 1;
}
.dynamic-arrow.left::before {
    position: absolute;
    left: 4px;
    bottom: -2px;
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: var(--primary-color);
    rotate: 36deg;
}
.dynamic-arrow.right:after {
    position: absolute;
    right: 4px;
    bottom: -2px;
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: var(--primary-color);
    rotate: -36deg;
}
.dynamic-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.dynamic-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ebebeb;
}
.glide__bullet--active {
    background-color: var(--primary-color);
}
.affairs {
    flex: 1;
    opacity: 0;
}
.research {
    width: 100%;
    background-color: var(--section-bgcolor);
    position: relative;
    padding: 70px 0 80px;
}
.research_bg_left_top {
    position: absolute;
    left: 0;
    top: 0;
    width: 340px;
    height: 290px;
    background: url('../images/research_bg_01.png') no-repeat;
}
.research_bg_left_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 670px;
    height: 560px;
    background: url('../images/research_bg_02.png') no-repeat;
}
.research_bg_right_bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1096px;
    height: 333px;
    background: url('../images/research_bg_03.png') no-repeat;
}
.section-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.section-title {
    color: var(--title-text-color);
    position: relative;
    padding-left: 23px;
    line-height: 1;
    opacity: 0;
}
.section-title::before {
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
}
.section-title p {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 14px;
}
.section-title h3 {
    font-size: 24px;
    font-weight: bold;
}
.research-controls {
    display: flex;
    gap: 36px;
    opacity: 0;
}
.research-glide-left,
.research-glide-right {
    width: 42px;
    height: 42px;
    background: url('../images/research_arrows.png') 0 0 no-repeat;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.research-glide-left:hover,
.research-glide-right:hover {
    opacity: 1;
}
.research-glide-right {
    background-position: -42px 0;
}
.research-glide {
    opacity: 0;
    will-change: opacity;
}
.research-item-wrapper {
    height: 408px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.research-item {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 30px;
    background-color: var(--research-item-bgcolor);
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s ease;
}
.research-item-date {
    position: absolute;
    width: 66px;
    height: 60px;
    top: 0;
    left: 18px;
    background: linear-gradient(to bottom, #46eef4, var(--primary-color));
    z-index: 10;
    text-align: center;
    color: #fff;
}
.research-item-date .day {
    font-size: 30px;
}
.research-item-date .month {
    font-size: 12px;
}
.research-item-image {
    width: 100%;
    height: calc(100% - 72px - 40px - 30px - 30px);
}
.research-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.research-item-title {
    width: calc(100% - 40px);
    margin: 20px auto;
    height: 72px;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
}
.research-item-btn {
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    width: 72px;
    border-radius: 30px;
    text-align: center;
    background-color: rgba(53, 96, 205, 0.1);
    color: var(--primary-color);
    overflow: hidden;
    margin: 0 0 0 20px;
    transition: all 0.3s ease;
}
.research-item-wrapper:hover {
    padding: 0;
}
.research-item-wrapper:hover .research-item {
    border-color: var(--primary-color);
}
.research-item-wrapper:hover .research-item-title {
    color: var(--primary-color);
}
.research-item-wrapper:hover .research-item-btn {
    background-color: var(--primary-color);
    color: #fff;
}
.research-more {
    display: block;
    margin: 60px auto 0;
    width: 130px;
    height: 56px;
    border-radius: 56px;
    border: 1px solid var(--primary-color);
    text-align: center;
    line-height: 56px;
    color: var(--primary-color);
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}
.research-more:hover {
    background: var(--primary-color);
    color: #fff;
}
.league {
    width: 100%;
    padding: 80px 0;
    background: url('../images/league_bg.png') center bottom no-repeat;
}
.league-more {
    height: 20px;
    line-height: 20px;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 0 15px 0 5px;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.league-more::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: -2px;
    width: 1px;
    height: 15px;
    background-color: var(--primary-color);
    rotate: -36deg;
}
.league-more:hover {
    opacity: 1;
}
.league-more a {
    display: block;
}
.league-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 96px;
    row-gap: 32px;
}
.league-item {
    flex: 0 0 calc(50% - 48px);
    border: 1px solid #dadada;
    opacity: 0;
}
.league-item a {
    width: 100%;
    height: 100%;
    padding: 30px 30px 20px 30px;
    display: block;
}
.league-info {
    display: flex;
    margin-bottom: 20px;
}
.league-title {
    flex: 1;
    font-size: 16px;
    line-height: 23px;
    height: 46px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
}
.league-date {
    padding-left: 30px;
    margin-left: 30px;
    height: 40px;
    border-left: 1px solid var(--primary-bdcolor);
    text-align: center;
}
.league-date .day {
    font-weight: bold;
    font-size: 18px;
}
.league-date .month {
    font-size: 14px;
}
.league-link {
    width: 65px;
    font-size: 14px;
    line-height: 1;
    padding: 0 0 5px 0;
    border-bottom: 1px solid var(--primary-bdcolor);
    position: relative;
}
.league-link::after {
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    rotate: 52deg;
    background-color: var(--primary-bdcolor);
    position: absolute;
    right: -7px;
    bottom: -3px;
}
.league-item:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.league-item:hover .league-title {
    font-weight: bold;
}
.league-item:hover .league-date {
    border-color: var(--primary-color);
}
.league-item:hover .league-link {
    border-color: var(--primary-color);
}
.league-item:hover .league-link::after {
    background-color: var(--primary-color);
}
.resource {
    width: 100%;
    margin-top: 60px;
    padding: 80px 0 200px;
    background: url('../images/resource_bg.png') top center no-repeat;
    background-size: 100% auto;
}
.resource .section-title {
    color: var(--resource-text-color);
}
.resource .section-title::before {
    background-color: var(--resource-text-color);
}
.resource-more {
    height: 20px;
    line-height: 20px;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--resource-text-color);
    border-bottom: 1px solid var(--resource-text-color);
    padding: 0 15px 0 5px;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.resource-more::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: -2px;
    width: 1px;
    height: 15px;
    background-color: var(--resource-text-color);
    rotate: -36deg;
}
.resource-more:hover {
    opacity: 1;
}
.resource-more a {
    display: block;
}
.resource-list {
    display: flex;
    flex-wrap: wrap;
}
.resource-item {
    height: 350px;
    flex: 25%;
    overflow: hidden;
    opacity: 0;
}
.resource-item:nth-child(6n),
.resource-item:nth-child(6n + 1),
.resource-item:nth-child(6n + 2),
.resource-item:nth-child(6n + 5) {
    flex: 25%;
}
.resource-item:nth-child(6n + 3),
.resource-item:nth-child(6n + 4) {
    flex: 50%;
}
.resource-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.resource-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.resource-item p {
    height: 22px;
    line-height: 22px;
    color: var(--resource-text-color);
    font-size: 18px;
    position: absolute;
    left: 30px;
    bottom: 20px;
    z-index: 20;
    padding-left: 24px;
    background: url('../images/icon_resource.png') left center no-repeat;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.7);
}
.resource-item:hover img {
    scale: 1.1;
}
.result-content {
    padding: 60px 0;
}
.result-tip {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.result-list {
    margin-bottom: 30px;
}
.result-item {
    border-bottom: 1px solid var(--primary-bdcolor);
    opacity: 0;
}
.result-item a {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.result-title {
    font-size: 16px;
    font-weight: normal;
    flex: 1 1 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.result-title span {
    color: var(--primary-color);
}
.result-item:hover .result-title {
    color: var(--primary-color);
}
.result-item:hover .result-title span {
    color: red;
}
.result-date {
    font-size: 14px;
    white-space: nowrap;
    margin-left: 10px;
    color: var(--desc-text-color);
}
.result-pagination {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.result-pagination a {
    color: var(--primary-color);
}
.p_pages {
    display: flex;
    justify-content: center;
    padding: 48px 0;
    gap: 12px;
}
.p_pages a {
    display: block;
    width: 100%;
    height: 100%;
}
.p_first,
.p_first_d,
.p_last,
.p_last_d {
    display: none;
}
.p_prev,
.p_next {
    background-color: var(--section-bgcolor);
    border: 1px solid var(--primary-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 14px;
    overflow: hidden;
}
.p_prev::before,
.p_next::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background-color: var(--primary-color);
    position: absolute;
    left: 8px;
    top: 19px;
}
.p_prev::after,
.p_next::after {
    content: '';
    height: 10px;
    width: 1px;
    background-color: var(--primary-color);
    position: absolute;
    top: 11px;
    right: 10px;
}
.p_prev::after {
    rotate: 45deg;
    left: 11px;
}
.p_next::after {
    rotate: -45deg;
    right: 11px;
}
.p_prev:hover,
.p_next:hover {
    background-color: var(--primary-color);
}
.p_prev:hover::before,
.p_prev:hover::after,
.p_next:hover::before,
.p_next:hover::after {
    background-color: #fff;
}
.p_prev_d,
.p_next_d {
    background-color: var(--section-bgcolor);
    border: 1px solid var(--primary-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: not-allowed;
    border-color: var(--primary-bdcolor);
    background-color: var(--section-bgcolor);
}
.p_prev_d::before,
.p_next_d::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: #adadad;
    margin-top: 5px;
}
.p_prev_d::after,
.p_next_d::after {
    content: '';
    height: 10px;
    width: 1px;
    background-color: #adadad;
    position: absolute;
    top: 11px;
    right: 10px;
}
.p_prev_d::after {
    rotate: 45deg;
    left: 11px;
}
.p_next_d::after {
    rotate: -45deg;
    right: 11px;
}
.p_no {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
}
.p_no_d {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
}
.p_no:hover {
    color: #fff;
    background-color: var(--primary-color);
    opacity: 0.8;
}
.rotate_bg {
    position: relative;
}
.rotate_bg::before {
    content: '';
    position: absolute;
    width: 415px;
    height: 415px;
    z-index: -1;
    right: 50px;
    bottom: 50px;
    background: url('../images/logo_bg.png') no-repeat;
    animation: rotate 10s infinite linear;
}
@media screen and (max-width: 1920px) {
    .search-box .search-input {
        border-bottom-width: 1px;
    }
}
@media screen and (max-width: 1366px) {
    .glide__arrow {
        width: 50px;
        top: 40%;
    }
    .search-box {
        width: 800px;
        height: 54px;
        clip-path: polygon(30px 0%, calc(100% - 30px) 0%, 100% 100%, 0% 100%);
        left: calc(50% - 400px);
        padding: 0 50px;
    }
    .news {
        padding: 45px 0;
    }
    .news .container {
        gap: 30px;
    }
    .news-item img {
        height: 180px;
    }
    .news-item p {
        margin: 0 0 12px 0;
    }
    .news-item h4 {
        height: 40px;
        line-height: 20px;
        font-size: 14px;
    }
    .dynamic {
        width: 550px;
    }
    .dynamic-info {
        padding-bottom: 40px;
    }
    .dynamic-arrows {
        bottom: 12px;
    }
    .dynamic-dots {
        bottom: 8px;
    }
    .research {
        padding: 60px 0;
    }
    .research-more {
        margin-top: 40px;
    }
    .league {
        padding: 60px 0;
    }
    .league-list {
        column-gap: 70px;
        row-gap: 24px;
    }
    .league-item {
        flex: 0 0 calc(50% - 35px);
    }
    .resource {
        padding: 60px 0 120px;
    }
    .resource-item {
        height: 260px;
    }
}
@media screen and (max-width: 1200px) {
    .news .container {
        flex-wrap: wrap;
        gap: 45px;
    }
    .news-block-title {
        margin-bottom: 10px;
    }
    .news-item {
        padding-bottom: 1px;
    }
    .news-item p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .news-item h4 {
        height: 30px;
        line-height: 30px;
        line-clamp: 1;
        -webkit-line-clamp: 1;
    }
    .notices {
        order: 2;
    }
    .dynamic {
        order: 1;
        width: 100%;
    }
    .dynamic-block-title {
        margin-bottom: 26px;
    }
    .affairs {
        order: 3;
    }
    .news-item img {
        height: 193px;
    }
    .league-list {
        gap: 30px;
    }
    .league-item {
        flex: 0 0 calc(50% - 15px);
    }
    .resource-item {
        flex: 1 1 33.333% !important;
        min-width: 344px;
    }
    .result-content {
        padding: 30px 0;
    }
    .result-pagination {
        padding: 20px 0;
    }
}
@media screen and (max-width: 768px) {
    .glide__arrow {
        width: 40px;
        top: 60px;
    }
    .glide__arrow--left {
        left: 1em;
    }
    .glide__arrow--right {
        right: 1em;
    }
    .rotate_bg::before {
        display: none;
    }
    .search-box {
        display: none;
        width: 75%;
        height: 36px;
        clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 100%, 0% 100%);
        padding: 0 30px;
    }
    .search-input input {
        font-size: 12px;
    }
    .notices {
        width: 100%;
        flex: none;
    }
    .dynamic-info {
        padding: 0 20px 40px 20px;
    }
    .affairs {
        width: 100%;
        flex: none;
    }
    .league-item {
        width: 100%;
        flex: none;
    }
    .league-item a {
        padding: 15px;
    }
    .league-date {
        display: none;
    }
    .resource {
        background-size: 100% 240px;
    }
    .result-item a {
        display: block;
    }
    .result-title {
        margin-top: 10px;
    }
    .result-date {
        text-align: right;
        margin: 5px 0 0 0;
    }
    .result-pagination {
        padding: 10px 0;
    }
    .result-pagination span {
        display: none;
    }
    .p_pages {
        padding: 20px 0;
    }
    .p_no:nth-child(4),
    .p_no:nth-child(5) {
        display: none;
    }
}