123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <style>
- /*.fy .pag li a {width: auto;float: none;color: #333;}*/
- /*.fy .pag {*/
- /*text-align: center;*/
- /*height: 20px;*/
- /*line-height: 20px;*/
- /*clear: both;*/
- /*float: none;*/
- /*padding: 0px;*/
- /*}*/
- /*!*.fy .pag li {*!*/
- /*!*text-align: center;*!*/
- /*!*margin: 0px 2px;*!*/
- /*!*padding: 0px 8px;*!*/
- /*!*height: 20px;*!*/
- /*!*line-height: 20px;*!*/
- /*!*text-decoration: none;*!*/
- /*!*display: inline-block;*!*/
- /*!*border: 1px solid #006ada;*!*/
- /*!*width: auto;*!*/
- /*!*}*!*/
- /*.fy .pag .current {*/
- /*background-color: #006ada;*/
- /*}*/
- .fy {
- text-align: center;
- }
- .fy .pag {
- list-style: none;
- padding-left: 0;
- }
- .fy .pag li {
- padding: 0 10px;
- vertical-align: top;
- display: inline-block;
- font-size: 14px;
- min-width: 36px;
- min-height: 28px;
- line-height: 28px;
- cursor: pointer;
- box-sizing: border-box;
- text-align: center;
- background-color: #ffffff;
- color: #333;
- border-radius: 6px;
- margin: 0 1px;
- border: 1px solid #ebebeb;
- height: 30px;
- }
- .fy .pag li:hover {
- transform: scale(1.1);
- background-color: #006ada;
- color: #fff;
- }
- .fy .pag li.current {
- background: #006ada;
- color: white;
- cursor: not-allowed;
- }
- .fy .pag li.disabled {
- cursor: not-allowed;
- }
- .fy .pag li.totalPage {
- background: transparent;
- cursor: default;
- border: none;
- padding: 0 6px;
- }
- .fy .pag li.totalPage:hover {
- transform: none;
- background-color: #ffffff;
- color: #333;
- }
- .fy .pag li input {
- -webkit-appearance: none;
- background-color: #fff;
- background-image: none;
- border-radius: 4px;
- border: 1px solid #dcdfe6;
- box-sizing: border-box;
- color: #606266;
- display: inline-block;
- font-size: inherit;
- outline: none;
- padding: 3px 5px;
- transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
- width: 40px;
- height: 25px;
- margin: 0 6px;
- }
- .fy .pag li input:focus {
- border-color: #98A6AD;
- }
- .pagination {
- user-select: none;
- text-align: center;
- }
- .pagination ul:nth-child(2) {
- border-radius: 6px;
- }
- input[type=number] {
- -moz-appearance: textfield;
- }
- input[type=number]::-webkit-inner-spin-button,
- input[type=number]::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- </style>
|