@charset "utf-8";
/*------------------------------------------------------------
    MASK
------------------------------------------------------------*/
.mask,
.mask2 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.goodsScroll {
  padding: 80px 0;
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.modalOpen {
  overflow: hidden;
}

.mask .maskBg {
  position: absolute;
  background: rgba(0,0,0,.6);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
}

.mask2 .maskBg {
  position: fixed;
  background: rgba(0,0,0,.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.goodsDetails {
  position: relative;
  background: #fff;
  width: 1000px;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
}

.goodsBorder {
  border: 1px solid #573220;
}

.goodsDetails .goodsClose {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 14px;
  color: #666666;
  letter-spacing: 1px;
  box-sizing: border-box;
  padding-right: 19px;
  z-index: 1;
}

.goodsDetails .goodsClose:hover{
  color: #999;
}

.goodsDetails .goodsClose::after,
.goodsDetails .goodsClose::before{
  opacity: .7;
}

.goodsDetails .goodsClose::after,
.goodsDetails .goodsClose::before{
  position: absolute;
  content: '';
  right: 0px;
  top: 10px;
  width: 13px;
  height: 1px;
  opacity: 1;
  background: rgba(0,0,0,.5);
  transition: opacity .5s ease;
}

.goodsDetails .goodsClose::after{
  transform: rotate(45deg);
}

.goodsDetails .goodsClose::before{
  transform: rotate(-45deg);
}

.goodsDetails .goodsTitle {
  text-align: center;
  padding-top: 46px;
  margin-bottom: 29px;
}

.goodsDetails .goodsTitle h3 {
  font-size: 40px;
  letter-spacing: .7px;
  margin-bottom: -3px;
}

.goodsDetails .goodsTitle p {
  font-size: 13px;
  color: #666666;
  letter-spacing: .5px;
}

.goodsDetails .goodsIntro {
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  line-height: 2;
  letter-spacing: .5px;
  margin-bottom: 21px;
}

.goodsDetails .goodsTips {
  text-align: center;
  margin-bottom: 58px;
}

.goodsDetails .goodsTips li {
  display: inline-block;
  font-size: 11px;
  color: #666666;
  margin: 0 16px;
  overflow: hidden;
}

.goodsDetails .goodsTips li svg {
  display: inline-block;
  width: 12px;
  height: 14px;
  margin-right: 6px;
}

svg.iconStock {
  fill: none;
  stroke: #7f7f7f;
  vertical-align: -1px;
  stroke-width: 1px;
}

svg.iconTria {
  fill: #7f7f7f;
  vertical-align: -2px;
}

svg.iconError {
  fill: #7f7f7f;
  vertical-align: middle;
  position: relative;
  top: 4px;
  transform: scale(1.36);
}

.goodsPicBox {
  width: 174px;
  float: left;
}

.goodsPicBox p {
  font-size: 11px;
  color: #666666;
  text-align: center;
  font-weight: 300;
  letter-spacing: 1px;
}

.goodsPic {
  margin-bottom: 16px;
  border: 1px solid #e6e3e0;
}

.goodsPic img {
  width: 100%;
  display: block;
}

.goodsConText {
  float: right;
  border-top: 1px solid #7f7f7f;
  width: 564px;
}

.godeTitle {
  padding: 21px 0;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #cccccc;
  letter-spacing: .8px;
  cursor: pointer;
  overflow: hidden;
}

.godeTitle .goodsArrow {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  fill: #000;
  opacity: .5;
}

.goodsCon {
  padding: 0 90px 80px;
}

.goodsConText .on .goodsArrow {
  top: 37%;
  transform: rotate(180deg);
}

.goodsChild li {
  display: flex;
  padding: 12px 0px 12px 20px;
  border-bottom: 1px solid #cccccc;
  justify-content: space-between;
}

.storeName {
  flex: 0 0 180px;
  font-size: 13px;
  color: #666;
  letter-spacing: .6px;
}

.storeDate {
  display: flex;
  flex: 0 0 360px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: -10px;
  padding-right: 19px;
}

.storeDate p,
.storeDatePair p {
  /*flex: 0 0 49px;*/
  padding-left: 15px;
  font-size: 13px;
  color: #666;
  margin-bottom: 11px;
  /*justify-content: space-between;*/
  display: flex;
  align-items: center;
  overflow: hidden;
}

.storeDate svg,
.storeDatePair svg {
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-left: 3px;
}

.storeDate svg.iconError,
.storeDatePair svg.iconError {
  top: 5px;
  transform: scale(1.44);
}

.storeDatePair {
  display: flex;
  flex: 0 0 360px;
  flex-flow: column nowrap;
  justify-content: flex-end;
  margin-bottom: -10px;
  padding-right:20px;
}

.goodsChild {
  display: none;
}

@media all and (min-width: 0) and (max-width: 767px) {
  .goodsScroll {
    padding: 60px 0;
  }

  .goodsDetails {
    padding: 5px;
    margin: 0 25px;
    width: auto;
  }

  .goodsDetails .goodsClose{
    top: 14px;
    right: 18px;
  }

  .goodsDetails .goodsTitle {
    padding-top: 46px;
    margin-bottom: 21px;
  }

  .goodsDetails .goodsTitle h3 {
    font-size: 30px;
    margin-bottom: -6px;
  }

  .goodsDetails .goodsTitle p {
    font-size: 11px;
  }

  .goodsDetails .goodsIntro {
    text-align: left;
    margin-bottom: 12px;
    padding: 0 19px;
  }

  .goodsDetails .goodsTips {
    margin-bottom: 44px;
  }

  .storeBtn:hover {
    background: #f5f4f2;
  }

  .goodsCon {
    padding: 0 18px 50px;
  }

  .goodsPicBox {
    width: auto;
    float: none;
    margin: 0 51px 35px;
  }

  .goodsConText {
    float: none;
    width: auto;
  }

  .godeTitle {
    padding: 15px 0;
  }

  .godeTitle .goodsArrow {
    right: 0px;
  }

  .goodsChild li {
    display: block;
    padding: 12px 0px 12px 12px;
  }

  .storeName {
    margin-bottom: 5px;
  }

  .storeDate {
    flex: 1;
    padding-right: 0;
    justify-content: flex-start;
    margin-bottom: -6px;
  }

  .storeDatePair {
    flex: 1;
    padding-right: 0;
    justify-content: flex-start;
    margin-bottom: -6px;
  }

  .storeDate p {
    padding-left: 0;
    width: calc((100% - 0px*3)/3);
    flex-wrap: wrap;
    margin-bottom: 7px;
  }
  
  .storeDatePair p {
    padding-left: 0;
    padding-right:5px;
    margin-right: calc((60% - 50px*3)/3);
    flex-wrap: wrap;
    margin-bottom: 7px;
    font-size:11px;
  }
  
  .storeDatePair svg {
    width: 10px;
    height: 10px;
    padding-left:2px;
  }
  
  .mask2 {
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    background: #fff;
    padding-bottom: 3px;
    padding-top: 0px;
    width: auto;
    height: auto;
  }

  .mask2 {
    position: static;
  }
}

@media all and (min-width: 0) and (max-width: 320px) {
  .storeDatePair p {
    margin-right: calc((71% - 50px*3)/3);
    font-size:10px;
  }
  
  .storeDatePair svg {
    width: 8px;
    height: 8px;
    padding-left:0;
  }
}