@charset "utf8";
@import url("./common.css");

#top-title {
  margin-bottom: .92rem;
}
#contact-banner {
  position: relative;
  margin-bottom: 1.2rem;
}

.banner-box {
  position: absolute;
  width: 7.45rem;
  height: 4.93rem;
  right: 2.22rem;
  bottom: 1.1rem;
  padding-top: .51rem;
  padding-left: .6rem;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: .23rem;
  line-height: .28rem;
}

.banner-box-title {
  font-size: .45rem;
  font-weight: bold;
  margin-bottom: .38rem;
}

.banner-box > p {
  font-size: .23rem;
  margin-bottom: .25rem;
}

.banner-box > p:nth-of-type(1) {
  line-height: .45rem;
}

.contact {
  font-weight: bold;
}

#feedback {
  margin-bottom: .5rem;
}
#feedback .h2 {
  font-size: .45rem;
  font-weight: bold;
  margin-bottom: .53rem;
}

#feedback .desc {
  font-size: .23rem;
  margin-bottom: .5rem;
}

#feedback .form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
}
#feedback .form-row .form-item {
  position: relative;
}
#feedback .form-row .form-item  >.msg {
  position: absolute;
  bottom: -0.35rem;
  left: .2rem;
  color: red;
}
#feedback .label {
  font-size: .3rem;
  margin-bottom: .21rem;
}
#feedback input {
  width: 7.22rem;
  height: .6rem;
  border: .01rem solid #000;
  font-size: .18rem;
  text-indent: .1rem;
}
#feedback select {
  width: 7.22rem;
  height: .6rem;
  border: .01rem solid #000;
  font-size: .18rem;
  text-indent: .1rem;
}
#feedback select {
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: solid 1px #000;
  /*很关键：将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  /*在选择框的最右侧中间显示小箭头图片*/
  background: url("../img/contact/down.png") no-repeat 98% 0.23rem;
  background-size: 0.3rem 0.15rem;
  /*为下拉小箭头留出一点位置，避免被文字覆盖*/
  padding-right: 0.3rem;
}
#feedback .w100 {
  width: 100%;
}

#feedback textarea {
  width: 100%;
  height: 1.94rem;
  resize: none;
  font-size: .18rem;
  padding: .1rem;
  outline: none;
}
.btns {
  display: flex;
  justify-content: center;
}
#feedback2{
  padding-top: .6rem;
}
#feedback2 p{
  text-align: center;
  font-size: .5rem;
  line-height: .71rem;
  color: #808080;
}

#feedback2 .btns{
  margin-top: 1rem;
}





.btns {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.btns .submit{
  overflow: hidden;
  position: relative;
  padding: .12rem .3rem;
  font-size: .18rem;
  margin-top: auto;
  border-radius: 0;
  margin-bottom: auto;
  color: #fff;
  background-color: #80808080 ;
  border:none;
}

.btns .submit::after{
  content: "";
  position: absolute;
  top: 0;
  left: 150%;
  width: 200%;
  height: 100%;
  transform: skew(-20deg);
  background-image: linear-gradient(90deg,transparent,hsla(0deg,0%,100%,.25),transparent);
}
.btns .submit:hover{
  transition: background .2s ease 0s;
  background: #333;
  transition-delay: .25s;
}
@keyframes shine {
  to {
    left: -200%
  }
}

.btns .submit:hover::after{
  animation: shine .75s cubic-bezier(.01,.56,1,1);
}