.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.reset_password {
  padding: 40px
}

h2 {
  margin-bottom: 60px;
}

#password-box, #repeat-box, #original_password_box {
  height: 62px;
}

input {
  width: 540px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  text-indent: 10px;
}

.label {
  margin-left: 30px;
  line-height: 32px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.warning_text {
  text-align: left;
  margin: 4px 0 4px 104px;
  color: #f5222d;
  font-size: 14px;
  display: none;
}

.warning_input_text {
  display: block;
}

.button {
  text-align: center;
  margin: 30px 0;
}

button {
  width: 180px;
  outline: none;
  cursor: pointer;
  height: 36px;
  background: #3e9aff;
  border: none;
  border-radius: 3px;
  color: #fff;
}

/*模态框*/
.div-container {
  position: fixed;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(0, 0, 0, 0.3) !important; /* 兼容ie几不知道，好像ie5 */
  filter: Alpha(opacity=40);
}

/*设置div-child的父元素主要是将要此元素的父元素透明特性继承过来，故div-child不会半透明，而是不透明，解决了父元素透明，子元素也透明的bug */
.div-child-container {
  position: relative;
  width: 420px;
  margin: auto;
  top: 50%;
  background: #fff;
  z-index: 250; /*z-index要放在父元素之上 */
  border-radius: 6px;
  -webkit-transform: translateY(-50%);
}

.div-child {
  width: 420px;
  margin: auto;
  z-index: 300; /*z-index要放在父元素之上 */
  overflow:hidden
}

.div-child .my-btn button {
  width: 80px;
  height: 36px;
  border: none;
  border-radius: 5px;
  color: #fff;
  outline: none;
  cursor: pointer;
}

.div-child .my-btn button:first-child {
  margin-right: 8px;
}

.my-btn {
  float: right;
  margin: 0 20px 20px;
}

.my-btn button {
  background: #2d8cf0;
}

.my-btn button:hover {
  background: #57a3f3;
}

.content {
  font-weight: bold;
  font-size: 18px;
  padding: 30px 40px;
  display: none;
}

.reson {
  font-size: 14px;
  color: #333;
  margin: 20px 0 0 24px;
}
