body, html {
    font-size: 16px;
    max-width: 1920px;
    margin: auto;
}

.container-fluid {
    max-width: 1600px;
}

a:hover {
    text-decoration: none;
}

p {
    margin: 0;
}

@keyframes moreBtn {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(10px);
    }
}

@keyframes contactRotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.topNav {
    width: 100%;
    max-width: 1600px;
    position: relative;
    margin: auto;
    z-index: 3;
}

.topNav .logo {
    height: 88px;
    padding-top: 24px;
    position: absolute;
    left: 10px;
}

.topNav .logoSmall {
    height: 88px;
    padding-top: 24px;
    position: absolute;
    left: 20px;
    display: none;
    z-index: 4;
}

.topNav .openBtn {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 25px;
    cursor: pointer;
    display: none;
    z-index: 4;
}

.topNav .openBtn::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #b60000;
    top: 20px;
    transition: .3s;
}

.topNav .openBtn::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #b60000;
    top: 10px;
    transition: .3s;
}

.topNav .closeBtn::after {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 15px;
}

.topNav .closeBtn::before {
    transform: rotate(45deg);
    transform-origin: center;
    top: 15px;
}

.topNav .mobileNav {
    position: absolute;
    width: 100%;
    padding: 120px 15px;
    height: 100vh;
    background: #000;
    z-index: 3;
}

.topNav .mobileNav li {
    list-style: none;
    width: 50%;
    padding: 10px;
    float: left;
}

.topNav .mobileNav li a {
    font-size: 1.125rem;
    font-weight: 200;
    color: white;
}

.topNav .mobileNav li p {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #999;
}

.topNav .navButton {
    position: absolute;
    right: 0;
    width: 976px;
    display: -webkit-flex;
    display: flex;
    padding-left: 0;
    margin: 0;
}

.topNav .navButton .list {
    float: left;
    list-style: none;
    text-align: center;
    flex: 1 1;
    -webkit-flex: 1 1;
    height: 88px;
    padding-top: 24px;
    position: relative;
}

.topNav .navButton .list .listZh {
    margin: 0;
    color: #fff;
    font-size: 1.125rem;
}

.topNav .navButton .list .listEn {
    margin: 0;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 200;
}

.topNav .navButton .list:last-child::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #b60000;
    display: block;
    transition: .3s ease;
    position: absolute;
    left: 0%;
    top: 0;
    z-index: -1;
}

.topNav .navButton li:nth-child(1).active ~ li:last-child::after,
.topNav .navButton li:nth-child(1):hover ~ li:last-child::after{
    left: -800%;
}

.topNav .navButton li:nth-child(2).active ~ li:last-child::after,
.topNav .navButton li:nth-child(2):hover ~ li:last-child::after{
    left: -700%;
}

.topNav .navButton li:nth-child(3).active ~ li:last-child::after,
.topNav .navButton li:nth-child(3):hover ~ li:last-child::after{
    left: -600%;
}

.topNav .navButton li:nth-child(4).active ~ li:last-child::after,
.topNav .navButton li:nth-child(4):hover ~ li:last-child::after{
    left: -500%;
}

.topNav .navButton li:nth-child(5).active ~ li:last-child::after,
.topNav .navButton li:nth-child(5):hover ~ li:last-child::after{
    left: -400%;
}

.topNav .navButton li:nth-child(6).active ~ li:last-child::after,
.topNav .navButton li:nth-child(6):hover ~ li:last-child::after{
    left: -300%;
}

.topNav .navButton li:nth-child(7).active ~ li:last-child::after,
.topNav .navButton li:nth-child(7):hover ~ li:last-child::after{
    left: -200%;
}

.topNav .navButton li:nth-child(8).active ~ li:last-child::after,
.topNav .navButton li:nth-child(8):hover ~ li:last-child::after{
    left: -100%;
}

.topNav .navButton li:nth-child(9).active ~ li:last-child::after,
.topNav .navButton li:nth-child(9):hover ~ li:last-child::after{
    left: 0;
}


.homeBanner {
    max-width: 1920px;
    width: 100%;
    height: 100vh;
    position: relative;
}

.homeBanner #homeBanner {
    width: 100%;
    height: 100%;
}

.homeBanner .homeBannerPrev {
    width: 79px;
    height: 74px;
    background: none;
    left: 0;
}

.homeBanner .homeBannerPrev::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #b60000;
    opacity: 0;
    transition: .3s;
    z-index: -1;
}

.homeBanner .homeBannerPrev::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/homeBannerPrev.png) no-repeat center;
}

.homeBanner .homeBannerPrev:hover::before {
    opacity: 0.5;
}

.homeBanner .homeBannerNext {
    width: 79px;
    height: 74px;
    background: none;
    right: 0;
}

.homeBanner .homeBannerNext::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #b60000;
    opacity: 0;
    transition: .3s;
    z-index: -1;
}

.homeBanner .homeBannerNext::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/homeBannerNext.png) no-repeat center;
}

