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: 15vmin;
    background: repeating-linear-gradient(
      45deg,
      #333333,
      #000 20%,
      #555 50%
    );
  }
  a{
  color: inherit;
  }
  body,html{
    margin: 0;
    padding: 0;
  }
  .header{
    width: 100%;
    height: 80px;
    background-color: #232323;
  }
  .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;
  }
  .header .pc .type .img a {
    display: flex;
    align-items: center;
  }
  .header .pc .type .img img{
    width: 50px;
  }
  .header .pc .type .img span{
    color: #669934;
    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{
    border-bottom: 5px solid #2aa2e1;
  }
  .header .ios-android{
    display: none;
  }
 
  .header .ios-android .classify{
    display: flex;
    align-items: center;
  }
  .header .ios-android .classify img{
    width: 9vmin;
  }
  
  .main{
    /* position: relative; */
    min-height: 1000px;
  }
  .content{
    /* position: relative; */
    /* height: 100%; */
  }
  .active{
    /* background-color: #6dbdd6; */
    border-bottom: 5px solid #2aa2e1;
  }
  
  
  .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: 46px;
    }
    .header .ios-android .search{
      display: flex;
      align-items: center;
      
    }
    .header .ios-android .search img{
      width: 30px;
      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 .active{
  background-color: #6dbdd6;
  border: none;

}
.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;
}



.popup{
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, 0.4);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .popup-box{
  /* background-color: #2aa2e1; */
  position: fixed;
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.popup .popup-box .del{
  position: absolute;
  right: -10px;
  top: -50px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.popup .popup-box .del:hover{
  color: #e59292;
}
.popup .popup-box .content{
  background-color: #fff;
  width: 600px;
  height: 400px;
  border-radius: 20px;
  border: #e59292 solid 1px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.popup .popup-box .content .content-top{
  width: 100%;
  height: 50%;
  background-color: #FFF4F2;
  border-radius: 20px 20px 0 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.popup .popup-box .content .content-top .tine{
  display: block;
  position: absolute;
  background-color: #FFF4F2;
  bottom: -30px;
  width: 0;
  height: 0;
  border-top: 50px solid #FFF4F2;
  border-left: 299px solid #fff;
  border-right: 299px solid #fff;
}
.popup .popup-box .content .content-top h3{
  padding: 0;
  margin: 0;
  text-align: center;
  color: #F69F93;
  font-size: 28px;
  padding-top: 40px;
}
.popup .popup-box .content .content-top p{
  padding: 0 60px 0 60px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
}
.popup .popup-box .content .content-bottom{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.popup .popup-box .content .content-bottom .input{
  display: flex;
  height: 60px;
  width: 400px;
  background-color: #fff;
  border: 0.5px solid #a2a2a2;
  border-radius: 8px;
}
.popup .popup-box .content .content-bottom .input input{
  border: none; /* 去除边框 */
  outline: none; /* 去除聚焦时的轮廓 */
  background: transparent; /* 背景透明 */
  padding: 0; /* 去除内边距 */
  margin: 0;
  height: 60px;
  width: 90%;
  font-size: 22px;
  padding-left: 10px;
  color: #333333;
}
.popup .popup-box .content .content-bottom .input div{
  width: 80px;
  line-height: 60px;
  background-color: #F69F93;
  border-radius: 0 8px 8px 0;
  color: #fff;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}
.popup .popup-box .content .content-bottom .terms{
  color: #333333;
  font-size: 14px;
}
.popup .popup-box .content .content-bottom .terms a{
  text-decoration: underline;
}
.popup .popup-box .content .content-bottom .terms a:hover{
  color: #e59292;
}




@media screen and (max-width:640px){
  .popup .popup-box{
    width: 90vw;
    height: 70%;
  }
  .popup .popup-box .content .content-top .tine{
    border-top: 40px solid #FFF4F2;
    border-left: 45vw solid #fff;
    border-right: 45vw solid #fff;
  }
  .popup .popup-box .content .content-bottom .input{
    width: 80%;
  }
  .popup .popup-box .content .content-top p{
    font-size: 14px;
    line-height: 26px;
  }
  .popup .popup-box .content .content-top h3{
    font-size: 20px;
  }
  .popup .popup-box .content .content-bottom .input{
    height: 40px;
  }
  .popup .popup-box .content .content-bottom .input input{
    font-size: 16px;
    height: 40px;
  }
  .popup .popup-box .content .content-bottom .input div{
    font-size: 16px;
    line-height: 40px;
  }
  .popup .popup-box .content .content-bottom .terms{
    font-size: 10px;
  }
  .popup .popup-box .del{
    top: -20px;
    right: 0;
  }
}




.tooltip{
  position: fixed;
  height: 40px;
  right: 50%;
  top: 40px;
  background-color: #F0F9EB;
  color: #86CF62;
  line-height: 40px;
  padding: 0 10px 0 10px;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  width: auto;
}
.tooltip p{
  width: 150px;
  line-height: 40px;
  padding: 0;
  margin: 0;
}
.tooltip .error{
  color: #888787;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.tooltip .img{
  width: 18px;
  height: 18px;
  margin-right: 4px;
}


