| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- @charset "UTF-8";
- /*滚动条美化**/
- ::-webkit-scrollbar-track{border-radius: 10px;-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);}
- ::-webkit-scrollbar-thumb{background-color: rgba(0,0,0,0.05);border-radius: 10px;-webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);}
- ::-webkit-scrollbar-thumb{background-color: rgba(0,0,0,0.2);border-radius: 10px;-webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);}
- ::-webkit-scrollbar{width: 16px;height: 16px;}
- ::-webkit-scrollbar-track,
- ::-webkit-scrollbar-thumb{border-radius: 999px;border: 5px solid transparent;}
- ::-webkit-scrollbar-track{box-shadow: 1px 1px 5px rgba(0,0,0,.2) inset;}
- ::-webkit-scrollbar-thumb{min-height: 20px;background-clip: content-box;box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;}
- ::-webkit-scrollbar-corner{background: transparent;}
- html {
- overflow-x: hidden;
- }
- /**
- Tab
- */
- .content-tabs{border-bottom:solid 2px #e7ebee;background:#fff !important;border-top:none;height:41px;}
- .content-tabs .page-tabs a.active{background:whitesmoke;color:#fff !important;border-right: solid 1px #e7ebee;}
- .content-tabs .roll-left{border-right: solid 1px #e7ebee;}
- .content-tabs .roll-right{border-left: solid 1px #e7ebee;}
- #content-wrapper{background-color:#f9f9f9;border-left:2px solid #e7ebee;}
- @media (min-width:768px) {
- .nav-small #nav-col {
- width: 64px;
- }
- .nav-small #content-wrapper {
- margin-left: 64px;
- }
- .content-tabs {
- position: relative;
- height: 42px;
- line-height: 39.5px;
- background: #fafafa;
- border-bottom: solid 2px #2c3e50;
- font-size: 12px;
- border-top: 1px solid #ddd;
- }
- .content-tabs .roll-nav, .page-tabs-list {
- position: absolute;
- width: 40px;
- height: 39px;
- text-align: center;
- color: #475059;
- z-index: 2;
- top: 0;
- }
- .content-tabs .roll-left {
- left: 0;
- border-right: solid 1px #ddd;
- }
- .content-tabs .roll-right {
- right: 0;
- border-left: solid 1px #ddd;
- }
- .content-tabs button {
- background: #fff;
- border: 0;
- height: 39px;
- line-height: 39px;
- width: 40px;
- outline: 0;
- }
- .content-tabs button:hover {
- background: #fafafa;
- }
- .content-tabs button i {
- color: #999;
- }
- .content-tabs nav.page-tabs {
- margin-left: 40px;
- width: 100000px;
- height: 40px;
- overflow: hidden;
- }
- .content-tabs nav.page-tabs .page-tabs-content {
- float: left;
- }
- .content-tabs .page-tabs a {
- display: block;
- float: left;
- border-right: solid 0px #ddd;
- padding: 0 15px;
- padding-right: 8px;
- text-decoration: none;
- color: #475059;
- }
- .content-tabs .page-tabs a:first-child {
- padding-right: 15px;
- }
- .content-tabs .page-tabs a.active {
- background: #2c3e50;
- color: #fff;
- border-right: solid 1px #2c3e50;
- }
- .content-tabs .page-tabs a i {
- margin-top: -10px;
- right: 0px;
- position: relative;
- color: #999;
- }
- .content-tabs .page-tabs a i:hover {
- color: #c00 !important;
- }
- .content-tabs .page-tabs a.active i:hover {
- color: #fff !important;
- }
- .content-tabs .roll-right.tabRight {
- right: 120px;
- }
- .content-tabs .roll-right.btn-group {
- right: 40px;
- width: 80px;
- padding: 0;
- }
- .content-tabs .roll-right.btn-group button {
- width: 80px;
- }
- .content-tabs .roll-right.tabExit {
- background: #fff;
- height: 39px;
- width: 40px;
- outline: 0;
- }
- }
- @media(max-width:768px) {
- .content-tabs {
- display: none;
- }
- }
- .nav-link {
- cursor: pointer;
- }
|