*,
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.redColor {
  color: var(--main-color) !important;
}

/*html,*/
/*body {*/
/*  background: var(--grey);*/
/*  font-family: arial, sans-serif, "Microsoft Yahei";*/
/*  font-size: 18px;*/
/*}*/

@supports (bottom: env(safe-area-inset-bottom)) {

  body,
  .footer,
  .tabbar,
  .fixdBOttom {
    /* box-sizing: content-box; */
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
}


img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

video {
  max-width: 100%;
}

label {
  font-weight: initial;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}

/*正常的未被访问过的链接*/
a:link {
  text-decoration: none;
  color: inherit;
}

/*已经访问过的链接*/
a:visited {
  text-decoration: none;
  color: inherit;
}

/*鼠标划过(停留)的链接*/
a:hover {
  text-decoration: none;
  color: inherit;
}

/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
  text-decoration: none;
  color: inherit;
}

/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
  text-decoration: none;
  color: inherit;
}

div {
  box-sizing: border-box;
}

.paddingBottom {
  padding-bottom: 54px;
}

.linearBg {
  background: linear-gradient(180deg, #FFFFFF 35px, #F7F7F7 160px), #F7F7F7;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

:root {
  --main-color: #bf0022;
  --main-bg-color: #bf0022;
  --grey: #f8f8f8;
  --white: #fff;
}

input,
select,
textarea {
  border: none;
  font-family: arial, sans-serif, "Microsoft Yahei";
}

li {
  list-style: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.content {
  min-height: auto;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.fixed {
  /* 兼容chorme */
  position: -webkit-fixed;
  position: fixed;
  top: 0px;
  margin: 0 auto;
  width: 100%;
  z-index: 5;
}

.one-line {
  /* white-space: nowrap; */
  /* 不换行 */
  /* overflow: hidden; */
  /* 溢出隐藏 */
  /* text-overflow: ellipsis; */
  /* 超出显示省略号 */
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.twoLine {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.typeLIst {
  display: inline-block;
}

.typeLIst span {
  padding: 2px 5px;
  background: #84C2F6;
  height: 15px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin-right: 5px;
}

.typeLIst span img {
  width: 11px;
  height: 11px;
  vertical-align: middle;
}

.centerWidth {
  margin: 0 15px;
}

/* 头部  start */
.header {
  /*background: #fff;*/
}

.header .centerWidth {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
  align-items: center;
}

.header .centerWidth .logo a {
  display: block;
  /* width: 194px; */
  height: 31px;
}

.header .centerWidth .logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
  vertical-align: initial;
}

.header .centerWidth .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  font-weight: 400;
  font-size: 15px;
  color: #666666;
  line-height: 21px;
}

.header .centerWidth .right #searchGrey {
  border-radius: 17px;
  background: #F7F7F7;
  width: calc(100% - 55px);
}

.header .centerWidth .right #searchGrey input {
  height: 38px;
  line-height: 38px;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 19px;
  color: #999999;
  width: 100%;
  background: none;
}

.header .centerWidth .right .navList {
  margin-left: 14px;
  height: 33px;
}

.header .centerWidth .right .navList .down {
  display: flex;
  align-items: center;
  height: 33px;
}

.header .centerWidth .right .navList .down img {
  width: 21px;
  height: auto;
  vertical-align: middle;
}

.header .centerWidth .right .navList.active {
  position: relative;
}

.header .centerWidth .right .navList .listBox {
  display: none;
}

.header .centerWidth .right .navList.active .listBox {
  position: absolute;
  top: 100%;
  right: 0px;
  background-color: #FFFFFF;
  z-index: 2;
  border-radius: 3px;
  display: block;
}



.header .centerWidth .right .navList.active .listBox .list:after {
  position: absolute;
  display: inline-block;
  top: -5px;
  width: 0px;
  height: 0px;
  content: '';
  border-style: solid;
  border-width: 6px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  /* box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.1); */
  box-shadow: 2px -2px 2px rgba(225, 225, 225, 0.2);
  right: 7px;
}

.header .centerWidth .right .navList.active .listBox .list {
  position: relative;
  width: 100px;
  background: #fff;
  padding: 0 5px;
  background: url('../img/navBg.png') right bottom no-repeat;
  background-size: 77px 87px;
  box-shadow: 0px 0px 11px 0px rgba(225, 225, 225, 0.5);
}


.header .centerWidth .right .navList.active .listBox .list .item {
  width: 100%;
  padding: 7px 5px 7px 5px;
  border-bottom: 1px solid #EDEDED;
}

.header .centerWidth .right .navList.active .listBox .list .item .unread {
  padding-left: 0;
}

.header .centerWidth .right .navList.active .listBox .list .item a {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 14px;
}

.header .centerWidth .right .navList.active .listBox .list .item:last-child a {
  border-bottom: 0;
}

.header .centerWidth .right .navList.active .listBox .list .item a img {
  width: 16px;
  height: 15px;
  margin-right: 8px;
  object-fit: contain;
}

/* .header .centerWidth .right a {
  width: fit-content;
}

.header .centerWidth .right a.Language {
  margin-left: 18px;
}

.header .centerWidth .right img {
  width: 15px;
  height: 15px;
} */



/* header  结束 */



/* tabbar   start*/

.tabbar {
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 111111;
  width: 100%;
  box-shadow: 0px 0px 11px 0px rgba(225, 225, 225, 0.5);
}

.tabbar .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 30px 5px;
}

.tabbar .flex a {
  width: fit-content;
  text-align: center;
}

.tabbar .flex a img {
  width: 20px;
  height: 18px;
  object-fit: contain;
  margin: 0 auto;
}

.tabbar .flex a img.activeImg {
  display: none;
}

.tabbar .flex a img.notActImg {
  display: block;
}

.tabbar .flex a.active img.activeImg {
  display: block;
}

.tabbar .flex a.active img.notActImg {
  display: none;
}

.tabbar .flex a span {
  display: block;
  color: #999999;
  font-weight: 400;
  line-height: 19px;
  padding-top: 5px;
  font-size: 13px;
}

.tabbar .flex a.active span {
  color: var(--main-color);
}



/* 尾部 */
.foot {
  background-color: #fff;
  /* padding:17px 0px; */
  color: #666666;
  padding-top: 17px;
}

.foot .a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
}

