<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.d-flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.space-evenly {
  justify-content: space-evenly;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-fill {
  flex: 1;
}

.text-nowrap {
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.rotate180 {
  transform: rotate(180deg);
}

.bg-white {
  background: #fff;
}

/* 显示一行文字 */
.line1 {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 显示2行文字 */
.line2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.title {
  font-size: .257353rem;
  color: #000;
}
.title .tag {
  color: #fff;
  width: 1.102941rem;
  height: .441176rem;
  background: url("../../../../img/title-tag-empty.png") no-repeat;
  background-size: cover;
  line-height: .441176rem;
  text-align: center;
  margin-right: .183824rem;
}

.scenes {
  margin-top: .404412rem;
}
.scenes .scene {
  position: relative;
  max-width: calc((100% - 1.029412rem) / 3);
  cursor: pointer;
}
.scenes .scene img {
  width:2.897059rem;
  max-width: 100%;
}
.scenes .scene span {
  position: absolute;
  color: blue;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: .003676rem;
  font-size: .176471rem;
  font-weight: 600;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.subtitle {
  font-weight: 600;
  margin: .220588rem 0;
}
.subtitle .red-text {
  text-indent: -0.5em;
  color: #d8221e;
  font-size: .257353rem;
}
.subtitle span {
  font-size: .205882rem;
}
.subtitle span + span {
  font-size: .117647rem;
  font-weight: 300;
  margin-left: .073529rem;
}

.fourBlueCart .unit {
  max-width: 30%;
  display: inline-block;
  margin: 0 auto;
}
.fourBlueCart .unit img {
  max-width: 90%;
  height: 1.507353rem;
  display: block;
  margin: 0 auto;
}
.fourBlueCart .unit span {
  margin-top: .110294rem;
  font-size: .147059rem;
}

.realModel h2 {
  text-align: left;
  color: #d8221e;
  font-size: .257353rem;
  text-indent: -0.5em;
  margin: .367647rem 0 .220588rem;
}
.realModel a {
  max-width:30%;
  display:inline-block;
  margin:0 auto;
}
  .realModel a img{
    width: 100%;
    height: auto;
  }

@media only screen and (max-width: 640px) {
  .fourBlueCart,
  .realModel div,
  .scenes{
    flex-wrap: wrap!important;
  }
  .fourBlueCart .unit,
  .realModel a,
  .scenes .scene {
    width: 100%!important;
    max-width: unset;
    flex: unset;
  }
  .fourBlueCart .unit,  
  .realModel a,
  .scenes .scene{
    margin-bottom: .220588rem;
  }
  .fourBlueCart .unit img, 
  .realModel a img,
  .scenes .scene img{
    width: 100%;
    height: auto;
  }
}</pre></body></html>