@font-face {
    font-family: jiangxizhuokai;
    src: url("../fonts/jiangxizhuokai.ttf");
}

@font-face {
    font-family: Oswald;
    src: url("../fonts/Oswald-SemiBold.ttf");
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
}

body {
    width: 100%;
    overflow-x: hidden;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0;
}

#my-scrollbar {
    height: 100vh;
    z-index: 6;
}

.scrollbar-track-y {
    z-index: 99999 !important;
}

.scrollbar-track {
    background-color: transparent !important;
    right: 4px !important;
}

.scrollbar-track:hover {
    cursor: grab;
}

img {
    object-fit: cover;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
}

.header .head {
    width: 100%;
    height: 45px;
    background: #94070a;
    padding: 0 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
}

.header .head .broadside {
    display: flex;
    align-items: center;
}

.header .head .broadside a {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #d39797;
    position: relative;
    margin-right: 40px;
    transition: 0.6s;
}

.header .head .broadside a:last-child {
    margin-right: 0;
}

.header .head .broadside a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 1px;
    height: 14px;
    transition: 0.6s;
    background-color: #c47d7e;
}

.header .head .broadside a:last-child:after {
    display: none;
}

.header .head .login {
    display: flex;
    align-items: center;
}

.header .head .login a {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #d39797;
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 40px;
    transition: 0.6s;
}

.header .head .login a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 1px;
    height: 14px;
    background-color: #c47d7e;
    transition: 0.6s;
}

.header .head .login a:last-child {
    margin-right: 0;
}

.header .head .login a:last-child:after {
    display: none;
}

.header .head .login a .iconfont {
    color: #b56161;
    font-size: 18px;
    margin-right: 12px;
    transition: 0.6s;
}

.header .joke {
    width: 100%;
    height: 82px;
    background: #ffffff;
    box-shadow: 1px 2px 21px 0px rgba(35, 35, 35, 0.14);
    padding: 0 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
}

@media screen and (max-width: 1920px) {
    .header .head {
        height: 29px;
    }

    .header .joke {
        height: 59px;
    }
}

.header .joke .logo {
    margin-top: 5px;
}

.header .joke .logo img {
    transition: 0.6s;
    width: 90%;
}

.header .joke nav,
.header .joke nav ul {
    display: flex;
    align-items: center;
}

.header .joke nav,
.header .joke nav ul {
    height: 100%;
}

.header .joke nav ul li {
    margin-right: 52px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .joke nav ul li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #ab0e12;
    transition: 0.6s;
}

.header .joke nav ul .active:after {
    width: 100%;
}

.header .joke nav ul li:hover:after {
    width: 100%;
}

.header .joke nav ul li:last-child {
    margin-right: 0;
}

.header .joke nav ul li a {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #1e1e1e;
    padding: 31px 0;
    transition: 0.6s;
}

.header .joke nav .search {
    cursor: pointer;
    margin-left: 62px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.header .joke nav .search .box {
    position: absolute;
    width: 0;
    height: 40px;
    background-color: #94070a;
    top: -9px;
    right: -18px;
    z-index: -1;
    transition: 0.6s;
    overflow: hidden;
}

.header .joke nav .search- .box {
    width: 200px;
}

.header .joke nav .search .box input {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding-left: 10px;
    color: #fff;
}

.header .joke nav .search .iconfont {
    font-size: 20px;
    color: #1e1e1e;
    transition: 0.6s;
}

.header .joke nav .search- .iconfont {
    color: #fff;
}

.header .joke nav .menu {
    width: 22px;
    margin-left: 31px;
    cursor: pointer;
}

.header .joke nav .menu span {
    width: 22px;
    height: 2px;
    background: #1e1e1e;
    margin-top: 5px;
    display: block;
    position: relative;
    top: 0;
    transition: 0.4s;
}

.header .joke nav .menu span:first-child {
    margin-top: 0;
}

.footer {
    width: 100%;
    background: #efefef;
    overflow: hidden;
    position: relative;
}

.footer:after {
    content: "";
    position: absolute;
    bottom: 112px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(23, 24, 28, 0.04);
}

.footer .warp {
    width: 1386px;
    margin: 93px auto 41px;
}

.footer .warp .relation {
    display: flex;
    align-items: center;
    padding-bottom: 107px;
}

.footer .warp .relation .information {
    display: flex;
    align-items: center;
    margin-left: 132px;
}

.footer .warp .relation .information .item {
    display: flex;
    align-items: center;
    margin-right: 126px;
}

.footer .warp .relation .information .item:last-child {
    margin-right: 0;
}

.footer .warp .relation .information .item .circle {
    width: 50px;
    height: 50px;
    border: 1px solid #cecece;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 23px;
    position: relative;
    cursor: pointer;
    transition: 0.6s;
}

.footer .warp .relation .information .item .circle:hover {
    border: 1px solid transparent;
}

.footer .warp .relation .information .item .circle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120px;
}

