.sec1 .content h1 {
    font-size: 42px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}
.sec1 .content {
    padding: 135px 0 0;
}
.sec1 .content p {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 32px;
    text-align: center;
}
.sec1 .itemList {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 100px;
}
.sec1 .itemList .item {
    width: 431px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}
.sec1 .itemList .item:nth-child(2n) {
    flex-direction: column-reverse;
}
.sec1 .itemList .item .num {
    font-size: 60px;
    font-family: TradeMarker;
    font-weight: 400;
    color: #E6E6E6;
    transition: 1s;
}
.sec1 .itemList .item .sq {
    width: 10px;
    height: 10px;
    background: #E6E6E6;
    margin: 29px 0 30px 27px;
    transition: 1s;
}
.sec1 .itemList .item:hover .sq {

    background: #666666;
}
.sec1 .itemList .item:hover .num {

    color: #970005;
}
.sec1 .itemList .item h2 {
    font-size: 32px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    line-height: 40px;
}
.sec1 .itemList .item p {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
    line-height: 32px;
    transition: 1s;
    opacity: 0;
    transform: translateY(30px);
}
.sec1 .itemList .item:nth-child(2) p {
    transform: translateY(-30px);
}
.sec1 .itemList .item .line {
    width: 0px;
    height: 3px;
    background: #970005;
    margin: 45px 0 24px;
    transition: 1s;
}
.sec1 .itemList .item:hover .line {
    width: 100%;
}
.sec1 .itemList .item:hover p {
    opacity: 1;
    transform: translateY(0) !important;
}
.sec1 .itemList .item:not(:nth-last-child(1)) {
    margin-right: 151px;
}
.sec1 .itemList .item .null {
    width: 100%;
    height: 165px;
}
.sec1 .itemList:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #E6E6E6;
    position: absolute;
    left: 0;
    top: 265px;
}
.sec1 .itemList .item:nth-child(2n) .null {
    height: 150px;
}
.sec1  {
    margin-bottom: 140px;
}
#home{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
#home:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    z-index: 1;
}
#home .back{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#clock .time-box{
    position: relative;
    z-index: 15;
    width: 100%;
    height: 100%;
}
#clock .time-move {
    z-index: 10;
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    left: -5px;
    top: -5px;
    transform: rotate(315deg);
}

#clock .time-box .time-cir{
    width: 100%;
    height: 100%;
}

.time-move canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#clock{
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    width: 600px;
    height: 600px;
    position: relative;
    z-index: 50;
    top: 60px;
}
#clock .time-cir li{
    cursor: pointer;
    position: absolute;
}

#clock .time-cir li .circle{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
}
#clock .time-cir li.on{
    pointer-events: none;
}
#clock .time-cir li.on .circle{
    border: 2px solid #970005;
}

#clock .time-cir li .circle:after{
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    background: #970005;
    border-radius: 50%;
    transition: 0.7s;
}



#clock .time-cir .li_1 p{
    margin: 0 0 20px 0;
}

#clock .time-cir li.on p{

    color: #970005;
}

#clock .time-cir li p{
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.33);
    white-space: nowrap;
    text-align: center;
    transition: 0.7s;
}

#clock .time-cir .li_1{
    top: -61px;
    left: 50%;
    transform: translateX(-50%);
}


#clock .time-cir .li_2 {
    right: 73px;
    top: 70px;
}
#clock .time-cir .li_2 p{
    position: absolute;
    left: 46px;
    top: 50%;
    transform: translateY(-50%);
}
#clock .time-cir .li_3{
    top: 50%;
    transform: translateY(-50%);
    right: -31px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
#clock .time-cir .li_3 p{
    position: absolute;
    left: 46px;
    top: 50%;
    transform: translateY(-50%);
}
#clock .time-cir .li_3 .circle{
    margin: 0 15px 0 0;
}

#clock .time-cir .li_4{
    right: 70px;
    bottom: 72px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
