html,
body {
  display: block;
  margin: 0;
  padding: 0;
}

.search_box {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 25px 25px;
  background: #1d424e;
}

.search_error {
  color: #e01a00;
  font-size: 12px;
}

.search_box>div {
  padding: 0 5px;
}

.search_box .num {
  display: inline-block;
}

.search_box .pass {
  display: inline-block;
  margin-right: 15px;
}

.search_box input[type="text"] {
  border: 1px solid #e4e4e4;
  background: #fff;
  padding: 5px;
  line-height: 1.375;
  outline: none;
}

.search_box input[type="text"]:focus {
  border-color: #019ffa;
}

.search_box button {
  border: 1px solid #e4e4e4;
  padding: 5px 15px;
  background: none;
  cursor: pointer;
  outline: none;
  background: #fff;
}

.search_box button:hover {
  border-color: #019ffa;
  color: #019ffa;
}

.search_box button:active {
  border-color: #006caa;
  color: #006caa;
}

.search_box .error input {
  border-color: #e70000;
}

.search_dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, .15);
}

.search_prompt {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 8px;
  padding: 15px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  opacity: 0;
  /* margin-top: -20px; */
  width: 320px;
  background: #fff;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, .1);
}


.search_prompt::before {
  display: block;
  content: '';
  position: absolute;
  top: -40px;
  left: 100px;
  width: 140px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
}

.search_prompt .search_prompt_title {
  position: relative;
  display: block;
  height: 50px;
  z-index: 9;
}

.search_prompt_title::after {
  display: block;
  position: absolute;
  bottom: 0;
  content: '';
  height: 1px;
  width: 100%;
  background: #aa2800;
}

.search_prompt_title img {
  width: 60px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: -20px
}

.search_prompt_content {
  min-height: 100px;
  text-align: center;
  color: #aa2800;
  margin-bottom: 20px;
  padding-top: 20px;
}

.content_text {
  margin-bottom: 35px;
}

.content_text>div:first-child {
  font-size: 20px;
  font-weight: bold;
  padding: 8px 15px;
}

.content_text>div:last-child {
  font-size: 14px;
}

.content_text a {
  text-emphasis: none;
  color: #aa2800;
}

.know_btn {
  background: #aa2800;
  border: none;
  outline: none;
  padding: 5px 35px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  border-radius: 18px;
  height: 36px;
  /* font-weight: 600; */
  font-family: 'Microsoft YaHei';
}

.know_btn:hover {
  background: #dd3400;
}

.know_btn:active {
  background: #aa2800;
}