html,body,div,li,ul,h1,h2,h3,h4,h5,h6,p{
  margin: 0;
  padding: 0;
  list-style: none;
}
[v-cloak] {
  display: none;
}
main{
  min-height: 800px;
}
.a{
  text-shadow: 1px 1px 2px #b4b4b4;
}
.a:hover{
  padding-bottom: 4px;
  border-bottom: 4px solid #355e93;
}
a{
  text-decoration: none;
  color: #eee;
}
header{
  background: linear-gradient(180deg,#15263B,  rgb(8, 6, 6) );
}
header{
  height: 70px;
  background-color: #15263B;
}
header .pc{
  height: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .pc .search{
  /* width: 40%; */
  column-gap: 40px;
  align-items: center;
  text-align: center;
  font-weight: 700;
  display: flex;
}
header .pc .search img{
  width: 20px;
  height: 20px;
}
header .pc .search .classifys{
  width: 720px;
  display: grid;
  grid-template-columns: repeat(6,120px);
}
header .pc .search .input{
  width: 720px;
  display: flex;
  align-items: center;
  background-color: #222222;
  height: 40px;
  border: 1px solid #555 !important;
  justify-content: space-between;
}
header .pc .search .input input{
  width: 80%;
  background-color: #222222;
  outline: none;
  border: none;
  box-sizing: border-box;
  color: #fff;
  padding-left: 8px;
  font-size: 18px;
}
header .pc .search .input .img{
  width: 10%;
}
header .pc{
  position: relative;
}
header .pc .pc-top .logo{
  position: relative;
  display: flex;
  align-items: center;
}

header .pc .logo .name{
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(to right, #EC7A08, #ffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 315px;
  top: 30px;
  font-style: italic;
  line-height: 20px;
}
header .pc .logo .img img{
  width: 64px;
}
header .ios-android .logo{
  position: relative;
  display: flex;
  align-items: center;
}
header .ios-android img{
  width: 50px;
}
header .ios-android .logo .name{
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to right, #EC7A08, #ffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 54px;
  top: 20px;
  font-style: italic;
  line-height: 16px;
}





@media screen and (min-width:1200px){
  header .pc{
    display: flex
  }
  header .ios-android{
    display: none;
  }
  header .pc .logo .name{
    left: 64px;
  }
}
@media screen and (max-width:1200px){
  header .pc{
    display: none;
  }
  header .ios-android{
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding: 0 10px 0 10px;
    align-items: center;
  }
}





footer {
  width: 100%;
  background-color: #000000;
  padding-top: 20px;
}

.footer-nav {
  display: flex;
  max-width: 1130px;
  margin: 0 auto;
  color: #fff;
  padding: 5vmin;
}
.active{

}
.footer-nav .a {
  line-height: 10vmin;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer-nav .a {
    line-height:normal;
    font-size: 10px;
    padding:0 4px 0 4px
  }
  .footer-nav{
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-nav .clause{
    font-size: 12px;
    display: flex;
    justify-content: space-between;
  }
  .footer-nav span{
    font-size: 10px;
  }
  .footer-nav .their{
    font-size: 14px;
    padding: 40px 0 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    align-items: center;
    padding: 0;
}

.footer-nav a {
    padding: 0 10px;
    font-size: 13px;
}

.footer-nav .a:hover {
    color: #8ab4f8;
}
}







.loading{
  position:fixed;
  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); }
}



.nav{
  height: 100%;
  width: 100%;
  z-index: 9999999;
  display: flex;
  position:fixed;
  right: 0;
  transform: translateX(100%);
  transition: transform 300ms ease-in-out;
}
.nav .nav-content{
  height: 100%;
  max-width: 450px;
  background-color: #212121;

}
.nav.open {
  transform: translateX(0);
}
.nav .nav-content .header{
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: space-around;
  font-size: 40px;
  padding:0 20px 0 20px;
  border-bottom: 3px solid #355e93;
}
.nav .nav-content .header span{
  color: #fff;
  font-size: 45px;
  padding-left: 15px;
}
.nav .nav-content .header .input{
  width: 100%;
  height: 40px;
  display: flex;
  background-color:#383838;
}
.nav .nav-content .header .input input{
  width: 100%;
  border: none;
  background-color:#383838;
  outline: none;
  border: none;
  box-sizing: border-box;
  color: #fff;
  font-size: 20px;
}
.nav .nav-content .header .input .img{
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .nav-content .header .input .img img{
  width: 20px;
  height: 20px;
}
.nav .nav-content ul{
}
.nav .nav-content li{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #9f9f9f;
  padding: 10px 20px 0 20px;
}
.nav .nav-content li a{
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 50px;
  font-weight: 600;
}

.nav .close{
  flex-grow: 1;
  background-color: #212121;
  opacity: 0.5;
}