.foot .a .item {
  width: fit-content;
  text-align: center;
  font-size: 13px;
  height: 17px;
  line-height: 17px;
}

.foot .a .item.line {
  width: 1px;
  height: 17px;
  background: #666666;
}

.foot .footConcat {
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 37px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #D8D8D8;
}

.foot .footConcat .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.foot .beian {
  border-top: 1px solid #D8D8D8;
  padding-top: 17px;
  padding-bottom: 17px;
  color: #999999;
  text-align: center;
  font-size: 12px;
}



/* 暂无数据 */
.none {
  text-align: center;
  margin-top: 20vh;
  font-size: 16px;
  color: #999999;
  margin-bottom: 30px;
}

.none img {
  width: 150px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

#pop-up {
  max-width: 90vw;
  width: fit-content;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: none;
  min-height: 20px;
  z-index: 9999999;
  border-radius: 5px;
  white-space: normal;
  box-sizing: border-box;
}


/* 分页   start */
div.pagination {
  height: 40px;
  line-height: 40px;
  width: fit-content;
  margin-top: 20px;
  text-align: right;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 60px;
}

ul.pagination {
  display: flex;
}

.pagination li.active span {
  color: #fff;
  background: var(--main-bg-color);
  position: static;
  border-radius: 5px;
  border: 1px solid var(--mian-color);
}

.pagination .active:after {
  content: none;
}

.pagination li span,
.pagination li a {
  display: block;
  border: 1px solid #DEDEDE;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  line-height: 36px;
}

.pagination li,
.pagination li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 5px;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  margin: 0 2px;
  cursor: pointer;
  color: #666;
  border-radius: 5px;
  box-sizing: border-box;
}

.pagination li a,
.pagination li.upper a,
.pagination li.lower a,
.pagination li.upper span,
.pagination li.lower span {
  margin: 0;
  box-sizing: border-box;
}

.pagination li.upper,
.pagination li.lower,
.pagination li.upper a,
.pagination li.lower a,
.pagination li.upper span,
.pagination li.lower span {
  width: 76px !important;
  height: 36px;
  border-radius: 5px;
}

.pagination a.jump-btn {
  font-size: 14px;
}

.pagination input {
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid #DFDFDF;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
  font-size: 16px;
}

/* 分页   end */

