.pop_wrap {
      position: fixed;
      display: none;
      z-index: 100;
}

.pop_bg {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      background: rgba(0, 0, 0, 0.75);
      width: 100%;
      height: 100%;
}

.pop_in {
      position: fixed;
      top: 50%;
      left: 50%;
      width: 74%;
      height: 74%;
      transform: translate(-50%, -50%);
      background: #ffffff;
      text-align: center;
      border-radius: 10px;
      padding: 20px 40px;
      box-sizing: border-box;
      z-index: 101;
      overflow: auto;
}

.pop-txt {
      font-size: 15px;
      line-height: 1.4;
      color: #666;
      text-align: left;
}

.pop_btn {
      display: inline-block;
      padding: 6px 12px;
      margin: 20px auto 10px auto;
      font-size: 12px;
      font-weight: bold;
      text-align: center;
      color: #0b3b17;
      border: 1px solid #0b3b17;
      border-radius: 4px;
      box-sizing: border-box;
      cursor: pointer;
}