* { margin: 0; padding: 0; box-sizing: border-box; }
.pt-page {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #202020;
}
.pt-stage {
  display: flex;
  justify-content: center;
  padding: 5% 16px 0;
}
.pt-searchline {
  position: relative;
  display: flex;
  width: min(540px, 100%);
  font-size: 0;
}
.pt-term {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  font-size: 17px;
  color: #202020;
  border: 1px solid #cfcfcf;
  border-right: 0;
  outline: none;
}
.pt-term:focus { border-color: #0b8457; }
.pt-btn {
  width: 58px;
  height: 44px;
  background: #0b8457;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pt-btn:hover { background: #096e48; }
.pt-drop {
  position: absolute;
  top: 44px;
  left: 0;
  right: 58px;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-top: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 20;
}
.pt-drop[hidden] { display: none; }
.pt-opt { padding: 9px 14px; font-size: 15px; color: #333; cursor: pointer; }
.pt-opt.on, .pt-opt:hover { background: #eef7f1; }
.pt-footer {
  position: fixed;
  bottom: 1%;
  right: 1%;
  left: 0;
  text-align: right;
}
.pt-footer a { color: #808080; text-decoration: none; font-size: 12px; margin-left: 14px; }
.pt-footer a:hover { color: #0b8457; }
