* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

body>* {
    width: 100%;
}

body>div:first-of-type {
    flex: 1 0 auto;
}

@font-face {
    font-family: 'SourceHanSansCN-VF';
    src: url(../fonts/SourceHanSansCN-VF.ttf);
}

:root {
    font-size: calc(0.417vw + 8px);
    letter-spacing: 1px;
    /* font-family: 'SourceHanSansCN-VF'; */
}

img {
    display: block;
    width: 100%;
}

a {
    font-size: inherit;
    text-decoration: none;
    color: inherit;
}

.type-area {
    width: 83%;
    margin: 0 auto;
}

.common-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vw / 1920 * 780);
    overflow: hidden;
}

.common-main-title {
    font-size: calc(50rem / 16);
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.common-b-title {
    margin-top: calc(30rem / 16);
    margin-bottom: calc(40rem / 16);
    font-size: calc(35rem / 16);
    font-weight: bold;
    line-height: 1;
}

.result-main .common-b-title {
    font-size: inherit;
    font-weight: normal;
}

.recent-main {
    background-image: linear-gradient(to top, transparent 40%, rgba(255, 255, 255, .6), transparent);
}

.header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc(30rem / 16);
    z-index: 210;
}

.header .logo {
    width: calc(207rem / 16);
}

.header .search-container {
    position: relative;
    width: calc(370rem / 16);
    height: calc(40rem / 16);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
}

.header .search-container input {
    height: 100%;
    outline: none;
    border: none;
    background-color: transparent;
}

.header .search-container input[type="text"] {
    width: 100%;
    padding-left: 15px;
    padding-right: calc(110rem / 16);
    font-size: calc(14rem / 16);
    color: #fff;
}

.header .search-container .sub-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100rem / 16);
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    font-size: calc(16rem / 16);
    color: #0b308e;
}

.common-bg {
    background: url("../images/banner_back.webp") center top/100% auto no-repeat #f0f2f5;
}

.recent-main {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.recent-main .swiper-slide {
    /* width: 83%; */
    width: calc(800rem / 16);
}

.recent-main .swiper-slide a {
    display: flex;
    flex-direction: column;
}

.recent-main .swiper-slide .pic {
    width: 100%;
    aspect-ratio: 1920/1080;
    overflow: hidden;
}

.recent-main .swiper-slide .pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.recent-main .swiper-slide:hover .pic img {
    transform: scale(1.1);
}

.recent-main .swiper-slide .text-content {
    display: flex;
    align-items: center;
    height: calc(160rem / 16);
    background-color: #fff;
    opacity: 0;
    transform: translateY(-30%);
    transition: transform 2s, opacity 2s, background-color .8s, color .8s;
    position: relative;
    z-index: 2;
}

/* .recent-main .swiper-slide.show-text .text-content { */
.recent-main .swiper-slide.swiper-slide-active .text-content {
    opacity: 1;
    transform: translateY(0);
}

.recent-main .swiper-slide .text-content .time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(160rem / 16);
    height: 100%;
    position: relative;
}

.recent-main .swiper-slide .text-content .time::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, rgba(204, 204, 204, 1), rgba(204, 204, 204, 1));
    transition: 0s;
}

.recent-main .swiper-slide-active:hover .text-content .time::after {
    background: linear-gradient(to top, rgba(204, 204, 204, 1), rgba(204, 204, 204, 0));
    height: 150%;
    transition: .8s;
}

.recent-main .swiper-slide .text-content .day {
    font-size: calc(72rem / 16);
    font-weight: bold;
    color: #124e91;
    line-height: 1;
}

.recent-main .swiper-slide .text-content .year-month {
    font-size: 14px;
    color: #4c4c4c;
}

.recent-main .swiper-slide .text-content .month {
    color: #124e91;
}

.recent-main .swiper-slide .text-content .title {
    flex: 1;
    padding: 0 calc(40rem / 16);
    font-size: calc(36rem / 16);
    color: #124e91;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-weight: bold;
}

.recent-main .recent-button {
    position: absolute;
    top: 40%;
    z-index: 2;
    width: calc(60rem / 16);
    height: calc(60rem / 16);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s;
}

.recent-main .recent-button:hover {
    box-shadow: 0 0 10px #ccc;
}

.recent-main .recent-button-prev {
    left: 8.5%;
    transform: translateX(-50%);
}

