@font-face {
  font-family: "dinProRegular";
  src: url("../font/D-DIN-PRO-400-Regular.ttf");
}
@font-face {
  font-family: "dinProSemiBold";
  src: url("../font/D-DIN-PRO-600-SemiBold.ttf");
}
@font-face {
  font-family: "oppoSans-M";
  src: url("../font/OPPOSans-M.ttf") format("truetype");
}
@font-face {
  font-family: "alimama";
  src: url("../font/alimamashuheiti.ttf") format("truetype");
}
.rotating-db {
  animation: rotatedb 5s linear infinite;
}

@keyframes rotatedb {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.oppoSans-M {
  font-family: "oppoSans-M";
  font-weight: 500;
}
.dinProRegular {
  font-family: "dinProRegular";
}
.dinProSemiBold {
  font-family: "dinProSemiBold";
}
.alimama {
  font-family: "alimama";
}

/*搜索*/
.nav-slot {
  display: flex;
  padding: 16px 0;
  height: 60px;
}
.nav-slot .txt-box {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.nav-slot .txt-box .iconfont {
  font-size: 12px;
}
.word-wrapper {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-left: 5px;
}
.word-wrapper .word-item {
  padding: 3px 12px;
  border: 1px solid #cccccc;
  font-size: 14px;
  color: #666666;
  border-radius: 4px;
}
.word-wrapper .word-item .iconfont {
  margin-left: 3px;
  color: #adadad;
  font-size: 10px;
  cursor: pointer;
}
.word-wrapper .btns {
  width: 88px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  color: #666666;
  text-align: center;
  line-height: 26px;
  cursor: pointer;
}
.word-wrapper .btns .iconfont {
  font-size: 10px;
}
.filter-wrapper {
  background: #fff;
  border-radius: 6px;
}
.filter-wrapper .filter-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 30px;
}
.filter-wrapper .filter-box::after {
  content: " ";
  position: absolute;
  right: 0;
  left: 110px;
  bottom: 0;
  height: 1px;
  border-bottom: 1px dashed #eeeeee;
}
.filter-wrapper .filter-box :last-child:after {
  display: none;
}
.filter-wrapper .filter-box p {
  font-size: 14px;
  color: #969696;
}
.filter-wrapper .filter-box .list {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px deshed #000;
}
.filter-wrapper .filter-box .list .item {
  cursor: pointer;
  margin-right: 20px;
}
.filter-wrapper .filter-box .list .item.on {
  color: #2a7efb;
}
.select-box,
.search-box {
  margin-left: 10px;
  position: relative;
}
.search-box .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  background: #f5f7fa;
  border-left: 1px solid #dcdfe6;
  padding: 0 20px;
  height: 28px;
  line-height: 28px;
  border-radius: 0 5px 5px 0;
}
.search-box .search-btn .icon-sousuo1 {
  font-size: 14px;
  transform: rotate(45deg);
  color: #c0c4cc;
}
.check-btn {
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
}
.check-btn .checkbox {
  margin-right: 10px;
  outline: none; /*轮廓*/
  display: inline-block;
  position: relative;
  border: 1px solid #dcdfe6;
  border-radius: 2px;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  background-color: #fff;
  z-index: 1;
  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
}
.filter-wrapper .filter-box .select-item {
  position: relative;
  border: 1px solid #e5e5e5;
  width: 220px;
  padding-right: 30px;
  border-radius: 5px;
}
.filter-wrapper .filter-box .choose {
  padding: 0 5px;
  height: 28px;
  line-height: 28px;
  border: none;
  outline: none;
  width: 190px;
  border-radius: 5px;
  color: #606266;
  display: inline-block;
  font-size: 12px;
  cursor: pointer;
  position: relative;
}
.filter-wrapper .filter-box .icon-you {
  transform: rotate(90deg);
  font-size: 12px;
  position: absolute;
  right: 6px;
  top: 6px;
  color: #c0c4cc;
}
.filter-wrapper .filter-box .option {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  margin: 5px 0;
  width: 150px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
  z-index: 100;
}
.filter-wrapper .filter-box .option::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 20px;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-bottom-color: #fff;
  border-style: solid;
  border-width: 6px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
}
.filter-wrapper .filter-box ul,
.filter-wrapper .filter-box li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-wrapper .filter-box ul {
  height: 204px;
  overflow: scroll;
}
.filter-wrapper .filter-box li {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 30px 0 20px;
  height: 34px;
  line-height: 34px;
}
.filter-wrapper .filter-box li:hover {
  background: #f5f7fa;
}

