body {
  margin: 0;
}

a {
  text-decoration: none;
}

.header {
  height: 80px;
  /* 自动布局 */
  min-width: 1360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 120px 0px 40px;
  align-self: stretch;

  /* 主色调 - 蓝色 */
  background: #0171D9;
}

.header div {
  display: flex;
  align-items: center;
}

.header .header-img {
  width: 138px;
  height: 34px;
  background: url('../custom-navbar/img/ws-logo.png');
  background-size: 100%;
}

.header .header-left-txt {
  margin-left: 14px;
  width: 179px;

  font-size: 14px;

  /* 背景色 - 纯白 */
  color: #FFFFFF;

}

.header .header-right-txt {
  display: flex;
  gap: 30px;
}

.header .header-right-txt div:first-child,
.header .header-right-txt div:nth-of-type(2) {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .header-right-txt div:first-child span:first-child,
.header .header-right-txt div:nth-of-type(2) span:first-child {
  font-size: 14px;
  color: #FFFFFF;

}

.header .header-right-txt div:first-child span:last-child,
.header .header-right-txt div:nth-of-type(2) span:last-child {
  font-size: 16px;
  color: #FFFFFF;

}

.header .header-right-txt .qr-code {

  width: 60px;
  height: 60px;

  /* 自动布局 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

}

.header .header-right-txt .qr-code span {


  font-size: 10px;

  /* 背景色 - 纯白 */
  color: #FFFFFF;

}

.header .header-right-txt .qr-code img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.main {
  width: 75%;
  min-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
}

.main .main-top {
  min-height: 412px;
  display: flex;
}

.main .main-top .main-top-left {
  width: 50%;

  /* 自动布局 */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;


}
/*.main-top-left img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: scale-down;*/
/*}*/

.main .main-top .main-top-right {
  margin: 14px 0 0 40px;
  box-sizing: border-box;
  height: 353px;
  width: 100%;
}

.main .main-top .main-top-right div:first-of-type {

  height: 37px;

  font-size: 28px;
  /* 文字主色 */
  color: #4E5969;
}

.main .main-top .main-top-right div:nth-of-type(2) {
  height: 18px;
  opacity: 1;
  font-size: 14px;

  /* 文字主色 */
  color: #4E5969;
  margin-top: 10px;
}

.main .main-top .main-top-right div:nth-of-type(3) {
  height: 96px;

  font-size: 14px;
  line-height: 24px;
  text-align: justify;

  /* 文字辅色 */
  color: #797D8D;
  margin: 20px 0;
}

.main .main-top .main-top-right div:nth-of-type(4) {
  display: flex;
  gap: 10px;
}

.main .main-top .main-top-right div:nth-of-type(4) span {
  border-radius: 10px;

  /* 自动布局 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;

  background: rgba(1, 113, 217, 0.1);
  font-size: 14px;
  color: #797D8D;
  cursor: pointer;
}

.main .main-top .main-top-right div:nth-of-type(5) {
  /*height: 36px;*/
  margin-top: 20px;
}

.main .main-top .main-top-right div:nth-of-type(5) span:first-of-type {
  min-width: 88px;
  height: 18px;

  font-size: 18px;
  line-height: 18px;
  text-align: justify;

  font-weight: 500;
  /* 文字主色 */
  color: #4E5969;
}

.main .main-top .main-top-right div:nth-of-type(5) span:last-of-type {

  min-width: 161px;
  height: 36px;

  font-size: 36px;
  line-height: 36px;
  text-align: justify;

  font-weight: 500;
  color: #EA0000;
}
.shop-box {
  display: flex;
  align-items: center;
}
.detail-btn-box {
  padding: 0 16px;
  width: 150px;
  height: 40px !important;
  background: #0171d9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.detail-btn-box span {
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.detail-btn-box svg {
  fill: #fff;
  transition: all 0.3s;
}

.detail-btn-box:hover {
  background: #035dc4;
}


.main .main-middle {
  min-height: 260px;
  border-radius: 10px;

  /* 自动布局 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px; */
  gap: 25px;
  /* 背景色 - 纯白 */
  background: #FFFFFF;
  margin-top: 60px;
}

.main .main-middle img {
  min-height: 220px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  width: calc(calc(100% - 100px) / 3);
}

.main .main-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 400px;
  border-radius: 10px;
  background: #0171D9;
  box-sizing: border-box;
  margin-top: 20px;
  background: url('../img/shop-bottom.png') no-repeat;
  background-size: 100%;
  padding: 20px 20px 40px;
}

.main .main-bottom div:first-child {
  min-width: 72px;
  height: 24px;
  font-size: 18px;
  font-weight: normal;
  text-align: justify;
  color: #FFFFFF;
}

.main .main-bottom .p-list p {
  height: 32px;

  font-size: 14px;
  font-weight: normal;
  line-height: 32px;
  text-align: justify;
  color: #FFFFFF;
  margin: 0;
}

.main .main-bottom .p-list {
  min-height: 252px;
}

.bottom-box {
  height: 64px;
  background: #0171D9;
  box-sizing: border-box;
  min-width: 1520px;
}

.bottom-box-div {
  position: absolute;
  top: 460px;
  left: 0 ;
  width: 75%;
  margin: 0 auto;

  font-size: 12px;
  line-height: 24px;

  /* 线框色 - 灰度 - 50% */
  color: rgba(238, 238, 238, 0.5);
}

.dilog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 800px;
  min-height: 384px;
  border-radius: 10px;
  /* 自动布局 */
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
  box-sizing: border-box;
  gap: 20px;

  /* 背景色 - 纯白 */
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  display: none;
}

.active {
  display: flex;
}

.dilog svg {
  cursor: pointer;
}

.dilog .dialog-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 24px;
  align-self: stretch;
}

.dilog .dialog-title span {
  height: 24px;
  font-size: 18px;
  line-height: 24px;
  color: #4E5969;
}

.dilog .dialog-img {
  min-height: 200px;
  border-radius: 10px;
  align-self: stretch;
}

.dialog-txt {
  margin-top: 20px;
  min-height: 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.dialog-txt div:first-child,
.dialog-txt div:nth-child(2),
.dialog-txt div:last-child {
  height: 58px;

  /* 自动布局 */
  display: flex;
  flex-direction: column;
  padding: 0px;
  gap: 14px;

  z-index: 0;
}

.dialog-txt div:first-child span:first-child,
.dialog-txt div:nth-child(2) span:first-child {
  font-size: 14px;
  line-height: 20px;
  color: #797D8D;

}

.dialog-txt div:first-child span:last-child,
.dialog-txt div:nth-child(2) span:last-child {
  font-size: 24px;
  line-height: 24px;
  color: #4E5969;

}

.dialog-txt div:last-child {
  gap: 4px;
  min-width: 60px;
  opacity: 1;

  /* 自动布局 */
  align-items: center;
  transform: translateY(-3px);

}

.dialog-txt div:last-child img {
  width: 40px;
  height: 40px;
}

.dialog-txt div:last-child span {
  font-size: 10px;
  color: #4E5969;
}

.masker {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: none;
}

.masker img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  width: 800px;
  height: 800px;
  object-fit: contain;
}

.masker-active {
  display: block;
}