.footer .warp .relation .information .item .circle .path-loop-bg {
    fill: none;
    stroke: transparent;
    stroke-miterlimit: 10;
    stroke-width: 1px;
}

.footer .warp .relation .information .item .circle .path-loop {
    stroke-dashoffset: 157px;
    fill: none;
    stroke: #c9151e;
    stroke-miterlimit: 10;
    stroke-width: 1px;
    transition: 0.6s;
}

.footer .warp .relation .information .item .circle:hover .path-loop {
    stroke-dashoffset: 0;
}

.footer .warp .relation .information .item .circle .iconfont {
    color: #1b1b1b;
    font-size: 20px;
    transition: 0.6s;
}

.footer .warp .relation .information .item .circle:hover .iconfont {
    color: #c9151e;
}

.footer .warp .relation .information .item .text p {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #727272;
    margin-bottom: 10px;
}

.footer .warp .relation .information .item .text a {
    font-size: 18px;
    font-family: ITC Avant Garde Gothic Std;
    font-weight: normal;
    color: #1f1f1f;
}

.footer .warp .relation .information .item:first-child .text a {
    font-weight: bold;
}

.footer .warp .jump {
    display: flex;
    justify-content: space-between;
}

.footer .warp .jump a {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #5a5a5a;
    transition: 0.6s;
}

.footer .warp .jump a:hover {
    color: #c9151e;
}

/**/
.banner_ {
    width: 100%;
    height: 677px;
    position: relative;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: fit-content;
    margin: auto;
    z-index: 2;
    box-shadow: 0px 15px 32px 0px rgba(164, 167, 170, 0.1);
}

.navigation a {
    width: 260px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.8s;
    position: relative;
    cursor: pointer;
}

.navigation a .color {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ab0e12;
    z-index: 0;
    transition: 0.5s;
    opacity: 0;
}

.navigation a:after {
    content: "";
    width: 1px;
    height: 18px;
    background: #d9d9d9;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.6s;
}

.navigation a:before {
    content: "";
    width: 0;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 50%;
    bottom: 23px;
    transition: 0.6s;
    margin-left: -10px;
    z-index: 1;
}

.navigation a:last-child:after {
    display: none;
}

.navigation .active .color {
    opacity: 1;
}

.navigation a:hover .color {
    opacity: 1;
}

.navigation .active:after {
    opacity: 0;
}

.navigation a:hover:after {
    opacity: 0;
}

.navigation .active:before {
    width: 18px;
}

.navigation a:hover:before {
    width: 18px;
}

.navigation a p {
    font-size: 16px;
    font-family: X;
    font-weight: normal;
    color: #999999;
    position: relative;
    top: 0;
    /*transition: 0.5s;*/
    z-index: 1;
}

.navigation .active p {
    font-size: 24px;
    color: #ffffff;
    top: -8px;
}

.navigation a:hover p {
    font-size: 24px;
    color: #ffffff;
    top: -8px;
}

