/************************************************************
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示                                  **
************************************************************/

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  height: 100vh;
}

* {
  box-sizing: border-box;
  flex-shrink: 0;
}
a{
  text-decoration: none;
}
.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}
input:focus, textarea:focus{
  outline: none;
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: white;
}
input::-moz-placeholder,textarea::-moz-placeholder { /* Firefox 19+ */
  color: white;
}
input:-ms-input-placeholder,textarea:-ms-input-placeholder { /* IE 10+ */
  color: white;
}
input:-moz-placeholder,textarea:-moz-placeholder { /* Firefox 18- */
  color: white;
}

.connect{
  padding: 3.81rem 26.81rem 6.06rem;
  background-color: #0800ff;
}
.connectTop{
  padding: 1.81rem 0;
}
.connectName{
  flex: 1 1 32.19rem;
  background-color: #0800ff;
  height: 4.75rem;
  border: solid 0.13rem #ffffff;
}
.connectPhone{
  flex: 1 1 32.19rem;
  background-color: #0800ff;
  height: 4.75rem;
  border: solid 0.13rem #ffffff;
  margin-left: 1.88rem;
}
.connectInput{
  color: #ffffff;
  font-size: 1.25rem;
  font-family: 'Asap';
  font-weight: 700;
  line-height: 4.49rem;
  width: 100%;
  height: 4.49rem;
  background: inherit;
  border: none;
  padding-left: 2rem;
  font-style: italic;
}
.connectAddress{
  background-color: #0800ff;
  border: solid 0.13rem #ffffff;
}
.connectTextarea{
  color: #ffffff;
  font-size: 1.25rem;
  font-family: 'Asap';
  font-weight: 700;
  line-height: 1.44rem;
  padding: 2rem 2rem;
  width: 100%;
  background: inherit;
  border: none;
  height: 20rem;
  font-style: italic;
}
.connectBtn{
  align-self: center;
  width: 18.25rem;
  height: 3.88rem;
  cursor: pointer;
  margin-top: 3.06rem;
}