.header-img {
  width: 100%;
  height: 1.75rem;
  position: fixed;
  top: 0;
}

.header-img img {
  width: 100%;
  height: 100%;
}

.header-search {
  width: 100%;
  height: 0.4rem;
  background: #2054A7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.1rem;
  position: fixed;
  top: 1.75rem;
}

.header-search .left {
  display: flex;
  align-items: center;
}

.header-search .left img {
  width: 0.15rem;
  height: 0.15rem;
}

.header-search .left span {
  color: #fff;
  font-size: 0.13rem;
}

.header-search .right {
  width: 2.5rem;
  height: 0.25rem;
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-search .right .right-l {
  width: calc(100% - 15%);
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 0.08rem;
}

.header-search .right input {
  width: calc(100% - 0.15rem - 0.05rem);
  height: 100%;
  padding-left: 0.05rem;
  /* 移除默认边框 */
  outline: none;
  border-width: 0px;
}

.header-search .right .right-l img {
  width: 0.15rem;
  height: 0.15rem;
}

.header-search .right .right-r {
  width: 15%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.13rem;
}

.header {
  width: 100%;
  position: fixed;
  top: calc(1.75rem + 0.4rem);
}

.header .header-top {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(186, 185, 185, 0.25);
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  padding: 0 0.1rem;
  overflow: hidden;

}

.header .header-top ul {
  width: 100%;
  height: 0.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  transition: all 0s ease 0s;
}

.header .header-top ul li {
  padding: 0.1rem 0.3rem 0.1rem 0;
}

.header .header-top ul li a {
  color: #222;
  font-size: 0.15rem;
}

.header .header-top .img {
  display: flex;
  /* align-items: center; */
  padding-top: 0.1rem;
}

.header .header-top img {
  width: 0.2rem;
  height: 0.2rem;
}

.product ul {
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product ul li {
  width: 48%;
  height: 2.3rem;
  box-shadow: 0px 4px 10px 0px rgba(186, 185, 185, 0.25);
  border-radius: 4px;
  margin-bottom: 0.2rem;
}

.product ul li img {
  width: 100%;
  height: 1.5rem;
}

.product ul li .product-bt {
  padding: 0.1rem;
}

.product ul li .product-bt .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product ul li .product-bt img {
  width: 0.15rem;
  height: 0.15rem;
}

.product ul li .product-bt p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #222222;
  font-size: 0.16rem;
}

.product ul li .des {
  width: 100%;

  color: #888888;
  font-size: 0.13rem;
  font-weight: 300;
  line-height: 23px;
  padding-top: 5px;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vertical {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.domain ul li {
  height: 3rem;
}

.domain ul li .product-bt p {
  font-weight: 500;
}

.domain ul li .domain-des {
  width: 100%;
  color: #555;
  font-size: 0.13rem;
  font-weight: 300;
  line-height: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}