@media screen and (min-width: 1024px) {
  /* 在大于等于1024像素的屏幕上应用以下样式 */
  body {
    font-size: 14px;
  }
  #content-box {
    width: 1024px !important;
    margin: 0 auto;
    position: relative;
  }
}

#content-box {
  width: 100%;
  min-height: 100%;
  position: relative;
}
#nav-box {
  width: 100%;
  min-height: 60px;
  background:#fff;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 5px 1px #333;
}
.nav-box-logo {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.nav-box-title {
  object-fit: fill;
  margin: 0 auto;
  height:100%;
  max-width: 1024px;
}
/* 内容区域 */
.main-box {
  width: 100%;
  padding-top: 60px;
  background-color: #fff;
}
.img-box {
  width: 100%;
  /*min-height: 455px;*/
}

/* 表单区域 */
.form-box {
  width: 100%;
  min-height: 472px;
  margin-top: 10px;
  background-color: rgb(255, 245, 223);
  padding: 16px;
  box-sizing: border-box;
}
.form-box-c0 {
  width: 100%;
  padding: 10px 10px;
  box-sizing: border-box;
}
.input-sty {
  height: 40px;
  margin-bottom: 10px;
  border: 1px solid #999;
  border-radius: 5px;
  padding: 0 10px;
  background: rgba(0,0,0,0);
}
.textarea-sty {
  min-height: 56px;
  padding: 10px 10px;
  border-radius: 5px;
  background: rgba(0,0,0,0);
  font-size: 14px;
}
.submit-sty {
  height: 36px;
  border-radius: 5px;
  background-color: #FCCC10;
  border:none;
  color: #fff;
  cursor: pointer;
  letter-spacing: 1.25;

}

.footer-box {
  padding: 16px;
  box-sizing: border-box;
  min-height: 119px;
}

.footer-box-c1 {
  color: rgb(158, 158, 158);
  font-family:Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 20px;
}

#tips-box {
  width: 100%;
  background-color:#FBDEE0;
  padding: 10px 0;
  position: fixed;
  left: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  user-select: none;
}

#submit-box {
  width: 100%;
  height: 400px;
  background: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  box-shadow:0 -2px 10px 5px #aaa;
  display: none;
  flex-direction: column;
  align-items: center;
}
.submit-box-c0 {
  width: 100%;
  object-fit: contain;
  /* border: 1px solid #333; */
}
.submit-box-c1 {
  width: 200px;
  height: 35px;
  border: none;
  border-radius: 50px;
  background: #089de7;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
}

