.dropdown{
  line-height: 30px;
  height: 30px;
  border-bottom: solid 1PX #C8C8CD;
  .title{
    padding: 0 5px;
    font-size: 14px;
    position: absolute;
    top: 2.5px;
  }
  .dropBtn{
    font-size: 25px;
    position: absolute;
    right: 10px;
    height: 100%;
  }
}
  

.dropdownItem,.dropdownItemSelect{
  text-align: left;
  padding: 10px 20px;
  height: 100%;
  border-bottom: solid 1px #EDEBEB;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;

  img {
    width: 20px;
    height: 15px;
  }
}

.dropdownItemSelect{
  color: #3688FF;
}

.dropdownContent{
  max-height: 500px;
  overflow: auto;
  padding-bottom: 40px;
  font-size: 14px;

  .explainImg {
    .title {
      font-size: 12px;
      padding-left: 20px;
      background-color: #EFEEF3;
      height: 38px;
      line-height: 38px;
      text-align: left;
    }
    p {
      text-align: left;
      font-size: 14px;
      padding: 10px 0;
      margin-left: 20px;
    }
    .explainImgContent {
      display: flex;
      justify-content: space-between;
      background-color: #f6f9fe;
      margin: 0 16px;
      padding: 8px 28px 20px;
      font-size: 13px;
  
      .contentBox {
        color: #000;
        .second-child {
          margin-top: 10px;
          position: relative;
        }

        .choosedLevel {
          color: #3788FF;
        }
  
        .choosedLevel::after {
          content: '';
          width: 8px;
          height: 8px;
          background-color: #3788FF;
          border-radius: 50%;
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
        }
      }
    }
  }
  
  }
  .btnArea{
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: solid 1px #EDEBEB;
    .cancelBtn,.definedBtn{
      padding: 10px 10px;
      flex: 1;
      border-radius: 0;
      border: none !important;
    }
    .definedBtn{
      flex: 1;
      background-color: #3688FF;
      color: white;
      
    }
    .cancelBtn{
      flex: 1;
      background-color: white;
      color: #3688FF;
    }
}