.banner_ .text {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.banner_ .text h1 {
    font-size: 42px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    letter-spacing: 10px;
}

.banner_ .text h1 div {
    margin-right: 15px;
}

.banner_ .text h1 div:last-child {
    margin-right: 0;
}

.banner_ .text .bread {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
}

.banner_ .text .bread a {
    display: flex;
    align-items: center;
}

.banner_ .text .bread a .iconfont {
    color: #ffffff;
    font-size: 15px;
    opacity: 0.5;
    margin-right: 5px;
    margin-top: -2px;
}

.banner_ .text .bread a p {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
    line-height: 22px;
    opacity: 0.5;
}

.banner_ .text .bread .active p {
    opacity: 1;
}

.background_fixed {
    width: 100%;
    height: 800px;
    position: fixed;
    top: 0;
    left: 0;
}

.background_fixed img {
    width: 100%;
    height: 100%;
}

/**/
.pagination__ {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination__ a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #bdbdbd;
    margin: 0 5px;
    transition: 0.6s;
}

.pagination__ .prev {
    margin-right: 30px;
    font-size: 30px;
    color: #acacac;
    transition: 0.6s;
    cursor: pointer;
}

.pagination__ .next {
    margin-left: 20px;
    font-size: 30px;
    color: #acacac;
    transform: rotateY(180deg);
    cursor: pointer;
    transition: 0.6s;
}

.pagination__ .next:hover,
.pagination__:hover .prev {
    color: #c42f2f;
}

.pagination__ .on {
    background: #c42f2f;
    color: #fff;
}

.pagination__ a:hover {
    background: #c42f2f;
    color: #fff;
}

/**/
.common_more {
    width: 227px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0 0 20px 0;
    position: relative;
}

.common_more div h1 {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #000000;
    transition: 0.6s;
}

.common_more div p {
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #817e7e;
    margin-top: 4px;
    transition: 0.6s;
}

.common_more .iconfont {
    color: #313131;
    font-size: 20px;
    font-weight: bold;
    transform: rotatey(180deg);
    transition: 0.6s;
}

.common_more:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9151e;
    transition: all 1s cubic-bezier(1, 0.41, 0.07, 0.96);
}

.common_more:hover div h1,
.common_more:hover div p,
.common_more:hover .iconfont {
    color: #c9151e;
}

.common_more:hover:after {
    width: 100%;
}

/**/
.menu_active .joke {
    background: transparent;
    box-shadow: 1px 2px 21px 0px transparent;
}

.menu_active .joke .logo img {
    filter: grayscale(7) brightness(8.5);
}

.menu_active .joke nav ul li a {
    color: #fff;
}

.menu_active .joke nav ul .active:after,
.menu_active .joke nav ul li:after {
    display: none;
}

.menu_active .head {
    background: transparent;
}

.menu_active .head .login a {
    color: rgba(255, 255, 255, 0.5);
}

.menu_active .head .login a:after {
    background: rgba(255, 255, 255, 0.5);
}

.menu_active .head .broadside a {
    color: rgba(255, 255, 255, 0.5);
}

.menu_active .head .broadside a:after {
    background: rgba(255, 255, 255, 0.5);
}

.menu_active .head .login a .iconfont {
    color: rgba(255, 255, 255, 0.5);
}

.menu_active .joke nav .menu span:nth-child(2) {
    opacity: 0;
}

.menu_active .joke nav .menu span:first-child {
    transform: rotate(-45deg);
    top: 7px;
}

.menu_active .joke nav .menu span:last-child {
    transform: rotate(45deg);
    top: -7px;
}

.menu_active .joke nav .menu span {
    background: #fff;
}

.menu_active .joke nav .search .iconfont {
    color: #fff;
    font-weight: normal;
}

.header_menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: url(../images/menu.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 1s;
}

.events_active {
    opacity: 1 !important;
    pointer-events: unset !important;
}

.header_menu:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.header_menu .joke {
    position: relative;
    z-index: 1;
}

.header_menu .joke ul {
    display: flex;
}

.header_menu .joke ul li {
    margin-right: 100px;
}

.header_menu .joke ul li:last-child {
    margin-right: 0;
}

.header_menu .joke ul li > a {
    font-size: 22px;
    color: #fff;
}

.header_menu .joke ul li .head_second {
    margin-top: 60px;
}

.header_menu .joke ul li .head_second a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    line-height: 35px;
    transition: 0.6s;
}

.header_menu .joke ul li .head_second a:hover {
    color: #fff;
}

.header_menu .joke .head_link {
    display: flex;
    justify-content: center;
    margin-top: 150px;
}