.homeBanner .homeBannerNext:hover::before {
    opacity: 0.5;
}

.homeBanner .homeBannerPagination {
    width: auto;
    height: 44px;
    bottom: 56px;
    right: 36px;
    left: initial;
}

.homeBanner .homeBannerPagination .swiper-pagination-bullet {
    background-color: rgba(244, 244, 244, 0.72);
    width: 6px;
    height: 22px;
    border-radius: initial;
    margin: 0 14px;
    opacity: 1;
    position: relative;
}

.homeBanner .homeBannerPagination .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0px;
    left: 0;
    bottom: 0;
    background: #b60000;
    transition: .3s;
}

.homeBanner .homeBannerPagination .swiper-pagination-bullet-active::after {
    height: 44px;
}

.homeBanner .imgBox {
    width: 100%;
    height: 100%;
}

.homeBanner .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeBanner .homeRecommend {
    position: absolute;
    bottom: -14px;
    left: 0;
    z-index: 2;
    background: url(../images/homeVideoBg.png) right no-repeat;
    padding-right: 100px;
    min-width: 1200px;
    overflow: hidden;
}

.homeBanner .homeRecommend .videoBox {
    float: left;
    position: relative;
    cursor: pointer;
}

.homeBanner .homeRecommend .videoBox::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/videoBtn.png) center no-repeat;
    top: 0;
    left: 0;
}

.homeBanner .homeRecommend .homeRecommendNews {
    float: left;
    padding: 20px 100px 0 25px;
    height: 152px;
    margin: 0;
}

.homeBanner .homeRecommend .homeRecommendNews li {
    list-style: none;
    line-height: 35px;
    position: relative;
}

.homeBanner .homeRecommend .homeRecommendNews li .titleLine {
    width: 14px;
    height: 1px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
}

.homeBanner .homeRecommend .homeRecommendNews a {
    color: #fff;
    font-size: 1rem;
}

.videoModal .modal-dialog {
    max-width: 90vw;
    max-height: 90vh;
    height: 90vh;
}

.videoModal video {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.homeNews {
    background: #f4f4f4;
    padding: 9.8vh 0 0;
    min-height: 100vh;
}

.homeNews #newsSlide {
    height: 51.8vh;
}

.homeNews #newsSlide .imgBox {
    width: 100%;
    height: 100%;
}

.homeNews #newsSlide .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeNews #newsSlide .titleBox {
    color: #fff;
    font-size: 20px;
    font-weight: 100;
    position: absolute;
    bottom: 0;
    z-index: 2;
    line-height: 40px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 0 30px;
}

.homeNews #newsSlide .newsPagination {
    display: inline-block;
    width: auto !important;
    height: 40px;
    bottom: 0 !important;
    right: 0;
    left: initial !important;
    background: url(../images/newsSlideBg.png) left no-repeat;
    padding: 0 10px 0 28px;
}

.homeNews #newsSlide .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.7;
    border-radius: 0;
    margin: 16px 8px !important;
}

.homeNews #newsSlide .swiper-pagination-bullet-active {
    opacity: 1;
}

.homeNews .newsListTabBox {
    width: 100%;
    border-bottom: 1px solid rgba(51, 51, 51, 0.16);
}

.homeNews .newsListTabBox .newsMore {
    display: inline-block;
    width: 24px;
    height: 24px;
    float: left;
    margin: 2.1vh 0 0 25px;
}

.homeNews .newsListTabBox .newsMore .moreIcon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/newsMoreBg.png);
    transition: .3s;
}

.homeNews .newsListTabBox .newsMore:hover .moreIcon {
    transform: rotate(90deg);
}

.homeNews .newsListTab {
    width: calc(100% - 86px);
    border: none;
    float: left;
}

.homeNews .newsListTab .nav-item {
    width: 25%;
    text-align: center;
}

.homeNews .newsListTab .nav-item .nav-link {
    color: #666;
    font-size: 1.125rem;
    padding: 1.6vh 0 2vh;
    position: relative;
    border: none;
    transition: .3s;
}

.homeNews .newsListTab .nav-item .nav-link::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    background: #b60000;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: .3s;
}

.homeNews .newsListTab .nav-item .nav-link::before {
    position: absolute;
    content: '';
    background: rgba(153, 153, 153, 0.16);
    width: 1px;
    height: 32px;
    top: calc(50% - 16px);
    right: 0;
}

.homeNews .newsListTab .nav-item .newsListIcon {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    transition: .3s;
}

.homeNews .newsListTab .nav-item .name i {
    font-style: normal;
}

.homeNews .newsListTab .nav-item .active {
    background: none;
    border: none;
    color: #b60000;
}

.homeNews .newsListTab .nav-item .active::after {
    opacity: 1;
}

.homeNews .newsListTab .nav-item span {
    vertical-align: middle;
}

