.w-e-text-container {
  overflow: hidden;
}

/*模态框*/
.w-modalbox{
   /* 通过 position 让遮罩层撑满整个屏幕 */
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   pointer-events: auto;
   width: 100%;
   height: 100%;
   
  /* 模态框内容，你也可以自定义 */
  .modalbox-dialog {
    width: 500px;
    position: relative;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    background: #0000008c;
    color: #fff;
    display: flex;
    flex-direction: column;
    .modalbox-haeder{
      width: 100%;
      margin-bottom: 20px;
      .modalbox-title{
        float: left;
      }
      .modalbox-close-btn{
        color: #fff;
        float: right;
        text-decoration: none;
      }
    }

    .modalbox-cons{
      width: 100%;
      p{
        margin-bottom: 15px;
        .basic-slide {
          display: inline-block;
          width: 215px;
          padding: 10px 0 10px 15px;
          font-family: "Open Sans", sans;
          font-weight: 400;
          color: #377D6A;
          background: #efefef;
          border: 0;
          border-radius: 3px;
          outline: 0;
          text-indent: 70px; // Arbitrary.
          transition: all .3s ease-in-out;
           
          &::-webkit-input-placeholder {
            color: #efefef;
            text-indent: 0;
            font-weight: 300;
          }
          
          + label {
            display: inline-block;
            position: absolute;
            top: 0;
            left: 0;
            padding: 10px 15px;
            text-shadow: 0 1px 0 rgba(19,74,70,.4);
            background: #7AB893;
            transition: all .3s ease-in-out;
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
          }
        }
        .basic-slide:focus,
        .basic-slide:active {
          color: #377D6A;
          text-indent: 0;
          background: #fff;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0;
           
          &::-webkit-input-placeholder {
            color: #aaa;
          }
          + label {
            transform: translateX(-100%);
          }
        }
      }
    }

    .modalbox-foot{
      .button {
        background-color: #4CAF50; /* Green */
        border: none;
        color: white;
        padding: 10px 35px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
    }
    
    .button2 {background-color: #008CBA;float: right;} /* Blue */
    }
   
  }

}


.voideo-drag-mask {
  position: absolute;
  z-index: 1;
  border: 1px dashed #ccc;
  box-sizing: border-box;
  .w-e-voideo-drag-rb {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    cursor: se-resize;
  }
  .w-e-voideo-drag-show-size {
    min-width: 110px;
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    color: #999;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #999;
    color: #fff;
    border-radius: 2px;
    padding: 0 5px;
  }
}

.w-e-img-drag-mask {
  position: absolute;
  z-index: 1;
  border: 1px dashed #ccc;
  box-sizing: border-box;

  .w-e-img-drag-rb {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    cursor: se-resize;
  }

  .w-e-img-drag-show-size {
    min-width: 110px;
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    color: #999;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #999;
    color: #fff;
    border-radius: 2px;
    padding: 0 5px;
  }
}