body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: calc(100%);
  background: #fff;
}
.headerBox {
  width: 100%;
  height: 60px;
  background: #fff url('../images/header_bg.png') no-repeat;
  background-size: 100% 100%;
  color: #b28850;
  box-shadow: 0 1px 4px rgba(194, 229, 223, 0.08);
}
.headerBox .headerInner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerBox .headerInner .title {
  font-size: 32px;
  line-height: 60px;
  font-family: mFont;
}
.headerBox .headerInner .rightBox {
  display: flex;
  font-family: mFont;
  font-size: 24px;
  align-items: center;
}
.headerBox .headerInner .rightBox .headerLine {
  margin: 0 12px;
  width: 1px;
  height: 14px;
  background: #b28850;
}
.headerBox .headerInner .rightBox .first {
  display: block;
  font-size: 24px;
  color: #b28850;
  font-family: mFont;
  cursor: pointer;
}
.headerBox .headerInner .rightBox .login {
  cursor: pointer;
}
.headerBox .headerInner .rightBox .loginName {
  cursor: pointer;
  position: relative;
  padding-right: 16px;
  display: none;
}
.headerBox .headerInner .rightBox .loginName:hover .loginOut {
  display: block;
}
.headerBox .headerInner .rightBox .loginName:after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #b28850;
}
.headerBox .headerInner .rightBox .loginName .loginOut {
  position: absolute;
  background: #fff;
  line-height: 30px;
  display: none;
  width: 120px;
  padding: 5px 0 5px 5px;
  border-radius: 5px;
  box-sizing: border-box;
}
.headerBox .headerInner .rightBox .numBox {
  margin-left: 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.headerBox .headerInner .rightBox .numBox img {
  margin-right: 5px;
}
.headerBox .headerInner .rightBox .numBox .all {
  font-size: 20px;
}
.loginBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  overflow: hidden;
  display: none;
  font-family: mFont;
}
.loginBox .dialogBox {
  width: 480px;
  height: 340px;
  margin: 15% auto 0;
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  color: #b28850;
}
.loginBox .dialogBox .closeDialog {
  position: absolute;
  top: 3px;
  right: 6px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.5s;
}
.loginBox .dialogBox .closeDialog:hover {
  transition: all 0.5s;
  transform: rotate(180deg);
}
.loginBox .dialogBox .closeDialog:before {
  content: "\00D7";
}
.loginBox .dialogBox .dialog_content {
  width: 80%;
  margin: 50px auto 0;
}
.loginBox .dialogBox .dialog_content .title {
  text-align: center;
  font-size: 24px;
}
.loginBox .dialogBox .dialog_content .userBox {
  margin-top: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(178, 136, 80, 0.7);
  padding: 5px 10px ;
  box-sizing: border-box;
  border-radius: 4px;
}
.loginBox .dialogBox .dialog_content .userBox .userInput {
  border: none;
  height: 30px;
  line-height: 30px;
  width: 80%;
  margin-left: 10px;
  padding-left: 5px;
  font-size: 18px;
  color: #b28850;
  font-family: mFont;
}
.loginBox .dialogBox .dialog_content .userBox .userInput::placeholder {
  color: #b28850;
  opacity: 0.7;
  font-size: 16px;
}
.loginBox .dialogBox .dialog_content .errorTip {
  font-size: 16px;
  color: red;
  display: none;
}
.loginBox .dialogBox .dialog_content .loginBtn {
  color: #fff;
  background: #b28850;
  font-size: 18px;
  line-height: 48px;
  height: 48px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 30px;
  text-align: center;
  border-radius: 4px;
}
.successTip {
  background: rgba(178, 136, 80, 0.7);
  padding: 5px 10px;
  font-size: 18px;
  color: #fff;
  font-family: mFont;
  position: absolute;
  top: 20px;
  left: 50%;
  border-radius: 4px;
  display: none;
}
