@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

html, body{
  font-family: Archivo Black, Archivo Black;
  font-size: calc(100vw / 100);
}

body {
    width: 100%;
    height: 100%;    
}
img {
    width: 100%;
}
a {
  display: block;
}
.img{
  line-height: 0;
}
h2{
  font-size: 3rem;
  line-height: 200%;
}

.main{
  width: 60%;
  margin: 0 auto;
}

.top{
  position: relative;
}

.container{
  position: absolute;
  top:0;
  width: 100%;
  height: 100%;
  /*  */
}

header{
  position: absolute;
  top: 2.7rem;
  left: 20%;
}

section{ 
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo{
  width: 25%;
}

.icon{
  width: 28%;
  margin: 6rem auto 0;
}

.txt{
  width: 80%;
  margin: 7rem auto 0;
}

.function{
  background: rgba(239,235,246,0.9216);
  text-align: center;
  padding:4rem 0 8rem;
}

.function h1{
  color:#3D3D3D;
  font-size: 3.6rem;
}

.tip{
  color:#B07DFF;
  font-size: 1.8rem;
  font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
  margin:1.2rem 0 3.8rem;
}

.models{
  background: url(./images/bg2.png) no-repeat;
  background-size: 100% 100%;
  color:#fff;
}

.models-inner {
  padding: 2.5rem 0;
  display: flex;
}
.models-txt{
  width: 40%;
  margin-top: 2rem;
}
.models-txt h2{
  font-size: 3.2rem;
  margin-bottom: 2rem;
  white-space: nowrap;
}
.models-txt li{
  font-size: 2rem;
  margin-bottom: 1.6rem;
  list-style: none;
  white-space: nowrap;
}

.styles{
  margin-left: 1rem;
}

.models-inner .img{
  width: 60%;
}

footer{
  background: #B07DFF;  
  color:#fff;
  padding:4rem 0;
}

footer .main{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact{
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  line-height: 160%;
}
.service{
  width: 60%;
  margin-left:5rem;
}

.service a{
  background: #C59FFF;
  border-radius: 8px;
  color:#fff;
  padding: 1.2rem 0 1.2rem 1.7rem;
  font-size: 2rem;
}
.service a:first-child{
  margin-bottom: 1.6rem;
}


@media screen and (max-width: 1024px){
  .main{
    width: 90%;
  }
  header{
    left: 5%;
    top: 4rem;
  }
  .logo{
    width: 40%;
  }
  .function h1{
    font-size: 5rem;
  }
  .tip{
    font-size: 2.6rem;
  }
  .models-txt{
    margin-top: 3.5rem;
  }
  .models-txt h2{
    font-size: 4.2rem;
  }
  .models-txt li{
    font-size: 3.6rem;
  }
  .service a{
    font-size: 3.6rem;
  }
  .contact{
    font-size: 4.2rem;
  }
}