.filter-wrapper .filter-box ul::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}
.filter-wrapper .filter-box ul::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #e5e5e5;
}
.filter-wrapper .filter-box ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background: #ffffff;
}
.filter-wrapper .filter-box .input {
  padding: 0 5px;
  height: 28px;
  line-height: 28px;
  width: 190px;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 12px;
}
.goods-list {
  margin-top: 20px;
}
.goods-list .left-wrapper {
  width: 1440px;
  float: left;
}
.goods-list .left-wrapper .filter-tab {
  border-radius: 6px 6px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px dashed #eeeeee;
  background: #fff;
}
.goods-list .left-wrapper .filter-tab p {
  margin-right: 20px;
  color: #969696;
}
.goods-list .left-wrapper .filter-tab .filter-item {
  display: flex;
  align-items: center;
  margin-right: 40px;
  color: #282828;
  cursor: pointer;
}
.goods-list .left-wrapper .filter-tab .iconfont-crmeb {
  font-size: 14px;
  margin-top: 4px;
  margin-left: 5px;
  color: #e2e2e2;
}
.goods-list .left-wrapper .filter-tab .filter-item.on,
.goods-list .left-wrapper .filter-tab .filter-item.on .iconfont-crmeb {
  color: #2a8aef;
}
.goods-list .left-wrapper .list {
  border-radius: 0 0 6px 6px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px 0;
  background: #fff;
}
.goods-list .left-wrapper .list .item {
  width: 217px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.goods-list .left-wrapper .list .item .img-box {
  position: relative;
  width: 190px;
  height: 190px;
}
.goods-list .left-wrapper .list .item .img-box img {
  width: 100%;
  height: 100%;
}
.goods-list .left-wrapper .list .item .img-box .tips {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 54px;
  height: 54px;
}
.goods-list .left-wrapper .list .item .info-box {
  margin-top: 8px;
}
.goods-list .left-wrapper .list .item .info-box .title {
  font-size: 15px;
}
.goods-list .left-wrapper .list .item .info-box .store {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  color: #777777;
}
.goods-list .left-wrapper .list .item .info-box .store img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  border-radius: 50%;
}
.goods-list .left-wrapper .list .item .info-box .city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #777777;
}
.goods-list .left-wrapper .list .item:hover {
  box-shadow: 0px 0px 14px rgba(0, 53, 132, 0.1);
}
.goods-list .left-wrapper .list .empty {
  width: 100%;
  padding-top: 30px;
  text-align: center;
  height: 255px;
}
.goods-list .left-wrapper .list .empty img {
  display: inline-block;
}
.goods-list .left-wrapper .list .empty p {
  margin-top: 12px;
  color: #777777;
  font-size: 14px;
}
.goods-list .left-wrapper .page-age {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
  background: #fff;
}
.goods-list .left-wrapper .page-age .total {
  margin-right: 12px;
}
.goods-list .left-wrapper .page-age ul {
  overflow: hidden;
}
.goods-list .left-wrapper .page-age ul li {
  padding: 0 4px;
  background: #fff;
  vertical-align: top;
  display: inline-block;
  font-size: 13px;
  min-width: 30px;
  border-radius: 2px;
  height: 28px;
  line-height: 28px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  margin: 0 5px;
  font-weight: bold;
}
.goods-list .left-wrapper .page-age ul li:hover {
  color: #2a8aef;
}
.goods-list .left-wrapper .page-age ul li.active {
  background-color: #2a8aef;
  color: #ffffff;
}
.goods-list .left-wrapper .page-age .btn-prev,
.goods-list .left-wrapper .page-age .btn-next {
  margin: 0 5px;
  background-color: #f4f4f5;
  color: #606266;
  min-width: 40px;
  border-radius: 2px;
  height: 28px;
  line-height: 28px;
  vertical-align: top;
  box-sizing: border-box;
  font-size: 13px;
}
.goods-list .left-wrapper .page-age .btn-prev.disabled,
.goods-list .left-wrapper .page-age .btn-next.disabled {
  color: #c0c4cc;
}
.goods-list .right-box {
  border-radius: 6px;
  float: right;
  width: 250px;
  padding-bottom: 30px;
  background: #fff;
}
.goods-list .right-box .title {
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 30px;
  font-size: 16px;
  border-bottom: 1px dashed #eeeeee;
}
.goods-list .right-box .title .iconfont-crmeb {
  margin-top: 3px;
  margin-right: 5px;
  font-size: 18px;
  color: #ffb300;
}
.goods-list .right-box .list {
  padding: 0 30px;
}
.goods-list .right-box .list .list-item {
  display: block;
  margin-top: 26px;
  cursor: pointer;
}
.goods-list .right-box .list .list-item .img-box {
  width: 190px;
  height: 190px;
}
.goods-list .right-box .list .list-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goods-list .right-box .list .list-item .info-txt {
  margin-top: 10px;
}
.right-box .list .list-item .info-txt .name {
  font-size: 15px;
}

