.container{
  position: relative;
  height: 500vh;
  background-color: antiquewhite;
}
.error-tip{
   font-size: 12px;
   color: #ea3e3e;
}
/* login å¼€å§‹ */
.loginout{
  width: 100%;
  height: 35px;
  margin-top: 15px;
  text-align: center;
  border: none;
  color: #fff;
  background-color: #ea3e3e;
  cursor: pointer;
  border-radius: 5px;
  letter-spacing: 2px;
}
.login-wrap{
  display: none;
  width: 450px;
  height: 300px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  z-index: 9;
  border-radius: 5px;
  overflow: hidden;
} 
.login-wrap .login-title{
  display: flex;
  justify-content: space-between;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background-color: #ea3e3e;
  color: #fff;
}
.login-close:hover{
   cursor: pointer;
}
.login-wrap .login-content{
  padding: 0 45px;
}
.login-content ul{
  padding: 0;
}
.login-wrap .login-content li{
  position: relative;
  list-style: none;
  height: 30px;
  line-height: 30px;
  padding-top: 20px;
}
.login-content li .login-item-head{
  display: inline-block;
  width: 90px;
  text-align: right;
}
.login-content li .login-item-head::before{
  display: inline-block;
  content: '*';
  padding: 0 5px;
  color: #ea3e3e;
}
.login-content li input{
  width: 250px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.login-content li:nth-child(3){
  text-align: right;
}
.login-wrap .login-content .link-register{
  color: #a70000;
}
.login-content li .error-tip{
  display: none;
  position: absolute;
  top: 33px;
  left: 95px;
}
.btn-login{
  width: 100%;
  height: 35px;
  text-align: center;
  border: none;
  color: #fff;
  background-color: #ea3e3e;
  cursor: pointer;
  border-radius: 5px;
}
.login-mask{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
/* login ç»“æŸ */

.didivder{
  position: relative;
  margin: 20px;
  color: #b80000;
  border-bottom: 2px solid #b80000; 
}
.didivder span{
  position: absolute;
  top: -10px;
  left: 50px;
  padding: 0 10px;
  font-size: 12px;
  background-color: #fff;
}
.reported-content{
 padding: 0 45px;
}
.reported-content ul{
 padding: 0;
}
.reported-content li{
 position: relative;
 display: flex;
 list-style: none;
 padding: 8px 0;
}
.reported-content li>span:first-of-type{
 display: inline-block;
 width: 260px;
 text-align: right;
}
.reported-content li .reported-item-head::before{
 display: inline-block;
 content: '*';
 padding: 0 5px;
 color: #ea3e3e;
}
.reported-content li input,select{
 width: 650px;
 height: 24px;
 border: 1px solid #ccc;
 border-radius: 3px;
 box-sizing: border-box;
}
.reported-wrap .reported-content .link-reported{
 color: #a70000;
}
.reported-content li .error-tip{
 display: none;
 position: absolute;
 top: 27px;
 left: 265px;
 color: #ea3e3e;
 font-size: 12px;
}
.file-select{
 display: flex;
}
.file-select .file-btn{
 position: relative;
 width: 100px;
 height: 25px;
 line-height: 25px;
 font-size: 14px;
 text-align: center;
 overflow: hidden;
 color: #c20202;
 border: 1px solid #ea3e3e;
 background-color: #fce9e9;
}
.file-select .file-btn input{
 position: absolute;
 top: 0;
 left: 0;
 opacity: 0;
}
.file-text{
 padding-left: 15px;
}
.btn-submit{
 margin: 0 auto;
 width: 250px;
 height: 35px;
 text-align: center;
 border: none;
 color: #fff;
 background-color: #ea3e3e;
 cursor: pointer;
}