﻿:root{
--default-primary-color: #333333;
--default-secondary-color: #777777;
--primary-text-color: #333333;
--secondary-text-color: #666666;
--third-text-color: #999999;
--decoration-text-color: #dddddd;
--primary-bg-color: #333333;
--secondary-bg-color: #666666;
--decoration-bg-color: #eeeeee;
--primary-color: #2068FF;
--primary-4t-color: rgba(32 104 255 / 4%);
--primary-8t-color: rgba(32 104 255 / 8%);
--primary-12t-color: rgba(32 104 255 / 12%);
--primary-20t-color: rgba(32 104 255 / 20%);
--primary-28t-color: rgba(32 104 255 / 28%);
--primary-40t-color: rgba(32 104 255 / 40%);
--primary-48t-color: rgba(32 104 255 / 48%);
--primary-56t-color: rgba(32 104 255 / 56%);
--primary-64t-color: rgba(32 104 255 / 64%);
--primary-72t-color: rgba(32 104 255 / 72%);
--primary-80t-color: rgba(32 104 255 / 80%);
--primary-88t-color: rgba(32 104 255 / 88%);
--primary-96t-color: rgba(32 104 255 / 96%);
--secondary-color: #fc9905;
/* --primary-color: #00233f;
--secondary-color: #de0000; */
--decoration-color: #f7ba11;
--primary-hover-color: #5087ff;
--primary-light-hover-color: #1bac1b13;
--secondary-hover-color: #ff6640;
/* --primary-hover-color: #012a4a;
--secondary-hover-color: #e42b2b; */
}
::selection{
color: #ffffff;
background-color: var(--secondary-color);
}
*{ 
    box-sizing: border-box;
margin: 0; 
padding: 0;
font-family: "PingFang SC",PingHei,STHeitiSC-Light,"Myriad Set Pro","Lucida Grande","microsoft yahei",SimHei,tahoma,Arial,Verdana,sans-serif;
list-style: none;
}
a{
text-decoration: none;
}
a:visited{
/* color: #333333; */
}
.clearfix::after{
clear: both;
display: block;
content: "";
}
.t-a-c{
text-align: center;
}
.t-a-l{
text-align: left;
}
.t-a-r{
text-align: right;
}
.f-c-c{
display: flex;
justify-content: center;
align-items: center;
}
.f-s-c{
display: flex;
justify-content: flex-start;
align-items: center;
}
.f-e-c{
display: flex;
justify-content: flex-end;
align-items: center;
}
.f-e-e{
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
.f-s-s{
display: flex;
justify-content: flex-start;
align-items: flex-start;
}
.f-c-s{
display: flex;
justify-content: center;
align-items: flex-start;
}
.f-e-s{
display: flex;
justify-content: flex-end;
align-items: flex-start;
}
.f-c-e{
display: flex;
justify-content: center;
align-items: flex-end;
}
.f-b-c{
display: flex;
justify-content: space-between;
align-items: center;
}
.f-b-s{
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.f-b-e{
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.f-row{
flex-direction: row;
}
.f-col{
flex-direction: column;
}
.f-wrap{
flex-wrap: wrap;
}
.v-top{
vertical-align: top;
}
.v-middle{
vertical-align: middle;
}
.v-bottom{
vertical-align: bottom;
}
.animated{
-webkit-animation-duration: .8s;
animation-duration: .8s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.fadeInDown{
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
.textellipsis-2{
    height:36px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@keyframes fadeInDown{
0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    -o-transform: translate3d(0, -30px, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
.fadeInUp{
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@keyframes fadeInUp{
0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
.fadeInRight{
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@keyframes fadeInRight{
0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
.fadeInLeft{
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@keyframes fadeInLeft{
0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
@keyframes bounceAni{
    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1.1, 0.9);
    }
    50% {
        transform: scale(0.9, 1.1);
    }
    75% {
        transform: scale(1.1, 0.9);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes bannerScroll{
    0% {
        transform: translateY(-8px);
        height: 8px;
    }
    50% {
        transform: translateY(8px);
        height: 10px;
    }
    100% {
        transform: translateY(-8px);
        height: 8px;
    }
    /* 0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
} */
}

.swiper-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet{
    margin: 0 6px !important;
    width: 40px;
    border-radius: 4px;
}

.swiper-history-decor{
    width: 100%;

}
.swiper-history-con{
    text-align: center;
    position: relative;
}
.swiper-history-con-main h1::before{
    content: '';
    position: absolute;
    right: calc(100% + 60px);
    top: 80px;
    width: 160px;
    height: 2px;
    background-color: #dddddd;
}
.swiper-history-con-main h1::after{
    content: '';
    position: absolute;
    left: calc(100% + 60px);
    top: 80px;
    width: 160px;
    height: 2px;
    background-color: #dddddd;
}
.swiper-history-con h1{
    position: relative;
    max-width: 472px;
}
.swiper-history-con p{
    position: relative;
    max-width: 472px;
    margin-bottom: 10px;
    text-align: left;
}
.swiper-history-con h1{
    font-size: 120px;
    font-weight: bolder;
    color: #222222;
}
.swiper-history-con p{
    font-size: 17px;
    font-weight: normal;
}
.swiper-history-con h4{
    font-size: 30px;
    font-weight: normal;
    color: #999999;
    margin-top: 60px;
}
.swiper-button{
    width: 48px;
    height: 48px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-image: none;
    color: #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-button-next, .swiper-button-prev{
    top: 20%;
}
.next3{
    /* right: calc(50%); */
}
.prev3{
    /* left: calc(50%); */
}
.go_top {
    cursor: pointer;
    width: 64px;
    height: 64px;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border-radius: 64px;
    background-color: var(--primary-color);
    /* border: 2px solid rgb(255, 255, 255, .3); */
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 48px;
    opacity: 0;
    transition: 0.25s ease-in-out;
    z-index: 997;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.go_top.active{
    opacity: 1;
}
.go_top:hover{
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

.pub-inner-info-page-all{
    text-align: center;
    margin-top: 28px;
}
.pagination{
    text-align: center;
    margin-bottom: 28px;
}
.pagination .active a{
    background-color: var(--primary-color);
    color: #ffffff!important;
}
.pagination .active span{
    background-color: var(--primary-color);
    color: #ffffff!important;
}
.page-item{
    display: inline-block;
}
.page-item a{
    font-size: 14px;
    display: inline-block;
    padding: 8px 16px;
    /*border-radius: 4px;
    */border: 1px solid #eeeeee;
    background-color: #ffffff;
    color: #444444;
    transition: .2s ease-in-out;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.page-item a:hover{
    background-color: var(--primary-color);
    color: #ffffff!important;
}
.page-item span{
    font-size: 14px;
    display: inline-block;
    padding: 8px 16px;
    /*border-radius: 4px;*/
    border: 1px solid #eeeeee;
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

@media(max-width: 640px){
    .go_top {
        bottom: 80px;
        z-index: 1009;
    }
    .swiper-history-con h1{
        font-size: 80px;
    }
    .swiper-history-con{
        width: 100%;
    }
    .swiper-history-con-main h1::before{
        display: none;
    }
    .swiper-history-con-main h1::after{
        display: none;
    }
}