.products {
  position: relative;
}

.products .top-wrap {
  height: 50px;
  color: #fff;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: linear-gradient(to bottom, rgba(41, 40, 40, 1) 0%, rgba(0, 0, 0, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products .title {
  text-align: left;
  line-height: 1.2;
  margin-right: 10px;
  font-weight: normal;
}

.products .tab-list {
  margin-top: 0;
  border-bottom: 2px solid rgba(255, 255, 255, .5);
}

.products .tab-list li {
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  margin-bottom: -2px;
  cursor: pointer;
}

.products .tab-list li:not(:last-child) {
  margin-right: 8px;
}

.products .tab-list li.active {
  border-bottom: 3px solid var(--style-color);
}

.products .top-wrap .btn {
  width: 85px;
  flex-shrink: 0;
  padding: 2px 10px;
  border-radius: 4px;
  border: 1px solid #fff;
}


/* 画布区域 */
.products .canvas-wrap {
  width: 100%;
  height: calc(100vw * (919 / 1360));
  position: relative;
}

.products .canvas-wrap.all-screen {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 60px);
  z-index: 10000;
}

.products .canvas-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.products .canvas-wrap.active::before {
  opacity: 0;
}

.products .canvas-item {
  position: relative;
  z-index: 1;
}

.products .screen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 11;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  opacity: .4;
  display: none;
}

.products .canvas-wrap.all-screen .screen-close {
  display: block;
}

.products .tip-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: calc(100% - 60px);
  z-index: 11;
}

.products .canvas-play {
  width: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.products .canvas-loadding {
  width: 80px;
  display: none;
  margin-left: auto;
  margin-right: auto;
}

.products .canvas-wrap .btn {
  width: 122px;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.33);
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  display: none;
  margin-left: auto;
  margin-right: auto;
}

.products .tips-info {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  margin-top: 15px;
}

.products .show-icon {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 11;
  line-height: 1;
  cursor: pointer;
  display: none;
}

.products .canvas-wrap.active .show-icon {
  display: block;
}

.products .show-icon::before {
  content: '\ebcc';
  font-size: 20px;
  font-weight: bold;
  color: var(--style-color);
  font-family: "iconfont" !important;
}

.products .show-icon.hide::before {
  content: '\ebcd';
}

.products .canvas-list {
  position: absolute;
  right: 20px;
  bottom: 10px;
  z-index: 11;
  display: none;
}

.products .canvas-wrap.active .canvas-list {
  display: flex;
}

.products .canvas-list li {
  font-size: 10px;
  padding: 5px 8px;
  background: #FFFFFF;
  cursor: pointer;
  position: relative;
}

.products .canvas-list>li {
  border: 1px solid #707070;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .canvas-list>li:nth-child(2) {
  width: 90px;
}

.products .canvas-list>li:nth-child(3) {
  width: 80px;
}

.products .canvas-list>li:nth-child(-n+3) {
  border-radius: 4px;
  margin-right: 10px;
}

.products .canvas-list>li:nth-last-of-type(1) {
  border-radius: 0 4px 4px 0;
}

.products .canvas-list>li:nth-last-of-type(3) {
  border-radius: 4px 0 0 4px;
}

.products .canvas-list>li:nth-last-child(-n+3) {
  border-color: var(--style-color);
}

.products .canvas-list>li:nth-last-child(-n+3).active {
  color: #fff;
  background: var(--style-color);
}

.products .nav-open i {
  font-size: 12px;
  line-height: 1;
  margin-left: 5px;
}

