@import '~@lingxiteam/antd-mobile-v2-theme/es/index.less';
@prefixCls: lcdp-floatwindow;

.@{prefixCls} {
  position: fixed;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  // background: #f2f4f7;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  user-select: none;

  &-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  &-title-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px;
    cursor: move;
  }

  &-title {
    flex: 1 1 auto;
    font-weight: 500;
    font-size: 16px;
  }

  &-close-button {
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  &-content {
    flex: 1 1 auto;
    overflow: auto;
    display: flex;
  }
}