| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .screen {
- display: flex;
- width: 100%;
- margin-bottom: 20px;
- }
- .screen1 {
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
- .screen_view {
- display: flex;
- align-items: center;
- width: 30%;
- }
- .screen_view1 {
- display: flex;
- align-items: center;
- width: 18.5%;
- }
- .cardbottom {
- margin-top: 20px;
- }
- .title {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- font-size: 18px;
- .title_time {
- margin-left: 10px;
- font-size: 16px;
- }
- }
- .pagination {
- display: flex;
- justify-content: space-between;
- margin-top: 20px;
- }
- .btn-group {
- display: flex;
- gap: 10px; /* 按钮之间的间隔 */
- align-items: center; /* 垂直居中按钮 */
- justify-content: center; /* 水平居中按钮 */
- }
|