123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /* 公用的 */
- html {
- color: #333;
- }
- .layui-fluid {
- padding: 15px;
- }
- .layui-layout {
- background-color: #fff;
- padding: 15px;
- border-radius: 2px;
- }
- .layui-card .layui-tab-brief .layui-tab-title li {
- line-height: 42px;
- }
- .layui-card .layui-tab .layui-tab-content {
- padding: 15px;
- }
- .layui-layer-btn {
- padding: 20px 0 !important;
- margin-bottom: 0;
- }
- .layui-layer-btn .layui-btn {
- height: 32px;
- line-height: 32px;
- padding: 0 15px;
- }
- /* 二级tab */
- .type-tab-brief .layui-tab-title {
- /* border: none; */
- }
- .type-tab-brief .layui-tab-title .layui-this {
- color: #009688;
- }
- .type-tab-brief .layui-tab-title .layui-this:after {
- /* border: none; */
- }
- .layui-card .type-tab-brief .layui-tab-content {
- padding: 10px 0 0;
- border: none;
- border: 1px solid #e6e6e6;
- border-top: none;
- }
- /* 搜索样式 */
- .searching {
- display: flex;
- align-items: center;
- }
- .searching .search-box {
- position: relative;
- padding-right: 5px;
- }
- .searching .search-box .layui-icon-search {
- position: absolute;
- left: 10px;
- top: 7px;
- }
- .searching .search-box .search-input {
- padding-left: 35px;
- }
- /* 滚动条 */
- ::-webkit-scrollbar-thumb {
- background-color: rgba(50, 50, 50, 0.6);
- }
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
- background-color: #f5f5f5;
- }
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- background-color: #f5f5f5;
- }
- .layui-btn-more {
- position: absolute;
- top: 5px;
- right: 10px;
- padding: 0 8px;
- border-radius: 4px;
- background-color: #fff;
- }
- .type-list {
- border: 1px solid #e6e6e6;
- border-radius: 5px 0 0 5px;
- height: calc(100vh - 100px);
- overflow-y: auto;
- }
- .type-list li {
- border-bottom: 1px solid #ddd;
- height: 40px;
- line-height: 40px;
- padding: 0 15px;
- cursor: pointer;
- }
- .type-list li:last-child {
- border: none;
- }
- .type-list li.active {
- background-color: #f2f2f2;
- }
- .type-list li.active span {
- color: #000;
- }
- .type-list li span {
- font-size: 15px;
- }
- .l-border {
- border: 1px solid #e6e6e6;
- }
- .r-border {
- border: 1px solid #e6e6e6;
- }
- .layui-top {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- }
- .layui-top-header {
- border-left: 4px solid #1e9fff;
- padding-left: 10px;
- }
|