/* 面包屑 */
.Breadcrumbs {
  padding: 12px 15px;
  color: #666666;
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.Breadcrumbs span {
  display: flex;
  align-items: center;
}

.Breadcrumbs span a {
  width: fit-content;
}

.Breadcrumbs span:not(:last-child)::after {
  content: " > ";
  margin: 0 5px;
}

.Breadcrumbs span:last-child {
  color: var(--main-color);
}

/* 未读 */
.unread {
  position: relative;
}

.stip {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 2px;
  background: var(--main-color);
  position: absolute;
  right: -10px;
  top: 0;
}

/* 个人中心  选项卡切换 */
.userTabs {
  background: #fff;
  line-height: 48px;
}

.userTabs .flex {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 15px;
  justify-content: space-around;

}

.userTabs .flex .item:not(:last-child) {
  margin-right: 50px;
}

.userTabs .flex .item.active {
  color: var(--main-color);
  font-weight: bolder;
  position: relative;
}

.userTabs .flex .item.active:before {
  content: '   ';
  width: 20px;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 10px;

}

/* 星号 */
.xing {
  font-size: 16px;
  color: var(--main-color);
}

/* 下拉 */
.select-list {
  background-color: #FFFFFF;
  box-shadow: 0 5px 5px #ccc;
  width: 100%;
  padding: 0 0px 0 0;
  height: 180px;
  overflow-y: auto;
  position: absolute;
  display: none;
  z-index: 1;
  font-size: 14px;
  line-height: 28px;
  box-sizing: border-box;
  left: 0;
}

.checkout {
  width: 100%;
  height: 180px;
  background-color: #FFFFFF;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .4);
  position: absolute;
  display: none;
  z-index: 11;
  left: 0;
  padding-top: 10px;
}

.checkout .checkSelect-list {
  padding: 15px 0px 15px 0px;
  height: calc(100% - 44px);
  box-sizing: border-box;
  overflow-y: auto;
  width: 100%;
  line-height: 28px;
}

.checkout .que {
  width: 100%;
  background: #BE0022;
  color: #ffffff;
  cursor: pointer;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 14px;
}

.select-list .select-flex,
.checkSelect-list .select-flex {
  padding-left: 15px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.checkSelect-list .select-flex input {
  width: auto !important;
  height: auto !important;
  margin-right: 10px;
}

.checkout input[type=checkbox] {
  outline: none;
  cursor: pointer;
  position: relative;
  width: 16px !important;
  height: 16px !important;
  font-size: 14px !important;
  margin-right: 8px !important;
  box-sizing: border-box;
}

.checkout input[type=checkbox]::after {
  position: absolute;
  top: 0;
  background-color: #FFFFFF;
  border: 1px solid #aaaaaa;
  color: #fff;
  width: 16px;
  height: 16px;
  line-height: 18px;
  display: inline-block;
  visibility: visible;
  text-align: center;
  content: ' ';
  box-sizing: border-box;
}

.checkSelect-list .select-flex input[type=checkbox]:checked::after {
  background: url(../img/checkbox.png), #BE0022;
  border: 1px solid #BE0022;
  background-size: 100%;
}



.selectAct {
  background: #BE0022;
  color: #fff !important;
}

.checkSelect-list .selectAct {
  background: #FFFFFF;
  color: #BE0022 !important;
}

/* 产品列表 */
.productList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  padding-top: 9px;
  padding-bottom: 20px;
}

.productList .item {
  width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
}

.productList .item .img {
  width: 140px;
  height: 140px;
  overflow: hidden;
  margin: 0 auto;
}

.productList .item .name {
  color: #333333;
  font-size: 15px;
  margin-top: 13px;
  line-height: 24px;
  height: 48px;
}



.productList .item .money {
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  margin-top: 7px;
}

.productList .item .company {
  color: #999999;
  font-size: 12px;
  margin-top: 5px;
}

/* 语言切换 */
.rightLang {
  position: fixed;
  right: 15px;
  top: 45%;
  width: 50px;
  padding: 10px 5px 8px 5px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0px 2px 10px 0px rgba(197, 197, 197, 0.5);
  z-index: 2;
}

.rightLang a {
  display: block;
  padding: 8px 0px;
  text-align: center;
  color: #666666;
  font-size: 14px;
  border-bottom: 1px solid #EDEDED;
}

.rightLang a:last-child {
  border-bottom: 0;
}

/* 未读 */
.unread .tips {
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  right: auto;
  font-size: 10px;
  width: auto;
  padding: 0px 5px;
  left: calc(100% + 3px);
  box-sizing: border-box;
  background: #BE0022;
  position: absolute;
  display: inline-block;
}


/* 个人中心公共头部 */
.userHeader {
  height: 58px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #dedede;
}

.userHeader .back img {
  width: 10px;
  height: 18px;
}

.userHeader .title {
  font-size: 18px;
  font-weight: bolder;
}

.userHeader .navList {
  margin-left: 14px;
  height: 33px;
}

.userHeader .navList .down {
  display: flex;
  align-items: center;
  height: 33px;
}

.userHeader .navList .down img {
  width: 21px;
  height: auto;
  vertical-align: middle;
}

.userHeader .navList.active {
  position: relative;
}

.userHeader .navList .listBox {
  display: none;
}

.userHeader .navList.active .listBox {
  position: absolute;
  top: 100%;
  right: 0px;
  background-color: #FFFFFF;
  z-index: 2;
  border-radius: 3px;
  display: block;
}



.userHeader .navList.active .listBox .list:after {
  position: absolute;
  display: inline-block;
  top: -5px;
  width: 0px;
  height: 0px;
  content: '';
  border-style: solid;
  border-width: 6px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  /* box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.1); */
  box-shadow: 2px -2px 2px rgba(225, 225, 225, 0.2);
  right: 7px;
}

.userHeader .navList.active .listBox .list {
  position: relative;
  width: 100px;
  background: #fff;
  padding: 0 5px;
  background: url('../img/navBg.png') right bottom no-repeat;
  background-size: 77px 87px;
  box-shadow: 0px 0px 11px 0px rgba(225, 225, 225, 0.5);
}


.userHeader .navList.active .listBox .list .item {
  width: 100%;
  padding: 7px 5px 7px 5px;
  border-bottom: 1px solid #EDEDED;
}

.userHeader .navList.active .listBox .list .item .unread {
  padding-left: 0;
}

.userHeader .navList.active .listBox .list .item a {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 14px;
}

.userHeader .navList.active .listBox .list .item:last-child a {
  border-bottom: 0;
}

.userHeader .navList.active .listBox .list .item a img {
  width: 16px;
  height: 15px;
  margin-right: 8px;
  object-fit: contain;
}

/* 店铺详情店铺信息 */
.comShopInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comShopInfo .left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
}