.goods-list .right-box .list .list-item .info-txt .stroe {
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 13px;
  color: #777777;
}
.goods-list .right-box .list .list-item .info-txt .stroe img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  border-radius: 50%;
}

.crmeb-pro-price.empty-price {
  font-size: 16px;
}

.crmeb-pro-price {
  color: #e93323;
  font-size: 20px;
  font-weight: 600;
}

.crmeb-pro-price span {
  font-size: 14px;
  margin-right: 4px;
}

.crmeb-search-input:focus-visible {
  outline: none !important;
}

.crmeb-search-input {
  width: 199px;
  height: 30px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  opacity: 1;
  border: 1px solid #eeeeee;
  padding-left: 40px;
}
.crmeb-search-icon {
  position: relative;
}
.crmeb-pro-label span {
  width: 50px;
  background: #2a8aef;
  border-radius: 2px 2px 2px 2px;
  font-size: 12px;
  color: #ffffff;
  padding: 3px 4px;
}
.crmeb-search-icon:before {
  content: "\e64c";
  width: 10px;
  height: 10px;
  display: block;
  top: 25%;
  left: 13px;
  position: absolute;
  color: #777777;
}

.crmeb-item {
  width: 220px;
  margin-right: 16px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.crmeb-item:nth-of-type(6n){
  margin-right: 0;
}
.crmeb-item:hover {
  box-shadow: 0px 0px 14px rgba(0, 53, 132, 0.1);
}
.crmeb-item .img-box img {
  width: 220px;
  height: 220px;
  cursor: pointer;
  margin-bottom: 16px;
  overflow: hidden;
  /* 自动填充 */
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.comapny-info {
  flex: 1;
  padding: 0 15px 10px 15px;
}
.comapny-info .name {
  font-size: 15px;
  font-weight: 500;
  color: #282828;
}
.comapny-info .price-box {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 10px;
}
.comapny-info .price-box.company-price-box {
  margin-top: 0;
}
.hot-num {
  font-weight: 400;
  font-size: 12px;
  color: #999999;
}

.goods-price {
  display: flex;
  align-items: end;
  font-weight: 600;
  margin-top: auto;
  color: #333;
  vertical-align: bottom;
}

.line-price {
  text-decoration: line-through;
}

.goods-price .price {
  width: max-content;
  color: #e93323;
  font-size: 12px;
}
.line-h-14px {
  line-height: 14px;
}
.align-end {
  align-items: end;
}
.goods-price .agent-icon {
  width: 15px;
  height: 15px;
  margin-bottom: 2px;
}

.w-100 {
  width: 100%;
}
.w-252px {
  width: 252px;
}
.w-280px {
  width: 280px;
}
.w-667px {
  width: 667px;
}
.w-730px {
  width: 730px;
}
.h-360px {
  height: 360px;
}
.mr-5px {
  margin-right: 5px;
}
.fs-16px {
  font-size: 16px;
}
.fw-600 {
  font-weight: 600;
}
.color-333 {
  color: #333;
}
.mt-30px {
  margin-top: 30px;
}
.px-30px {
  padding: 30px;
}
.font-400 {
  font-weight: 400;
}
.font-color {
  color: #2a7efb !important;
}
.flex {
  display: flex;
}
.flex-y-center {
  display: flex;
  align-items: center;
}
.flex-x-center {
  display: flex;
  justify-content: center !important;
}
.mr-8px {
  margin-right: 8px;
}
.text-12px {
  font-size: 12px;
}
.text-16px {
  font-size: 16px;
}
.mr-40px {
  margin-right: 40px;
}
.font-500 {
  font-weight: 500;
}
.bg-white {
  background-color: white;
}
.fontColor333 {
  color: #333;
}
.acea-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fonts14 {
  font-size: 14px;
}
.w-85 {
  width: 85%;
}
.w-40px {
  width: 40px;
}

.w-200px {
  width: 200px;
}
.h-390px {
  height: 390px;
}
.h-410px {
  height: 410px;
}
.h-40px {
  height: 40px;
}
.mt-17px {
  margin-top: 17px;
}
.b-rd-50 {
  border-radius: 50%;
}
.px-20px {
  padding-left: 20px;
  padding-right: 20px;
}
.py-17px {
  padding-top: 17px;
  padding-bottom: 17px;
}
.w-1000px {
  width: 1000px;
}
.px-40px {
  padding: 0 40px;
}
.py-20px {
  padding: 20px 0;
}
.mb-10px {
  margin-bottom: 10px;
}
.mb18px {
  margin-bottom: 18px;
}
.mr30px {
  margin-right: 30px;
}
.ml-10px {
  margin-left: 10px;
}
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mt-20px {
  margin-top: 20px;
}
.ml-220px {
  margin-left: 220px;
}
.ml-30px {
  margin-left: 30px;
}
.w-220px {
  width: 220px;
}
.flex-col-center {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.w-60px {
  width: 60px;
}
.h-60px {
  height: 60px;
}

.text-666 {
  color: #666;
}
.w-105px {
  width: 105px;
}
.h-32px {
  height: 32px;
}
.lh-31px {
  line-height: 31px;
}
.mb-12px {
  margin-bottom: 12px;
}
.cursors {
  cursor: pointer;
}
.mb-3px {
  margin-bottom: 3px;
}
.mb-8px {
  margin-bottom: 8px;
}
.mb-20px {
  margin-bottom: 20px;
}
.mb-22px {
  margin-bottom: 22px;
}
.text-333 {
  color: #333;
}
.mr20px {
  margin-right: 20px;
}
.justify-between {
  justify-content: space-between;
}
.absolute {
  position: absolute;
}
.fs-12px {
  font-size: 12px;
}
.h-340px {
  height: 340px;
}
.fs-20px {
  font-size: 20px;
}
.h-350px {
  height: 350px;
}
.h-360px {
  height: 360px;
}
.mt-10px{
  margin-top: 10px;
}
.handleBtn {
  background: #2a7efb !important;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  font-size: 12px;
}

.handleBtnBorder {
  text-align: center;
  border-radius: 22px;
  font-size: 12px;
  border: 1px solid #cccccc;
}

.mr-10px {
  margin-right: 10px;
}
/* 猜你喜欢 */
.crmeb-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin: 20px -7.5px 0 -7.5px;
}
.crmeb-box .crmeb-item {
  width: 227px;
  margin: 7.5px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.crmeb-box .crmeb-item .img-box img {
  width: 228px;
  height: 228px;
  cursor: pointer;
  margin-bottom: 15px;
  overflow: hidden;
  /* 自动填充 */
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.crmeb-box .crmeb-item .img-box .info-img {
  margin-bottom: 14px;
}
.comapny-info {
  flex: 1;
  padding: 0 15px 21px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.comapny-info-special.comapny-info {
  padding: 0 15px 10px 15px;
}
.comapny-info .name {
  font-weight: 500;
  font-size: 14px;
  color: #333333;
}
.comapny-info .price-box {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.comapny-info .price-box.rate-box{
  margin-top: 5px;
}
.freeIndex .header .name {
    font-family: alimama;
    font-weight: 700;
    font-size: 28px;
    color: #333333;
}
.company-img{
  width: 15px;
  height: 15px;
  border-radius: 8px;
}
.mt-1px{
  margin-top: 1px;
}
.mt-0{
  margin-top: 0 !important;
}
.el-rate__item{
  margin-right: 3px;
}
.el-rate__icon{
  font-size: 12px;
  margin-right: 0;
}
.el-rate {
    display: flex;
    align-items: center;
    padding-top: 4px;
}
.el-rate__text{
  font-size: 12px;
}
.comapny-info .name.name title{
  font-weight: 500;
  font-size: 15px;
  color: #282828 ;
}