#clock .time-cir .li_4 p{
    position: absolute;
    left: 46px;
    top: 50%;
    transform: translateY(-50%);
}
#clock .time-cir .li_5{
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column-reverse;
}
#clock .time-cir .li_5 p{
    position: relative;
    top: 10px;
}
#clock .time-cir .li_6{
    left: 70px;
    bottom: 72px;
    display: flex;
    align-items: center;
}
#clock .time-cir .li_6 p{
    position: absolute;
    right: 46px;
    top: 50%;
    transform: translateY(-50%);
}
#clock .time-cir .li_7{
    top: 50%;
    transform: translateY(-50%);
    left: -17px;
    display: flex;
    align-items: center;
}
#clock .time-cir .li_7 p{
    position: absolute;
    right: 46px;
    top: 50%;
    transform: translateY(-50%);
}
#clock .time-cir .li_8{
    left: 73px;
    top: 70px;
}
#clock .time-cir .li_8 p{
    position: absolute;
    right: 46px;
    top: 50%;
    transform: translateY(-50%);
}
#clock .clock_text{

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 15;
    text-align: center;
    width: 50%;
    height: fit-content;
}
#clock .clock_text .item{
    display: none;
}
#clock .clock_text .item.on{
    display: block;
}
#clock .clock_text .item .headline{
    font-size: 35px;
    font-family: PingFang SC b;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}
#clock .clock_text .item .pick{
    font-size: 18px;
    font-family: PingFang SC r;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
}
#clock .clock_text .item p {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 32px;
    text-align: center;
}
#clock .title{
    font-size: 42px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -350px;
}
#home .line_1{
    width: 1344px;
    height: 1344px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    z-index: 50;
    animation: 17s line_rote linear infinite;
    pointer-events: none;
}
#home .line_1:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    border-right-color: #CCCCCC;
    transform: rotate(-25deg);
}
#home .line_1:before{
    content: '';
    position: absolute;
    bottom: 430px;
    right: 37px;
    width: 13px;
    height: 13px;
    border: 2px solid #970005;
    border-radius: 50%;
}

#home .line_2{
    width: 1344px;
    height: 1344px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    z-index: 50;
    animation: 17s line_rote linear infinite;
    pointer-events: none;
}

#home .line_2:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    border-left-color: #CCCCCC;
    transform: rotate(-25deg);
}
#home .line_2:before{
    content: '';
    position: absolute;
    top: 430px;
    left: 37px;
    width: 13px;
    height: 13px;
    border: 2px solid #970005;
    border-radius: 50%;
}

@keyframes line_rote {
    100%{
        transform: rotate(360deg);
    }

}
.sec3 {
    padding: 149px 0 165px;
}
.sec3 .joke {
    width: 1520px;
    margin: auto;
    position: relative;
}
.sec3 .joke h1 {
    font-size: 42px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 17px;
}
.sec3 .joke p {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
    line-height: 32px;
    text-align: center;
    margin-bottom: 47px;
}
.sec3 .joke .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #000000;
    border-radius: 0;
    opacity: 1;
}
.sec3 .joke .swiper-pagination {
    bottom: -25px;
}
.sec4 {
    padding: 147px 0 157px;

    background: #F5F5F5;
}
.sec4 .joke {
    width: 1520px;
    margin: auto;
    position: relative;
}
.sec4 .joke h1 {
    font-size: 42px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}
