Merge branch 'master' of http://182.92.203.7:2001/r/testbookLayout
| | |
| | | outline: none; |
| | | } |
| | | } |
| | | .page-footer { |
| | | position: relative; |
| | | display: flex; |
| | | align-items: center; |
| | | /* 垂直居中 */ |
| | | } |
| | | |
| | | .page-footer-image { |
| | | /* 图片样式 */ |
| | | max-width: 100%; |
| | | height: auto; |
| | | position: relative; |
| | | /* 确保.page-footer-number可以相对于图片定位 */ |
| | | z-index: 1; |
| | | /* 确保页码数字在图片上方 */ |
| | | } |
| | | |
| | | .page-footer-number-left { |
| | | color: black; |
| | | left: 15%; |
| | | position: absolute; |
| | | /* 绝对定位页码 */ |
| | | font-size: 2em; |
| | | /* 你可以根据需要调整字体大小 */ |
| | | z-index: 2; |
| | | |
| | | /* 确保页码数字在图片上方 */ |
| | | /* 使用::before伪元素创建绿色圆形背景 */ |
| | | &::before { |
| | | content: ""; |
| | | position: absolute; |
| | | top: 50%; |
| | | /* 垂直居中 */ |
| | | left: 50%; |
| | | /* 水平居中 */ |
| | | transform: translate(-50%, -50%); |
| | | /* 移动到中心 */ |
| | | width: 1.2em; |
| | | /* 你可以根据需要调整圆形大小 */ |
| | | height: 1.2em; |
| | | border-radius: 50%; |
| | | /* 圆形 */ |
| | | background-color: rgba(208, 226, 179); |
| | | /* 背景颜色 */ |
| | | z-index: -1; |
| | | /* 确保圆形背景在文本下方 */ |
| | | } |
| | | } |
| | | .page-footer-number-right { |
| | | color: black; |
| | | right: 15%; |
| | | position: absolute; |
| | | /* 绝对定位页码 */ |
| | | font-size: 2em; |
| | | /* 你可以根据需要调整字体大小 */ |
| | | z-index: 2; |
| | | |
| | | /* 确保页码数字在图片上方 */ |
| | | /* 使用::before伪元素创建绿色圆形背景 */ |
| | | &::before { |
| | | content: ""; |
| | | position: absolute; |
| | | top: 50%; |
| | | /* 垂直居中 */ |
| | | left: 50%; |
| | | /* 水平居中 */ |
| | | transform: translate(-50%, -50%); |
| | | /* 移动到中心 */ |
| | | width: 1.2em; |
| | | /* 你可以根据需要调整圆形大小 */ |
| | | height: 1.2em; |
| | | border-radius: 50%; |
| | | /* 圆形 */ |
| | | background-color: rgba(208, 226, 179); |
| | | /* 背景颜色 */ |
| | | z-index: -1; |
| | | /* 确保圆形背景在文本下方 */ |
| | | } |
| | | } |
| | | } |
| | | /* 媒体查询做基础响应式布局 */ |
| | | @media (max-width: 430px) { |