.recent-main .recent-button-next {
    right: 8.5%;
    transform: translateX(50%) rotate(180deg);
}

.recent-main .recent-button-prev:hover {
    transform: translateX(-50%) scale(1.3);
}

.recent-main .recent-button-next:hover {
    transform: translateX(50%) rotate(180deg) scale(1.3);
}

.more-active-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-40rem / 16);
}

.more-active-item {
    position: relative;
    width: calc((100% - 120rem / 16) / 4);
    overflow: hidden;
    margin-top: calc(40rem / 16);
    --item-width: calc((100% - 120rem / 16) / 4);
}

.more-active-item:nth-of-type(4n + 2),
.more-active-item:nth-of-type(4n + 3),
.more-active-item:nth-of-type(4n + 4) {
    margin-left: calc(40rem / 16);
}

.more-active-item a {
    display: inline-block;
    width: 100%;
}

.more-active-item a .pic {
    background-color: #0b308e;
    transition: all .1s;
    aspect-ratio: 300/300;
    /* width: 100%;
    height: calc(365rem / 16); */
}

.more-active-item a .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-active-item .bottom-text {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: calc(90rem / 16);
    padding: 0 calc(30rem / 16);
    background-color: #fff;
    transition: all .5s;
}

.more-active-item .bottom-text .text-content {
    transition: all .7s;
}

.more-active-item .bottom-text .time {
    font-size: calc(16rem / 16);
    color: #4c4c4c;
    transition: all .5s;
}

.more-active-item .bottom-text .title {
    font-size: calc(24rem / 16);
    transition: all .5s;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}

.more-active-item .bottom-text .more-icon {
    position: absolute;
    bottom: calc(-50rem / 16);
    width: calc(30rem / 16);
    height: calc(30rem / 16);
}

.hover-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    transform: translateY(100%);
    transition: all .7s;
}


.recent-main .hover-bg img,
.video-list .hover-bg img {
    height: 100%;
}

.video-list .hover-bg {
    z-index: 2;
    height: 50%;
}

.recent-main .swiper-slide-active:hover .text-content {
    background-color: #0b308e;
}

.recent-main .swiper-slide-active:hover .text-content * {
    color: #ffffff;
}

.more-active-item:hover .pic {
    transform: translateY(-5%);
    transition: all .5s .5s;
}

.more-active-item:hover .bottom-text {
    background-color: #0b308e;
}

.more-active-item:hover .bottom-text .time,
.more-active-item:hover .bottom-text .title {
    color: #fff;
    white-space: unset;
}

.more-active-item:hover .bottom-text .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.more-active-item:hover .bottom-text .text-content {
    transform: translateY(calc(-60rem / 16));
    transition: all .7s .2s;
}

.recent-main .swiper-slide-active:hover .hover-bg,
.video-list .swiper-slide:hover .hover-bg,
.more-active-item:hover .hover-bg {
    transform: translateY(0);
}

.video-container .video-list {
    position: relative;
    overflow: hidden;
}

.video-container {
    margin-bottom: calc(100rem / 16);
}

.video-container .title-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-container .title-more a {
    display: flex;
    align-items: center;
    font-size: calc(20rem / 16);
    color: #767677;
}

.video-container .title-more a img {
    width: 8px;
    margin-left: 10px;
}

.video-container .title-more a:hover {
    color: #061a4c;
}

.video-container .video-button {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: calc(60rem / 16);
    height: calc(60rem / 16);
    border-radius: 50%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .5s;
}

.video-container .video-button-prev {
    left: 8.5%;
    transform: translate(-50%, -50%);
}

.video-container .video-button-next {
    right: 8.5%;
    transform: translate(50%, -50%) rotate(180deg);
}

.video-container .video-button:hover {
    box-shadow: 0 0 10px #ccc;
}

.video-container .video-button-prev:hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.video-container .video-button-next:hover {
    transform: translate(50%, -50%) rotate(180deg) scale(1.3);
}

.video-container .video-list .swiper-slide {
    position: relative;
    width: 21%;
    height: calc(260rem / 16);
}

.video-container .video-list a {
    /*display: inline-block;*/
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0) 50%);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;

    padding: calc(20rem / 16);
}

.video-container .video-list .play-btn {
    position: absolute;
    width: calc(60rem / 16);
    height: calc(60rem / 16);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .3);
    transition: all .5s;
    z-index: 3;
}