.sec4 .joke:after {
    content: "";
    width: 100%;
    height: 1px;

    background: #E6E6E6;
    position: absolute;
    top: 312px;
    left: 0;
}
.sec4 .joke .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 79px;
}
.sec4 .joke .item {
    width: 420px;
    height: 159px;
    background: #E5E5E5;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 38px 0 0;
    transition: 0.6s;
    position: relative;
}
.sec4 .joke .item .num {
    font-size: 32px;
    font-family: TradeMarker;
    font-weight: 400;
    color: #666666;
    margin-bottom: 10px;
    transition: 0.6s;
}
.sec4 .joke .item p {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #333333;
    text-align: center;
    line-height: 26px;
    transition: 0.6s;
}
.sec4 .joke .bottom {
    display: flex;
    justify-content: center;
}
.sec4 .joke .bottom .item:not(:nth-last-child(1)) {
    margin-right: 129px;
}
.sec4 .joke .item:hover {

    background: #970005;
}
.sec4 .joke .item:hover p {
    color: #FFFFFF;
}
.sec4 .joke .item:hover .num {
    color: #FFFFFF;
}
.sec4 .joke .item:after {
    content: "";
    width: 11px;
    height: 11px;
    background: #970005;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: 0.6s;
}
.sec4 .joke .item:hover:after {
    background: #ccc;
}
.sec4 .joke .item:before {
    content: "";
    width: 1px;
    height: 38px;
    background: #E6E6E6;
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);
}
.sec4 .joke .bottom .item:after {
    bottom: unset;
    top: -5px;
}
.sec4 .joke .bottom .item:before {
    bottom: unset;
    top: -38px;
}
.sec6 {
    height: 100vh;
    display: flex;
}
.sec6 .right {
    width: 62.5vw;
}
.sec6 .right #allmap {
    width: 100%;
    height: 100%;
}
.sec6 .left {
    width: 37.5vw;
}
.sec6 .left .joke {
    width: 540px;
    margin: auto;
    padding-top: 54px;
}
.sec6 .left .joke .search h1 {
    font-size: 26px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
}
.sec6 .left .joke .search>p {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
    margin-top: 5px;
    margin-bottom: 18px;
}
.sec6 .left .joke .search form .searchItem {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.sec6 .left .joke .search form .searchItem input {
    width: 480px;
    height: 60px;
    background: rgba(245,245,245,0);
    border: 1px solid #CCCCCC;
    padding: 0 20px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
}
.sec6 .left .joke .search form .searchItem button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(245,245,245,0);
    border: 1px solid #CCCCCC;
    border-left: 1px solid transparent;
    transition: 1s;
}
.sec6 .left .joke .search form .searchItem button .iconfont {
    font-size: 20px;
    transition: 1s;
}
.sec6 .left .joke .search form .searchItem button:hover {
    border: 1px solid transparent;
    background: #970005;
}
.sec6 .left .joke .search form .searchItem button:hover .iconfont {
    color: #FFFFFF;
}
.sec6 .left .joke .search .result {
    margin-bottom: 24px;
}
.sec6 .left .joke .search .result p{
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
}
.sec6 .left .joke .search .result p span {
    color: rgba(225, 5, 0, 1);
}
.sec6 .left .joke .address .item {
    width: 540px;
    height: 251px;
    background: #F5F5F5;
    transition: 1s;
    display: flex;
    padding: 53px 30px 0;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.6s;
}
.sec6 .left .joke .address .item .addressLogo {
    margin-right: 30px;
    width: 30px;
    height: 30px;
    background: #333333;
    transition: 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec6 .left .joke .address .item .addressLogo svg {
    width: 25px;
}
.sec6 .left .joke .address .item .addressLogo svg path {
    fill: #FFFFFF;
}
.sec6 .left .joke .address .item .text h5 {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    margin-bottom: 18px;
    transition: 0.6s;
}
.sec6 .left .joke .address .item .text p {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #333333;
    line-height: 26px;
    transition: 0.6s;
}
.sec6 .left .joke .address .item:hover {

    background: #970005;
}
.sec6 .left .joke .address .item:hover .text h5 {
    color: #FFFFFF;
}
.sec6 .left .joke .address .item:hover .text p {
    color: #FFFFFF;
}
.sec6 .left .joke .address .item:hover .addressLogo {
    background: #970005;
}
.sec6 .left .scrollbar-track-y {
    width: 8px;
    background: #E6E6E6 !important;
    opacity: 1!important;
    right: 18px !important;
}
.sec6 .left .scrollbar-track-y .scrollbar-thumb {
    width: 8px !important;
    border-radius: 0!important;
    background: #970005 !important;
}
.sec5 {
    padding: 122px 0 107px;
}
.sec5 .joke {
    width: 1140px;
    margin: auto;
}
.sec5 .joke h1 {
    font-size: 42px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    margin-bottom: 86px;
    text-align: center;
}
.sec5 .joke .item_line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 67px;
}
.sec5 .joke .item_line .item {
    display: flex;
    align-items: center;
}
.sec5 .joke .item_line .item p {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
    margin-right: 20px;
}
.sec5 .joke .item_line .item p span {
    color: rgba(225, 5, 0, 1);
}
.sec5 .joke .item_line .item input {
    width: 430px;
    height: 55px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
    padding: 0 10px;
}
.sec5 .joke .item_line textarea  {
    width: 1080px;
    height: 255px;
    padding: 20px 10px;
    border: 1px solid #E6E6E6;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
}
.sec5 .joke .item_line p {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #000000;
    margin-right: 15px;
}
.sec5 .joke .item_line p span {
    color: rgba(225, 5, 0, 1);
}
.sec5 .joke .item_line:nth-child(3) {
    align-items: flex-start;
}
.sec5 .joke button {
    display: block;
    width: 160px;
    height: 50px;
    border: 1px solid #970005;
    background: #fff;
    line-height: 50px;
    text-align: center;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.sec5 .joke button p {
    position: relative;
    z-index: 10;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 100;
    color: #FFFFFF;
    transition: 1s;
}
.sec5 .joke button:after {
    content: "";
    width: 50%;
    height: 100%;
    background: #970005;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1s;
}
.sec5 .joke button:before {
    content: "";
    width: 50%;
    height: 100%;
    background: #970005;
    position: absolute;
    top: 0;
    right: 0;
    transition: 1s;
}
.sec5 .joke button:hover:after , .sec5 .joke button:hover:before{
    width: 0;
}
.sec5 .joke button:hover p {
    color: #000000;
}
@media screen and (max-width: 1700px) {
    #home {
        height: 136vh;
    }
    #clock .title {
        top: -231px;
    }
    .sec1 .content h1,.sec3 .joke h1,.sec4 .joke h1,.sec5 .joke h1,#clock .title {
        font-size: 36px;
    }
    .sec1 .itemList .item h2 {
        font-size: 28px;
    }
    .sec1 .itemList {
        width: 90%;
        margin: auto;
    }
    .sec1 .itemList .item:not(:nth-last-child(1)) {
        margin-right: 5%;
    }
    .sec1 .itemList .item:not(:nth-last-child(1)) {
        width: 30%;
    }
    .sec1 .itemList .item:not(:nth-child(2)) .sq {
        margin: 17px 0 22px 27px;
    }
    .sec1 .itemList .item:nth-child(2n) .null {
        height: 129px;
    }
    .sec3 .joke {
        width: 90%;
    }
    .sec4 .joke {
        width: 90%;
    }
    .sec4 .joke .item {
        width: 22vw;
        padding: 20px 0 0;
    }
    .sec4 .joke:after {
        top: 300px;
    }
    .sec6 .left .joke {
        width: 85%;
    }
    .sec6 .left .joke .address .item {
        width: 100%;
    }
}
@media screen and (max-width: 1450px) {
    .sec1 .content h1,.sec3 .joke h1,.sec4 .joke h1,.sec5 .joke h1,#clock .title {
        font-size: 32px;
    }
    .sec1 .content {
        padding: 85px 0 0;
    }
    .sec1 .itemList .item h2 {
        font-size: 24px;
    }
    .sec1 .itemList .item .num {
        font-size: 50px;
        line-height: 80px;
    }
    .sec1 .itemList .item {
        width: 30%;
    }
    .sec1 {
        margin: 0;
    }

    .sec4 .joke .item p {
        font-size: 14px;
    }
    .sec4 .joke .item .num {
        font-size: 28px;
    }
    .sec4,.sec5 {
        padding: 87px 0 80px;
    }
    .sec6 .left .joke .search h1 {
        font-size: 24px;
    }
    .sec6 .left .joke .address .item {
        height: 200px;
    }
}
@media screen and (max-width: 1365px) {

    .sec1 .itemList .item .line {
        margin: 12px 0 24px;
    }
    .sec1 .itemList {
        padding: 20px 0;
    }
    .sec1 .itemList:after {
        top: 284px;
    }
    #home .line_2,#home .line_1 {
        display: none;
    }
    .sec5 .joke {
        width: 90%;
    }
    .sec5 .joke .item_line .item {
        width: 48%;
        justify-content: space-between;
    }
    .sec5 .joke .item_line .item input {
        width: calc(100% - 116px);
    }
    .sec5 .joke .item_line textarea {
        width: calc(100% - 116px);
    }
    .sec4 .joke .item p {
        width: 90%;
    }
    .sec4 .joke .item p br {
        display: none;
    }
    .sec6 {
        flex-direction: column;
    }
    .sec6 .left,.sec6 .right {
        width: 90%;
        margin: auto;
    }
    .sec6 .right #allmap {
        height: 40vh;
        margin-bottom: 60px;
        margin-top: 30px;
    }
    .sec6 .left .joke {
        width: 100%;
    }
    .sec6 .left .scrollbar-track-y {
        right: 0!important;
    }
    #clock .title {
        top: -200px;
    }
    #home {
        height: unset;
        padding: 200px 0;
    }
}
@media screen and (max-width: 1023px) {
    #clock {
        display: none;
    }
    .mobile_clock {
        display: block!important;
        position: relative;
        z-index: 9;
    }
    .mobile_clock .headline {
        font-size: 28px;
        font-weight: 500;
        color: #000000;
        text-align: center;
        margin-bottom: 30px;
    }
    .mobile_clock .flex {
        width: 90%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;

    }
    .mobile_clock .flex .list {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }
    .mobile_clock .flex .list span {
        font-size: 16px;
        font-weight: 500;
        color: #000000;
        margin-bottom: 20px;
    }
    #home {
        padding:  40px 0;
    }
    .mobile_clock .flex .list p {
        font-size: 14px;
        font-weight: 500;
        color: #000000;
    }

    .sec5 .joke .item_line .item input {
        height: 45px;
    }
    .sec5 .joke h1 {
        margin-bottom: 40px;
    }
    .sec4 .joke .top {
        margin: 0;
    }
    .sec1 .itemList {
        display: flex;
        flex-wrap: wrap;
        justify-content: unset;
    }
    .sec1 .itemList .item .sq {
        margin: 17px 0 22px 27px;
    }
    .sec1 .itemList:after {
        display: none;
    }
    .sec1 .itemList .item {
        width: 48% !important;
        margin: 10px 0 0!important;
    }
    .sec1 .itemList .item:nth-child(2n-1) {
        margin-right: 2% !important;
    }
    .sec1 .itemList .item .num{
        color: #970005;
    }

    .sec1 .content {
        padding: 40px 0 0;
    }
    .sec1 .content h1, .sec3 .joke h1, .sec4 .joke h1, .sec5 .joke h1{
        font-size: 28px;
    }
    .sec1 .itemList .item .sq {
        display: none;
    }
    .sec1 .itemList .item h2 {
        font-size: 20px;
    }
    .sec1 .itemList .item .num {
        font-size: 40px;
    }
    .sec1 .itemList .item .null {
        display: none;
    }
    .sec1 .content{
        width: 90%;
        margin: auto;
    }
    .sec1 .content p br {
        display: none;
    }
    .sec1 .itemList .item:nth-child(2n){
        flex-direction: column;
    }
    .sec1 .itemList .item p {
        font-size: 16px;
    }
    .sec1 .itemList .item .line {
        margin: 10px 0 15px;
        width: 100%;
    }
    .sec1 .itemList .item p {
        opacity: 1;
        transform: unset!important;
    }
    .sec1 {
        padding: 0 0 30px;
    }
    .sec3,.sec4, .sec5 {
        padding: 40px 0 60px;
    }
    .sec4 .joke {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .sec4 .joke h1 {
        width: 100%;
    }
    .sec4 .joke .top,.sec4 .joke .bottom {
        width: 48%;
        display: block;
    }
    .sec4 .joke .item:before,.sec4 .joke .item:after {
        display: none;
    }
    .sec4 .joke .item {
        width: 100%;
        margin-bottom: 30px;
    }
    .sec5 .joke .item_line .item {
        width: 100%;

    }
    .sec5 .joke .item_line .item:nth-child(1) {
        margin-bottom: 40px;
    }
    .sec5 .joke .item_line {
        display: block;
        margin-bottom: 40px;
    }
    .sec5 .joke .item_line:nth-last-child(2) {
        display: flex;
    }
}
@media screen and (max-width: 768px) {
    .sec1 .itemList .item {
        width: 100% !important;
        margin-bottom: 30px!important;
    }
    .sec4 .joke h1 {
        margin-bottom: 30px;
    }
    .sec4 .joke:after {
        display: none;
    }
    .sec4 .joke .item .num {
        font-size: 24px;
    }
    .sec1 .itemList .item {
        flex-direction: row!important;
        flex-wrap: wrap;
    }
    .sec1 .itemList .item h2 {
        margin-left: 25px;
        line-height: 25px;
        font-size: 18px;
    }
    .sec1 .content h1 {
        margin-bottom: 20px;
    }
    .sec1 .content p {
        text-align: left;
    }
    .sec1 .itemList {
        padding: 30px 0;
    }
    .sec1 .itemList .item .line {
        margin: 21px 0 15px;
    }
    .sec1 .itemList .item .num {
        line-height: 50px;
    }
    .sec5 .joke .item_line textarea {
        height: 150px;
    }
    .sec6 .left .joke {
        padding: 0;
    }
    .sec6 .left .joke .search form .searchItem input,.sec6 .left .joke .search form .searchItem button {
        height: 46px;
    }
    .sec6 .left .joke .address .item {
        padding: 30px 18px 0;
        height: 160px;
    }
    .sec6 .left .joke .address .item .addressLogo {
        margin-right: 10px;
    }
}
