123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- $colorMain: #e2231a !default; //主色、文字选中、搜索
- *{
- font-family: Arial,sans-serif,Roboto,Helvetica Neue,Arial,Noto Sans
- }
- /**
- * 全局通用样式
- */
- //一行隐藏
- .overflow_ellipsis {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- //两行隐藏
- .overflow_ellipsis_two {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .flex {
- display: flex;
- }
- .flex_row_center_center {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .flex_row_center_between {
- display: flex;
- justify-content: center;
- align-items: space-between;
- }
- .flex_row_center_around {
- display: flex;
- justify-content: center;
- align-items: space-around;
- }
- .flex_row_center_start {
- display: flex;
- justify-content: center;
- align-items: flex-start;
- }
- .flex_row_center_end {
- display: flex;
- justify-content: center;
- align-items: flex-end;
- }
- .flex_row_between_center {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .flex_row_between_between {
- display: flex;
- justify-content: space-between;
- align-items: space-between;
- }
- .flex_row_between_around {
- display: flex;
- justify-content: space-between;
- align-items: space-around;
- }
- .flex_row_between_start {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- }
- .flex_row_between_end {
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- }
- .flex_row_around_center {
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .flex_row_around_between {
- display: flex;
- justify-content: space-around;
- align-items: space-between;
- }
- .flex_row_around_around {
- display: flex;
- justify-content: space-around;
- align-items: space-around;
- }
- .flex_row_around_start {
- display: flex;
- justify-content: space-around;
- align-items: flex-start;
- }
- .flex_row_around_end {
- display: flex;
- justify-content: space-around;
- align-items: flex-end;
- }
- .flex_row_start_center {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .flex_row_start_between {
- display: flex;
- justify-content: flex-start;
- align-items: space-between;
- }
- .flex_row_start_around {
- display: flex;
- justify-content: flex-start;
- align-items: space-around;
- }
- .flex_row_start_start {
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .flex_row_start_end {
- display: flex;
- justify-content: flex-start;
- align-items: flex-end;
- }
- .flex_row_end_center {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .flex_row_end_between {
- display: flex;
- justify-content: flex-end;
- align-items: space-between;
- }
- .flex_row_end_around {
- display: flex;
- justify-content: flex-end;
- align-items: space-around;
- }
- .flex_row_end_start {
- display: flex;
- justify-content: flex-end;
- align-items: flex-start;
- }
- .flex_row_end_end {
- display: flex;
- justify-content: flex-end;
- align-items: flex-end;
- }
- .flex_column_center_center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .flex_column_center_between {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: space-between;
- }
- .flex_column_center_around {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: space-around;
- }
- .flex_column_center_start {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- }
- .flex_column_center_end {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-end;
- }
- .flex_column_between_center {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- .flex_column_between_between {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: space-between;
- }
- .flex_column_between_around {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: space-around;
- }
- .flex_column_between_start {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: flex-start;
- }
- .flex_column_between_end {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: flex-end;
- }
- .flex_column_around_center {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- }
- .flex_column_around_between {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: space-between;
- }
- .flex_column_around_around {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: space-around;
- }
- .flex_column_around_start {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: flex-start;
- }
- .flex_column_around_end {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: flex-end;
- }
- .flex_column_start_center {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .flex_column_start_between {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: space-between;
- }
- .flex_column_start_around {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: space-around;
- }
- .flex_column_start_start {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .flex_column_start_end {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-end;
- }
- .flex_column_end_center {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: center;
- }
- .flex_column_end_between {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: space-between;
- }
- .flex_column_end_around {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: space-around;
- }
- .flex_column_end_start {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: flex-start;
- }
- .flex_column_end_end {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: flex-end;
- }
- .clearfix:after, .clearfix:before {
- display: table;
- content: " ";
- }
- .clearfix:after {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
- /* 分页的样式 start */
- .sld_pagination .el-pager li.active {
- color: $colorMain;
- }
- .sld_pagination .el-pager li:hover {
- color: $colorMain;
- }
- .sld_pagination .el-input__inner:focus {
- border-color: $colorMain;
- }
- /* 分页的样式 end */
- // 悬浮鼠标变手
- .pointer {
- &:hover {
- cursor: pointer;
- }
- }
- .el-pagination {
- text-align: center;
- }
- /* 全局空图 start */
- .sld_common_empty {
- margin: 0 auto !important;
- .empty_img {
- width: 140px;
- margin-bottom: 15px;
- }
- }
- /* 全局空图 end */
|