/*  */
.list-head {
    font-weight: 700;
    font-size: 28px;
    color: #313131;
    border-bottom: 1px solid #DFE7ED;
    padding-bottom: 35px;
}

/*  */

.list-time {
    width: 70px;
    height: 62px;
    background: #1CB278;
    border-radius: 4px;
    color: #fff;
    text-align: center;
}

.list-day {
    font-weight: 700;
    font-size: 24px;
}

.list-year {
    font-size: 14px;
}

.list-link {
    width: calc(100% - 90px);
}

.list-text .title {
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    transition: all .3s ease;
}

.list-text .info {
    font-size: 14px;
    color: #959595;
    transition: all .3s ease;
}

.list-text {
    max-width: calc(100% - 50px);
}

.list-link svg {
    width: 26px;
    fill: #313131;
    transition: all .3s ease;
}

.list-info {
    padding: 30px 0;
    border-bottom: 1px dashed #D6D6D6;
}

.list-link:hover svg {
    fill: #1CB278
}

.list-link:hover .title,
.list-link:hover .info {
    color: #1CB278;
}


.skip>* {
    margin: 0 5px;
    color: #333;
}

.skip input {
    outline: 0 none;
    border: 1px solid #D6D6D6;
    background: transparent;
    padding: 0 0.2rem;
    height: 30px;
}

.skip button {
    outline: 0;
    border: 1px solid #D6D6D6;
    padding: 4px;
    background: transparent;
    height: 30px;
}

.skip button {
    transition: all .3s ease;
}

.skip button:hover {
    background: #1CB278;
    color: #fff;
}

/* 去掉input自带加减符 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    width: 36px;
    height: 30px;
    text-align: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    color: #333;
    background: #fff;
}

input[type="number"]:focus {
    border: 1px solid #1CB278;
}

.pagination {
    flex-wrap: nowrap;
}

.pagination>li {
    transition: all .3s ease;
    border: 1px solid #D6D6D6;
    background: #fff;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 0.5rem;
}

.pagination>li:hover,
.pagination>li.active {
    background: #1CB278;
    color: #333;
    cursor: default;
    border-color: #1CB278;
}

.pagination>li:hover a,
.pagination>li.active a {
    color: #fff;
}

nav .pagination li a {
    font-size: 14px;
    line-height: 30px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .skip {
    font-size: 14px;
}

nav>* {
    margin-bottom: 5px;
}

nav {
    padding: 20px 0 0;
}

@media screen and (max-width:1023px) {
    .cont-list-box {
        padding: 15px 30px;
    }

    .list-head {
        padding-bottom: 15px;
    }

    .list-info {
        padding: 15px 0;
    }
}