@charset "utf-8";
/**
 ** 主题按钮颜色样式
 **/
/**
 ** 图片大小/头像主样式
 **/
/**
 ** icon
 **/
/**
 ** 外部组件样式强制覆盖
 **/
.control-up {
  font-size: 12px;
  font-weight: 600;
}
.control-up .btn-file .up-text {
  text-decoration: underline;
  cursor: pointer;
}
.control-up .btn-file .up-img {
  height: 12px;
  margin-top: -2px;
}
.control-up .btn-file .prompt {
  font-weight: 400;
  color: #ccc;
}
.control-up .file {
  margin-top: 10px;
  max-width: 70%;
}
.control-up .file-list {
  position: relative;
  height: 30px;
  line-height: 26px;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.control-up .file-list:hover {
  background-color: #ebebeb;
}
.control-up .file-list:hover .file-close {
  opacity: 1;
}
.control-up .file-list .icon-file {
  display: inline-block;
  width: 30px;
  -webkit-transform: translateY(2.8px);
          transform: translateY(2.8px);
  font-size: 21px;
}
.control-up .file-list .file-text {
  display: inline-block;
  width: calc(100% - 60px);
}
.control-up .file-list .file-close {
  position: absolute;
  top: 2px;
  right: 7px;
  opacity: 0;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
/**
 **动画send
 **/
/**
 ** form相关
 **/
.form-item {
  margin-bottom: 20px;
}
.form-item-2 {
  margin-bottom: 10px;
}
.form-group-w1 {
  display: inline-block;
  width: 160px;
  vertical-align: middle;
}
.form-title,
.form-title-2 {
  position: relative;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  min-width: 150px;
  padding-right: 6px;
  vertical-align: middle;
}
.form-title i,
.form-title-2 i {
  margin-right: 5px;
  color: red;
}
.form-title {
  min-height: 42px;
  line-height: 42px;
}
.form-title-2 {
  min-height: 30px;
  line-height: 30px;
}
.form-input {
  display: inline-block;
  width: 100%;
  min-height: 42px;
  padding: 0 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  /*line-height: 1.42857143;*/
  background-color: #fff;
  background-image: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}
.form-input:focus {
  border: 1px solid #D9BA64;
  -webkit-box-shadow: 0 0 1px 1px rgba(32, 160, 255, 0.075);
          box-shadow: 0 0 1px 1px rgba(32, 160, 255, 0.075);
}
.select-a {
  display: inline-block;
  width: 100%;
  border: 1px solid #dbdbdb;
  padding-left: 10px;
  height: 42px;
  -webkit-transition: all .2s;
  transition: all .2s;
  border-radius: 5px;
}
.select-a:focus {
  border: 1px solid #D9BA64;
}
.form-content {
  position: relative;
}
.form-textarea {
  display: table;
  width: 100%;
  height: 100px;
  padding: 5px;
  min-height: 60px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}
.form-textarea:focus {
  border: 1px solid #D9BA64;
  -webkit-box-shadow: 0 0 1px 1px rgba(32, 160, 255, 0.075);
          box-shadow: 0 0 1px 1px rgba(32, 160, 255, 0.075);
}
.must:after {
  content: "*";
  color: red;
  position: absolute;
  left: -10px;
  top: 0%;
}
label.error {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: red;
}
/**
 ** 响应式
 **/
@media screen and (max-width: 768px) {
  .form-title {
    text-align: left;
  }
}