.header_menu .joke .head_link a {
    margin-right: 20px;
    width: 200px;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_menu .joke .head_link a:last-child {
    margin-right: 0;
}

.header_menu .joke .head_link a:nth-child(2) img,
.header_menu .joke .head_link a:nth-child(1) img {
    width: 75px;
}

@media screen and (max-width: 1856px) {
    body, html {
        width: 100%;
        overflow-x: hidden !important;
    }
    .header .joke nav ul li a{
        font-size: 13px;
    }
    .header .joke .logo img {
        width: 55%;
        text-align: left;
        display: block;
    }
    .header .joke{
        height: 43px;
    }
    .common_more div{
        color: #000;
        transition: 0.6s;
    }
    .common_more:hover div{
        color: #c9151e;
    }
    .footer .warp{
        width: 90%;
    }

    .navigation a{
        width: 190px;
    }
    .header_menu .joke{
        transform: scale(0.9);
    }
}

@media screen and (max-width: 1024px) {
    .scrollbar-track-y{
        display: none!important;
    }
    .scrollbar-thumb{
        width: 4px!important;
    }
    .scrollbar-track{
        right: 2px!important;
    }
    .header .joke nav ul,.header .head{
        display: none;
    }
    .header .joke .logo img{
        width: 68%;
    }
    .header .joke nav .search{
        margin-left: 0;
    }
    .header .joke{
        padding: 0 5%;
        height: 50px;
    }
    .header .joke nav .search .iconfont{
        font-size: 18px;
    }
    .header_menu .joke{
        display: none;
    }
    .banner_ .text{
        width: 90%;
    }
    .banner_ .text h1{
        font-size: 24px;
    }
    .banner_ .text .bread a p{
        font-size: 12px;
    }
    .banner_{
        height: 410px;
    }
    .background_fixed{
        height: 410px;
    }
    .navigation{
        width: 90%;
        bottom: -32.5px;
        z-index: 9;
        background: transparent;
    }
    .navigation a{
        height: 65px;
        background: #fff;
    }
    .navigation a p{
        font-size: 12px;
    }
    .navigation .active p{
        font-size: 12px;
        top: -4px;
    }
    .navigation a:before{
        bottom: 15px;
    }
    .navigation a:hover p{
        font-size: 12px;
        top: -4px;
    }
    .footer .warp{
        margin: 20px auto!important;
    }
    .footer .warp .relation{
        padding-bottom: 20px;
        flex-direction: column;
        align-items: unset;
    }
    .footer .warp .relation img{
        width: 50px;
    }
    .footer .warp .relation .information{
        margin: 0 0 15px 0;
        align-items: unset;
   
    }
    .footer:after{
        display: none;
    }
    .footer .warp .relation .information .item{
        margin: 25px 150px 0 0;
        flex-direction: column;
        align-items: unset;
    }
    .footer .warp .relation .information .item:last-child{
        margin: 25px 0 0 0;
    }
    .footer .warp .relation .information .item .text p{
        font-size: 12px;
    }
    .footer .warp .relation .information .item .text a{
        font-size: 14px;
    }
    .footer .warp .relation .information .item .circle{
        margin: 0 0 15px 0;
    }
    .footer .warp .jump{
        flex-direction: column;
    }
    .footer .warp .jump a{
        font-size: 12px;
        margin: 0 0 12px 0;
    }

    .mobile_joke{
        display: block!important;
    }

    .header_menu:after{
        position: fixed;
    }
    .mobile_joke .head_link{
        width: 90%;
        margin: 50px auto 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .mobile_joke .head_link a{
        width: 43%;
        height: 110px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 30px 30px 0;
    }

    .mobile_joke .head_link a:nth-child(2n){
        margin: 0;
    }

}

@media screen and (max-width: 500px) {
    .footer .warp .relation .information {

    justify-content: space-between;
}
 .footer .warp .relation .information .item{
        margin: 25px 35px 0 0;
     
    }
}
.mobile_joke{
    display: none;
    position: relative;
    z-index: 1;
    width: 100%;
}

.mobile_joke ul{
    text-align: center;
    max-height: 100vh;
    overflow: scroll;
    padding: 70px 0 0 0;
}
.mobile_joke ul li{
    margin: 0 0 30px 0;
}
.mobile_joke ul li > a{
    font-size: 18px;
    width: 100%;
    display: block;
    color: #fff;
}
.mobile_joke ul li .head_second{
    margin-top: 12px;
    display: none;
}
.mobile_joke ul li .head_second a{
    font-size: 14px;
    color: #fff;
    opacity: 0.5;
    display: block;
    line-height: 35px;
}

.body_active{
    overflow: hidden!important;
}