.comShopInfo .left .avatar {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.comShopInfo .left .text .name {
  color: #333333;
  font-size: 15px;
  font-weight: bolder;
}

.comShopInfo .left .text .area {
  color: #666666;
  font-size: 11px;
  display: flex;
}

.comShopInfo .left .text .area span:first-child {
  /* display: block; */
  flex: 1;
  margin-right: 3px;
}

.comShopInfo .left .text .area span:last-child {
  display: block;
  width: fit-content;
}

.comShopInfo .left .text .area span:not(:last-child)::after {
  content: ' | ';
  margin: 0 3px;
}

.comShopInfo .operate {
  width: 67px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 13px;
}

.comShopInfo .operate span.not {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 17px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.comShopInfo .operate span.done {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 17px;
  color: var(--main-color);
  background: #fff;
  border: 1px solid var(--main-color);
}


.ruzhuButton {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 50%;
  right: 15px;
  font-size: 12px;
  color:#bf0022 !important; 
  background: rgba(255,255,255,0.9);
  box-shadow: 0px 2px 10px 0px rgba(197, 197, 197, 0.5);
}

.ruzhuButton img{
  width: 30px;
  height: 30px;
}

/* 浏览器引导   start */
.mask {
  visibility: hidden;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mask.show {
  visibility: visible;
}

.wxShareYd .wxShareYdContent {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 39.75px;
  /* font-size: 20px; */
  text-align: center;
  display: block;
}

.wxShareYd .wxShareYdContent p {
  width: 100%;
  display: flex;
  align-items: center;
}

.wxShareYd .wxShareYdContent p img {
  display: block;
  height: auto;
}

.topshares {
  display: flex;
  align-items: center;
}

.topshares img {
  display: block;
}

.brShareYd .brShareYdContent {
  color: #fff;
  position: absolute;
  bottom: 14%;
  /* left: 0;
  right: 0;
  margin: 0 auto; */
  font-size: 16px;
  text-align: center;
}

.brShareYd .brShareYdContent .wxMenu {
  -webkit-transform: translateX(-39.75px) rotateX(180deg);
  transform: translateX(-39.75px) rotateX(180deg);
}




/* 浏览器引导   end */