.el-card.model-clipboard-item {
  background-color: #fff;
  color: #888;
  border: 1px solid #f0f0f0;
  margin-bottom: 6px;

  >.el-card__body {
      padding: 6px 8px;
      position: relative;

      >.model-item-loading-warp {
          position: absolute;
          z-index: 1;
          top: 0px;
          right: 0px;
          bottom: 0px;
          left: 0px;

          >.model-item-loading-inner {
              transition: width 0.5s;
              text-align: right;
              height: 100%;
              width: 0%;
              animation: breath 2s infinite ease-in-out;
              background: #C6FFDD;
              /* fallback for old browsers */
              background: -webkit-linear-gradient(to right, #f7797d, #FBD786, #C6FFDD) !important;
              /* Chrome 10-25, Safari 5.1-6 */
              background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD) !important;
              /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

              >.label {
                  color: rgb(51, 51, 51);
                  font-size: 18px;
                  margin-right: 5px;
                  display: flex;
                  align-items: center;
                  float: right;
                  height: 100%;
              }
          }
      }

      >.model-clipboard-item-content {
          position: relative;
          z-index: 2;

          >.title {
              font-size: 18px;

              >input {
                  height: 27px;
                  width: 300px;
                  background: transparent;
                  border: 0px;
              }
          }

          >.info-warp {
              padding: 6px 0px;
          }

          >.actions {
              position: absolute;
              right: 0px;
              top: 0px;
              height: 100%;
              display: flex;
              align-items: center;

              >.ivu-btn-group.ivu-btn-group-default {

                  >.ivu-btn.ivu-btn-text {

                      >.ivu-icon {
                          color: #888;
                          font-size: 18px;
                      }
                  }
              }
          }
      }
  }
}

.ivu-drawer-wrap.model-clipboard-item-edit-drawer {

  >.ivu-drawer {

      >.ivu-drawer-content {
          background-color: #fff;
          color: #888;

          >.ivu-drawer-close {
              top: 2px;

              >i {
                  color: #888;
              }
          }

          >.ivu-drawer-header {
              padding: 7px 8px;

              >.ivu-drawer-header-inner {
                  color: #888;
              }
          }
      }
  }
}