html,body{
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color:#eeecec
}
div{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
  outline: none;
  color:#000;
}




.header {
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #232323;
}
a{
color: inherit;
}
body,html{
  margin: 0;
  padding: 0;
}
.header .pc{
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 60px;
  align-items: center;
}
.header .pc .item:nth-child(1){
  grid-row: 1/ span 1;
  grid-column: 1/ span 2;
}
.header .pc .item:nth-child(2){
  grid-row: 1/ span 1;
  grid-column: 3/ span 1;
}
.header .pc .type{
  height: 100%;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  justify-content: space-between;
}
.header .pc .type .img a{
  display: flex;
  align-items: center;
}
.header .pc .type .img img{
  width: 40px;
}
.header .pc .type .img span{
  color: #eeecec;
  margin-left: 4px;
  font-weight: 600;
  font-size: 18px;

}
.header .pc .type ul{
  width: 70%;
  margin: 0;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}
.header .pc .type ul li{
  height: 100%;
  list-style: none;
}
.header .pc .type ul li a{
  font-size: 14px;
  font-weight: 700;
  display: block;
  height: 100%;
  color: #fff;
  text-decoration: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .pc .type ul li:hover{
  background-color: #6dbdd6;
}
.header .ios-android{
  display: none;
}
.header .ios-android .classify{
  display: flex;
  align-items: center;
}
.header .ios-android .classify img{
  width: 40px;
}

.main{
  width: 100%;
  /* position: relative; */
}

.active{
  background-color: #6dbdd6;
}


.loading{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





@media screen and (max-width:1450px) {
  .header .pc .type{
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width:1300px) {
  .header .pc .type{
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width:1200px) {
  .header .pc .type{
    padding: 0;
  }
}
@media screen and (max-width:950px){
  .header{
    background-size: 6vmin;
  }
  .header .pc{
    display: none;
  }
  .header .ios-android{
    padding: 0 20px 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .header .ios-android a{
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
  }
  .header .ios-android a img{
    width: 40px;
  }
  .header .ios-android .search{
    display: flex;
    align-items: center;
    
  }
  .header .ios-android .search img{
    width: 40px;
    height: auto;
  }
}







.drawer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  animation: slideFromRight 0.6s ease;
  z-index: 1111;
  background-color:rgba(000,000,000,.5);
}

.classify_ios {
  background-color: #fff;
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.classify_ios a{
  margin-left: 10px;
  padding: 14px 20px 14px 20px;
  width: 70%;
  border-radius: 30px;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: center;
}
.classify_ios a span{
  padding-left: 10px;
}
.classify_ios a img{
  width: 30px;
  height: 30px;
}
.classify_ios h3{
  padding: 10px 0 10px 0;
  margin-left: 20px;
  color: #fff;
  font-size: 14px;
}

.nav {
  position: fixed;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 50vmin;
  z-index: 2000;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 300ms ease-in-out;
}

.nav.open {
  transform: translateX(0);
}

.nav-mask {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .8);
  z-index: 1999;
}

.nav ul{
margin: 0;
padding: 0;
}
.nav ul li{
list-style: none;
padding: 20px;
}