.homeNews .newsListTab .nav-item:nth-child(1) .newsListIcon {
    background: url(../images/menuImg1.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(2) .newsListIcon {
    background: url(../images/menuImg2.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(3) .newsListIcon {
    background: url(../images/menuImg3.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(4) .newsListIcon {
    background: url(../images/menuImg4.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(1) .active .newsListIcon {
    background: url(../images/menuImg11.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(2) .active .newsListIcon {
    background: url(../images/menuImg21.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(3) .active .newsListIcon {
    background: url(../images/menuImg31.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(4) .active .newsListIcon {
    background: url(../images/menuImg41.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(1):hover .newsListIcon {
    background: url(../images/menuImg11.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(2):hover .newsListIcon {
    background: url(../images/menuImg21.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(3):hover .newsListIcon {
    background: url(../images/menuImg31.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:nth-child(4):hover .newsListIcon {
    background: url(../images/menuImg41.png) no-repeat center;
}

.homeNews .newsListTab .nav-item:hover .nav-link {
    color: #b60000;
}

.homeNews .newsListTab .nav-item:hover .nav-link::after {
    opacity: 1;
}

.homeNews .newsListContent .tab-pane {
    padding: 0;
}

.homeNews .newsListContent .tab-pane .title {
    text-align: center;
    color: #b60000;
    font-size: 1.75rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    margin: 0;
    line-height: 8vh;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.homeNews .newsListContent .tab-pane .list {
    font-size: 1.5rem;
    line-height: 7.3vh;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    margin: 0;
}

.homeNews .newsListContent .tab-pane .list a {
    color: #666;
    font-weight: 200;
    transition: .3s;
}

.homeNews .newsListContent .tab-pane .list .name {
    display: inline-block;
    max-width: 85%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.homeNews .newsListContent .tab-pane .list:hover a {
    color: #b60000;
    font-weight: 200;
}

.homeNews #autoShow {
    margin-top: 8.5vh;
}

.homeNews #autoShow .list .imgBox {
    width: 100%;
    height: 21vh;
    position: relative;
    overflow: hidden;
}

.homeNews #autoShow .list .imgBox::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    left: 0;
    opacity: 0.2;
    transition: .3s;
}

.homeNews #autoShow .list .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.homeNews #autoShow .list .title {
    text-align: center;
    line-height: 56px;
    background: #fff;
    color: #666;
    font-size: 1.5rem;
    font-weight: 200;
    transition: .4s;
}

.homeNews #autoShow .list:hover .imgBox::after {
    opacity: 0;
}

.homeNews #autoShow .list:hover .imgBox img {
    transform: scale(1.06);
}

.homeNews #autoShow .list:hover .title {
    color: #fff;
    background: #b60000;
}

.homeNews .autoShowBtn {
    position: absolute;
    bottom: 48px;
    width: calc(100% - 30px);
    height: 196px;
}

.homeNews .autoShowBtn .autoShowPrev {
    width: 64px;
    height: 64px;
    background: url(../images/autoShowPrev.png);
    left: -32px;
}

.homeNews .autoShowBtn .autoShowPrev:focus {
    outline: none;
}

.homeNews .autoShowBtn .autoShowNext {
    width: 64px;
    height: 64px;
    background: url(../images/autoShowNext.png);
    right: -32px;
}

.homeNews .autoShowBtn .autoShowNext:focus {
    outline: none;
}

.footerBox {
    background: #f8f8f8;
}

.footerBox .box {
    width: 100%;
    max-width: 1600px;
    height: 174px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.footerBox .box .logo {
    
}

.footerBox .box .logo .footerLogoBlack{
    display: block;
}

.footerBox .box .logo .footerLogoWhite{
    display: none;
}

.footerBox .box .btnBox {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footerBox .box .btnBox .list-inline-item {
    margin: 0 15px;
    position: relative;
}

.footerBox .box .btnBox .list-inline-item a {
    color: #333;
    font-size: 1.125rem;
    transition: .3s;
}

.footerBox .box .btnBox .list-inline-item:hover a {
    color: #b60000;
}

.footerBox .box .btnBox .list-inline-item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #333;
    right: -15px;
}

.footerBox .box .btnBox .list-inline-item:last-child::after {
    display: none;
}

.footerBox .box .btnBox .copyRight * {
    color: #333;
    font-size: 1rem;
}

.footerBox .box .QRCode {
    
}

.topBanner img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 0;
}

.navBar {
    text-align: center;
    background: #f5f5f5;
    margin: 4vh 0 0;
}

.navBar .list {
    margin: 0 3.6vw;
    padding: 30px 25px;
    position: relative;
}

.navBar .list::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #b60000;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .3s;
}

.navBar .list .icon {
    width: 45px;
    height: 34px;
    display: inline-block;
    transition: .3s;
}

.navBar .list .name {
    color: #666;
    font-size: 1.125rem;
    transition: .3s;
}

.navBar .list.active .name {
    color: #b60000;
}

.navBar .list.active::after {
    opacity: 1;
}

.navBar .list:hover .name {
    color: #b60000;
}

.navBar .list:hover::after {
    opacity: 1;
}

.aboutNav .list:nth-child(1) .icon {
    background: url(../images/aboutNav1.png) no-repeat center;
}

.aboutNav .list:nth-child(2) .icon {
    background: url(../images/aboutNav2.png) no-repeat center;
}

.aboutNav .list:nth-child(3) .icon {
    background: url(../images/aboutNav3.png) no-repeat center;
}

.aboutNav .list:nth-child(4) .icon {
    background: url(../images/aboutNav4.png) no-repeat center;
}

.aboutNav .list:nth-child(5) .icon {
    background: url(../images/aboutNav5.png) no-repeat center;
}

.aboutNav .list:hover:nth-child(1) .icon {
    background: url(../images/aboutNav11.png) no-repeat center;
}

.aboutNav .list:hover:nth-child(2) .icon {
    background: url(../images/aboutNav21.png) no-repeat center;
}

.aboutNav .list:hover:nth-child(3) .icon {
    background: url(../images/aboutNav31.png) no-repeat center;
}

.aboutNav .list:hover:nth-child(4) .icon {
    background: url(../images/aboutNav41.png) no-repeat center;
}

.aboutNav .list:hover:nth-child(5) .icon {
    background: url(../images/aboutNav51.png) no-repeat center;
}

.aboutNav .list:nth-child(1).active .icon {
    background: url(../images/aboutNav11.png) no-repeat center;
}

.aboutNav .list:nth-child(2).active .icon {
    background: url(../images/aboutNav21.png) no-repeat center;
}

.aboutNav .list:nth-child(3).active .icon {
    background: url(../images/aboutNav31.png) no-repeat center;
}

.aboutNav .list:nth-child(4).active .icon {
    background: url(../images/aboutNav41.png) no-repeat center;
}

.aboutNav .list:nth-child(5).active .icon {
    background: url(../images/aboutNav51.png) no-repeat center;
}

.informationNav .list:nth-child(1) .icon {
    background: url(../images/informationNav1.png) no-repeat center;
}

.informationNav .list:nth-child(2) .icon {
    background: url(../images/informationNav2.png) no-repeat center;
}

.informationNav .list:nth-child(3) .icon {
    background: url(../images/informationNav3.png) no-repeat center;
}

.informationNav .list:nth-child(4) .icon {
    background: url(../images/informationNav4.png) no-repeat center;
}

.informationNav .list:hover:nth-child(1) .icon {
    background: url(../images/informationNav11.png) no-repeat center;
}

.informationNav .list:hover:nth-child(2) .icon {
    background: url(../images/informationNav21.png) no-repeat center;
}

.informationNav .list:hover:nth-child(3) .icon {
    background: url(../images/informationNav31.png) no-repeat center;
}

.informationNav .list:hover:nth-child(4) .icon {
    background: url(../images/informationNav41.png) no-repeat center;
}

.informationNav .list:nth-child(1).active .icon {
    background: url(../images/informationNav11.png) no-repeat center;
}

.informationNav .list:nth-child(2).active .icon {
    background: url(../images/informationNav21.png) no-repeat center;
}

.informationNav .list:nth-child(3).active .icon {
    background: url(../images/informationNav31.png) no-repeat center;
}

.informationNav .list:nth-child(4).active .icon {
    background: url(../images/informationNav41.png) no-repeat center;
}

.exhibitionNav .list:nth-child(1) .icon {
    background: url(../images/exhibitionNav1.png) no-repeat center;
}

.exhibitionNav .list:nth-child(2) .icon {
    background: url(../images/exhibitionNav2.png) no-repeat center;
}

.exhibitionNav .list:nth-child(3) .icon {
    background: url(../images/exhibitionNav3.png) no-repeat center;
}

.exhibitionNav .list:nth-child(4) .icon {
    background: url(../images/exhibitionNav4.png) no-repeat center;
}

.exhibitionNav .list:hover:nth-child(1) .icon {
    background: url(../images/exhibitionNav11.png) no-repeat center;
}

.exhibitionNav .list:hover:nth-child(2) .icon {
    background: url(../images/exhibitionNav21.png) no-repeat center;
}

.exhibitionNav .list:hover:nth-child(3) .icon {
    background: url(../images/exhibitionNav31.png) no-repeat center;
}

.exhibitionNav .list:hover:nth-child(4) .icon {
    background: url(../images/exhibitionNav41.png) no-repeat center;
}

.exhibitionNav .list:nth-child(1).active .icon {
    background: url(../images/exhibitionNav11.png) no-repeat center;
}

.exhibitionNav .list:nth-child(2).active .icon {
    background: url(../images/exhibitionNav21.png) no-repeat center;
}

.exhibitionNav .list:nth-child(3).active .icon {
    background: url(../images/exhibitionNav31.png) no-repeat center;
}

.exhibitionNav .list:nth-child(4).active .icon {
    background: url(../images/exhibitionNav41.png) no-repeat center;
}

.publicityNav .list:nth-child(1) .icon {
    background: url(../images/publicityNav1.png) no-repeat center;
}

.publicityNav .list:nth-child(2) .icon {
    background: url(../images/publicityNav2.png) no-repeat center;
}

.publicityNav .list:nth-child(3) .icon {
    background: url(../images/publicityNav3.png) no-repeat center;
}

.publicityNav .list:hover:nth-child(1) .icon {
    background: url(../images/publicityNav11.png) no-repeat center;
}

.publicityNav .list:hover:nth-child(2) .icon {
    background: url(../images/publicityNav21.png) no-repeat center;
}

.publicityNav .list:hover:nth-child(3) .icon {
    background: url(../images/publicityNav31.png) no-repeat center;
}

.publicityNav .list:nth-child(1).active .icon {
    background: url(../images/publicityNav11.png) no-repeat center;
}

.publicityNav .list:nth-child(2).active .icon {
    background: url(../images/publicityNav21.png) no-repeat center;
}

.publicityNav .list:nth-child(3).active .icon {
    background: url(../images/publicityNav31.png) no-repeat center;
}

.aboutMain .container-fluid {
    max-width: 1400px;
}

.aboutMain .contentBox {
    min-height: 500px;
    padding: 6.4vh 0;
}

.aboutMain .contentBox .videoBox {
    cursor: pointer;
    margin: 0 50px 10px 0;
}

.aboutMain .contentBox img {
    max-width: 100%;
}

.aboutMain .workBox {
    min-height: 500px;
    padding: 6.4vh 0;
}

.aboutMain .workBox .list {
    background: #f5f5f5;
    margin-bottom: 38px;
}

.aboutMain .workBox .list:last-child {
    margin-bottom: 0px;
}

.aboutMain .workBox .list .imgBox {
    height: 270px;
    padding-left: 0;
}

.aboutMain .workBox .list .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutMain .workBox .list .infoBox {
    padding-top: 36px;
}

.aboutMain .workBox .list .infoBox .title {
    font-size: 1.5rem;
    color: #333;
}

.aboutMain .workBox .list .infoBox .info {
    font-size: 1.125rem;
    color: #666;
    text-indent: 2em;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 40px;
}

.aboutMain .workBox .list .infoBox .more {
    font-size: 1.125rem;
    color: #666;
    padding-left: 40px;
    position: relative;
    margin-top: 45px;
    display: block;
}

.aboutMain .workBox .list .infoBox .more::after {
    position: absolute;
    content: '';
    width: 32px;
    height: 1px;
    background: #666;
    top: 50%;
    left: 0;
}

.aboutMain .workBox .list .time {
    position: relative;
    padding: 100px 0px 0 30px;
}

.aboutMain .workBox .list .time::before {
    content: '';
    position: absolute;
    height: 60%;
    width: 1px;
    background: #000;
    opacity: 0.24;
    top: 20%;
    left: 0;
}

.aboutMain .workBox .list .time .date {
    color: #666;
    font-size: 2rem;
    font-weight: 200;
}

.aboutMain .workBox .list .time .year {
    color: #666;
    font-size: 1.125rem;
    font-weight: 200;
}

.aboutMain .workBox .list * {
    transition: .4s;
}

.aboutMain .workBox .list:hover * {
    color: #b60000 !important;
}

.aboutMain .workBox .list:hover .more {
    animation: moreBtn 1s ease-in-out infinite alternate;
}

.aboutMain .workBox .list:hover .more::after {
    background: #b60000;
}

.mediaReports .container-fluid {
    max-width: 1400px;
}

.mediaReports .mediaBox {
    min-height: 500px;
    padding: 6.4vh 0;
}

.mediaReports .mediaBox .list {
    background: #f5f5f5;
    margin-bottom: 38px;
}

.mediaReports .mediaBox .list .imgBox {
    height: 210px;
    padding-left: 0;
}

.mediaReports .mediaBox .list .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mediaReports .mediaBox .list .infoBox {
    padding: 30px 54px 0;
}

.mediaReports .mediaBox .list .infoBox .title {
    color: #333;
    font-size: 1.375rem;
}

.mediaReports .mediaBox .list .infoBox .info {
    color: #666;
    font-size: 1rem;
    margin-top: 20px;
}

.mediaReports .mediaBox .list .infoBox .time {
    display: inline-block;
    color: #666;
    font-size: 1.125rem;
    margin-top: 20px;
}

.mediaReports .mediaBox .list .more {
    background: url(../images/mediaMore.png) no-repeat center;
    position: relative;
}

.mediaReports .mediaBox .list .more::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 60%;
    background: #000;
    opacity: 0.24;
    left: 0;
    top: 20%;
}

.mediaReports .mediaBox .list * {
    transition: .3s;
}

.mediaReports .mediaBox .list:hover * {
    color: #b60000 !important;
}

.mediaReports .mediaBox .list:hover .more {
    background: url(../images/mediaMoreH.png) no-repeat center;
}

.mediaBanner {
    width: 100%;
    height: 536px;
}

.mediaBanner .imgActive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mediaBanner #mediaSwiper {
    width: 1000px;
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    margin: auto;
}

.mediaBanner #mediaSwiper .mediaPrev {
    background: url(../images/mediaBtnL.png) no-repeat center;
}

.mediaBanner #mediaSwiper .mediaNext {
    background: url(../images/mediaBtnR.png) no-repeat center;
}

.mediaBanner #mediaSwiper .swiper-slide-active {
    position: relative;
    cursor: pointer;
}

.mediaBanner #mediaSwiper .swiper-slide-active::after {
    position: absolute;
    content: '';
    width: 41px;
    height: 35px;
    background: url(../images/mediaBtn.png) no-repeat center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
}

.exhibitionMain .container-fluid {
    max-width: 1400px;
}

.exhibitionMain .activityBox {
    min-height: 500px;
    padding: 5vh 0;
}

.exhibitionMain .activityBox .list {
    height: 455px;
    transition: .3s;
    margin-bottom: 45px;
    background-size: cover !important;
}

.exhibitionMain .activityBox .list:last-child {
    margin-bottom: 0;
}

.exhibitionMain .activityBox .list .contentBox {
    padding: 76px 76px 76px 138px;
    text-align: right;
}

.exhibitionMain .activityBox .list .contentBox .title {
    font-size: 2rem;
    font-weight: 200;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.exhibitionMain .activityBox .list .contentBox .time {
    font-size: 1.25rem;
    margin-top: 28px;
    font-weight: 200;
    position: relative;
    line-height: 45px;
    -webkit-transform: perspective(1px);
    transform: perspective(1px);
}

.exhibitionMain .activityBox .list .contentBox .time::before {
    position: absolute;
    content: '';
    width: 270px;
    height: 100%;
    background: #b60000;
    top: 0;
    right: -76px;
    z-index: -1;
}

.exhibitionMain .activityBox .list .contentBox .info {
    font-size: 1rem;
    margin-top: 28px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.exhibitionMain .activityBox .list .contentBox .moreBtn {
    width: 28px;
    height: 28px;
    display: inline-block;
    position: relative;
    margin-top: 52px;
}

.exhibitionMain .activityBox .list .contentBox .moreBtn::before {
    position: absolute;
    content: '';
    width: 28px;
    height: 2px;
    background: #b60000;
    left: 0;
    top: calc(50% - 1px);
}

.exhibitionMain .activityBox .list .contentBox .moreBtn::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 28px;
    background: #b60000;
    left: calc(50% - 1px);
    top: 0;
    transition: .3s;
    transform: rotateX(90deg);
}

.exhibitionMain .activityBox .list .contentBox * {
    color: #fff;
    transition: .3s;
}

.exhibitionMain .activityBox .list:hover {
    box-shadow: 0px 8px 12px 0px rgba(99, 99, 99, 0.56);
    transform: translateY(-2px);
}

.exhibitionMain .activityBox .list:hover .moreBtn::after {
    transform: rotateY(0deg);
}

.businessMain .businessBox {
    padding: 9vh 0;
}

.businessMain .businessBox .businessInfo {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    color: #333;
}

.businessMain .businessBox .businessInfo .title {
    font-size: 1.75rem;
    padding-bottom: 28px;
    position: relative;
}

.businessMain .businessBox .businessInfo .title::before {
    position: absolute;
    content: '';
    width: 1.5em;
    height: 2px;
    background: #b60000;
    left: calc(50% - 0.75em);
    bottom: 0;
}

.businessMain .businessBox .businessInfo .info {
    line-height: 2em;
    font-size: 1.125rem;
    margin: 36px 0;
}

.businessMain .businessImgBox img {
    max-width: 100%;
}

.businessMain .businessBottom {
    padding: 10vh 0;
    max-width: 1256px;
    margin: auto;
    text-align: center;
}

.businessMain .businessBottom .title {
    font-size: 1.75rem;
    padding-bottom: 28px;
    position: relative;
}

.businessMain .businessBottom .title::before {
    position: absolute;
    content: '';
    width: 1.5em;
    height: 2px;
    background: #b60000;
    left: calc(50% - 0.75em);
    bottom: 0;
}

.businessMain .businessBottom .btnBox {
    padding: 0;
    margin-top: 5vh;
}

.businessMain .businessBottom .btnBox .list {
    list-style: none;
    font-weight: 200;
    position: relative;
}

.businessMain .businessBottom .btnBox .list::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: #000;
    opacity: 0.16;
}

.businessMain .businessBottom .btnBox .list:last-child::after {
    display: none;
}

.businessMain .businessBottom .btnBox .list .icon {
    display: inline-block;
    width: 66px;
    height: 54px;
}

.businessMain .businessBottom .btnBox .list .name {
    font-size: 1.75rem;
    color: #333;
}

.businessMain .businessBottom .btnBox .list:nth-child(1) .icon {
    background: url(../images/businessBtn1.png) no-repeat center;
}

.businessMain .businessBottom .btnBox .list:nth-child(2) .icon {
    background: url(../images/businessBtn2.png) no-repeat center;
}

.businessMain .businessBottom .btnBox .list:nth-child(3) .icon {
    background: url(../images/businessBtn3.png) no-repeat center;
}

.businessMain .businessBottom .btnBox .list:nth-child(4) .icon {
    background: url(../images/businessBtn4.png) no-repeat center;
}

.businessMain .visitBox {
    min-height: 500px;
    padding: 5vh 0;
}

.businessMain .visitBox .container-fluid {
    max-width: 1400px;
}

.businessMain .visitBox .list {
    margin-bottom: 50px;
}

.businessMain .visitBox .list .imgBox {
    width: 100%;
    height: 328px;
    position: relative;
    overflow: hidden;
}

.businessMain .visitBox .list .imgBox::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    top: 0;
    left: 0;
}

.businessMain .visitBox .list .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.businessMain .visitBox .list .imgBox .title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 2em;
    margin: auto;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2;
}

.businessMain .visitBox .list .imgBox .title::after {
    position: absolute;
    content: '';
    width: 4em;
    height: 4px;
    background: #b60000;
    left: calc(50% - 2em);
    bottom: 0;
}

.businessMain .visitBox .list * {
    transition: .3s;
}

.businessMain .visitBox .list:hover .imgBox::after {
    opacity: 0;
}

.businessMain .visitBox .list:hover .imgBox img {
    transform: scale(1.1);
}

.businessMain .visitBox .list:hover .title {
    opacity: 0;
}

.businessMain .exhibitionBox .list .imgBox {
    height: 265px;
}

.businessMain .exhibitionBox .list .title {
    line-height: 60px;
    text-align: center;
    color: #666;
    font-size: 1.5rem;
}

.businessMain .exhibitionBox .list:hover .title {
    color: #b60000;
    opacity: 1;
}

.publicityMain .publicityBox {
    min-height: 500px;
    padding: 5vh 0;
}

.publicityMain .publicityBox .container-fluid {
    max-width: 1400px;
}

.publicityMain .publicityBox .list {
    height: 141px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.publicityMain .publicityBox .list * {
    transition: .3s;
}

.publicityMain .publicityBox .list:hover * {
    color: #b60000 !important;
}

.publicityMain .publicityBox .list:hover .more {
    background: url(../images/mediaMoreH.png) no-repeat center;
}

.publicityMain .publicityBox .time {
    color: #666;
    padding-top: 44px;
}

.publicityMain .publicityBox .time .date {
    font-size: 1.75rem;
}

.publicityMain .publicityBox .time .year {
    font-size: 1.125rem;
}

.publicityMain .publicityBox .infoBox {
    padding: 30px 60px 0;
    position: relative;
}

.publicityMain .publicityBox .infoBox::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 1px;
    background: #000;
    opacity: 0.24;
    top: 30%;
    left: 0;
}

.publicityMain .publicityBox .infoBox .title {
    font-size: 1.75rem;
    font-weight: 400;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.publicityMain .publicityBox .infoBox .info {
    font-size: 1rem;
    color: #666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.publicityMain .publicityBox .more {
    background: url(../images/mediaMore.png) no-repeat center;
    position: relative;
}

.publicityMain .publicityBox .more::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 1px;
    background: #000;
    opacity: 0.24;
    top: 30%;
    left: 0;
}

.emphasisBox .container-fluid {
    max-width: 100%;
}

.emphasisBox .list {
    height: 100vh;
    position: relative;
    background-size: cover !important;
}

.emphasisBox .list .name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    z-index: 2;
    writing-mode: tb-rl;
    transition: .3s;
    font-weight: 200;
}

.emphasisBox .list::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: url(../images/emphasisTextBorder.png) no-repeat center 60%, rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform-origin: 100% 50% 0;
    -webkit-transform-origin: 100% 50% 0;
    -webkit-transition: opacity 800ms cubic-bezier(0.55, 0.31, 0.15, 0.93) 0ms, -webkit-transform 800ms cubic-bezier(0.55, 0.31, 0.15, 0.93) 0ms;
    transition: opacity 800ms cubic-bezier(0.55, 0.31, 0.15, 0.93) 0ms, transform 800ms cubic-bezier(0.55, 0.31, 0.15, 0.93) 0ms;
    opacity: 1;
}

.emphasisBox .list:hover::after {
    transform: rotateY(-90deg) skewY(-15deg);
    -webkit-transform: rotateY(-90deg) skewY(-15deg);
    opacity: 0;
}

.emphasisBox .list:hover .name {
    opacity: 0;
}

.articleMain {
    max-width: 1000px;
    margin: auto;
    min-height: 50vh;
    border-top: 4px solid #b60000;
    padding: 40px 0;
}

.articleMain .title {
    color: #333;
    font-size: 2rem;
    line-height: 100px;
}

.articleMain .time {
    color: #333;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.24);
    padding: 20px 0;
    line-height: 1em;
}

.articleMain .contentBox {
    padding: 40px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.24);
}

.articleMain .contentBox img {
    max-width: 100%;
    height: auto !important;
}

.articleMain .btnBox {
    margin-top: 55px;
}

.articleMain .backBtn {
    padding: 0 90px;
    line-height: 65px;
    background: rgba(182, 0, 0, 0.72);
    display: inline-block;
    color: #fff;
    font-size: 1.75rem;
}

.articleMain .nextBtn {
    line-height: 65px;
    color: #333;
    font-size: 1.5rem;
    transition: .3s;
    position: absolute;
    right: 0;
}

.articleMain .nextBtn:hover {
    color: #b60000;
}

.contactBody .footerBox {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.56);
    z-index: 2;
}

.contactBody .footerBox .box .logo .footerLogoBlack{
    display: none;
}

.contactBody .footerBox .box .logo .footerLogoWhite{
    display: block;
}

.contactBody .footerBox * {
    color: #fff !important;
}

.contactBody .footerBox .box .btnBox .list-inline-item::after {
    background: #fff;
}

.contactBox {
    width: 100%;
    height: 100vh;
    background: url(../images/contactBg.jpg);
    overflow: hidden;
}

.contactBox::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/star.png) no-repeat center;
    left: 0;
    top: 0;
    animation: contactRotate 28s linear infinite;
    opacity: 0.4;
}

.contactBox .container-fluid {
    max-width: 1200px;
    height: 100%;
}

.contactBox .box {
    position: absolute;
    width: 100%;
    top: 45%;
    transform: translateY(-50%);
}

.contactBox .box .textBox {
    padding-top: 40px;
}

.contactBox .box .textBox .name {
    font-size: 1.5rem;
}

.contactBox .box .textBox .nameEn {
    font-size: 0.75rem;
    padding-bottom: 35px;
    position: relative;
}

.contactBox .box .textBox .nameEn::after {
    position: absolute;
    content: '';
    width: 74px;
    height: 4px;
    background: #b60000;
    bottom: 0;
    left: 0;
}

.contactBox .box .textBox .address, .contactBox .box .textBox .tel, .contactBox .box .textBox .fax, .contactBox .box .textBox .email {
    font-size: 1.125rem;
    margin-top: 2vh;
}

.contactBox .box * {
    color: #fff;
}

.contactBox .box #gaodeMap {
    width: 100%;
    height: 38vh;
    position: relative;
}

.downBox {
    width: 100%;
    height: 100vh;
    background: url(../images/downBg.jpg) center no-repeat;
}

.downBox .container-fluid {
    max-width: 1400px;
    height: 100%;
}

.downBox .box {
    width: 100%;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
}

.downBox .box .list {
    text-align: left;
    line-height: 65px;
    margin-bottom: 45px;
}

.downBox .box .list a {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    color: #333;
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.downBox .box .list a::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/downBg.png) no-repeat center #b60000;
    border-radius: 4px;
    left: 0;
    top: -100%;
    transition: .5s;
}

