.red {
  color: var(--main-color);
}

.shopActive {
  display: none;
}

.sortBox .sortList {
  border: #DFDFDF 1px solid;
  background: #FFFFFF;
}

.sortBox .sortList .item {}

.sortBox .sortList .item {
  display: flex;
  justify-content: flex-start;
}

.sortBox .sortList .item .grey {
  width: fit-content;
  padding: 0px 20px;
  color: #333333;
  font-size: 14px;
  background: #F7F7F7;
  border-right: 1px solid #DFDFDF;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 60px;
}

.sortBox .sortList .item .list {
  width: calc(100% - 120px);
  padding: 0 40px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 12px 0;
  line-height: 36px;
  flex: 1;
}

.sortBox .sortList .item .list a {
  /* margin: 30px 0; */
  margin-right: 20px;
  display: inline-block;
}

.sortBox .sortList .item .list a.active {
  color: var(--main-color);
  /*border: 1px solid var(--main-color);*/
}

.sortBox .sortList .item .list img {
  width: auto;
  cursor: pointer;
  height: 38px;
  padding: 10px;
}

.sortBox .sortList .item .list span {
  cursor: pointer;
  margin-right: 40px;
  color: #333333;
  font-size: 14px;
}

.sortBox .sortList .item .list span:hover {
  color: var(--main-color);
}


.shopContent {
  margin-top: 30px;
}

.shopContent .shopList .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  background: #FFFFFF;
  border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
}

.shopContent .shopList .item:not(:last-child) {
  margin-bottom: 20px;
}

.shopContent .shopList .item .left {
  width: calc(100% - 900px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.shopContent .shopList .item .left .logo {
  width: 200px;
  height: 100px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.shopContent .shopList .item .left .logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.shopContent .shopList .item .left .content {
  width: 100%;
}

.shopContent .shopList .item .left .content .company {
  font-size: 18px;
  font-weight: bolder;
  color: #333333;
  line-height: 32px;
  display: flex;
  align-items: center;
}

.shopContent .shopList .item .left .content .company a:hover {
  color: var(--main-color);
}

.shopContent .shopList .item .left .content .company div:last-child {
  color: #666;
  font-size: 16px;
  line-height: 32px;
}

.shopContent .shopList .item .left .content .company a {
  margin-right: 10px;
}

.shopContent .shopList .item .left .content .company img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.shopContent .shopList .item .right {
  width: 900px;
  display: flex;
  /* justify-content: flex-end; */
  justify-content:flex-start;
}

.shopContent .shopList .item .right .items {
  width: 205px;
  /* padding: 10px; */
  margin-left: 20px;
  margin: 0;
  margin-right: 10px;
}

.shopContent .shopList .item .right .items:last-child {
  margin: 0;
}

.shopContent .shopList .item .right .items>a>div:first-child {
  width: 205px;
  overflow: hidden;
  height: 205px;
  border-radius: 5px;
}

.shopContent .shopList .item .right .items img {
  width: 205px;
  height: 205px;
  margin: 0 auto;
  overflow: hidden;
}

.shopContent .shopList .item .right .items .title {
  font-weight: 400;
  color: #333333;
  line-height: 21px;
  font-size: 14px;
  margin-top: 10px;
}

.shopContent .shopList .item .right .items a {
  position: relative;
  display: block;
}

.shopContent .shopList .item .right .items .posttion .moeny {
  font-size: 14px;
  color: #BF0022;
  padding: 10px 0;
  font-weight: bold;
  line-height: 21px;
}

.shopContent .shopList .item .right .items .posttion {
  /* background: #ff0; */
  border-radius: 0px 0px 5px 5px;
  background: rgba(255, 255, 255, 0.63);
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  /* padding-bottom: 22px; */
  position: true;
  display: none;
}

.shopContent .shopList .item .right .items:hover .posttion {
  display: block;
}

.shopContent .shopList .item .right .items .posttion .title {
  padding-top: 8px;
  line-height: 21px;
  color: #333333;
  font-weight: 400;
  font-size: 14px;
}

.shopContent .shopList .item .right .items .posttion .moneny {
  color: var(--main-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 21px;
  font-size: 14px;
}

.shopContent .shopList .item .left .content .shopType {
  color: #999999;
  font-size: 14px;
  line-height: 28px;
  padding-top: 15px;
}

.shopContent .shopList .item .left .content .shopType span {
  color: #333333;
}

.shopContent .shopList .item .left .content .todetail {
  width: 223px;
  line-height: 40px;
  border: 1px solid var(--main-color);
  text-align: center;
  height: 40px;
  color: var(--main-color);
  margin-top: 10px;
  cursor: pointer;
}
.shopContent .shopList .item .left .content .todetail a {
  display: block;
}