.new_title{
    margin: 55px 0;
    color: #2b2b2b;
    font-size: 32px;
    line-height: 1;
    font-weight: bold;
}
.new_title:first-child{
    margin-top: 0;
}
/* schedule.css */
.wapSchedule{
    display: none;
}
#schedule{
    width: 100%;
    margin: 77px auto 0;
}
.partBox{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
#tab{
    border-top: none;
}
.list ul{
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
}
.list li{
    width: 400px;
    height: 66px;
    line-height: 66px;
    border-right: none;
    cursor: pointer;
    color: #333333;
    background-color: #cccccc;
    text-align: center;
    font-size: 18px;
    box-shadow: 1px 1px 13px 0px rgba(0,0,0,0.2); 
    white-space: nowrap;
    margin-left: -112px;
}
.list li:first-child{
    border-left: none;
    margin-left: 0;
}
.list li.cur{
    background-color: #260555;
    color: white;
    border-bottom: none;
}
#listCon{
    width: 1200px;
    background: #cccccc;
}
#listCon div{
    display: none;
}
#listCon div.listPart{
    display: block;
}
.contPart{
    display: flex;
    flex-direction: column;
}
.listPart{
    width: 1200px;
}
.signPart{
    width: 100%;
    color: #000000;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
.signRow{
    display: flex;
    padding: 25px 0;
}
.signRow:hover{
    background: #999!important;
    color: #fff;
}
.signRow:hover .rowCont{
    color: #fff;
}
.signRow .rowTime{
    padding: 0 10px;
    width: 260px;
    text-align: center;
    font-weight: 400;
}
.partTit{
    padding: 0 10px;
    width: auto;
    margin-right: 130px;
    text-align: center;
    font-weight: 600;
}
.rowCont{
    margin-top: 10px;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
    display: flex;
    flex-direction: column;
}
/* case */
.caseList{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.caseList a{
    display: block;
    width: 24%;
}
.caseList img{
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
}
.caseList li{
    width: 48%;
    background-color: #F2F3F5;
    border-radius: 8px;
    margin-top: 150px;
    position: relative;
    padding: 140px 62px 40px;
}
.casePic{
    position: absolute;
    top: -99px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #f3f3f3;
}
.casePic img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.caseCont{
    font-size: 20px;
    line-height: 40px;
    color: #000000;
}
.caseCont p:first-child{
    font-weight: bold;
}
.seeVideo{
    position: absolute;
    right: 20px;
    bottom: 20px;
    line-height: 30px;
    font-size: 14px;
    padding: 0 15px;
    background-color: #260555;
    color: #fff!important;
    border-radius: 4px;
}
#case .caseBtn{
    display: block;
    width: fit-content;
    line-height: 1;
    padding: 15px 26px;
    color: #fff!important;
    background-color: #260555;
    margin: 100px auto;
    border-radius: 5px;
    cursor: pointer;
}
#case .caseBtn:hover{
    color: #fff!important;
}
/* fixSide */
#fixSide{
    position: fixed;
    top: 15%;
    right: 10px;
    width: 68px;
    height: auto;
    z-index: 99;
}
#fixSide ul{
    width: 100%;
}
#fixSide ul li{
    position: relative;
    width: 100%;
    height: 81;
    margin-bottom: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#fixSide ul li .hideImg{
    display: none;
}
#fixSide ul li:hover .hideImg{
    display: block;
}
#fixSide ul li:hover .showImg{
    display: none;
}
#fixSide ul li p{
    font-size: 12px;
    color: #fff;
    margin-top: 4px;
}
#fixSide ul li img{
    display: block;
    width: 100%;
    height: auto;
}
#fixSide ul li div{
    display: none;
    position: absolute;
    top: -26px;
    left: -140px;
    width: 120px;
    height: 120px;
}
#fixSide ul li div img{
    width: 100%;
    height: 100%;
}
#fixSide ul li:hover div{
    display: block;
}
#fixSide ul li div span{
    display: block;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left-color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: -12px;
}

@media screen and (max-width: 750px) {
    /* fixSide */
    #fixSide{
        position: fixed;
        top: 15%;
        right: 2px;
        width: 50px;
        transform: scale(.9);
    }
    #fixSide ul li{
        height: 50px;
        margin-bottom: 6px;
    }
    .wapNone{
        display: none!important;
    }
    #fixSide ul li p{
        font-size: 12px;
        color: #fff;
        margin-top: 2px;
        transform: scale(.8);
    }
    
    /* schedule.css */
    #schedule{
        margin: 10px auto 0;
    }
    .pcSchedule{
        display: none;
    }
    .wapSchedule{
        display: block;
        width: 100%;
    }
    .planList{
        width: 100%;
        margin-bottom: 30px;
    }
    .planList h3{
        width: 100%;
        line-height: 35px;
        background-color: #260555;
        color: #fff;
        text-align: center;
        font-size: 14px;
    }
    .planList li{
        background-color: #EBEBEB;
        padding: 16px 23px;
        display: flex;
        justify-content: space-between;
    }
    .planList li:nth-child(2n+1){
        background-color: #CCCCCC;
    }
    .planTime,.planCont h4{
        font-size: 12px;
        color: #000000;
        font-weight: 500;
    }
    .planCont{
        width: 72%;
    }
    .planList .planCont p{
        color: #333333;
        font-size: 12px;
        margin-top: 10px;
    }

    /* swiper */
    .new_title{
        margin: 29px 0;
        font-size: 14px;
    }

    /* case */
    .caseList a{
        width: 49%;
        margin-bottom: 2%;
    }
    .caseList img{
        border-radius: 4px;
    }
    .caseList li{
        width: 100%;
        border-radius: 4px;
        margin-top: 84px;
        padding: 70px 30px 20px;
    }
    .casePic{
        top: -54px;
        margin-left: -55px;
        width: 110px;
        height: 110px;
    }
    .caseCont{
        font-size: 14px;
        line-height: 22px;
    }
    .caseCont p{
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .seeVideo{
        right: 8px;
        bottom: 8px;
        line-height: 23px;
        font-size: 12px;
        padding: 0 8px;
        border-radius: 2px;
    }
    #case .caseBtn{
        padding: 10px 14px;
        margin: 30px auto 10px;
        border-radius: 2px;
    }
}