12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
-
- /*
- * 因为换了字体 不在原来的css里面 更改
- * 不使用字体 原来的样式是正常的
- * 在扩展css里面写
- * common.css
- */
-
- /**
- 增加 分页样式
- */
- .page{
- width:100%;
- margin-top: 15px;
- margin-bottom: 15px;
- height: 30px;
- float: left;
- position: relative;
- display: flex;
- align-items: center; /* 垂直居中 */
- justify-content: center; /* 水平居中 */
- }
- .page-content{
- /*position: absolute;
- margin-left: -25%;
- left: 50%;*/
- display: block;margin:0 auto;
- }
- .page-a{
- width: auto;
- margin:0 auto;
- float: left;
- height: 30px;
- }
- .page-b{
- float: left;
- }
- .page li{
- float: left;
- width: auto;
- margin: 0 5px;
- text-align: center;
- cursor: pointer;
- height: 30px !important;
- padding-left:0 !important;
- list-style: none !important;
- }
- .page a{
- width:auto;
- padding: 3px 6px;
- text-align: center;
- /*padding: 3px 6px;*/
- color: rgb(61, 61, 61);
- border-radius: 3px;
- margin: 3px 5px;
- font-family: 微软雅黑;
- font-size: 14px;
- font-weight: 400;
- letter-spacing: 0px;
- text-align: center;
- }
- .page a img{
- margin-top:-4px;
- }
- .page .active-1 a{
- border-radius: 2px;
- background: rgb(11, 139, 247);
- color:#fff;
- }
- .page input{
- width: 48px;
- height: 32px;
- border-radius: 4px;
- background: rgb(250, 250, 250);
- border:none;
- margin: 0 8px;
- text-align: center;
- }
-
- /*
- 底部导航
- */
- .footer_Footernav a small{
- margin-top: -6px !important;
- }
|