.listbanner {
  background: linear-gradient(134deg, #40A6F4 0%, #7C73FC 100%);
  box-shadow: 0px 4px 8px rgba(221, 221, 221, 0.1);
}

.listbanner2 {
  box-shadow: 0px 4px 8px rgba(221, 221, 221, 0.1);
}
.width-1 {
  width: 23%;
}

.width-2 {
  width: 14.3%;
}

.width-3 {
  width: 44.7%;
}

.width-4 {
  width: 25%;
}

.listbox {
  background: #F1F8FF;
  margin-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
}

.listbox2 {
  background: #F1F8FF;
  margin-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
}

.listbox3 {
  background: #F1F8FF;
}

.listbox3 p {
  overflow: hidden;
  width: 500px;
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wordlistbtn{
width: 240px;
height: 60px;
background: #F1F8FF;
border-radius: 12px;
font-size: 1.25rem;
font-family: Source Han Sans CN;
font-weight: 400;
line-height: 3.75rem;
color: #4097F4;
text-align: center;
font-weight: 600;
}



@media (max-width:500px) {
  .listbox {
    background: #F1F8FF;
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 0px;
    border-radius: 8px;
  }

  .listbox2 {
    background: #F1F8FF;
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 0px;
    border-radius: 8px;
  }

  .listbox3 p {
    width: 300px;
  }

  .width-1 {
    width: 20%;
  }

  .width-2 {
    width: 30%;
  }

  .width-3 {
    width: 100%;
  }

  .width-4 {
    width: 40%;
  }

  .wordlistbtn{
    width: 150px;
    height: 40px;
    background: #F1F8FF;
    border-radius: 8px;
    font-size: 1rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    line-height: 2.5rem;
    color: #4097F4;
    text-align: center;
    font-weight: 600;
  }

}

@media (min-width:500px) {
  .width-5 {
    width: 30%;
  }

  .width-6 {
    width: 30%;
  }

  .width-7 {
    width: 40%;
    padding-left: 102px;
  }
}

.searchbox{
  max-width: 1200px;
  height: 52px;
  background: #fff;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  cursor: pointer;
}

.searchin{
  width: 35%;
  display: flex;
  align-items: center;
  margin-left: 25%;
}

.searchin img{
  display: block;
  height: 30px;
  cursor: pointer;
}

.searchin input{
  border: none;
  outline: none;
  width: 100%;
  margin-left: 14px;
  font-size: 20px;
}

.typechange{
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 24px;
}

.typeitem{
  width: 149px;
  height: 52px;
  background: #fff;
  font-size: 20px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  line-height: 22px;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.typeitem.active{
  background: #4097F4;
  color: #fff;
  position: relative;
}

.typeitem.active::before{
  content: '';
  width: 0;
  height: 0;
  /* border: 10px 20px solid; */
  border-top: 10px  solid;
  border-left: 15px solid;
  border-right: 15px solid;
  border-color: #4097F4 transparent transparent transparent; 
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

@media (max-width:1200px) {
  .typeitem{
    font-size: 14px;
  }
}