123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- @charset "utf-8";
- a {
- text-decoration:none;
- }
- a:hover {
- text-decoration:none;
- }
- article {
- min-height: 600px;
- }
- label.error {
- right: -100px !important;
- }
- #thumbview {
- position: absolute;
- }
- .card {
- box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
- margin-bottom: 1rem;
- }
- .card-header {
- background-color: transparent;
- border-bottom: 1px solid rgba(0,0,0,.125);
- position: relative;
- border-top-left-radius: .25rem;
- border-top-right-radius: .25rem;
- }
- .card-body .btn-app {
- height: auto;
- padding: 12px 5px 8px 5px;
- width: 22%;
- margin: 1%;
- }
- /* 分页 */
- .pagination {
- display: inline-block;
- padding-left: 0;
- border-radius: 4px;
- list-style: none;
- }
- .pagination li {
- float: left;
- border: 1px solid #DDD;
- border-left: none;
- min-width: 31px;
- height: 28px;
- line-height: 28px;
- text-align: center;
- }
- .pagination li.active,
- li.disabled {
- width: 31px;
- height: 28px;
- text-align: center;
- line-height: 28px;
- color: #737373;
- cursor: default;
- background: #f5f5f5;
- }
- .pagination li a {
- color: #3399d5;
- }
- .pagination li:first-child {
- border-left: 1px solid #DDD;
- border-bottom-left-radius: 5px;
- border-top-left-radius: 5px;
- }
- .pagination li:last-child {
- border-bottom-right-radius: 5px;
- border-top-right-radius: 5px;
- }
- .pagination li:hover {
- background: #f5f5f5;
- }
- /* topalert 右上角*/
- .topalert {
- position: absolute;
- display: none;
- top: 50px;
- right: 50px;
- width: 160px;
- z-index: 99;
- }
- .topalert0 {
- top: 50px;
- }
- .topalert1 {
- top: calc(50px + 50px*1);
- }
- .topalert2 {
- top: calc(50px + 50px*2);
- }
- .topalert3 {
- top: calc(50px + 50px*3);
- }
|