.products .canvas-list>li ul {
  position: absolute;
  left: 0;
  bottom: 100%;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.products .canvas-list>li ul.active {
  opacity: 1;
  visibility: visible;
}

.products .canvas-list>li ul li {
  color: #333;
}

.products .canvas-icon {
  line-height: 1;
  margin-right: 5px;
  overflow: hidden;
}

.products .canvas-icon img {
  width: auto;
  height: 14px;
}

/* 右侧内容区域 */
.products .tab-wrap {
  padding: 10px 15px;
  background: linear-gradient(to bottom, rgba(41, 40, 40, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.products .rt-wrap {
  position: relative;
  background: #fff;
}

.products .rt-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  z-index: 100000;
}

.products .rt-wrap.active::after {
  display: none;
}

.products .tab-pane {
  height: 100%;
}

.products .item-wrap {
  height: 100%;
  overflow-y: scroll;
}

.products .item {
  padding: 20px 24px 24px;
  border-bottom: 1px solid #9E9E9E;
}

.products .tit {
  font-size: 16px;
}

.products .sub-tit {
  color: #666;
  margin-top: 2px;
  margin-bottom: 14px;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.products .sub-tit img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

.products .sub-tit span {
  text-indent: .25em;
  text-transform: uppercase;
}

.products .part-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
  margin-bottom: -12px;
}

.products .part-list li {
  width: 40px;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 6px;
  border: 1px solid #D3D3D3;
  cursor: pointer;
  position: relative;
}

.products .part-list li.selected {
  border-color: var(--sub-color);
}

.products .part-list li img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.products .part-list li::after {
  content: "\e613";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  width: 28px;
  height: 28px;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
  background: var(--sub-color);
  border: 1px solid #FFFFFF;
  font-family: "iconfont" !important;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.products .part-list li.selected::after {
  display: flex;
}

.products .panel-btn-wrap {
  display: flex;
  margin-left: -8px;
  margin-right: -8px;
  margin-top: 18px;
}

.products .panel-btn-wrap .btn, .products .panel-wrap .btn {
  font-size: 14px;
  padding: 6px 16px 5px;
  border-radius: 4px;
  margin-left: 8px;
  margin-right: 8px;
  background: #D2D2D2;
  border-color: #BFBFBF;
}

.products .panel-btn-wrap .btn.active, .products .panel-wrap .btn.active {
  color: #fff;
  background: var(--style-color);
}

.products .panel-wrap {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #BFBFBF;
  display: none;
}

.products .panel-list {
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: -16px;
}

.products .panel-list li {
  margin-bottom: 16px;
}

.products .panel-content {
  margin-top: 20px;
}

.products .panel-pane {
  display: none;
}

.products .item-list, .products .radio-list {
  margin-top: 16px;
}

.products .item-list li, .products .radio-list li {
  display: flex;
}

.products .item-list li:not(:last-child), .products .radio-list li:not(:last-child) {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #D4D4D4;
}

.products .checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 10px;
  color: #E2E2E2;
  background: #E2E2E2;
  border: 1px solid #A9A9A9;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.products .checkbox.checked {
  color: #fff;
  background: var(--sub-color);
  border-color: var(--sub-color);
}

.products .checkbox i {
  font-size: 14px;
  line-height: 1;
}

.products .radio-box {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 10px;
  background: rgba(180, 180, 180, 0.2);
  border: 1px solid #B4B4B4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.products .radio-box.checked {
  border-color: var(--style-color);
  background: none;
}

.products .radio-box::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--style-color);
  opacity: 0;
}

.products .radio-box.checked::after {
  opacity: 1;
}

.products .info-group {
  font-size: 14px;
  line-height: 1;
}

.products .item-click {
  display: inline-block;
  color: #004E97;
  margin-top: 3px;
  text-decoration: underline;
  cursor: pointer;
}

.products .prop-scrollbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: scroll;
  z-index: 1000;
  display: none;
}

.products .prop-wrap {
  padding: 20px 24px 0;
}

.products .prop-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid #707070;
}

.products .prop-title i {
  color: #777777;
  font-size: 20px;
  line-height: 1;
  margin-left: 20px;
  position: relative;
  top: 6px;
  cursor: pointer;
}

.products .swiper-container {
  width: calc(100% - 30px);
  max-width: 350px;
}

.products .swiper-slide {
  border: 2px solid transparent;
  cursor: pointer;
}

.products .swiper-slide.active {
  border-color: var(--style-color);
}

.products .swiper-pagination {
  display: block;
  font-size: 14px;
  margin-top: 17px;
}

.products .prop-tips {
  margin-top: 22px;
  font-size: 14px;
}

.products .faq-wrap {
  padding: 20px 24px 0;
}

.products .faq-title {
  color: #666;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #707070;
}

.products .faq-item:not(:last-child) {
  margin-bottom: 24px;
}

.products .faq-tit {
  font-size: 14px;
  border-radius: 4px;
  padding: 9px 50px 8px 10px;
  border: 1px solid #CED4DA;
  border-right: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.products .faq-tit.active {
  border-color: var(--style-color);
}

.products .faq-tit i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #6C757D;
}

.products .faq-tit.active i {
  background: var(--style-color);
}

.products .faq-tit i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 6px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  transition: all .3s;
}

.products .faq-tit.active i::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.products .faq-info {
  margin-top: 10px;
  font-weight: bold;
  border-radius: 4px;
  padding: 17px 20px;
  border: 1px solid var(--style-color);
  display: none;
}

