@charset "utf-8";

/* CSS Document */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'NewYork';
  src: url('../font/NewYork.ttf') format('truetype');
}
 
fieldset,
img {
  border: 0;
  display: block;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

em {
  font-style: normal;
}

input,
button,
select,
textarea {
  outline: none;
  border: 0;
}

textarea {
  resize: none;
}

body {
  background-color: #FFFFFF;
  font-family: Poppins;
  
}
a {
  text-decoration: none; /*  */
  color: inherit; /*  */
}
input {
  border: none; /*  */
  outline: none; /* （）*/
  background: none; /*  */
  padding: 0; /*  */
  margin: 0; /*  */
  font-family: inherit; /*  */
}


/* header */
.header{
  width: 100%;
  height: 2.46rem;
  background: rgba(21, 20, 20, 0.4);
  padding:0 1.44rem;
  position: fixed;
  top: 0;
  z-index: 999;
}
.header .header-inner{
  width: 100%;
  height: 2.46rem;
  display: flex;
  align-items: center;
 
}
.header .header-inner .logo{
  width: 5.36rem; 
  height: 1.8rem;
  background: url('./../images/logo.png') no-repeat ;
  background-size: 100% 100%; 
  margin-right:0.24rem;
}
.header .header-inner .menu-list{
  display: flex;
  align-items: center;
  font-family: Poppins-SemiBold;
  font-weight: 600;
  font-size: 0.3rem;
  color: #FFFFFF;
}
.header .header-inner .menu-list li{
  height: 2.46rem;
  padding:0.3rem ;
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
}
.header .header-inner .menu-list .is-active{
  background:#6400CD ;
}
/* .main{
  padding-top: 2.46rem;
} */
/* footer */
.footer {
  color: white;
  position: relative;
  padding-top: 17%;
  /* padding-top: 2.4rem; */
}

.hero-footer {
  position: absolute;
  top: 0;
  left: 10%;
  width:80%;
  margin: 0 auto;
  background-color: #6400CD;
  color: white;
  padding: 2.06rem 2.28rem 0.6rem;
  
}

.hero-text h1 {
  font-family: Poppins-Black;
  font-weight: 900;
  font-size: 1.2rem;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-align: left;
  }

.btn {
  width: 3.98rem;
  height: 1.46rem;
  background: #1B1717;
  text-align: center;
  line-height: 1.46rem;
  font-family: Poppins-SemiBold;
  font-weight: 600;
  font-size: 0.3rem;
  color: #FFFFFF;
  display: block;
}


.footer-container {
  padding: 0px 1.18rem 1.02rem;
  padding-top: 6.42rem;
  background-color: #222;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* logo */
.footer-logo {
  flex: 1 0 0;
  display: flex;
  align-items: center;
}

.footer-logo .footer-compty{
  width: 5.36rem;
  height: 1.8rem;
   background: url('./../images/logo.png') no-repeat ;
  background-size: 100% 100%; 
  margin-bottom: 0.5rem;
}
.footer-logo p{
  font-weight: 400;
  font-size: 0.45rem;
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 0.34rem;
}
.footer-logo .googleBtn{
  width: 3.68rem;
  height: 1.1rem;
}

/*  */
.footer-nav {
  flex: 1 0 0;
  margin-left: 0.4rem;
}

.footer-nav h3 {
  font-family: Poppins-Black;
  font-weight: 900;
  font-size: 0.5rem;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-align: left;
  margin-bottom: 0.32rem;
}
.footer-nav-list{
  display: flex;
}
.footer-nav .footer-nav-list ul{
  margin-right: 0.8rem;
}
.footer-nav .footer-nav-list ul li {
  /* width: 3.5rem; */
  height: 0.52rem;
  margin-bottom: 0.3rem;
}
.footer-nav .footer-nav-list ul li {
  background: url('../images/footer-right.png') no-repeat left center;
  background-size:0.2rem ;
  padding-left: 0.4rem;
  display: flex;
  align-items: center;
}
.footer-nav .footer-nav-list ul li a{
  font-weight: 400;
  font-size: 0.34rem;
  color: #FFFFFF;
}
 
.footer-nav ul li a:hover {
  color: #6400CD;
}


.footer-contact {
  flex: 1 0 0;

  margin-left: 0.4rem;
}

.footer-contact h3 {
  font-family: Poppins-Black;
  font-weight: 900;
  font-size: 0.5rem;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-align: left;
  margin-bottom: 0.64rem;
}

.footer-contact p {
  font-weight: 400;
  font-size: 0.34rem;
  color: #FFFFFF;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}
.footer-contact p img{
  width: 0.4rem;
  height: 0.46rem;
  margin-right: 0.2rem;
}

@keyframes fadeInFromBottom {
  0% {
      opacity: 0;
      transform: translateY(100%);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
/*  */
@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/*  */
@keyframes slideRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}