html,body{
    margin: 0;
}
.cx-time-main ul{
    margin: 0;
    height: 340px;
    white-space: nowrap;
}
ul li{
    outline: none;
    display: inline-block;
    list-style-type: none;
    margin: 0px;
}
.cx-time-main{
    width: 100%;
    height: 210px;
    margin-left: auto;
    margin-right: auto;
}
.cx-time-main > span{
    width: 20px;
    height: 210px;
    line-height: 210px;
    float: left;
    font-size: 30px;
    font-weight: 600;
    color:#d0d0d0;
    cursor: pointer;
}
.cx-time-main > span.prev{
    background: url("../images/prev_icon1.png") no-repeat center;
}
.cx-time-main > span.prev:hover{
    background: url("../images/prev_icon2.png") no-repeat center;
}
.cx-time-main > span.next{
    background: url("../images/next_icon1.png") no-repeat center;
}
.cx-time-main > span.next:hover{
    background: url("../images/next_icon2.png") no-repeat center;
}
.cx-time-box{
    float: left;
    width: calc(100% - 42px);
    min-height: 340px;
    margin: 0;
    padding: 0 145px;
    overflow: hidden;
}
.cx-round-box{
    position: relative;
    width: 12px;
    height: 100%;
}
.cx-time-round{
    position: relative;
    width: 12px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    background: #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
}
.cx-time-top{
    position: absolute;
    bottom: 50%;
    left: 50%;
    margin-left: -145px;
    width: 290px;
    min-height: 20px;
    height: auto;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
    white-space: break-spaces;
}
.cx-time-bottom{
    position: absolute;
    top: 50%;
    left: -30px;
    width: 290px;
    left: 50%;
    margin-left: -145px;
    height: auto;
    font-size: 14px;
    margin-top: 12px;
    overflow: hidden;
    white-space: break-spaces;
    text-align: center;
}
.cx-time-line{
    position: relative;
    width: 150px;
    height: 100%
}
.cx-time-line:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    top: 50%;
    background:#d0d0d0;
}
.cx-time-round:hover,.cx-time-active .cx-time-round{
    width: 16px;
    height: 16px;
    top: 49%;
    left: -2px;
    z-index: 99;
    background:#0050a1;
}
.cx-time-active > div{
    color:#0050a1;
}

@media only screen and (max-width: 768px) {
    .cx-time-box{
        padding:0 75px;
    }
    .cx-time-bottom {
        width: 150px;
        margin-left: -75px;
        font-size: 12px;
    }
    .cx-time-top {
        width: 150px;
        margin-left: -75px;
        font-size: 12px;
    }
}