﻿.message {
  width: 12rem;
  background: #fff;
  padding: 80px 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.message .item {
  display: flex;
  align-items: center;
  width: 49%;
  margin-bottom: 30px;
  white-space: nowrap;
}

.message .item.row {
  width: 100%;
}

.message .item input:focus,
.message .item textarea:focus,
.message .item select:focus {
  outline-color: #2750a0;
}

.message .item input,
.message .item textarea,
.message .item select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.message .item.yzm input {
  width: 100px;
}

.message .item textarea {
  height: 100px;
}

.message .item * {
  font-size: 16px;
}

.message .item i {
  font-style: normal;
  color: red;
}

.message .item label {
  width: 80px;
  text-align: justify;
  flex-shrink: 0;
  text-align: right;
  padding-right: 15px;
}

.message .btm {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.message .btm button {
  border: 0 none;
  width: 20%;
  font-size: 20px;
  color: #fff;
  background-color: #2750a0;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 8px;
  cursor: pointer;
}

.message .btm button:hover {
  opacity: .8;
}

.message .btm button:first-child {
  margin-right: 20px;
}

.message .item .radio-label input {
  width: auto;
}

#showVerifyCode {
  margin-left: 20px;
}


@media screen and (max-width:768px) {
  .message {
    padding: 20px;
    width: 100%;
  }

  .message .item {
    width: 100%;
  }

  .message .item.yzm input {
    width: 80px;
  }


  .message .btm {
    padding-top: 0;
  }

  .message .btm button {
    width: 30%;
  }

  #showVerifyCode {
    margin-left: 0;
  }
}