.video-container .video-list .play-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-20%, -50%);
    display: inline-block;
    width: 0;
    height: 0;
    border: calc(10rem / 16) solid transparent;
    border-left-width: calc(15rem / 16);
    border-left-color: #fff;
    transition: all .5s;
}

.video-container .video-list .title {
    position: relative;
    z-index: 3;
    width: 100%;
    font-size: calc(18rem / 16);
    color: #fff;
    transition: all .5s;
}

.video-container .video-list a:hover .title {
    transform: translateY(-40%);
}


.video-container .video-list a:hover .play-btn {
    transform: scale(1.2);
    background-color: #fff;
}

.video-container .video-list a:hover .play-btn::before {
    border-left-color: #124e91;
}

.footer {
    padding-top: calc(45rem / 16);
    padding-bottom: calc(40rem / 16);
    background-image: linear-gradient(to right, #1177c2, #061a4c);
    font-size: calc(18rem / 16);
    color: #fff;
    flex: 0 0 auto;
}

.footer .footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .footer-main .icon-content {
    display: flex;
    margin-bottom: calc(15rem / 16);
}

.footer .footer-main .icon-content .icon {
    width: calc(37rem / 16);
    height: calc(37rem / 16);
    margin-right: calc(20rem / 16);
}

.footer .footer-main span {
    position: relative;
}

.footer .footer-main span:not(:last-child)::after {
    content: '/';
    margin: 0 calc(15rem / 16);
}

.footer .footer-main .back-index a {
    display: flex;
    align-items: center;
}

.footer .footer-main .back-index p {
    flex: 1;
}

.footer .footer-main .back-index .icon {
    width: calc(60rem / 16);
    height: calc(60rem / 16);
    margin-left: calc(20rem / 16);
    border-radius: 50%;
    background-color: #fff;
    transition: all .5s;
}

.footer .footer-main .back-index .icon .put_arrow {
    display: none;
}

.footer .footer-main .back-index:hover .icon {
    /* background-color: #061a4c; */
    /* border: 1px solid #fff; */
    background-color: #ff0000;
}

.footer .footer-main .back-index:hover .default_arrow {
    display: none;
}

.footer .footer-main .back-index:hover .icon .put_arrow {
    display: block;
}

.recent-active .common-b-title {
    color: #fff;
    margin-top: 0;
}

.common-back-btn a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: calc(18rem / 16);
}

.common-back-btn a p {
    flex: 1;
}

.common-back-btn a .icon {
    width: calc(40rem / 16);
    height: calc(40rem / 16);
    margin-left: 10px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    transition: background-color .5s;
}

.common-back-btn a:hover .icon .default_arrow {
    display: none;
}

.common-back-btn a:hover .icon {
    background-color: #ff0000;
}

.common-back-btn a:hover .icon .put_arrow {
    display: block;
}

.common-back-btn a .put_arrow {
    display: none;
}

.detail-page {
    padding-bottom: calc(60rem / 16);
}

.detail-page .detail-main {
    width: 75%;
    padding: 0 calc(180rem / 16);
    padding-top: calc(60rem / 16);
    padding-bottom: calc(170rem / 16);
    margin: 0 auto;
    margin-top: calc(70rem / 16);
    background-color: #f4f4f4;
}

.detail-page .detail-main .title {
    margin-bottom: calc(50rem / 16);
    font-size: calc(30rem / 16);
    font-weight: bold;
    text-align: center;
}

.detail-page .detail-main .text {
    color: #4c4c4c;
    line-height: 1.5;
    font-size: calc(16rem / 16);
}

.detail-page .detail-main .text p:not(:last-child) {
    margin-bottom: calc(27rem / 16);
}

.detail-page .detail-main .text-footer {
    margin-top: calc(70rem / 16);
    font-size: calc(16rem / 16);
    text-align: right;
    color: #4c4c4c;
}

.detail-page .detail-main .text-footer p:not(:last-child) {
    margin-bottom: calc(20rem / 16);
}

.forum-page {
    padding-bottom: calc(70rem / 16);
}

.common-banner .right {
    display: flex;
    align-items: center;
}

.common-banner .right .search-container {
    margin-right: calc(20rem / 16);
}

.forum-page .forum-main {
    width: 83.4%;
    margin: 0 8.3%;
    margin-top: calc(35rem / 16);
}

