.message{
  width: 600px;
  margin: 50px auto;
}
.messageEmail{
  text-align: center;
  width: 100%;
  display: inline-block;
  font-size: 15px;
}
.messageEmail a{
  text-decoration: underline;
}
.message form{
  margin-top: 50px;
}
.message .group{
  
  width: 100%;
  flex: 1;
}
.message .line{
  display: flex;
  margin: 30px 0;
}
.message .line .lineOne{
  margin-right: 30px;
}
.message .label{
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 15px;
}
.message .label span{
  color: #ff0000;
  font-weight: bold;
  padding-left: 3px;
}
.message input,.message textarea{
  width: 100%;
  border: 1px solid #aaa;
  min-height: 40px;
  line-height: 40px;
  padding-left: 10px;
  border-radius: 3px;
  outline: none;
  font-size: 15px;
}
.message input:focus {
    border: 1px solid #202C7C; /* 聚焦时显示2px宽度，实线，黑色描边 */
}

.message textarea{
  height: auto;
}
.message .button input{
  border: 1px solid #202C7C;
  color: #202C7C;
  background-color: #fff;
  font-size: 18px;
  padding: 5px 0;
  font-weight: bold;
  margin: 20px 0;
  transition: all linear .3s;
}
.message .button input:hover{
  background-color: #202C7C;
  color: #fff;
  transition: all linear .3s;
}