html,
body {
  width: 100%;
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.content img {
  width: 100%;
  display: block;
}

.modal {
  width: 734px;
  height: 491px;
  border-radius: 8px 8px 8px 8px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: none;
  overflow: hidden;
  background: #fff;
}

.slogen {
  height: 128px;
  background: #D9D9D9;
  font-size: 14px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #000000;
  line-height: 16px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slogen img {
  width: 100%;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

label {
  width: 56px;
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #25362B;
  line-height: 16px;
  text-align: right;
  margin-right: 16px;
}

input, select {
  width: 260px;
  height: 32px;
  background: #F9F9F9;
  border-radius: 2px 2px 2px 2px;
  border: none;
  -webkit-appearance: none;
  padding-left: 8px;
  font-size: 14px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #B3B3B3;
}

input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
  color: #B3B3B3;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
  color: #B3B3B3;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
  color: #B3B3B3;
}
input:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
  color: #B3B3B3;
}

button {
  width: 332px;
  height: 44px;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #08DD3A;
  background-color: #ffffff;
  font-size: 16px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #08DD3A;
  line-height: 19px;
  margin-top: 16px;
  cursor: pointer;
}

.select-sharp {
  width: 12px;
  height: 8px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* select:focus + .select-sharp{
  transform-origin: center center;
  transform: rotate(45deg);
} */

.toast {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 14px;
  height: 28px;
  padding: 0 12px;
  background: #000000;
  border-radius:2px;
  opacity: 0.7;
  display: none;
  padding-top: 7px;
}

.modal-trigger,.to-top {
  position: fixed;
  right: 0px;
  right: 224px;
  background: #D9D9D9;
  width: 66px;
  height: 66px;
  cursor: pointer;
}

.modal-trigger {
  bottom: 246px;
  background-image: url(https://img.tanjiu.cn/images/mabanzhang/call.svg);
}

.to-top {
  bottom: 150px;
  background-image: url(https://img.tanjiu.cn/images/mabanzhang/to-top.svg);
}

.footer-copy {
  padding: 22px 5% 32px;
  display: flex;
  justify-content: center;
  font-size: 16px;
}

.footer-copy a {
  display: inline-block;
  color: #FDFDFD;
  font-size: 16px;
}

.footer-copy a:link, .footer-copy a:visited {
  text-decoration: none;
  /*color: inherit;*/
}