.flexbox {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
}
.flexbox-center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flexbox-middle {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flexbox-between {
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flexbox-end {
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.opacity:hover {
  opacity: 0.8;
}
body {
  background-color: #FAFAFA;
}
/* 首页 */
.openshop .openshop-banner {
  height: 410px;
  width: 100%;
  object-position: center;
  object-fit: contain;
  margin: auto;
}
.openshop .openshop-container {
  width: 1280px;
  margin: auto;
  padding-bottom: 78px;
}
.openshop .openshop-container .openshop-title {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  color: #333333;
  margin-top: 39px;
  margin-bottom: 51px;
}
.openshop .openshop-container .openshop-content {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  flex-wrap: wrap;
}
.openshop .openshop-container .openshop-content .openshop-list {
  position: relative;
  display: inline-block;
  width: 302px;
  height: 262px;
  padding: 14px 20px 20px 20px;
  box-shadow: 0px 8px 10px 0px rgba(235, 235, 235, 0.45);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #fff;
}
.openshop .openshop-container .openshop-content .openshop-list:not(:nth-child(4n + 1)) {
  margin-left: 24px;
}
.openshop .openshop-container .openshop-content .openshop-list:first-child {
  margin-left: 0;
}
.openshop .openshop-container .openshop-content .openshop-list:nth-child(n + 5) {
  margin-top: 24px;
}
.openshop .openshop-container .openshop-content .openshop-list:hover {
  border-color: #ec8c02;
}
.openshop .openshop-container .openshop-content .openshop-list .margin-l {
  margin-left: 11px;
}
.openshop .openshop-container .openshop-content .openshop-list .consult-model {
  display: none;
  align-items: center;
  flex-direction: column;
  padding: 10px 14px;
  background: linear-gradient(144deg, #d0eaff 0%, #f6fbff 44%, #edf7ff 100%);
  border-radius: 6px;
  box-shadow: 0px 0px 6px 2px rgba(219, 228, 241, 0.55);
  position: absolute;
  right: -62px;
  bottom: 170px;
  z-index: 99;
}
.openshop .openshop-container .openshop-content .openshop-list .consult-model .code {
  width: 108px;
  height: 108px;
  margin: auto;
  background: #ffffff;
}
.openshop .openshop-container .openshop-content .openshop-list .consult-model .describe-text {
  margin-top: 6px;
  margin-bottom: 1px;
  color: #858586;
  font-size: 12px;
}
.openshop .openshop-container .openshop-content .openshop-list .consult-model .phone-img {
  width: 14px;
  height: 14px;
}
.openshop .openshop-container .openshop-content .openshop-list .consult-model .phone-text {
  font-size: 14px;
  font-weight: 600;
  color: #020202;
  margin-left: 4px;
}
.openshop .openshop-container .openshop-content .openshop-list .consult {
  display: flex;
  align-items: center;
  color: #020202;
  padding: 6px 9px;
  cursor: pointer;
  /* 增加光标样式，让它看起来可点击 */
  transition: all 0.3s ease;
  /* 为过渡效果添加平滑的过渡 */
  /* 默认伪元素样式 */
  /* hover 时的样式 */
}
.openshop .openshop-container .openshop-content .openshop-list .consult::before {
  content: ' ';
  background: url('/static_browser/home/image/openshop/customer_service.png') no-repeat;
  background-size: contain;
  width: 17px;
  height: 16px;
  display: block;
  margin-right: 3px;
}
.openshop .openshop-container .openshop-content .openshop-list .consult:hover {
  color: #0088FA;
  padding: 6px 9px;
  border-radius: 26px;
  background-color: #F0F8FF;
  /* hover 时伪元素的变化 */
  /* 显示 .consult-model 元素 */
}
.openshop .openshop-container .openshop-content .openshop-list .consult:hover::before {
  background: url('/static_browser/home/image/openshop/customer_service_active.png') no-repeat;
  background-size: contain;
}
.openshop .openshop-container .openshop-content .openshop-list .consult:hover + .consult-model {
  display: flex;
}
.openshop .openshop-container .openshop-content .openshop-list .platform {
  font-size: 18px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  color: #333333;
}
.openshop .openshop-container .openshop-content .openshop-list img {
  display: block;
  width: 194px;
  height: 68px;
  margin-left: -15px;
}
.openshop .openshop-container .openshop-content .openshop-list .website-group .website-text {
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  color: #ec8c02;
  background: #fff6f0;
  border-radius: 16px;
  padding: 6px 14px;
}
.openshop .openshop-container .openshop-content .openshop-list .website-group .website-text:hover {
  opacity: 0.8;
}
.openshop .openshop-container .openshop-content .openshop-list .describe {
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  color: #858586;
  margin-bottom: 22px;
}
.openshop .openshop-container .openshop-content .openshop-list .btn-group .register {
  line-height: 32px;
  padding: 0 20px;
  background: linear-gradient(180deg, #ff8c21, #ff5b1b 100%);
  border-radius: 16px;
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  color: #ffffff;
  transition: opacity 0.4s;
}
.openshop .openshop-container .openshop-content .openshop-list .btn-group .register:hover {
  opacity: 0.8;
}
.openshop .openshop-container .openshop-content .openshop-list .btn-group .register:not(:nth-child(4n)) {
  margin-right: 6px;
}
.openshop .openshop-container .openshop-content .openshop-list .btn-group .register:hover {
  /* 显示 .consult-model 元素 */
}
.openshop .openshop-container .openshop-content .openshop-list .btn-group .register:hover + .consult-model {
  display: flex;
  right: -22px;
  bottom: 65px;
}
.openshop .openshop-container .openshop-content .await {
  width: 302px;
  height: 262px;
  text-align: center;
  line-height: 262px;
  box-sizing: border-box;
  background: #edeef2;
  box-shadow: 0px 8px 10px 0px rgba(220, 231, 246, 0.45);
  font-size: 24px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  color: #333333;
}
/* 详情 */
.openshopview .openshopview-banner {
  height: 340px;
}
.openshopview .openshopview-container {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  padding: 68px 29px 51px 36px;
  width: 1280px;
  min-height: 500px;
  background: #ffffff;
  box-shadow: 0px 8px 10px 0px rgba(235, 235, 235, 0.45);
  box-sizing: border-box;
  margin: auto;
  margin-top: -62px;
  margin-bottom: 78px;
}
.openshopview .openshopview-container .openshopview-left-content {
  min-width: 847px;
}
.openshopview .openshopview-container .openshopview-left-content .markdown-body > p:first-of-type {
  width: 723px;
}
.openshopview .openshopview-container .openshopview-left-content .title-icon {
  display: block;
  width: 29px;
  height: 29px;
}
.openshopview .openshopview-container .openshopview-left-content .title {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 28px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 500;
  color: #0088fa;
}
.openshopview .openshopview-container .openshopview-left-content .title:target {
  padding-top: 84px;
  margin-top: 0 !important;
}
.openshopview .openshopview-container .openshopview-left-content .title:not(:first-child) {
  margin-top: 45px;
}
.openshopview .openshopview-container .openshopview-left-content .describe {
  font-size: 18px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-top: 9px;
}
.openshopview .openshopview-container .openshopview-left-content .describe-img {
  display: block;
  width: 100%;
  height: auto;
}
.openshopview .openshopview-container .openshopview-left-content h2 {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
}
.openshopview .openshopview-container .openshopview-left-content h2:not(:first-child) {
  margin-top: 45px;
}
.openshopview .openshopview-container .openshopview-left-content h2::before {
  content: ' ';
  display: block;
  background: url('/static_browser/home/image/openshop/title_icon.png') no-repeat;
  background-size: 100% 100%;
  width: 29px;
  height: 29px;
  margin-right: 9px;
}
.openshopview .openshopview-container .openshopview-right-content {
  min-height: 1200px;
}
.openshopview .openshopview-container .openshopview-right-content .sticky-content {
  position: sticky;
  top: 80px;
  min-height: 900px;
}
.openshopview .openshopview-container .openshopview-right-content img {
  width: 190px;
  height: 64px;
  display: block;
}
.openshopview .openshopview-container .openshopview-right-content .describe {
  font-size: 18px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  text-align: LEFT;
  color: #333333;
  margin-top: 5px;
  margin-bottom: 5px;
}
.openshopview .openshopview-container .openshopview-right-content .platform {
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #858586;
  margin-bottom: 14px;
  width: 300px;
}
.openshopview .openshopview-container .openshopview-right-content .website-text {
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  color: #ec8c02;
  background: #fff6f0;
  border-radius: 16px;
  padding: 6px 22px;
}
.openshopview .openshopview-container .openshopview-right-content .website-text:hover {
  opacity: 0.8;
}
.openshopview .openshopview-container .openshopview-right-content .register {
  padding: 6px 22px;
  background: linear-gradient(180deg, #ff8c21, #ff5b1b 100%);
  border-radius: 16px;
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
.openshopview .openshopview-container .openshopview-right-content .register:hover {
  opacity: 0.8;
}
.openshopview .openshopview-container .openshopview-right-content .href-group {
  margin-top: 43px;
}
.openshopview .openshopview-container .openshopview-right-content .href-group .subtitle {
  font-size: 16px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-bottom: 11px;
}
.openshopview .openshopview-container .openshopview-right-content .href-group a {
  display: block;
  font-size: 16px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  text-decoration: underline;
  text-align: LEFT;
  color: #333333;
  line-height: 26px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group {
  margin-top: 34px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group .subtitle {
  font-size: 16px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-bottom: 11px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a {
  display: inline-block;
  box-sizing: border-box;
  padding: 6px 22px;
  border: 1px solid #edeef2;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  margin-top: 12px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a:hover {
  opacity: 0.8;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a:not(:nth-child(4n)) {
  margin-right: 6px;
}
.openshopview .openshopview-container .openshopview-right-content .platform-group a:hover {
  border: 1px solid #ec8c02;
  border-radius: 17px;
  font-size: 14px;
  font-family: PingFang SC, -apple-system, Microsoft Yahei, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 400;
  text-align: LEFT;
  color: #ec8c02;
}
.openshopview .openshopview-container .consult-model {
  width: 308px;
  background: linear-gradient(114deg, #d0eaff 0%, #f6fbff 44%, #edf7ff 100%);
  border-radius: 6px;
  padding: 14px 18px;
  box-sizing: border-box;
  margin-top: 33px;
}
.openshopview .openshopview-container .consult-model .qrcode {
  width: 100px;
  height: 100px;
  margin-right: 21px;
}
.openshopview .openshopview-container .consult-model .phone-img {
  width: 14px;
  height: 14px;
}
.openshopview .openshopview-container .consult-model .phone-text {
  font-size: 14px;
  font-weight: 600;
  color: #020202;
  margin-left: 4px;
}
.openshopview .openshopview-container .divide {
  width: 1px;
  background: #edeef2;
  margin: 0 30px;
}
.openshopview .openshopview-container .margin-t-45 {
  margin-top: 45px;
}
.feikua-drop {
  background: linear-gradient(180deg, #ff8c21, #ff5b1b 100%);
  height: 32px;
  border: none;
}
.feikua-drop[label]::before {
  border-right: none;
}
.feikua-drop:hover {
  opacity: 0.8;
}
.feikua-dropcolumn:not([disabled])::after {
  content: '▲';
  transform: rotate(90deg);
  margin-left: 12px;
  font-size: 10px;
}