.products .faq-info ul {
  padding-left: 16px;
}

.products .faq-info ul li {
  font-size: 13px;
  line-height: calc(22 / 13);
}

.products .faq-info ul li:not(:last-child) {
  margin-bottom: 13px;
}

.products .btn-wrap {
  display: none;
}

@media (max-width: 767px) {
  .products {
    height: calc(100vh - 60px);
  }

  .products .title {
    font-size: 14px;
  }

  .products .canvas-list>li:nth-child(1), .products .canvas-list>li:nth-child(2) {
    display: none;
  }

  .products .rt-wrap {
    height: calc(100% - 50px - 100vw * (919 / 1360) - 51px);
  }

  .products .tab-content {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .products .top-wrap {
    height: 60px;
  }

  .products .tips-info {
    font-size: 16px;
  }

  .products .canvas-list>li:nth-child(3) {
    width: 90px;
  }

  .products .tab-list li {
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .products .item-wrap {
    height: calc(100vh - 51px);
  }

  .products .part-list li {
    width: 60px;
    margin-left: 6px;
    margin-right: 6px;
    margin-bottom: 12px;
  }
}

@media (min-width: 992px) {
  .products .top-wrap {
    padding: 0 18px;
  }

  .products .canvas-wrap {
    width: calc(100vw - 400px);
    height: calc(100vh - 141px);
  }

  .products .canvas-wrap.all-screen {
    top: 69px;
    height: calc(100vh - 69px);
  }

  .products .canvas-list {
    right: 30px;
    bottom: 20px;
  }

  .products .canvas-list>li {
    padding: 9px 12px 8px;
  }

  .products .canvas-list>li:nth-child(-n+3) {
    margin-right: 14px;
  }

  .products .canvas-list li:hover .canvas-icon img {
    position: relative;
    top: 14px;
    filter: drop-shadow(0 -14px 0 #fff);
  }

  .products .tab-wrap {
    position: fixed;
    top: 86px;
    right: 127px;
    padding: 0;
    background: none;
  }

  .products .rt-wrap {
    position: absolute;
    top: 72px;
    right: 0;
    width: 400px;
    height: calc(100vh - 141px);
  }

  .products .tab-content {
    height: 100%;
  }

  .products .item-wrap {
    height: 100%;
    padding-bottom: 75px;
  }

  .products .prop-scrollbar {
    position: absolute;
    height: 100%;
    padding-bottom: 75px;
    z-index: 1;
  }

  .products .btn-wrap {
    position: absolute;
    right: 24px;
    bottom: 18px;
    display: flex;
    z-index: 11;
  }

  .products .btn-wrap .btn {
    color: var(--style-color);
    padding: 7px 24px 6px;
    background: #FFFFFF;
    border: 1px solid var(--style-color);
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
    transition: all .3s;
  }

  .products .btn-wrap .btn:hover {
    color: #fff;
    background: var(--style-color);
  }

  .products .btn-wrap .btn-prev {
    display: none;
  }

  .products .btn-wrap .btn-next {
    margin-left: 14px;
  }
}

@media (min-width: 1200px) {
  .products .top-wrap {
    height: 72px;
  }

  .products .top-wrap .btn {
    padding: 6px 12px;
  }

  .products .canvas-wrap {
    width: calc(100vw - 500px);
  }

  .products .screen-close {
    top: 24px;
    right: 24px;
    font-size: 24px;
  }

  .products .canvas-play {
    width: 70px;
  }

  .products .canvas-wrap .btn {
    font-size: 20px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .products .tips-info {
    font-size: 20px;
  }

  .products .show-icon {
    left: 20px;
    bottom: 20px;
  }

  .products .canvas-list>li:nth-child(1):hover, .products .canvas-list>li:nth-last-child(-n+3):hover, .products .canvas-list>li ul li:hover {
    color: #fff;
    background: var(--style-color);
  }

  .products .tab-list li {
    padding-left: 19px;
    padding-right: 19px;
  }

  .products .rt-wrap {
    width: 500px;
  }

  .products .prop-title {
    margin-bottom: 56px;
  }
}

@media (min-width: 1640px) {
  .products .canvas-wrap {
    width: calc(100vw - 560px);
  }

  .products .rt-wrap {
    width: 560px;
  }

  .products .tips-info {
    font-size: 24px;
  }
}


/* inquiry-wrap */
.inquiry-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  background: rgba(0, 0, 0, .4);
  display: none;
}

.inquiry-wrap .back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 60px);
  max-width: 880px;
  max-height: calc(100vh - 60px);
  padding: 18px 15px 40px;
  padding-top: 18px;
  padding-bottom: 40px;
  border-radius: 4px;
  background: #fff;
}

.inquiry-wrap .title-wrap {
  margin-left: -15px;
  margin-right: -15px;
  padding: 0 15px 16px;
  border-bottom: 1px solid #DEE2E6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inquiry-wrap .title-wrap i {
  font-size: inherit;
  cursor: pointer;
}

.inquiry-wrap .item-wrap {
  margin-top: 20px;
}

.inquiry-wrap .lt {
  margin-bottom: 20px;
}

.inquiry-wrap .img-wrap {
  position: relative;
}

.inquiry-wrap .img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  aspect-ratio: 360 / 241;
}

