.market-banner{
  width: 100%;
  height: 200px;
  background: url(../images/market/banner.jpg) no-repeat center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.market-banner h2{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.market-banner p{
  font-size: 20px;
}

.applications{
  width: 100%;
  background-color: #F5F5F5;
}

.action-btns{
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action-btns-left{
  display: flex;
}

.action-btns-left>a{
  height: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #e1e4e5;
  color: #666;
  font-size: 14px;
  padding: 0 16px;
  margin-right: 8px;
  cursor: pointer;
  white-space:nowrap
}

.action-btns-left>a.current{
  color: #fff;
  border: none;
  background-color: #2C89FF;
}

.serach-input{
  width: 220px;
  height: 36px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #e1e4e5;
}

.serach-input>i{
  width: 20px;
  height: 20px;
  display: flex;
  background: url(../images/market/search.png) no-repeat center;
  background-size: 20px;
}

.list-items{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list-items>.list-item{
  width: 49%;
  height: 180px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.list-items>.list-item>img{
  width: 180px;
  height: 100%;
}

.list-item-content{
  width: calc(100% - 200px);
  justify-content: flex-end;
}

.list-item-content>h3{
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.list-item-content>p{
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}

.list-item-content>span>img{
  width: 20px;
  height: 20px;
}

.list-item-content>.download-number{
  border-top: 1px dashed #e1e4e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.list-item-content>.download-number>span{
  font-size: 14px;
  color: #666;
}

.list-item-content>.download-number>a{
  display: flex;
  height: 30px;
  padding: 0 16px;
  color: #2C89FF;
  background-color: #ECF2FA;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

@media screen and (max-width:1024px) {
  .container{
    width: 100%;
    padding: 1rem;
  }
  .market-banner{
    background-size: cover;
  }
  .list-items>.list-item{
    width: 100%;
    height: 180px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items:flex-start
  }

  .list-items>.list-item>img{
    width: 30%;
    height: auto;
  }
  
  .list-item-content{
    width: calc(100% - 34%);
    justify-content: flex-end;
  }
  .action-btns-right{
    display: none;
  }
  .action-btns-left{
    display: -webkit-box;
    overflow-x: scroll;
    padding-bottom: .5rem;
  }
  ::-webkit-scrollbar { 
    height: 2px !important;  
}

/*定义滚动条轨道 内阴影+圆角*/  
.action-btns-left::-webkit-scrollbar-track  
{  
    background-color: #FBD3D3;  
}  
  
/*定义滑块 内阴影+圆角*/  
.action-btns-left::-webkit-scrollbar-thumb  
{  
    background-color: #2C89FF;  
}
}