
/* 分页器 */
.pagewrap {
    padding: 25px 0;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    color: #A2A7B7;
    text-align: center;
    font-size: 16px;
}

.pagewrap i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border: 1px solid #D2D2D2;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    margin: 0 4px;
    vertical-align: middle;
}
.pagewrap i:first-child{
    border-radius: 20px;
}
.pagewrap i:last-child{

    border-radius: 20px;
}
.pagewrap i.button {
    width: 68px;
}

.pagewrap i:hover {
    background-color: #FF8524;
    color: #fff;
    animation: buttonshake .4s ease-out forwards;
}

.pagewrap i.current:hover, i.current, i.button:hover {
    background-color: #FF8524;
    color: #fff;
    border: none;
    animation: none;
}

.pagewrap i.disabled, i.disabled:hover {
    background: #EFEFEF;
    border-color: #EFEFEF;
    color: #AAA;
    cursor: text;
    animation: none;
}

.pagewrap i.ellipsis, i.ellipsis:hover {
    background: none;
    border-color: #FFF;
    color: #AAA;
    cursor: text;
    animation: none;
}

@-webkit-keyframes buttonshake {
    25% {
        -webkit-transform: rotate(45deg);
    }
    75% {
        -webkit-transform: rotate(-45deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes buttonshake {
    25% {
        transform: rotate(45deg);
    }
    75% {
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.input{
    width: 50px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #D2D2D2;
    text-indent:.8em ;
    margin: 0 20px 0 10px;
}
.flagok{
    display: inline-block;
    width: 70px;
    height: 40px;
    border: 1px solid #FF8524;
    border-radius: 20px;
    color: #FF8524;
    line-height: 40px;
    text-align: center;
    margin-left: 10px;
    cursor: pointer;
}