/* ------------------------------------------
 * IT书包
 * 网址：www.itshubao.com
 * 整理：yinq<3331653644@qq.com> 
 -------------------------------------------- */
.light-grey{ color:#999;}
.mid-grey{ color:#505050;}
.dark-grey{ color:#141414;}
.main-red:{color:#fe044b;}
.main-blue{ color:#00fcfa;}
.dark-blue{ color:#0f424a;}


* {
  margin:0;
  padding:0;
  outline:none;
  list-style:none;
  text-decoration:none;
  box-sizing:border-box;
  color:#000;
  background: transparent;
  border:none;
}

body {
  background: #fff;
  position: relative;
  font-family: 'Microsoft YaHei', sans-serif;
  font-weight: 500;
}

.wireframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.chat-wrap {
  position: fixed;
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: 0px;
  z-index: 2;
  cursor: pointer;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
}

.chat-wrap.active {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
}

.contact-icon img {
  position: absolute;
  top: 0;left: 0;right: 0;bottom: 0;
  margin: auto;
}

.contact-icon div {
  height: 40px;
  width: 180px;
  overflow: hidden;
  position: absolute;
  left: -130px;
  z-index: 2;
  top: 20px;
}

.contact-icon div span {
  color: #fff;
  font-size: 14px;
  text-align: center;
  position: absolute;
  left: 0;
  height: 40px;
  line-height: 40px;
  background: #fe044b;
  width: 145px;
  left: 145px;
  opacity: 0;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
}

.contact-icon div:after {
  font-size: 30px;
  background: #fe044b;
  text-align: center;
  color: #fff;
  content: "...";
  display: block;
  width: 40px;
  line-height: 25px;
  height: 40px;
  border-radius: 4px;
  position: absolute;
  right: 0;
}

.chat-wrap:hover .contact-icon span {
  display: block;
  left: -2px;
  opacity: 1;
}

.contactme {
  height: 50px;
  width: 70px;
  background: #fff;
  position: fixed;
  top:0;left:0;right: 0;bottom: 0;
  margin: auto;
  z-index: 10;
  border-radius:50%;
  box-shadow: 0 10px 40px rgba(22,20,19,0.2);
  transform:translateY(-70vh);
  -webkit-transform:translateY(-70vh);
  -moz-transform:translateY(-70vh);
  transition:0.3s all ease-out 0.1s, transform 0.2s ease-in;
  -webkit-transition:0.3s all ease-out 0.1s, transform 0.2s ease-in;
  -moz-transition:0.3s all ease-out 0.1s, transform 0.2s ease-in;
}

.contactme p {
  font-family: 'Microsoft YaHei';
  color: #fe044b;
  font-size: 36px;
  margin-top: 50px;
  font-weight:600;
  text-align: center;
}

.contactme img {
  position: absolute;
  left: 0;
  top: -100px;
  right: 0;
  margin: auto;
}

.contactme.active {
  border-radius:10px;
  height: 560px;
  width: 400px;
  transform:translateY(0);
  -webkit-transform:translateY(0);
  -moz-transform:translateY(0);
}
.contactme div {
  width: 100%;
  opacity: 0;
  transform:scale(0);
  -webkit-transform:scale(0);
  -moz-transform:scale(0);
  transition:0.2s all ease-out 0s;
  -webkit-transition:0.2s all ease-out 0s;
  -moz-transition:0.2s all ease-out 0s;
}
.contactme.active div {
  opacity: 1;
  transform:scale(1);
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  transition:0.2s all ease-out 0.2s;
  -webkit-transition:0.2s all ease-out 0.2s;
  -moz-transition:0.2s all ease-out 0.2s;

}
#fancy-inputs {
  width: 320px;
  height: 520px;
  position: relative;
  margin: 0 auto;
}
#fancy-inputs label.input {
  float: left;
  width: 320px;
  height: 42px;
  margin: 50px 0 0 0;
  position: relative;
  clear: both;
}
#fancy-inputs label.input span {
  width: 100%;
  height: 40px;
  line-height: 40px;
  position: absolute;
  left: 0;
  cursor: text;
}
#fancy-inputs label.input span span {
  position: absolute;
  top: 0;
  z-index: 1;
  font-size: 18px;
  font-weight: 400;
  color: rgba(22,20,19,0.6);
  text-indent: 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
#fancy-inputs .inputs {
  float: left;
  width: 320px;
  height: 40px;
  padding: 0 10px;
  border: 0;
  border-bottom: 2px solid rgba(22,20,19,0.3);
  background-color: transparent;
  color: rgba(22,20,19,0.7);
  font-size: 22px;
  position: relative;
  z-index: 99;
}
#fancy-inputs textarea {
  resize:none;
  min-height: 100px;
}

#fancy-inputs .inputs:focus {
  outline: 0;
}
#fancy-inputs .inputs.white {
  background: #fff;
  color:rgba(22,20,19,0.6);
  border-bottom: 2px solid rgba(22,20,19,0.6);
}
#fancy-inputs .inputs:focus + span span {
  cursor: initial;
  position: absolute;
  top: -35px;
  color: rgba(22,20,19,0.6);
  font-size: 14px;
}
#fancy-inputs span.fixed span {
  top: -35px;
}

.btn {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
.overlay{
  z-index: 2;
  position: fixed;
  top: 0;left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14,14,14,0.9);
  display: none;
}

.cta {
  border-radius: 30px;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  background: #fe044b;
  cursor: pointer;
  color:#fff;
  height: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  font-family: 'Microsoft YaHei';
  font-size: 21px;
}
