|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- #Loading {
- top: 50%;
- left: 50%;
- position: absolute;
- -webkit-transform: translateY(-50%) translateX(-50%);
- transform: translateY(-50%) translateX(-50%);
- z-index: 100;
- }
-
- @-webkit-keyframes ball-beat {
- 50% {
- opacity: 0.2;
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
-
- @keyframes ball-beat {
- 50% {
- opacity: 0.2;
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
-
- .ball-beat>div {
- background-color: #279fcf;
- width: 15px;
- height: 15px;
- border-radius: 100% !important;
- margin: 2px;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- display: inline-block;
- -webkit-animation: ball-beat 0.7s 0s infinite linear;
- animation: ball-beat 0.7s 0s infinite linear;
- }
-
- .ball-beat>div:nth-child(2n-1) {
- -webkit-animation-delay: 0.35s !important;
- animation-delay: 0.35s !important;
- }
- .backwirteBtn,.deleteBtn{
- display: inline-table;
- line-height: 20px;
- color: rgba(0, 0, 0, 1);
- font-size: 13px;
- text-align: center;
- cursor: pointer;
- padding: 0px 20px;
- float: left;
- }
- .backwirteBtn{
- border-radius: 4px;
- border: 0.5px solid rgba(227, 227, 227, 1);
- box-shadow: 0 2px 2px #bbbbbb;
- }
- .boolEdit_Input .webuploader-pick{
- position: relative;
- display: inline-block;
- cursor: pointer;
- color: #8c00ff!important;
- text-align: center;
- overflow: hidden;
- margin-top: 0px;
- background-color: #fff!important;
- border-radius: 0!important;
- width: 100%;
- line-height: 40px;
- height: 40px;
- box-shadow: 0 1px 2px #c3c3c3;
- border: 0!important;
- }
- .boolEdit_Input .defualtLarge{
- margin-bottom:0!important;
- }
- .topOption .el-button {
- font-size: 12px;
- padding: 3px 22px;
- box-shadow: 0 2px 2px #a0a0a0;
- }
- .el-button--text:focus, .el-button--text:hover {
- color: #8c00ff;
- border:1px solid transparent
- }
- .el-tree-node__expand-icon{
- font-size: 16px;
- }
- .yiyunTable_list_item .UserEditinfoBox .el-form-item__label {
- color: #000000!important;
- font-weight: 600;
- font-size:15px;
- }
- /*.el-tree>.el-tree-node>.el-tree-node__content{
- padding-left: 0px!important;
- }
- .el-tree>.el-tree-node>.el-tree-node__content~.el-tree-node__children>.el-tree-node>.el-tree-node__content{
- padding-left: 4px!important;
- }
- .el-tree>.el-tree-node>.el-tree-node__content~.el-tree-node__children>.el-tree-node>.el-tree-node__content{
- padding-left: 10px!important;
- }
- .el-tree>.el-tree-node>.el-tree-node__content~.el-tree-node__children>.el-tree-node>.el-tree-node__content ~ .el-tree-node__children>.el-tree-node>.el-tree-node__content {
- padding-left: 16px!important;
- }
- .el-tree>.el-tree-node>.el-tree-node__content~.el-tree-node__children>.el-tree-node>.el-tree-node__content ~ .el-tree-node__children>.el-tree-node>.el-tree-node__content ~.el-tree-node__children>.el-tree-node>.el-tree-node__content{
- padding-left: 36px!important;
- }
- .navtree .el-tree-node__content:hover,.navtree .el-tree-node__content:focus,.el-tree-node:focus>.el-tree-node__content {
- background-color: #8E909F;
- border-radius: 5px;
- } */
-
- .showBtn.el-button--default{
- border-radius: 4px;
- border: 0.5px solid rgba(227, 227, 227, 1);
- box-shadow: 0 2px 2px #cacaca;
- display: inline-table;
- line-height: 20px;
- color: rgba(0, 0, 0, 1);
- font-size: 13px;
- text-align: center;
- cursor: pointer;
- padding: 0px 22px;
- height: 21px;
- overflow: hidden;
- position: relative;
- top: -1px;
- }
- .showBtn.el-button--default span{
- margin: 0;
- padding: 0;
- line-height: 20px;
- position: relative;
- top: 1px;
- }
- .topOption .el-button--text{
- box-shadow: 0 0 0;
- }
- .el-radio__input.is-checked .el-radio__inner {
- border-color: #8c00ff!important;
- background: #8c00ff!important;
- }
- .el-radio__inner {
- width: 10px!important;
- height: 10px!important;
- }
- .el-radio__inner::after {
- width: 0px!important;
- height: 0px!important;
- }
-
-
- /* 后台布局 */
- .adminlayout{
- width: calc(100vw - 120px);
- margin: 0 auto;
- margin-top: 54px;
- }
|