.forum-main .b-title {
    padding-top: calc(58rem / 16);
    padding-bottom: calc(48rem / 16);
    border-bottom: 1px solid #cccccc;
    font-size: calc(48rem / 16);
    font-weight: bold;
}

.forum-main .forum-item {
    display: flex;
    padding: calc(50rem / 16) 0;
    border-bottom: 1px solid #cccccc;
}

.forum-main .forum-item .pic {
    /* width: calc(430rem / 16);
    height: calc(240rem / 16); */
    width: calc(330rem / 16);
    height: calc(170rem / 16);
    border-radius: calc(20rem / 16);
    overflow: hidden;
}

.forum-main .forum-item:hover .pic img {
    transform: scale(1.1);
}

.forum-main .forum-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.forum-main .forum-item .forum-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */

    padding: calc(20rem / 16);
    margin-left: calc(58rem / 16);
}

.forum-main .forum-item .forum-content .title {
    font-size: calc(24rem / 16);
}

.forum-main .forum-item .forum-content .time {
    display: flex;
    align-items: center;
    margin-top: calc(30rem / 16);
    font-size: calc(18rem / 16);
    font-weight: bold;
    color: #1a428f;
    letter-spacing: 0;
}

.forum-main .forum-item .forum-content .time-icon {
    width: 19px;
    height: 19px;
    margin-right: 8px;
}

.forum-main .forum-item .forum-content .link {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: calc(20rem / 16);
    font-size: calc(16rem / 16);
    color: #1a428f;
}

.forum-main .forum-item .forum-content .link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 11px;
    margin-left: 5px;
    background: url('../images/arrow_right.png') no-repeat center/cover;
    transition: all .5s;
}

.forum-main .forum-item .forum-content .link:hover::after {
    margin-left: 10px;
}

.common-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: calc(50rem / 16);
    font-size: calc(20rem / 16);
    color: #004695;
}

.common-load-more img {
    width: 20px;
    height: 20px;
    margin-left: 14px;
    animation: rotateAn 2s linear infinite;
}

.videos-page .common-b-title {
    text-align: center;
}

.videos-page .videos-list {
    display: flex;
    flex-wrap: wrap;
    width: 71%;
    margin: 0 auto;
}

.videos-page .videos-list .videos-item {
    position: relative;
    width: calc((100% - 100rem / 16) / 3);
    height: calc(260rem / 16);
    overflow: hidden;
    margin-top: calc(50rem / 16);
}

.videos-page .videos-list .videos-item .hover-bg {
    height: 65%;
}

.videos-page .videos-list .videos-item:nth-child(3n + 2) {
    margin-left: calc(50rem / 16);
    margin-right: calc(50rem / 16);
}

.videos-page .videos-list a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: calc(20rem / 16);
    background-image: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0) 50%);
}

.videos-page .videos-list .play-btn {
    position: absolute;
    width: calc(60rem / 16);
    height: calc(60rem / 16);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .3);
    transition: all .5s;
    z-index: 3;
}

.videos-page .videos-list .play-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-20%, -50%);
    display: inline-block;
    width: 0;
    height: 0;
    border: calc(10rem / 16) solid transparent;
    border-left-width: calc(15rem / 16);
    border-left-color: #fff;
    transition: all .5s;
}

.videos-page .videos-list .title {
    position: relative;
    z-index: 3;
    width: 100%;
    font-size: calc(18rem / 16);
    color: #fff;
    transition: all .5s;
}

.videos-page .videos-list a:hover .title {
    transform: translateY(-40%);
}


.videos-page .videos-list a:hover .play-btn {
    transform: scale(1.2);
    background-color: #fff;
}

.videos-page .videos-list a:hover .play-btn::before {
    border-left-color: #124e91;
}

.videos-page .videos-list a:hover .hover-bg {
    transform: translateY(0);
}

.result-main {
    margin-top: calc(40rem / 16);
    text-align: center;
    width: 71%;
    margin-left: auto;
    margin-right: auto;

    padding-bottom: 0;
}

.result-main .title {
    font-size: calc(42rem / 16);
    font-weight: bold;
}

.result-main .input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44%;
    height: calc(54rem / 16);
    margin: 0 auto;
    margin-top: calc(40rem / 16);
    border: 1px solid #fff;
    border-radius: calc(40rem / 16);
}

