/*page換頁用語法*/
.page{
    margin: 10px 0px;
    padding: 5px;
    width: 99%;
}
.page ul{
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.page ul li{
    display: inline-block;
    font-size: 14px;
    margin: 0px -2px;
}
.page ul li.noprepgae{
    /*padding: 0px 5px;*/
    padding: 0px 10px 0px 5px;
    line-height: 31px;
    font-size: 16px;
}
.page ul li.nonextpgae{
    padding: 0px 5px 0px 10px;
    line-height: 31px;
    font-size: 16px;
}
.page ul li a{
    font-weight: bold;
    text-decoration: none;
    border-radius: 2px;
    color: #666;
    background-image: linear-gradient(to bottom, #FFFFFF 0%, #ebebeb 100%);
    border: 1px solid #CCC;
    padding: 2px 8px;
    display: block;
}

.page ul li a:hover,.page ul li a.active{
    background-image: linear-gradient(to bottom, #2abed8 0%, #1998DD 100%);
    background-color: #1998DD;
    color: white;
    text-shadow: none;
    border: 1px solid #1998DD;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
/*page換頁用語法結束*/