| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- .g-fx-j {
- display: flex;
- justify-content: space-between;
- }
- .g-fx {
- display: flex;
- }
- .g-fx-y {
- display: flex;
- flex-direction: column;
- }
- .g-xs {
- cursor: pointer;
- }
- .g-mb20 {
- margin-bottom: 20px;
- }
- .g-mb40 {
- margin-bottom: 40px;
- }
- .g-mt10 {
- margin-top: 10px;
- }
- .g-mb-40 {
- margin-bottom: 40px;
- }
- .g-title {
- font-size: 18px;
- font-weight: bold;
- color: #000000;
- margin-bottom: 20px;
- }
- .g-br-10 {
- border-radius: 10px;
- }
- .g-bg-fff {
- background-color: #fff;
- }
- .g-tx-c {
- text-align: center;
- }
- .g-h {
- min-height: calc(100vh - 90px);
- }
- .g-bg {
- width: calc(100% + 20px);
- background-image: url(../../assets/img/user-bg.png);
- background-size: 100% 100%;
- position: absolute;
- height: 400px;
- top: -20px;
- left: -20px;
- position: absolute;
- }
- .g-card-title {
- position: relative;
- padding: 20px;
- background-color: #fff;
- border-radius: 10px;
- margin-bottom: 20px;
- }
- .g-ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .g-card-title > div:first-child {
- font-weight: bold;
- font-size: 18px;
- }
- .g-mt5 {
- margin-top: 5px;
- }
- .g-ml-10 {
- margin-left: 10px;
- }
- .g-ml-20 {
- margin-left: 20px;
- }
- .g-card {
- min-height: 500px;
- width: 100%;
- background: #ffffff;
- border-radius: 10px;
- position: relative;
- }
- .g-danger {
- color: #ed6159;
- background-color: #fef0ef;
- }
- .g-warning {
- color: #d5a17d;
- background-color: #f9f1eb;
- }
- .g-warning::after {
- /* color: #d5a17d; */
- background: #d5a17d !important;
- }
- .g-pagination {
- position: absolute;
- bottom: 20px;
- right: 50px;
- }
- .g-p30 {
- padding: 30px;
- }
- .g-mt20 {
- margin-top: 20px;
- }
- .g-pb-50 {
- padding-bottom: 50px;
- }
- .g-textarea .el-textarea__inner {
- border-radius: 8px;
- }
- .g-tooltip {
- width: 150px;
- height: 100px;
- }
- .g-mb-20 {
- margin-bottom: 20px;
- }
- .g-mb-40 {
- margin-bottom: 40px;
- }
- .g-tooltip-title {
- position: relative;
- display: flex;
- align-items: center;
- min-width: 50px;
- }
- .g-no-warp {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .g-tooltip-title1 {
- width: 16px;
- height: 16px;
- background-image: url('../icon/right.png');
- background-size: cover;
- }
- .g-tooltip-line {
- height: 2px;
- width: 100%;
- background-color: #b1bfe7;
- margin: 5px 0;
- }
- /* ::-webkit-scrollbar {
- width: 12px;
- height: 12px;
- } */
- /*定义滚动条轨道
- 内阴影+圆角*/
- /* ::-webkit-scrollbar-track {
- border-radius: 10px;
- } */
- /*定义滑块
-
- 内阴影+圆角*/
- /* ::-webkit-scrollbar-thumb {
- border-radius: 10px;
- background-color: #d0cece;
- } */
|