.result-main .input-container .icon {
    width: calc(20rem / 16);
    margin-left: calc(30rem / 16);
    margin-right: calc(15rem / 16);
}

.result-main .input-container input[type='text'] {
    flex: 1;
    height: 60%;
    padding: 0 15px;
    border: none;
    border-left: 1px solid #fff;
    outline: none;
    font-size: calc(16rem / 16);
    background-color: transparent;
}

.result-main .input-container input[type='submit'] {
    height: 100%;
    padding: 0 calc(60rem / 16);
    background-color: #073190;
    font-size: calc(18rem / 16);
    border-radius: calc(50rem / 16);
    color: #fff;
    border: none;
    cursor: pointer;
}

.result-main .select-list {
    display: flex;
    justify-content: flex-start;
    font-size: calc(20rem / 16);
}

.result-main .common-b-title {
    text-align: left;
}

.result-main .select-list a {
    margin: 0 10px;
    padding: .35em 1em .45em 1.25em;
    line-height: 1.6em;
    border-radius: 1.2em;
    background-color: #f4f4f4;
    color: #666;
}

.result-main .select-list a:first-of-type {
    margin-left: 0;
}

.result-main .select-list a:hover {
    color: #073190;
}

.result-main .select-list a.active {
    color: #fff;
    background-color: #073190;
    font-weight: bold;
}

.result-main .result-total {
    width: 100%;
    padding-bottom: calc(15rem / 16);
    margin: 0 auto;
    margin-top: calc(50rem / 16);
    font-size: calc(14rem / 16);
    text-align: left;
    border-bottom: 1px solid #cccccc;
    display: none;
}

.forum-page.result .forum-main {
    width: 100%;
    margin: 0 auto;
}

.forum-page.result .forum-main .forum-list {
    width: 71%;
    margin: 0 auto;
}

.no-result-hint {
    width: 71%;
    padding-top: 1em;
    padding-bottom: 1em;
    margin: calc(40rem / 16) auto 0;

}

.no-result-hint span {
    color: #1a428f;
    font-weight: bold;
}

.forum-page.result .forum-list strong {
    color: #1a428f;
}

.new-banner {
    width: 100%;
    height: 100%;
    background-color: #0e419c;
    position: relative;
}

.new-banner .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(14, 65, 156, 1) 50%, rgba(14, 65, 156, .5) 84%, transparent);
    width: 40%;
    height: 100%;
    z-index: 88;
}

.new-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .3), transparent);
    width: 100%;
    height: 30%;
    z-index: 99;
}

.new-banner .mask1 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(14, 65, 156, .7) 10%, rgba(14, 65, 156, .2) 74%, transparent);
    width: 100%;
    height: 50%;
    z-index: 89;
}

.new-banner .mask2 {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(14, 65, 156, .7) 10%, rgba(14, 65, 156, .2) 74%, transparent);
    width: 100%;
    height: 50%;
    z-index: 89;
}

.new-banner-font .title img {
    width: 22.5%;
    max-width: 100%;
}

.new-banner-title {
    top: 30%;
}

.new-banner-font .swiper-slide .intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: calc(50px + 8vw);
}

.new-banner-font .swiper-slide .font h1 {
    font-size: 32px;
    font-weight: normal;
}

.new-banner-font .swiper-slide .font p {
    font-size: 22px;
}

.new-banner-font .swiper-slide .link {
    font-size: 22px;
    line-height: .8;
    padding-right: 30px;
    background: url(../images/j.png) no-repeat center/contain;
    background-position: right;
    white-space: nowrap;
}

.new-banner-font .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
    position: relative;
}

.new-banner-font .swiper-pagination {
    bottom: 30px !important;
}

.new-banner-font .swiper-pagination-bullet {
    margin: 0 10px !important;
}

.new-banner-font .swiper-pagination-bullet-active::after {
    content: '';
    width: 150%;
    height: 150%;
    border: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate3d(-25%, -25%, 0);
}

.new-banner-font {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
}

.new-swiper-cont {
    width: 83%;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.new-banner-font .swiper-slide {
    display: flex;
    align-items: flex-end;
    padding: 10vw 0 10vw;
    color: #fff;
}

.index-page .common-banner .swiper-backface-hidden .swiper-slide {
    background-position-x: 200px !important;
}


@keyframes rotateAn {
    to {
        transform: rotate(360deg);
    }
}