html,body{
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
body{
  background-color:#313fa0;
}
div,a,p,ul,li{
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  color: #000;
}
#app,.main{
  height: 100%;
  width: 100%;
}
#app{
  height: auto;
}
.header{
  height: 80px;
  width: 100%;
  background-color: #2184e2;
}
.header .header-box{
  height: 80px;
  max-width: 1440px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-box .img img{
  height: 52px;
  width: 100%;
}
.header .header-box .header-content{
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-box .header-content a{
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 0 29px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all .3s;
  font-size: 18px;
}
.header .header-box .header-content a:hover{
  background-color: #313fa0;
}
.header .header-box .search_box{
  padding: 20px;
}
.header .header-box .search_box .search_input{
  width: 240px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding:0 0 0 10px;
}
.header .header-box .search_box input{
  width: 200px;
  outline:none;
  border:0px; 
  font-size: 16px;
  display: inline-block;
  vertical-align:middle;
}
.header .header-box .search_box .search_input img{
  width: 24px;
  height: 24px;
}
.header .header-box .ios-s-c{
  display: none;
}

.ios-search-box{
  box-shadow: 0px -1px 1px rgba(0, 0, 0, .25);
  width: 100%;
  background: #2184e2;
}
.ios-search-box .search_box{
  padding: 20px;
}
.ios-search-box .search_box .search_input{
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
}
.ios-search-box .search_box input{
  outline:none;
  border:0px; 
  font-size: 16px;
  display: inline-block;
  vertical-align:middle;
  width: 90%;
  background-color: #2184e2;
  color: #fff;
}
.ios-search-box .search_box .search_input img{
  width: 24px;
  height: 24px;
}

.ios-classify-box{
  box-shadow: 0px -1px 1px rgba(0, 0, 0, .25);
  width: 100%;
  background: #2184e2;
}
.ios-classify-box .category ul{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap:0.2rem;
  justify-content: center;
  z-index: 999;
}
.ios-classify-box .category ul a{
  width: 100%;
  background-color:#2184E2;
  box-shadow: 0 7px 21px 0 hsla(0,0%,4%,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-color:transparent;
}
.ios-classify-box .category ul a img{
  width: 80px;
  border-radius: 10px 0 0 10px;
  border: 2px solid #fff;
  border:transparent;
}
.ios-classify-box .category ul a span{
  padding-left: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

/*  */
.dropdown {
  position: relative;
  display: inline-block;
  height: 80px;
  padding: 0 15px;
  cursor: pointer;
}
.dropdown .pull{
  height: 80px;
  display: flex;
  align-items: center;
}
.dropdown .pull img{
  width: 16px;
  height: 16px;
}
.dropdown .pull .isPullDown{
  display: block;
}
.dropdown .pull .isPullUp{
  display: none;
}
.dropdown:hover .pull>.isPullDown{
  display: none;
}
.dropdown:hover .pull>.isPullUp{
  display: block;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  background-color: #fff;
  padding: 0 15px;
  border-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, .1);
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  border: 2px solid #2184e2;
  padding: 10px 20px;
  white-space: nowrap;
  transition: all .3s;
  color: #2184e2 !important;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}
.dropdown-content a span{
  display: block;
  font-weight: 700;
  padding: 8px;
}
.dropdown-content a:hover{
  background-color: #2184e2 !important;
  color: #fff !important;
}
@media screen and (max-width:1200px) {
  .header .header-box .header-content a{
    font-size: 12px;
  }
  .header .header-box .img img{
    width: 150px;
    height:auto;
  }
}
@media screen and (max-width:1080px){
  .header .header-box .search_box{
    display: none;
  }
  .header .header-box .ios-s-c{
    display: flex;
  }
  .header .header-box .ios-s-c .search-ios{
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .header .header-box .ios-s-c .search-ios img{
    width: 40px;
    height: 40px;
  }
  .header .header-box .ios-s-c .classify-ios{
    display: none;
  }
}
@media screen and (max-width:830px){
  .header .header-box .header-content{
    display: none;
  }
  .header .header-box .search_box{
    display: none;
  }
  .header .header-box .ios-s-c .classify-ios{
    display: block;
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .header .header-box .ios-s-c .classify-ios img{
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width:768px){
  .header .header-box .header-content{
    display: none;
  }
  .header .header-box .search_box{
    display: none;
  }
  .header{
    height: 48px;
  }
  .header .header-box{
    height: 48px;
  }
  .header .header-box .img img{
    width: 158px;
    height: auto;
  }
  .header .header-box .ios-s-c{
    display: flex;
  }
  .header .header-box .search-ios{
    padding: 8px;
  }
  
  .header .header-box .search-ios img{
    width: 26px;
    height: 26px;
  }
  .header .header-box .classify-ios{
    padding: 8px;
  }
  .header .header-box .classify-ios img{
    width: 26px;
    height: 26px;
  }
}


.footer{
  margin-top: 60px;
  height: 60px;
  background-color: #fff;
}
.footer .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.footer .container a{
  width: 25%;
  text-align: center;
  line-height: 60px;
  color: #092644;
  font-size: 1em;
  position: relative;
  transition: all .3s;
  font-size: 12px;
}
.footer .container a:hover{
  color: #2184E2;
}
.footer .container a+a::before{
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  left: 0;
  top: 20px;
  background-color: #ddd;
}
@media screen and (max-width:768px){
  .footer .container{
    margin: 0;
    width: 100%;
  }
  .footer .container a{
    font-size: 8px;
  }
  
}