@root-entry-name: 'default';
@import '~antd/es/style/themes/index.less';
@panda-gis-tipContent-prefix-cls: ~'@{ant-prefix}-panda-gis-tipContent';

.@{panda-gis-tipContent-prefix-cls} {
  &-contentAll {
    width: 100%;
    height: 100%;
  }
  &-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 10%;
    margin-bottom: 5px;
    padding-left: 15px;
    font-size: 16px;
  }
  &-contaner::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  &-contaner::-webkit-scrollbar-thumb {
    background: #1685ff;
    border-radius: 10px;
  }
  &-contaner::-webkit-scrollbar-track {
    background: #2c4154;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  }
  &-wriper {
    width: 100%;
    height: 100%;
  }
  &-contaner {
    width: 100%;
    height: 85%;
    overflow: auto;
    overflow-x: hidden;
    ul {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      margin: 0;
      padding: 0 15px;
      list-style: none;
      li {
        display: flex;
        width: 50%;
        line-height: 30px;
        border-bottom: 1px solid #ccc;
        > span:nth-child(1) {
          flex: 1;
          overflow: hidden;
          white-space: nowrap;
          text-align: center;
          text-overflow: ellipsis;
          background-color: #f2f5fc;
        }
        > span:nth-child(2) {
          flex: 2;
          padding-left: 5px;
        }
        &:nth-child(1) {
          border-top: 1px solid #ccc;
        }
        &:nth-child(2) {
          border-top: 1px solid #ccc;
        }
        &:nth-child(2n) {
          border-right: 1px solid #ccc;
        }
        &:nth-child(2n + 1) {
          border-right: 1px solid #ccc;
          border-left: 1px solid #ccc;
        }
      }
    }
  }
}