.inquiry-wrap .img-title {
  position: absolute;
  top: 14px;
  right: 12px;
  color: #fff;
  font-size: 10px;
  padding: 3px 14px 4px;
  border-radius: 11px;
  background: var(--style-color);
}

.inquiry-wrap .img-tips {
  font-size: 12px;
  margin-top: 11px;
  color: #6C757D;
}

.inquiry-wrap .img-tips span {
  color: #ED1C24;
  margin-right: 3px;
  display: inline-block;
}

.inquiry-wrap .form-group {
  margin-bottom: 16px;
}

.inquiry-wrap .form-control {
  padding: 5px 10px;
  border-color: #CED4DA;
}

.inquiry-wrap .form-control::-webkit-input-placeholder {
  color: #6C757D;
}

.inquiry-wrap .form-control:-moz-placeholder {
  color: #6C757D;
}

.inquiry-wrap .form-control::-moz-placeholder {
  color: #6C757D;
}

.inquiry-wrap .form-control:-ms-input-placeholder {
  color: #6C757D;
}

.inquiry-wrap input.form-control {
  height: 40px;
  font-size: 14px;
}

.inquiry-wrap .tit {
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 9px;
  color: #6C757D;
}

.inquiry-wrap .tit span {
  color: #ED1C24;
}

.inquiry-wrap .checkbox-wrap {
  display: flex;
  transform: translateY(-1px);
  padding-left: 18px;
}

.inquiry-wrap .checkbox {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.inquiry-wrap .checkbox:not(:last-child) {
  margin-right: 40px;
}

.inquiry-wrap .checkbox input[type=checkbox] {
  margin-right: 8px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #E2E2E2;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.inquiry-wrap .checkbox input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #A9A9A9;
}

.inquiry-wrap .checkbox input[type=checkbox]:checked::before {
  content: '✔';
  font-size: 12px;
  color: #fff;
  border-color: var(--sub-color);
  background: var(--sub-color);
  text-align: center;
  line-height: 13px;
}

.inquiry-wrap .selected-option {
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: #6C757D;
  padding-left: 10px;
  padding-right: 50px;
  border-radius: 4px;
  border: 1px solid #CED4DA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.inquiry-wrap .selected-option i {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  height: calc(100% + 2px);
  border-radius: 0 4px 4px 0;
  background: #6C757D;
}

.inquiry-wrap .selected-option i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 6px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.inquiry-wrap .options {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 11;
  width: 100%;
  list-style: none;
  background: #fff;
  border-radius: 0 0 4px 4px;
  border: 1px solid #CED4DA;
  display: none;
}

.inquiry-wrap .options li {
  font-size: 14px;
  padding: 5px 18px;
  cursor: pointer;
}

.inquiry-wrap .btn-wrap {
  margin-top: 20px;
}

.inquiry-wrap .btn {
  width: 100%;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  padding-top: 9px;
  padding-bottom: 8px;
  border-color: var(--style-color);
  background: var(--style-color);
}

@media (min-width: 992px) {
  .inquiry-wrap .item-wrap {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
  }

  .inquiry-wrap .lt {
    flex: 0 0 42.5%;
    max-width: 42.5%;
    margin-bottom: 0;
  }

  .inquiry-wrap .rt {
    flex: 1;
    padding-right: 24px;
  }

  .inquiry-wrap .btn-wrap {
    margin-top: 0;
  }

  .inquiry-wrap .btn {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

@media (min-width: 1200px) {
  .inquiry-wrap .item-wrap {
    padding-bottom: 82px;
  }

  .inquiry-wrap .options li:hover {
    color: #fff;
    background: var(--sub-color);
  }

  .inquiry-wrap .btn {
    font-size: 18px;
  }
}