.downBox .box .list a:hover::before {
    top: 0;
}

.downBox .box .list a i {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: red;
    vertical-align: middle;
    margin: 0 20px;
}

.downBox .box .list a span {
    vertical-align: middle;
}

.downBox .box .list:nth-child(1) a i {
    background: url(../images/downBtn1.png) no-repeat center;
}

.downBox .box .list:nth-child(2) a i {
    background: url(../images/downBtn2.png) no-repeat center;
}

.downBox .box .list:nth-child(3) a i {
    background: url(../images/downBtn3.png) no-repeat center;
}

.downBox .box .list:nth-child(4) a i {
    background: url(../images/downBtn4.png) no-repeat center;
}

.downBox .box .list:nth-child(5) a i {
    background: url(../images/downBtn5.png) no-repeat center;
}

.downBox .box .list:nth-child(6) a i {
    background: url(../images/downBtn6.png) no-repeat center;
}
.page{
    text-align: center;
}
.page .page-item{
    display: inline-block;
    margin: 0 10px;
}
.page .page-item *{
    border: none;
    font-size: 1.75rem;
    color: #666;
}
.page .page-item *:hover{
    background: none;
    color: #b60000;
}

.page .page-item:first-child *,.page .page-item:last-child *{
    border: none;
    position: relative;
    margin: 0 20px;
}

.page .page-item:first-child *:hover:after,.page .page-item:last-child *:hover:after{
    background: #b60000;
    opacity: 1;
}
.page .page-item *:focus{
    border: none;
    outline: none;
    box-shadow:none;
}
.page .page-item:first-child *:after,.page .page-item:last-child *:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #666666;
    left: 0;
    top:calc(50% - 1px);
    opacity: 0.32;
}
.page .active *{
    color: #b60000 !important;
    border-bottom: 2px solid #b60000 !important;
}

