@charset "utf-8";
/*内页通用*/
.pageBanner,
.supportBanner {
  padding-top: 114px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pageBanner .banner-box,
.supportBanner .banner-box {
  width: 100%;
  height: 390px;
  display: flex;
  background-size: cover !important;
}
.pageBanner .section,
.supportBanner .section {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
}
.pageBanner .section .summary,
.supportBanner .section .summary {
  margin-bottom: 30px;
}
.productBanner .banner-box {
  height: 390px;
}
.supportBanner .banner-box {
  height: 220px;
}
.supportBanner .section {
  flex-direction: row;
}
.supportBanner .location {
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  border-bottom: none;
}
.faqBanner .location {
  display: none;
}
.sceneBanner .banner-box {
  height: 620px;
}
.sceneBanner .banner-box .section {
  align-items: flex-start;
}
.sceneBanner .banner-box .section .sub {
  font-size: 18px;
}
.pageTitle {
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
.swiper-page-button {
  width: 40px !important;
  height: 40px !important;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.5s;
  top: 40% !important;
}
.swiper-page-button::after {
  color: #fff;
  font-size: 20px !important;
}
.swiper-page-button:hover {
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}
.more {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: 30px;
  transition: all 0.5s;
}
.more i {
  background: #666;
  height: 13px;
  width: 13px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.pager {
  display: flex;
  justify-content: center;
  width: 100%;
}
.pager .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #f0f0f0;
  margin: 0 10px;
  color: #999;
  transition: all 0.5s;
}
.pager .number:hover,
.pager .number.active {
  background: var(--dominant-color);
  color: #fff;
  transition: all 0.5s;
}
.pager .number.prev:hover img,
.pager .number.next:hover img {
  filter: grayscale(0) brightness(100);
}
.location {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
  transition: all 0.5s;
  width: 100%;
}
.location a {
  padding-right: 15px;
  background: url("../images/page/icon2.png") no-repeat center right;
  margin-right: 10px;
  font-size: 16px;
  color: #666;
}
.location a img {
  margin-bottom: 4px;
}
.location a:last-child {
  background: none;
  padding-right: 0;
  margin-right: 0;
  color: #333;
}
.location a:hover {
  color: #007aff;
}
.product-detail-title {
  text-align: center;
}
.product-detail-title.text-left {
  text-align: left;
}
.form-support {
  margin: auto;
  max-width: 640px;
  width: 100%;
  position: relative;
}
.form-support label {
  width: 100%;
  display: block;
}
.form-support label::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/page/search-support.png") no-repeat center left;
  width: 60px;
  height: 60px;
}
.form-support label input {
  width: 100%;
  height: 60px;
  border-radius: 16px;
  border: none;
  font-size: 18px;
  padding-left: 30px;
}
.form-support label input::placeholder {
  font-size: 18px;
  color: #999;
  opacity: 0.6;
}
.form-support label button {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--dominant-color);
  color: #fff;
  font-size: 18px;
  height: 60px;
  width: 120px;
  border: none;
  border-radius: 0 6px 6px 0;
}
/*新闻中心*/
.news-box1 {
  background: #f2f2f2;
  padding: 80px 0 20px;
}
.news-box1 .news-box1-change {
  display: flex;
  background: #fff;
}
.news-box1 .news-box1-change .item {
  width: calc(100% / 5);
  position: relative;
  text-align: center;
  height: 70px;
  line-height: 70px;
  color: #666;
  cursor: pointer;
}
.news-box1 .news-box1-change .item::before {
  content: '';
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #ccc;
  height: 20px;
  width: 1px;
  position: absolute;
}
.news-box1 .news-box1-change .item:last-child::before {
  display: none;
}
.news-box1 .news-box1-change .item::after {
  content: '';
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--dominant-color);
  position: absolute;
  left: 0;
  transition: all 0.5s;
}
.news-box1 .news-box1-change .item:hover,
.news-box1 .news-box1-change .item.active {
  color: var(--dominant-color);
}
.news-box1 .news-box1-change .item:hover::after,
.news-box1 .news-box1-change .item.active::after {
  width: 100%;
  transition: all 0.5s;
}
.news-box1 .news-box1-show .item {
  display: none;
}
.news-box1 .news-box1-show .item.active {
  display: block;
}
.news-box2 {
  padding: 80px 0;
}
.news-box2 .news-box2-video {
  display: flex;
  flex-wrap: wrap;
}
.news-box2 .news-box2-video .item {
  width: calc((100% - 100px) / 3);
  margin-right: 50px;
  height: 100%;
  margin-bottom: 30px;
}
.news-box2 .news-box2-video .item .imgBox {
  height: 220px;
}
.news-box2 .news-box2-video .item:nth-child(3n) {
  margin-right: 0;
}
.news-box2 .news-box2-video .item:hover .title {
  color: var(--dominant-color) !important;
  transition: all 0.5s;
}
.news-box2 .news-box2-video .item:hover .more {
  color: var(--dominant-color);
  transition: all 0.5s;
}
.news-box2 .news-box2-video .item:hover .more i {
  background: var(--dominant-color) !important;
  transition: all 0.5s;
}
.news-box2 .news-box2-video .item .text {
  margin: 20px auto;
}
.news-box2 .news-box2-video .item .text .sub {
  font-size: 12px;
  background: #333;
  color: #fff;
  display: inline-block;
  padding: 4px 6px;
}
.news-box2 .news-box2-video .item .text .title {
  color: #333;
  margin-top: 10px;
  margin-bottom: 6px;
  transition: all 0.5s;
}
.news-box2 .news-box2-video .item .text .time {
  font-size: 14px;
  color: #666;
}
.news-box2 .reload {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  margin-top: 30px;
}
.news-box2 .reload img {
  margin-right: 10px;
}
.news-box3 {
  background: #f2f2f2;
  padding: 80px 0;
}
.news-box3 .news-box3-top .title {
  position: absolute;
  bottom: 0;
  padding: 45px;
  color: #fff;
  font-weight: 100;
}
.news-box3 .news-box3-top .news-button {
  color: #333;
  transition: all 0.5s;
}
.news-box3 .news-box3-top .news-button::after {
  font-size: 20px;
}
.news-box3 .news-box3-top .news-button:hover {
  color: #fff;
  transition: all 0.5s;
}
.news-box3 .news-box3-bottom {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.news-box3 .news-box3-bottom .item {
  width: calc((100% - 100px) / 3);
  margin-right: 50px;
  margin-bottom: 50px;
  height: 100%;
  background: #fff;
  padding: 25px;
}
.news-box3 .news-box3-bottom .item:nth-child(3n) {
  margin-right: 0;
}
.news-box3 .news-box3-bottom .item .text {
  margin-top: 30px;
}
.news-box3 .news-box3-bottom .item .text .title {
  color: #333;
  margin-bottom: 10px;
}
.news-box3 .news-box3-bottom .item .text .time {
  font-size: 14px;
  color: #666;
}
.news-box3 .news-box3-bottom .item .text .summary {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  line-height: 1.8;
}
.news-box3 .news-box3-bottom .item:hover .text .title {
  color: var(--dominant-color);
}
.news-box3 .news-box3-bottom .item:hover .more {
  color: var(--dominant-color);
  transition: all 0.5s;
}
.news-box3 .news-box3-bottom .item:hover .more i {
  background: var(--dominant-color) !important;
  transition: all 0.5s;
}
.news-box3 .news-box3-more {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.news-box3 .news-box3-more img {
  filter: brightness(0);
  margin-left: 6px;
  transition: all 0.5s;
}
.news-box3 .news-box3-more:hover {
  transition: all 0.5s;
  color: var(--dominant-color);
}
.news-box3 .news-box3-more:hover img {
  filter: none;
  transition: all 0.5s;
}
/*新闻列表*/
.news-list .pageTitle {
  margin-top: 50px;
}
.news-list .news-list-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.news-list .news-list-box .news-list-left {
  width: calc(100% - 440px);
  margin-right: 50px;
  margin-top: 0;
  background: #fff;
  padding: 30px;
}
.news-list .news-list-box .news-list-left .item {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.news-list .news-list-box .news-list-left .item .imgBox {
  width: 44%;
  margin-right: 35px;
}
.news-list .news-list-box .news-list-left .item .text {
  width: calc(100% - 44% - 35px);
  color: #666;
}
.news-list .news-list-box .news-list-left .item .text .sub {
  background: #333;
  font-size: 12px;
  padding: 6px 14px;
  display: inline-block;
  color: #fff;
}
.news-list .news-list-box .news-list-left .item .text .title {
  color: #333;
  margin: 10px 0 6px;
}
.news-list .news-list-box .news-list-left .item .text .time {
  font-size: 14px;
  margin-bottom: 20px;
}
.news-list .news-list-box .news-list-left .item .text .summary {
  font-size: 14px;
  line-height: 1.6;
}
.news-list .news-list-box .news-list-left .item .text .list-more {
  display: flex;
  margin-top: 16px;
}
.news-list .news-list-box .news-list-left .item .text .list-more .view {
  background: url("../images/page/eye.png") no-repeat center left;
  padding-left: 30px;
  opacity: 0.5;
  margin-right: 30px;
}
.news-list .news-list-box .news-list-left .item .text .list-more .year {
  background: url("../images/page/calendar.png") no-repeat center left;
  padding-left: 30px;
  opacity: 0.5;
}
.news-list .news-list-box .news-list-left .item:hover .text .title {
  color: var(--dominant-color);
}
.news-list .news-list-box .news-list-right {
  width: 390px;
}
.news-list .news-list-box .news-list-right .item {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}
.news-list .news-list-box .news-list-right .item .title {
  color: #333;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.news-list .news-list-box .news-list-right .support a {
  position: relative;
  display: flex;
  align-items: center;
}
.news-list .news-list-box .news-list-right .support .title {
  color: #fff;
  position: absolute;
  left: 30px;
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.news-list .news-list-box .news-list-right .recommend {
  padding-bottom: 10px;
}
.news-list .news-list-box .news-list-right .recommend .recommend-box {
  display: flex;
  flex-wrap: wrap;
}
.news-list .news-list-box .news-list-right .recommend .recommend-box .item-list {
  width: calc((100% - 25px) / 2);
  margin-right: 25px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s;
  margin-bottom: 20px;
  cursor: pointer;
}
.news-list .news-list-box .news-list-right .recommend .recommend-box .item-list:nth-child(even) {
  margin-right: 0;
}
.news-list .news-list-box .news-list-right .recommend .recommend-box .item-list:hover,
.news-list .news-list-box .news-list-right .recommend .recommend-box .item-list.active {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  color: #fff;
  transition: all 0.5s;
}
.news-list .news-list-box .news-list-right .brand {
  margin-bottom: 0;
}
.news-list .news-list-box .news-list-right .brand .item-list {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #666;
}
.news-list .news-list-box .news-list-right .brand .item-list:hover .brand-title {
  color: var(--dominant-color);
}
.news-list .news-list-box .news-list-right .brand .item-list:hover .number {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  color: #fff;
}
.news-list .news-list-box .news-list-right .brand .item-list a {
  display: flex;
}
.news-list .news-list-box .news-list-right .brand .item-list .number {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: 1px solid #ccc;
  background: #f2f2f2;
  font-size: 12px;
  margin-right: 20px;
}
.news-list .news-list-box .news-list-right .brand .item-list .brand-title {
  font-size: 14px;
  line-height: 1.6;
  width: calc(100% - 40px);
}
.news-list .news-list-box .news-list-right .hot-news {
  padding-top: 0;
  margin-bottom: 0;
}
.news-list .news-list-box .news-list-right .hot-news .hot-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.news-list .news-list-box .news-list-right .hot-news .hot-list .imgBox {
  width: 110px;
  height: 60px;
  margin-right: 20px;
}
.news-list .news-list-box .news-list-right .hot-news .hot-list .hot-title {
  width: calc(100% - 130px);
  font-size: 14px;
  color: #666;
}
.news-list .news-list-box .news-list-right .hot-news .hot-list:hover .hot-title {
  color: var(--dominant-color);
}
/*新闻详情*/
.news-info {
  padding-top: 120px;
  background: #fff;
}
.news-info .news-info-box {
  margin-top: 0;
}
.news-info .news-info-box .news-list-left {
  padding: 0 70px 0 0;
  border-right: 1px solid #f0f0f0;
  margin-right: 30px;
}
.news-info .news-info-box .news-list-left .title {
  font-weight: 600;
  line-height: 1.6;
  margin-top: 40px;
}
.news-info .news-info-box .news-list-left .summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 36px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
}
.news-info .news-info-box .news-list-left .summary .summary-left .sub {
  color: #0070d5;
  font-size: 16px;
}
.news-info .news-info-box .news-list-left .summary .summary-left .time {
  color: #666;
  font-size: 14px;
}
.news-info .news-info-box .news-list-left .summary .summary-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.5;
}
.news-info .news-info-box .news-list-left .summary .summary-right .view {
  background: url("../images/page/eye.png") no-repeat center left;
  padding-left: 30px;
  margin-right: 20px;
}
.news-info .news-info-box .news-list-left .summary .summary-right .like {
  background: url("../images/page/like.png") no-repeat center left;
  padding-left: 20px;
}
.news-info .news-info-box .news-list-left .news-detail {
  margin-top: 30px;
  font-size: 15px;
  color: #666;
}
.news-info .news-info-box .news-list-left .news-detail img {
  width: 100%;
  height: auto !important;
}
.news-info .news-info-box .recommend {
  margin-top: 10px;
  margin-bottom: 0 !important;
}
.news-info .news-share {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
  align-items: center;
}
.news-info .news-share .item-share {
  margin-left: 30px;
  color: #999;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}
.news-info .news-share .item-share .code-show {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 110px;
  margin-left: -55px;
  display: none;
}
.news-info .news-share .item-share:hover .code-show {
  display: block;
}
.news-info .buy {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  border-top: 1px solid #c9c9c9;
  padding-top: 30px;
  flex-direction: column;
  align-items: center;
}
.news-info .buy p {
  font-size: 18px;
  color: #333;
}
.news-info .buy a {
  font-size: 20px;
  color: #0070d5;
  text-decoration: underline;
  transition: all 0.5s;
}
.news-info .buy a:hover {
  color: #e91628;
  transition: all 0.5s;
}
/*精彩视频*/
.video {
  padding: 190px 0 120px;
  transition: all 0.5s;
}
.video .item-list {
  margin-bottom: 40px;
}
.video .item-list .item-list-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.video .item-list .item-list-text .text-left .title {
  font-size: 26px;
  color: #333;
}
.video .item-list .item-list-text .text-left .summary {
  color: #666;
  margin-top: 10px;
}
.video .item-list .item-list-text .text-right a {
  font-size: 14px;
  color: #666;
  background: url("../images/page/icon2.png") no-repeat center right;
  padding-right: 16px;
  filter: brightness(0.5);
}
.video .item-list .item-list-text .text-right a:hover {
  text-decoration: underline;
}
.video .video-box {
  display: flex;
  flex-wrap: wrap;
}
.video .video-box .item {
  width: calc((100% - 100px) / 3);
  margin-right: 50px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.video .video-box .item .imgBox {
  height: 0;
  padding-bottom: 60%;
}
.video .video-box .item .imgBox img {
  position: absolute;
}
.video .video-box .item .imgBox::after {
  content: '';
  position: absolute;
  background: url("../images/page/video-0.png") no-repeat center;
  width: 28px;
  height: 20px;
  bottom: 20px;
  left: 20px;
}
.video .video-box .item:nth-child(3n) {
  margin-right: 0;
}
.video .video-box .item .title {
  margin: 10px 0;
  color: #333;
}
/*精彩视频弹窗*/
.video-show-box {
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
}
.video-show-box .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  position: fixed;
}
.video-show-box .video-box-content {
  width: 90%;
  max-width: 750px;
  background: #fff;
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  max-height: 90vh;
  overflow: auto;
}
.video-show-box .video-box-content .video-content {
  padding: 15px;
  cursor: pointer;
}
.video-show-box .video-box-content .video-content .video-url {
  position: relative;
}
.video-show-box .video-box-content .video-content .video-url .video-play {
  background: url("../images/page/video-icon.png") no-repeat center;
  background-size: 27px;
  width: 27px;
  height: 27px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}
.video-show-box .video-box-content .video-content .video-url video {
  width: 100%;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}
.video-show-box .video-box-content .video-content .title {
  padding: 10px;
}
.video-show-box .video-box-content .video-more {
  background: #f5f5f5;
  padding: 25px 30px;
}
.video-show-box .video-box-content .video-more .video {
  padding: 0;
  margin-top: 20px;
}
.video-show-box .video-box-content .video-more .video .item-list {
  margin-bottom: 20px;
}
.video-show-box .video-box-content .video-more .video .item-list .video-box .item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
}
.video-show-box .video-box-content .video-more .video .item-list .video-box .item:nth-child(3n) {
  margin-right: 0;
}
.video-show-box .video-box-content .video-more .video .item-list .video-box .item .imgBox::after {
  width: 20px;
  background-size: 20px;
  left: 15px;
  bottom: 15px;
}
/*场景配置*/
.scene-box-1 {
  margin-top: 150px;
  background: url("../images/page/scene-2.png") no-repeat left top 100px;
}
.scene-box-1 .scene-list {
  margin: 120px auto;
}
.scene-box-1 .scene-list .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 150px;
  scroll-margin: 100px;
}
.scene-box-1 .scene-list .item:nth-child(even) {
  flex-direction: row-reverse;
}
.scene-box-1 .scene-list .item .text {
  width: 40%;
}
.scene-box-1 .scene-list .item .text .summary {
  margin-top: 30px;
}
.scene-box-1 .scene-list .item .text .summary .summary-box {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.scene-box-1 .scene-list .item .text .summary .tip {
  border-radius: 16px;
  margin-top: 20px;
  padding: 40px 0;
  color: #666;
}
.scene-box-1 .scene-list .item .text .price-box {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  align-items: center;
  padding: 10px 0 10px;
  margin: 0 0 30px;
}
.scene-box-1 .scene-list .item .text .price-box .title {
  align-items: center;
  flex-basis: 60%;
}
.scene-box-1 .scene-list .item .text .price-box .price {
  font-weight: 600;
}
.scene-box-1 .scene-list .item .text .more-box {
  display: flex;
}
.scene-box-1 .scene-list .item .text .more-box a {
  border: 1px solid #666;
  font-size: 16px;
  padding: 17px 40px;
  color: #666;
  margin-right: 20px;
  border-radius: 16px;
}
.scene-box-1 .scene-list .item .text .more-box a:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.scene-box-1 .scene-list .item .text .more-box a.out-of-stock {
  background: #e6e6e6;
  color: #333;
  border-color: #e6e6e6;
  pointer-events: none;
}
.scene-box-1 .scene-list .item .text .out-of-stock-tip {
  color: #d55959;
  margin-top: 20px;
  font-size: 14px;
}
.scene-box-1 .scene-list .item .img-list {
  width: 53%;
  max-width: 670px;
}
.scene-box-1 .scene-list .item .img-list.img-list-2 .img-bottom .item:nth-child(1) {
  border-radius: 10px 0 0 10px;
}
.scene-box-1 .scene-list .item .img-list.img-list-2 .img-bottom .item:nth-child(2) {
  border-radius: 0 10px 10px 0;
}
.scene-box-1 .scene-list .item .img-list.img-list-3 .img-top {
  border-radius: 0 0 20px 20px;
  margin-bottom: 0;
  margin-top: 20px;
}
.scene-box-1 .scene-list .item .img-list.img-list-3 .img-bottom .item:nth-child(1) {
  border-radius: 10px 0 0 0;
}
.scene-box-1 .scene-list .item .img-list.img-list-3 .img-bottom .item:nth-child(2) {
  border-radius: 0 10px 0 0;
}
.scene-box-1 .scene-list .item .img-list.img-list-3 .img-bottom .item:nth-child(3) {
  border-radius: 0 0 0 10px;
}
.scene-box-1 .scene-list .item .img-list.img-list-3 .img-bottom .item:nth-child(4) {
  border-radius: 0 0 10px 0;
}
.scene-box-1 .scene-list .item .img-list .imgBox {
  height: auto;
  width: 100%;
}
.scene-box-1 .scene-list .item .img-list .imgBox video {
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.scene-box-1 .scene-list .item .img-list .img-top {
  border-radius: 20px 20px 0 0;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
}
.scene-box-1 .scene-list .item .img-list .img-top .imgBox {
  height: 0;
  padding-bottom: 50%;
}
.scene-box-1 .scene-list .item .img-list .img-top .imgBox img {
  position: absolute;
}
.scene-box-1 .scene-list .item .img-list .img-top.one-img {
  border-radius: 10px;
}
.scene-box-1 .scene-list .item .img-list .img-top.one-img .imgBox {
  height: 0;
}
.scene-box-1 .scene-list .item .img-list .img-bottom {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.scene-box-1 .scene-list .item .img-list .img-bottom .item {
  margin-bottom: 0;
  overflow: hidden;
  cursor: pointer;
}
.scene-box-1 .scene-list .item .img-list .img-bottom .item .imgBox {
  height: 0;
  padding-bottom: 100%;
}
.scene-box-1 .scene-list .item .img-list .img-bottom .item .imgBox img {
  position: absolute;
}
.scene-box-1 .scene-list .item .img-list .img-bottom .item:nth-child(1) {
  border-radius: 0 0 0 20px;
}
.scene-box-1 .scene-list .item .img-list .img-bottom .item:nth-child(2) {
  margin-right: 0;
  border-radius: 0 0 20px 0;
}
/*产品中心*/
.product {
  padding: 90px 0;
}
.product .product-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
}
.product .product-left {
  flex-basis: calc(25% - 20px);
  margin-right: 20px;
}
.product .product-left .product-phone-click {
  display: none;
}
.product .product-left .product-list-menu {
  position: sticky;
  top: 80px;
}
.product .product-left .item {
  margin-bottom: 30px;
}
.product .product-left .item .product-title {
  color: #333;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.product .product-left .item .radio-list {
  margin-bottom: 10px;
}
.product .product-left .item .radio-list label {
  display: flex;
  align-items: center;
}
.product .product-left .item .radio-list label input {
  margin-right: 10px;
}
.product .product-right {
  flex-basis: 75%;
  display: flex;
  flex-wrap: wrap;
}
.product .product-right .item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
  background: #f2f2f2;
}
.product .product-right .item.no-show:hover .imgBox img {
  opacity: 1;
}
.product .product-right .item.no-show:hover .imgBox .show-img {
  opacity: 0;
  transition: all 0.5s;
}
.product .product-right .item.no-show:hover .imgBox .show-img img {
  opacity: 0;
}
.product .product-right .item:hover .imgBox img {
  opacity: 0;
}
.product .product-right .item:hover .imgBox .show-img {
  opacity: 1;
  transition: all 0.5s;
}
.product .product-right .item:hover .imgBox .show-img img {
  opacity: 1;
}
.product .product-right .item:hover .get-to-cart {
  opacity: 1 !important;
  transition: all 0.5s !important;
}
.product .product-right .item .imgBox {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.product .product-right .item .imgBox img {
  position: absolute;
}
.product .product-right .item .imgBox .show-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.product .product-right .item .imgBox .show-img .show-title {
  color: #fff;
  padding: 20px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  font-size: 12px;
}
.product .product-right .item:nth-child(3n) {
  margin-right: 0;
}
.product .product-right .item .text {
  text-align: center;
  padding: 20px;
  height: 140px;
}
.product .product-right .item .text .title {
  color: #333;
  font-weight: 600;
}
.product .product-right .item .text .summary {
  color: #666;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 6px 0;
  font-size: 14px;
}
.product .product-right .item .text .price {
  color: var(--dominant-color);
  font-weight: 600;
}
.product .product-right .item .text .get-to-cart {
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 40px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s;
  height: 40px;
  background: url("../images/home/cart-click2.png") no-repeat center;
  background-size: 100%;
}
.product .product-right .item .text .get-to-cart.active {
  background: url("../images/home/check2.png") no-repeat center;
  background-size: 100%;
}
.product .product-right .item .text .get-to-cart img {
  transform: none !important;
}
.product .product-right .pager {
  margin-top: 50px;
}
/*产品对比*/
.product-contrast {
  padding: 80px 0 100px;
}
.product-contrast .location {
  background: #f2f2f2;
  padding: 15px 0;
  margin-bottom: 60px;
}
.product-contrast .product-contrast-box {
  border: 1px solid #e5e5e5;
  border-right: none;
}
.product-contrast .product-contrast-box .item-list {
  display: flex;
}
.product-contrast .product-contrast-box .item-list .item {
  width: 210px;
  font-size: 15px;
  color: #333;
  padding: 20px 40px;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.product-contrast .product-contrast-box .item-list:first-child .item-product-value {
  background: #f2f2f2 !important;
  position: relative;
  padding-bottom: 50px;
}
.product-contrast .product-contrast-box .item-list:first-child .item-product-value .title {
  position: absolute;
  bottom: 40px;
  font-weight: 600;
  color: #333;
}
.product-contrast .product-contrast-box .item-list .item-product-list {
  width: calc(100% - 210px);
  display: flex;
  justify-content: space-around;
}
.product-contrast .product-contrast-box .item-list .item-product-list .item-product-value {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
}
.product-contrast .product-contrast-box .item-list:last-child .item {
  border-bottom: none;
}
.product-contrast .product-contrast-box .item-list:nth-child(even) .item-product-value {
  background: #fff;
}
.product-contrast .product-contrast-box .item-list:nth-child(odd) .item-product-value {
  background: #fcfcfc;
}
/*产品详情*/
/*上部分*/
.product-info {
  padding: 140px 0 100px;
}
.product-info .product-info-box {
  display: flex;
  justify-content: space-between;
}
.product-info .product-info-box .tips {
  margin-top: 50px;
}
.product-info .product-info-box .tips .item {
  padding-left: 40px;
  margin-bottom: 15px;
}
.product-info .product-info-box .apply {
  display: flex;
  margin-top: 40px;
}
.product-info .product-info-box .apply .item {
  margin-right: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
}
.product-info .product-info-box .product-swiper {
  width: 518px;
}
.product-info .product-info-box .product-swiper .product-box {
  position: sticky;
  top: 180px;
}
.product-info .product-info-box .product-swiper .small-box {
  position: relative;
    height: fit-content;
}
.product-info .product-info-box .product-swiper .small-box .swiper-button-prev,
.product-info .product-info-box .product-swiper .small-box .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
}
.product-info .product-info-box .product-swiper .small-box .swiper-button-prev::after,
.product-info .product-info-box .product-swiper .small-box .swiper-button-next::after {
  font-size: 16px;
  color: #333;
}
.product-info .product-info-box .product-swiper .small-box .small-swiper {
  width: calc(100% - 140px);
  margin: 20px auto;
}
.product-info .product-info-box .product-swiper .small-box .small-swiper .swiper-slide {
  cursor: pointer;
  height: auto;
  opacity: 0.6;
  border: 1px solid #eee;
}
.product-info .product-info-box .product-swiper .small-box .small-swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-info .product-info-box .product-swiper .small-box .small-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.product-info .product-info-box .product-swiper .product-change-box {
  height: 518px;
}
.product-info .product-info-box .product-swiper .product-change-box .product-swiper-content {
  position: relative;
}
.product-info .product-info-box .product-swiper .product-change-box .item {
  display: none;
  height: 100%;
}
.product-info .product-info-box .product-swiper .product-change-box .item.active {
  display: block;
}
.product-info .product-info-box .product-swiper .product-change-box .item .big-swiper {
  height: 100%;
}
.product-info .product-info-box .product-swiper .product-change-box .item .big-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-info .product-info-box .product-swiper .product-change-box .item .big-swiper .swiper-button-prev::after,
.product-info .product-info-box .product-swiper .product-change-box .item .big-swiper .swiper-button-next::after {
  color: #0070D5;
}
.product-info .product-info-box .product-swiper .product-change-box .product-video {
  height: 100%;
}
.product-info .product-info-box .product-swiper .product-change-box .product-video .my-video-dimensions {
  width: 100%;
  height: 100%;
}
.product-info .product-info-box .product-swiper .product-change-box .product-video video {
  width: 100%;
  height: 100%;
}
.product-info .product-info-box .product-swiper .product-taps {
  display: flex;
  justify-content: center;
}
.product-info .product-info-box .product-swiper .product-taps .item {
  margin: 0 10px;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 18px;
  cursor: pointer;
}
.product-info .product-info-box .product-swiper .product-taps .item img {
  margin-right: 10px;
  filter: brightness(0);
}
.product-info .product-info-box .product-swiper .product-taps .item:hover {
  background: #eee;
}
.product-info .product-info-box .product-swiper .product-taps .item.active {
  background: var(--dominant-color);
  color: #fff;
}
.product-info .product-info-box .product-swiper .product-taps .item.active img {
  filter: none;
}
.product-info .product-info-box .product-text {
  width: calc(100% - 600px);
  color: #333;
}
.product-info .product-info-box .product-text .price {
  margin: 10px 0 20px;
}
.product-info .product-info-box .product-text .sub {
  background: #f8f8f8;
  padding: 20px;
  font-size: 14px;
}
.product-info .product-info-box .product-text .sub .sub-title {
  margin-bottom: 10px;
}
.product-info .product-info-box .product-text .sub .sub-summary {
  color: #666;
}
.product-info .product-info-box .product-text .gift {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product-info .product-info-box .product-text .gift .gift-box {
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
}
.product-info .product-info-box .product-text .gift .gift-box .item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.product-info .product-info-box .product-text .gift .gift-box .item .item-img {
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-right: 4px;
  cursor: pointer;
}
.product-info .product-info-box .product-text .gift .gift-box .item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-info .product-info-box .product-text .summary {
  line-height: 3;
  font-size: 14px;
  margin: 20px 0;
}
.product-info .product-info-box .product-text .color {
  margin-top: 30px;
}
.product-info .product-info-box .product-text .color .color-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.product-info .product-info-box .product-text .color .color-box .item {
  width: calc((100% - 40px) / 2);
  margin-right: 40px;
  margin-bottom: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 20px;
}
.product-info .product-info-box .product-text .color .color-box .item img {
  width: 26px;
  height: 26px;
}
.product-info .product-info-box .product-text .color .color-box .item:hover {
  border: 1px solid #0070d5;
}
.product-info .product-info-box .product-text .color .color-box .item.active {
  border: 2px solid #0070d5;
}
.product-info .product-info-box .product-text .color .color-box .item:nth-child(2n) {
  margin-right: 0;
}
.product-info .product-info-box .product-text .color .color-box .item .title {
  margin-top: 10px;
}
.product-info .product-info-box .product-text .package {
  margin-top: 30px;
}
.product-info .product-info-box .product-text .package .package-box {
  margin-top: 30px;
}
.product-info .product-info-box .product-text .package .package-box .item {
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  margin: 0 10px 10px 0;
  cursor: pointer;
  display: inline-block;
  border-radius:6px ;
}
.product-info .product-info-box .product-text .package .package-box .item:hover {
  border: 1px solid #0070d5;
}
.product-info .product-info-box .product-text .package .package-box .item.active {
  border: 2px solid #0070d5;
}
.product-info .product-info-box .product-text .package .package-box .item .package-price {
  border-bottom: 1px solid #e5e5e5;
  margin: 10px 0 20px;
  padding-bottom: 20px;
}
.product-info .product-info-box .product-text .package .package-box .item .package-sub {
  font-size: 14px;
  color: #666;
}
.product-info .product-info-box .product-text .parts {
  margin-top: 60px;
}
.product-info .product-info-box .product-text .parts .parts-box .item {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin-top: 30px;
}
.product-info .product-info-box .product-text .parts .parts-box .item.active {
  border: 2px solid #0070d5;
}
.product-info .product-info-box .product-text .parts .parts-box .item.active input {
  background: #007aff url("../images/page/check.png") no-repeat center;
}
.product-info .product-info-box .product-text .parts .parts-box .item:hover {
  border: 1px solid #0070d5;
}
.product-info .product-info-box .product-text .parts .parts-box .item input {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
  appearance: none;
  margin-top: 16px;
}
.product-info .product-info-box .product-text .parts .parts-box .item .parts-img {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-info .product-info-box .product-text .parts .parts-box .item .parts-text {
  width: calc(100% - 100px);
}
.product-info .product-info-box .product-text .parts .parts-box .item .parts-text .parts-price {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.product-info .product-info-box .product-text .parts .parts-box .item .parts-text .parts-summary {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.product-info .product-info-box .product-text .parts .parts-box .item .parts-text a {
  color: #0070d5;
  background: url("../images/page/next2.png") no-repeat center right;
  padding-right: 10px;
}
.product-info .product-info-box .product-text .parts .parts-box .item .parts-text a:hover {
  text-decoration: underline;
}
.product-info .product-info-box .product-text .number {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.product-info .product-info-box .product-text .number .left {
  width: 100px;
  /* font-size: 16px; */
}
.product-info .product-info-box .product-text .number .right {
  display: flex;
  align-items: center;
}
.product-info .product-info-box .product-text .number .right .add,
.product-info .product-info-box .product-text .number .right .reduce {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-info .product-info-box .product-text .number .right input {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-size: 16px;
}
.product-info .product-info-box .product-text .tips,
.product-info .product-info-box .product-text .apply {
  display: none;
}
.product-info .location {
  border-bottom: none;
}
.product-info .product-price-box {
  height: 90px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #fff;
  box-shadow: 0 -10px 20px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .product-info .product-price-box {
    height: 60px;
  }
}
.product-info .product-price-box .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product-info .product-price-box .section .tip {
  font-size: 14px;
  color: #999;
  width: 70%;
}
.product-info .product-price-box .section .goods_name {
  font-size: 16px;
  font-weight: bold;
  flex-basis: 20%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .product-info .product-price-box .section .goods_name {
    flex-basis: 35%;
    font-size: 14px;
    display: none;
  }
}
.product-info .product-price-box .section .product-link {
  color: #919191;
  width: 40%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1028px) {
  .product-info .product-price-box .section .product-link {
    display: none;
  }
}
.product-info .product-price-box .section .product-link a {
  margin-right: 25px;
  font-size: 18px;
}
.product-info .product-price-box .section .product-link a.active {
  color: var(--dominant-color);
}
.product-info .product-price-box .section .product-link a:hover {
  color: var(--dominant-color);
}
.product-info .product-price-box .section .price-box {
  display: flex;
  align-items: center;
  color: var(--dominant-color);
  font-weight: 600;
}
.product-info .product-price-box .section .price-box .buy {
  width: 170px;
  height: 44px;
  background: var(--dominant-color);
  line-height: 44px;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  margin-left: 35px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .product-info .product-price-box .section .price-box .buy {
    height: 30px;
    line-height: 30px;
  }
}
.product-info .product-price-box .section .price-box .buy:hover {
  background: #024287;
}
/*下部分*/
.product-detail-box {
  margin-top: 70px;
}
.product-detail-box #product-detail-1,
.product-detail-box #product-detail-6,
.product-detail-box #product-detail-7 {
  scroll-margin: 150px;
}
.product-detail-box .product-detail-1 {
  position: relative;
}
.product-detail-box .product-detail-1 .text {
  position: absolute;
  top: 0;
  bottom: 30px;
  margin: auto;
  padding: 0 10%;
  width: 100%;
  height: fit-content;
  color: #fff;
  font-family: maokentangyuan, SourceHanSansCN-Normal, "Microsoft YaHei", Helvetica, Arial, "PingFang SC", sans-serif;
}
.product-detail-box .product-detail-1 .text.alignCenter {
  text-align: center;
}
.product-detail-box .product-detail-1 .text.alignRight {
  text-align: right;
}
.product-detail-box .product-detail-2 {
  display: flex;
  background: #f5f5f5;
  margin: 20px 0;
  padding: 100px 90px;
  justify-content: space-between;
}
.product-detail-box .product-detail-2 .item {
  width: 50%;
}
.product-detail-box .product-detail-2 .item .left-item-title {
  text-align: center;
}
.product-detail-box .product-detail-2 .item .item-img {
  margin-top: 80px;
}
.product-detail-box .product-detail-2 .item.item-right {
  padding-left: 5%;
}
.product-detail-box .product-detail-2 .item.item-right .item-list {
  margin-bottom: 50px;
  padding-left: 20px;
}
.product-detail-box .product-detail-2 .item.item-right .item-list .title {
  margin-bottom: 10px;
  position: relative;
}
.product-detail-box .product-detail-2 .item.item-right .item-list .title::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.product-detail-box .product-detail-2 .item.item-right .item-list .title {
  font-size: 20px;
  color: #333;
}
.product-detail-box .product-detail-3 .item-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.product-detail-box .product-detail-3 .item-list .item:nth-child(1) {
  margin-right: 10px;
  width: calc(50% - 10px);
}
.product-detail-box .product-detail-3 .item-list .item:nth-child(2) {
  margin-left: 10px;
  width: calc(50% - 10px);
}
.product-detail-box .product-detail-3 .item {
  position: relative;
  cursor: pointer;
}
.product-detail-box .product-detail-3 .item .text {
  position: absolute;
  top: 0;
  padding: 60px;
  color: #fff;
}
.product-detail-box .product-detail-3 .item .text .title {
  font-size: 32px;
}
.product-detail-box .product-detail-3 .item .text .summary {
  font-size: 16px;
}
.product-detail-box .product-detail-4 {
  margin-top: 90px;
  padding-bottom: 30px;
}
.product-detail-box .product-detail-4 .item-list {
  margin-top: 60px;
}
.product-detail-box .product-detail-4 .item-list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  cursor: pointer;
}
.product-detail-box .product-detail-4 .item-list .item:nth-child(even) {
  flex-direction: row-reverse;
}
.product-detail-box .product-detail-4 .item-list .item .imgBox {
  width: 45%;
}
.product-detail-box .product-detail-4 .item-list .item .text {
  width: 45%;
}
.product-detail-box .product-detail-4 .item-list .item .text .title {
  font-size: 20px;
}
.product-detail-box .product-detail-4 .item-list .item .text .line {
  width: 40px;
  height: 5px;
  background: #000;
  margin: 26px 0;
}
.product-detail-box .product-detail-4 .item-list .item .text .summary {
  width: 90%;
  line-height: 1.8;
}
.product-detail-box .product-detail-5 .item {
  cursor: pointer;
  position: relative;
}
.product-detail-box .product-detail-5 .item .title {
  font-size: 26px;
  margin-top: 40px;
}
.product-detail-box .product-detail-5 .item .summary {
  font-size: 18px;
  margin: 30px 0;
  line-height: 1.6;
}
.product-detail-box .product-detail-5 .item-top {
  background: #f8f8f8;
  padding: 40px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-detail-box .product-detail-5 .item-top .imgBox {
  width: 45%;
}
.product-detail-box .product-detail-5 .item-top .text {
  width: 45%;
}
.product-detail-box .product-detail-5 .item-top .text .sub {
  font-size: 14px;
  line-height: 1.8;
}
.product-detail-box .product-detail-5 .item-bottom .summary {
  max-width: 520px;
  text-align: center;
  margin: 10px auto 30px;
}
.product-detail-box .product-detail-5 .item-bottom .title {
  text-align: center;
}
.product-detail-box .product-detail-5 .item-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.product-detail-box .product-detail-5 .item-list .item {
  margin-right: 50px;
  margin-bottom: 60px;
  width: calc((100% - 50px) / 2);
}
.product-detail-box .product-detail-5 .item-list .item .imgBox {
  height: auto;
}
.product-detail-box .product-detail-5 .item-list .item:nth-child(even) {
  margin-right: 0;
}
.product-detail-box .product-detail-5 .item-list .item .summary {
  margin: 10px 0 0 0;
  width: 90%;
}
.product-detail-box .product-detail-5 .item-position .text {
  position: absolute;
  color: #333;
  padding: 20px 50px;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  top: 0;
}
.product-detail-box .product-detail-5 .item-position .text .summary {
  margin-top: 20px;
}
.product-detail-box .product-detail-5 .item-last {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}


.product-detail-box .product-detail-5 .item-last.item-last2 {
  flex-direction: row-reverse;
}
.product-detail-box .product-detail-5 .item-last .imgBox {
  width: 64%;
}
.product-detail-box .product-detail-5 .item-last .text {
  width: 35%;
}
.product-detail-box .product-detail-5 .item-last .text .summary {
  margin-top: 20px;
}

.product-detail-box .product-detail-5 .video-tab-box .tab-item {
  display: none;
}
.product-detail-box .product-detail-5 .video-tab-box .tab-item .title {
  font-size: 28px;
}
.product-detail-box .product-detail-5 .video-tab-box .tab-item .sub {
  font-size: 16px;
  margin-top: 6px;
}
.product-detail-box .product-detail-5 .video-tab-box .tab-item.active {
  display: block;
}
.product-detail-box .product-detail-5 .video-tab-box .tab-item .video-box {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  height: 0;
  position: relative;
  padding-bottom: 50%;
}
.product-detail-box .product-detail-5 .video-tab-box .tab-item .video-box video,
.product-detail-box .product-detail-5 .video-tab-box .tab-item .video-box img {
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  width: 100%;
}
.product-detail-box .product-detail-5 .video-tab-box .video-tab {
  font-size: 16px;
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.product-detail-box .product-detail-5 .video-tab-box .video-tab .tab-click {
  flex-basis: calc((100% - 60px) / 4);
  border-radius: 20px;
  text-align: center;
  background: #eee;
  padding: 20px 5px;
}
.product-detail-box .product-detail-5 .video-tab-box .video-tab .tab-click.active,
.product-detail-box .product-detail-5 .video-tab-box .video-tab .tab-click:hover {
  background: var(--dominant-color);
  color: #fff;
}
.product-detail-box .product-detail-5 .item-three {
  background: #eee;
  padding: 20px;
  margin: 50px auto;
}
.product-detail-box .product-detail-5 .item-three .item-list {
  margin-top: 0;
}
.product-detail-box .product-detail-5 .item-three .item-list .item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 0;
}
.product-detail-box .product-detail-5 .item-three .item-list .item:nth-child(3n) {
  margin-right: 0;
}
.product-detail-box .product-detail-5 .zidingyi {
  position: relative;
  color: #fff;
  margin: 20px auto;
}
.product-detail-box .product-detail-5 .zidingyi .text{
  position: absolute;
  padding: 20px;
  width: 40%;
}
.product-detail-box .product-detail-5 .zidingyi1 .text{
  top: 0;
  left: 0;
}
.product-detail-box .product-detail-5 .zidingyi2 .text{
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.product-detail-box .product-detail-5 .zidingyi3 .text{
  right:0;
  top: 0;
}
.product-detail-box .product-detail-5 .zidingyi4 .text{
  top: 0;
  bottom:0;
  left: 0;
  margin: auto;
  height: fit-content;
}
.product-detail-box .product-detail-5 .zidingyi5 .text{
  top: 0;
  bottom:0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
}
.product-detail-box .product-detail-5 .zidingyi6 .text{
  top: 0;
  bottom:0;
  right: 0;
  margin: auto;
  height: fit-content;
}
.product-detail-box .product-detail-5 .zidingyi7 .text{
  bottom:0;
  left: 0;
}
.product-detail-box .product-detail-5 .zidingyi8 .text{
  bottom:0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
}
.product-detail-box .product-detail-5 .zidingyi9 .text{
  bottom:0;
  right: 0;
  margin: auto;
  height: fit-content;
}




@media screen and (max-width: 768px){
  .product-detail-box .product-detail-5 .item-three .item-list .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .product-detail-box .product-detail-5 .video-tab-box .video-tab .tab-click {
    padding: 10px 0;
    flex-basis: calc((100% - 30px)/ 3);
    margin-right: 10px;
  }

  .product-detail-box .product-detail-5 .zidingyi .text {
    width: 100% ;
    left: 0;
    right: 0;
  }
}


.product-detail-box .product-detail-6 {
  margin-top: 50px;
}
.product-detail-box .product-detail-6 .item-list {
  margin-top: 30px;
  border-top: 1px solid #e5e5e5;
}
.product-detail-box .product-detail-6 .item-list .item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e5e5;
  padding: 30px 0;
  font-size: 16px;
  color: #666;
  line-height: 2;
}
.product-detail-box .product-detail-6 .item-list .item .key {
  width: 230px;
}
.product-detail-box .product-detail-6 .item-list .item .value {
  width: calc(1005 - 230px);
}
.product-detail-box .product-detail-7 {
  margin-top: 30px;
}
.product-detail-box .product-detail-7 .video-box {
  margin-top: 10px;
}
/*弹窗*/
.pup-up {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.pup-up .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.pup-up .pup-up-box {
  width: 300px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.pup-up .pup-up-box img {
  width: 100%;
}
/*服务支持主页面*/
.support-title {
  text-align: center;
}
.support-box-1 {
  padding: 60px 0 60px;
}
.support-box-1 .support-box-1-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.support-box-1 .support-box-1-box .item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
.support-box-1 .support-box-1-box .item a {
  display: flex;
  padding: 40px 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s;
  background: #f5f5f5;
}
.support-box-1 .support-box-1-box .item a .item-img {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.support-box-1 .support-box-1-box .item a .title {
  margin-top: 20px;
}
.support-box-1 .support-box-1-box .item:nth-child(3n) {
  margin-right: 0;
}
.support-box-1 .support-box-1-box .item:hover a {
  background: var(--dominant-color);
  transition: all 0.5s;
}
.support-box-1 .support-box-1-box .item:hover a img {
  filter: brightness(100);
}
.support-box-1 .support-box-1-box .item:hover a .title {
  color: #fff;
}
.support-box-2 {
  margin-bottom: 60px;
}
.support-box-2 .contact-item {
  margin: 30px 0;
  position: relative;
  display: block;
}
.support-box-2 .contact-item .text {
  position: absolute;
  left: 0;
  top: 0;
  padding: 30px;
  width: 50%;
  text-align: center;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.support-box-2 .contact-item .text .title {
  margin-top: 20px;
}
.support-box-2 .contact-item .text .summary {
  margin: 10px auto 30px;
}
.support-box-2 .contact-item .text .link {
  color: var(--dominant-color);
  padding-right: 20px;
  background: url("../images/page/support-8.png") no-repeat center right;
}
.support-box-2 .contact-item .text .link:hover {
  text-decoration: underline;
}
.support-box-2 .contact-item-bottom {
  display: flex;
  flex-wrap: wrap;
}
.support-box-2 .contact-item-bottom .item {
  background: #f5f5f5;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
.support-box-2 .contact-item-bottom .item:nth-child(3n) {
  margin-right: 0;
}
.support-box-2 .contact-item-bottom .item .item-img {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.support-box-2 .contact-item-bottom .item .item-title {
  margin: 30px auto 30px;
}
.support-box-2 .contact-item-bottom .item .item-summary {
  text-align: center;
}
.support-box-2 .contact-item-bottom .item .item-summary a {
  color: var(--dominant-color);
}
.support-box-2 .contact-item-bottom .item .item-summary a:hover {
  text-decoration: underline;
}
/*服务支持分页面*/
.support-box {
  padding: 100px 0 100px;
}
.support-box .service-phone-click {
  display: none;
}
.support-box .support-product-title {
  text-align: center;
  margin-bottom: 50px;
}
.support-box .section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.support-box .section .support-menu {
  width: 25%;
}
.support-box .section .support-menu .item-list .item {
  border-bottom: 1px solid #e5e5e5;
}
.support-box .section .support-menu .item-list .item a {
  font-size: 16px;
  color: #666;
  padding: 20px 0 20px 20%;
  display: block;
  position: relative;
  transition: all 0.5s;
}
.support-box .section .support-menu .item-list .item a::after {
  position: absolute;
  background: url("../images/page/next2.png") no-repeat center left 15%;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  left: 12%;
  margin: auto;
  filter: grayscale(1);
}
.support-box .section .support-menu .item-list .item.active,
.support-box .section .support-menu .item-list .item:hover {
  background: #ebebeb;
  transition: all 0.5s;
}
.support-box .section .support-menu .item-list .item.active a,
.support-box .section .support-menu .item-list .item:hover a {
  color: var(--dominant-color);
}
.support-box .section .support-menu .item-list .item.active a::after,
.support-box .section .support-menu .item-list .item:hover a::after {
  filter: none;
}
.support-box .section .support-product-menu {
  width: 230px;
}
.support-box .section .support-product-menu .item-list-product .item {
  margin-bottom: 30px;
}
.support-box .section .support-product-menu .item-list-product .item.active .title {
  color: #333;
}
.support-box .section .support-product-menu .item-list-product .item.active .title::after {
  transform: rotate(0deg);
  transition: all 0.5s;
}
.support-box .section .support-product-menu .item-list-product .item .title {
  position: relative;
  cursor: pointer;
  color: #666;
}
.support-box .section .support-product-menu .item-list-product .item .title::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../images/page/down.png") no-repeat center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
  transform: rotate(180deg);
}
.support-box .section .support-product-menu .item-list-product .item .item-box {
  margin-top: 30px;
}
.support-box .section .support-product-menu .item-list-product .item .item-box a {
  width: 90%;
  font-size: 16px;
  color: #999;
  display: block;
  border-bottom: 1px solid transparent;
  margin-bottom: 20px;
  padding-bottom: 10px;
  margin-right: 0;
  margin-left: auto;
}
.support-box .section .support-product-menu .item-list-product .item .item-box a.active,
.support-box .section .support-product-menu .item-list-product .item .item-box a:hover {
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}
.support-box .section .support-container {
  width: 70%;
}
.support-box .section .support-container .app-download-box {
  display: flex;
  flex-wrap: wrap;
}
.support-box .section .support-container .app-download-box .item {
  width: calc((100% - 90px) / 3);
  margin-right: 45px;
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.support-box .section .support-container .app-download-box .item:nth-child(3n) {
  margin-right: 0;
}
.support-box .section .support-container .app-download-box .item .title {
  font-size: 18px;
  margin-top: 20px;
}
.support-box .section .support-container .app-download-box .item .sub {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}
.support-box .section .support-container .app-download-box .item .size {
  font-size: 14px;
  color: #999;
  margin: 10px auto 0;
}
.support-box .section .support-container .app-download-box .item .download {
  width: 80px;
  height: 30px;
  border-radius: 16px;
  transition: all 0.5s;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #e5e5e5;
  color: #999;
}
.support-box .section .support-container .app-download-box .item:hover {
  border-color: #007aff;
}
.support-box .section .support-container .app-download-box .item:hover .download {
  background: var(--dominant-color);
  transition: all 0.5s;
  color: #fff;
}
.support-box .section .support-container .service-box .support-box-2 {
  margin-top: 50px;
}
.support-box .section .support-container .service-box .support-box-2 .contact-item .text {
  width: 60%;
}
.support-box .section .support-container .service-box .support-box-2 .contact-item .text p {
  font-size: 16px;
}
.support-box .section .support-container .service-box h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
.support-box .section .support-container .service-box p {
  font-size: 14px;
  color: #666;
}
.support-box .section .support-container .after-sales-box .item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.support-box .section .support-container .after-sales-box .item .title {
  font-size: 18px;
  position: relative;
}
.support-box .section .support-container .after-sales-box .item .title::after {
  content: '';
  position: absolute;
  background: url("../images/page/down.png") no-repeat center right;
  right: 0;
  width: 20px;
  height: 100%;
  transition: all 0.5s;
}
.support-box .section .support-container .after-sales-box .item .summary {
  font-size: 14px;
  color: #999;
  line-height: 2;
  display: none;
  margin-top: 10px;
}
.support-box .section .support-container .after-sales-box .after-sales-messages {
  margin-top: 60px;
  width: 170px;
  height: 44px;
  border-radius: 16px;
  text-align: center;
  line-height: 44px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.support-box .section .support-container .after-sales-box .after-sales-messages img {
  margin-right: 6px;
}
.support-box .section .support-container .after-sales-box .after-sales-messages:hover {
  background: var(--dominant-color);
  transition: all 0.5s;
  border-color: var(--dominant-color);
  color: #fff;
}
.support-box .section .support-container .after-sales-box .after-sales-messages:hover img {
  filter: brightness(100);
}
.support-box .section .support-container .download-detail .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.support-box .section .support-container .download-detail .top .img {
  width: 82px;
  height: 82px;
}
@media screen and (max-width: 768px) {
  .support-box .section .support-container .download-detail .top .img {
    width: 60px;
    height: 60px;
  }
}
.support-box .section .support-container .download-detail .top .text {
  flex-basis: calc(100% - 120px);
}
@media screen and (max-width: 768px) {
  .support-box .section .support-container .download-detail .top .text {
    flex-basis: calc(100% - 80px);
  }
}
.support-box .section .support-container .download-detail .top .text .title {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .support-box .section .support-container .download-detail .top .text .title {
    font-size: 20px;
  }
}
.support-box .section .support-container .download-detail .mid {
  display: flex;
  flex-wrap: wrap;
}
.support-box .section .support-container .download-detail .mid .item {
  flex-basis: 200px;
}
@media screen and (max-width: 768px) {
  .support-box .section .support-container .download-detail .mid .item {
    flex-basis: 50%;
    margin-bottom: 20px;
  }
}
.support-box .section .support-container .download-detail .mid .item .img {
  text-align: center;
  margin-bottom: 10px;
}
.support-box .section .support-container .download-detail .mid .item .img img {
  width: 150px;
}
.support-box .section .support-container .download-detail .mid .item .title {
  font-weight: 500;
  line-height: 24px;
  height: 24px;
  color: #3b3e40;
  font-size: 16px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.support-box .section .support-container .download-detail .mid .item .summary {
  line-height: 16px;
  font-size: 12px;
  color: #6c7073;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.support-box .section .support-container .download-detail .mid .item .img-code {
  width: 110px;
  margin-left: 20px;
}
.support-box .section .support-container .download-detail .bottom {
  margin-top: 50px;
}
.support-box .section .support-product-container {
  width: calc(100% - 320px);
}
.support-box .section .support-product-container .service-box .item-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.support-box .section .support-product-container .service-box .item-list .item {
  width: calc((100% - 50px) / 3);
  margin-right: 25px;
  margin-bottom: 25px;
  position: relative;
  background: #f2f2f2;
  padding-bottom: 45px;
}
.support-box .section .support-product-container .service-box .item-list .item .text {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
}
.support-box .section .support-product-container .service-box .item-list .item:nth-child(3n) {
  margin-right: 0;
}
/*服务支持-意见反馈*/
.support-messages {
  padding: 200px 0 100px;
  transition: all 0.5s;
}
.support-messages .title-box {
  background: #f2f2f2;
  text-align: center;
  padding: 70px 30px;
}
.support-messages .title-box .summary {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.support-messages .messages-link {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 50px auto 60px;
}
.support-messages .messages-link a {
  color: var(--dominant-color);
  position: relative;
  margin-right: 20px;
  margin-left: 4px;
}
.support-messages .messages-link a::after {
  content: '';
  position: absolute;
  right: -15px;
  top: -12px;
  background: url("../images/page/messages-icon.png") no-repeat center;
  width: 15px;
  height: 15px;
}
.support-messages .messages-link a:hover {
  text-decoration: underline;
}
.support-messages .form-messages {
  border: 1px solid #e5e5e5;
  padding: 40px;
  font-size: 14px;
}
.support-messages .form-messages .item {
  margin-bottom: 60px;
}
.support-messages .form-messages .item .messages-title {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.support-messages .form-messages .item .checkbox-box {
  display: flex;
  flex-wrap: wrap;
}
.support-messages .form-messages .item .checkbox-box label {
  display: flex;
  align-items: center;
  width: calc(100% / 7);
  margin-bottom: 10px;
}
.support-messages .form-messages .item .checkbox-box label input {
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  margin-bottom: 1px;
}
.support-messages .form-messages .item .input-box {
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
}
.support-messages .form-messages .item .input-box .input-item {
  margin-right: 60px;
  width: calc((100% - 60px) / 2);
  margin-bottom: 30px;
}
.support-messages .form-messages .item .input-box .input-item .title {
  margin-bottom: 10px;
  color: #666;
}
.support-messages .form-messages .item .input-box .input-item:nth-child(2n) {
  margin-right: 0;
}
.support-messages .form-messages .item .isContact {
  display: flex;
  flex-wrap: wrap;
}
.support-messages .form-messages .item .isContact label {
  margin: 0 15px;
}
.support-messages .form-messages .item .isVideo {
  width: 140px;
  text-align: center;
}
.support-messages .form-messages .item .isVideo label {
  position: relative;
  height: 140px;
  display: block;
}
.support-messages .form-messages .item .isVideo label input {
  width: 140px;
  height: 140px;
  opacity: 0;
}
.support-messages .form-messages .item .isVideo label::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url("../images/page/upload.png") no-repeat center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #e5e5e5;
}
.support-messages .form-messages .item .isVideo p {
  opacity: 0.5;
}
.support-messages .form-messages .item .tip {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}
.support-messages .form-messages .item .tip span {
  opacity: 0.8;
}
.support-messages .form-messages .button-box {
  text-align: center;
  margin-bottom: 30px;
}
.support-messages .form-messages .button-box button {
  width: 120px;
  height: 40px;
  background: var(--dominant-color);
  cursor: pointer;
  border: none;
  margin: auto;
  color: #fff;
  transition: all 0.5s;
  border-radius: 3px;
}
.support-messages .form-messages .button-box button:hover {
  background: #024287;
  transition: all 0.5s;
}
/*服务支持-产品支持详情*/
.support-detail-box {
  padding: 114px 0 30px;
  transition: all 0.5s;
}
.support-detail-box .support-detail-1 {
  background: #f2f2f2;
  margin-bottom: 100px;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}
.support-detail-box .support-detail-1 .support-box {
  padding: 0 5% 0 0 ;
}
.support-detail-box .support-detail-1 .item-link-box {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 0;
}
.support-detail-box .support-detail-1 .item-link-box .item {
  text-align: center;
  margin-right: 12%;
}
.support-detail-box .support-detail-1 .item-link-box .item .img {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: auto;
}
.support-detail-box .support-detail-1 .item-link-box .item .little-title {
  margin-top: 10px;
}
.support-detail-box .support-detail-1 .form-select {
  display: flex;
  align-items: center;
}
.support-detail-box .support-detail-1 .form-select span {
  font-size: 16px;
  width: 80px;
}
.support-detail-box .support-detail-1 .form-select .select-box {
  width: 200px;
  border-bottom: 1px solid #d1d1d1;
  position: relative;
  margin-right: 50px;
}
.support-detail-box .support-detail-1 .form-select .select-box .select-active {
  font-size: 16px;
  line-height: 2;
  cursor: pointer;
}
.support-detail-box .support-detail-1 .form-select .select-box .select-active::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/member/member-26.png") no-repeat center right;
}
.support-detail-box .support-detail-1 .form-select .select-box .item-list {
  position: absolute;
  background: #fff;
  padding: 10px 20px;
  border: 1px solid #d1d1d1;
  width: 100%;
  line-height: 1.6;
  display: none;
}
.support-detail-box .support-detail-1 .form-select .select-box .item-list .item {
  color: #666;
  cursor: pointer;
  font-size: 16px;
  margin: 5px 0;
}
.support-detail-box .support-detail-1 .form-select .select-box .item-list .item:hover {
  color: #000;
}
.support-detail-box .support-detail-1 .form-select select {
  width: 170px;
  margin-right: 30px;
  appearance: none;
  font-size: 20px;
  border: none;
  background: url("../images/page/down.png") no-repeat center right;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  color: #333;
}
.support-detail-box .support-detail-1 .form-select select option {
  cursor: pointer;
}
.support-detail-box .support-detail-1 .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.support-detail-box .support-detail-1 .section .text {
  width: 100%;
}
.support-detail-box .support-detail-1 .section .text .text-top {
  display: flex;
  justify-content: space-between;
}
.support-detail-box .support-detail-1 .section .text .text-top .left {
  flex-basis: 35%;
  position: relative;
}
.support-detail-box .support-detail-1 .section .text .text-top .left .title {
  font-size: 20px;
  text-align: center;
  position: absolute;
  z-index: 2;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: auto;
}
.support-detail-box .support-detail-1 .section .text .text-top .right {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translate(-10%, -15%);
}
@media screen and (max-width: 1000px) {
  .support-detail-box .support-detail-1 .section .text .text-top .right {
    transform: translate(0);
  }
}
.support-detail-box .support-detail-1 .section .text .text-top .right .title {
  line-height: 1;
}
.support-detail-box .support-detail-1 .section .text .summary {
  margin-top: 30px;
}
.support-detail-box .support-detail-2 .item-list {
  margin-bottom: 20px;
}
.support-detail-box .support-detail-2 .item-list .text .summary {
  color: #666;
}
.support-detail-box .support-detail-2 .item-list .item-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 1150px;
}
.support-detail-box .support-detail-2 .item-list .item-box .item {
  height: 110px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
.support-detail-box .support-detail-2 .item-list .item-box .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.support-detail-box .support-detail-2 .item-list .item-box .item a img {
  filter: grayscale(1);
  opacity: 0.8;
}
.support-detail-box .support-detail-2 .item-list .item-box .item a .title {
  margin-left: 10px;
}
.support-detail-box .support-detail-2 .item-list .item-box .item:nth-child(3n) {
  margin-right: 0;
}
.support-detail-box .support-detail-2 .item-list .item-box .item:hover {
  border-color: var(--dominant-color);
}
.support-detail-box .support-detail-2 .item-list .item-box .item:hover a img {
  filter: none;
  opacity: 1;
}
.support-detail-box .support-detail-2 .item-list .item-box .item:hover a .title {
  color: var(--dominant-color);
}
.support-detail-box .support-detail-2 .item-list .item-box.instructions .item {
  padding: 0 30px;
}
.support-detail-box .support-detail-2 .item-list .item-box.instructions .item a {
  justify-content: flex-start;
  width: 100%;
}
.support-detail-box .support-detail-2 .item-list .item-box.instructions .item a img {
  filter: none;
  opacity: 1;
}
.support-detail-box .support-detail-2 .item-list .item-box.instructions .item a .title {
  margin-left: 30px;
}
.support-detail-box .support-detail-2 .item-list .item-box.instructions .item a .download {
  margin-left: auto;
  filter: grayscale(1);
}
.support-detail-box .support-detail-2 .item-list .item-box.instructions .item:hover .download {
  filter: none !important;
}
.support-detail-box .support-detail-2 .item-list .video-box {
  width: 100%;
  margin-top: 30px;
  padding-bottom: 30px;
}
.support-detail-box .support-detail-2 .item-list .video-box .text {
  margin-top: 10px;
}
.support-detail-box .support-detail-2 .item-list .app-download {
  margin-top: 30px;
  padding-bottom: 30px;
}
.support-detail-box .support-detail-2 .item-list .app-download a {
  margin-right: 50px;
}
.support-detail-box .support-detail-2 .item-list .faq-box {
  margin-top: 30px;
  padding-bottom: 30px;
}
.support-detail-box .support-detail-2 .item-list .faq-box .form-support {
  max-width: 100%;
}
.support-detail-box .support-detail-2 .item-list .faq-box .form-support input {
  border: 1px solid #e5e5e5;
}
.support-detail-box .support-detail-2 .item-list .faq-box .faq-list {
  margin-top: 50px;
}
.support-detail-box .support-detail-2 .item-list .faq-box .faq-list .item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  cursor: pointer;
}
.support-detail-box .support-detail-2 .item-list .faq-box .faq-list .item .title {
  position: relative;
}
.support-detail-box .support-detail-2 .item-list .faq-box .faq-list .item .title::after {
  content: '';
  position: absolute;
  background: url("../images/page/down.png") no-repeat center right;
  right: 0;
  width: 20px;
  height: 100%;
  transition: all 0.5s;
}
.support-detail-box .support-detail-2 .item-list .faq-box .faq-list .item .summary {
  color: #666;
  margin-top: 20px;
  margin-bottom: 10px;
  display: none;
}
.support-detail-box .support-detail-2 .item-list .faq-box .faq-list .item.active::after {
  transition: all 0.5s;
  transform: rotate(180deg);
}
.support-detail-box .support-detail-container {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  width: 90%;
  margin: auto;
}
.support-detail-box .support-detail-container .left {
  flex-basis: 20%;
}
.support-detail-box .support-detail-container .left .support-box {
  padding: 0;
  position: sticky;
  top: 100px;
}
.support-detail-box .support-detail-container .left .support-box .item .item-box {
  margin-top: 10px;
}
.support-detail-box .support-detail-container .left .support-box .item .item-box a {
  margin-bottom: 0;
}
.support-detail-box .support-detail-container .left .support-box .item .item-box .second-item {
  padding-left: 20px;
}
.support-detail-box .support-detail-container .left .support-box .item .item-box .second-item a {
  margin-bottom: 10px;
  font-size: 14px;
}
.support-detail-box .support-detail-container .right {
  flex-basis: 75%;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .support-detail-box .support-detail-container .right {
    width: 100%;
  }
  .support-detail-box .support-detail-container .right .section {
    width: 100%;
  }
}
/*关于我们*/
/*商务合作*/
.support-messages .form-business {
  padding: 0;
  border: none;
  color: #666;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.support-messages .form-business .item .checkbox-box label {
  width: calc(100% / 4);
}
.support-messages .form-business .item .business-title {
  font-size: 14px;
}
.support-messages .form-business .item input {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  text-indent: 0;
  appearance: none;
}
.support-messages .form-business .item input:checked {
  background: #007aff url("../images/page/check.png") no-repeat center;
}
.support-messages .form-business .tip {
  display: flex;
  align-items: center;
}
.support-messages .form-business .tip span {
  margin-left: 10px;
}
.support-messages .form-business .button-box {
  text-align: left;
  margin-top: 60px;
}
.support-messages .form-business .button-box button {
  width: 250px;
  height: 44px;
}
/*联系我们*/
.about-box {
  padding: 200px 0 120px;
  transition: all 0.5s;
}
.about-box .contact-bottom {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.about-box .contact-bottom .item {
  margin-right: 40px;
  width: calc((100% - 80px) / 3);
  margin-bottom: 40px;
}
.about-box .contact-bottom .item:nth-child(3n) {
  margin-right: 0;
}
.about-box .contact-bottom .item a {
  position: relative;
  display: block;
}
.about-box .contact-bottom .item a::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.about-box .contact-bottom .item a .text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px;
  height: fit-content;
  text-align: center;
  color: #fff;
  width: 100%;
  z-index: 1;
}
.about-box .contact-bottom .item a .text .summary {
  font-family: maokentangyuan;
  opacity: 0.5;
}
.about-box .contact-bottom .item a:hover::after {
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}
/*关于我们*/
.about-box .about-title {
  font-size: 28px;
  margin-bottom: 50px;
}
.about-box .about-box-1 {
  position: relative;
  max-height: 680px;
  overflow: hidden;
}
.about-box .about-box-1 .swiper-button-prev::after,
.about-box .about-box-1 .swiper-button-next::after {
  color: #fff;
}
.about-box .about-box-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dominant-color);
}
.about-box .about-box-1 video {
  object-fit: cover;
  max-height: 680px;
}
.about-box .about-box-1 .text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 650px;
  height: fit-content;
  text-align: center;
  color: #fff;
  width: 90%;
  z-index: 11;
}
.about-box .about-box-1 .text .title {
  font-weight: 600;
}
.about-box .about-box-1 .text .summary {
  line-height: 1.8;
  margin: 20px auto;
}
.about-box .about-box-1 .text .about-video-play {
  width: 230px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #fff;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s;
}
.about-box .about-box-1 .text .about-video-play img {
  margin-right: 20px;
}
.about-box .about-box-1 .text .about-video-play:hover {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  transition: all 0.5s;
}
.about-box .about-box-2 {
  max-width: 1100px;
}
.about-box .about-box-2 .text-1 {
  font-size: 15px;
  font-weight: 100;
  color: #666;
  line-height: 2;
  border-bottom: 1px solid #eee;
  margin: 60px auto 50px;
  padding-bottom: 50px;
}
.about-box .about-box-2 .text-2 {
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
}
.about-box .about-box-2 .text-2 .title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.about-box .about-box-2 .text-2 .summary {
  font-size: 15px;
  color: #666;
  line-height: 2;
}
.about-box .about-box-2 .item-list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.about-box .about-box-2 .item-list .item {
  display: flex;
  margin-right: 70px;
  align-items: center;
}
.about-box .about-box-2 .item-list .item .text {
  font-size: 14px;
  margin-left: 30px;
  color: #666;
  line-height: 2;
}
.about-box .about-box-3 {
  background: url("../images/page/about-6.jpg") no-repeat center;
  background-size: cover;
  margin-top: 100px;
  padding: 120px 0;
  color: #fff;
}
.about-box .about-box-3 .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-box .about-box-3 .section .history-time {
  width: fit-content;
  max-height: 760px;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}
.about-box .about-box-3 .section .history-time .swiper {
  width: fit-content;
  margin-left: 0;
  height: 700px;
  overflow: hidden;
}
.about-box .about-box-3 .section .history-time .swiper-slide {
  height: calc(700px / 5);
  align-items: center;
  display: flex;
  cursor: pointer;
  position: relative;
}
.about-box .about-box-3 .section .history-time .swiper-slide span {
  font-size: 42px;
  opacity: 0.1;
  transition: opacity 0.5s;
}
.about-box .about-box-3 .section .history-time .swiper-slide::after {
  content: '';
  width: 1px;
  height: 70px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
  background: rgba(255, 255, 255, 0.1);
}
.about-box .about-box-3 .section .history-time .swiper-slide.swiper-slide.swiper-slide-thumb-active span {
  opacity: 1;
  transition: opacity 0.5s;
}
.about-box .about-box-3 .section .history-time .swiper-button-prev {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  cursor: pointer;
  display: flex;
  z-index: 9;
  pointer-events: auto !important;
  background: #191919;
}
.about-box .about-box-3 .section .history-time .swiper-button-prev::after {
  color: #fff;
  font-size: 16px;
  align-items: center;
  transform: rotate(90deg);
}
.about-box .about-box-3 .section .history-time .swiper-button-next {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  cursor: pointer;
  display: flex;
  z-index: 9;
  opacity: 1;
  pointer-events: auto !important;
  background: #151515;
}
.about-box .about-box-3 .section .history-time .swiper-button-next::after {
  color: #fff;
  font-size: 16px;
  transform: rotate(90deg);
}
.about-box .about-box-3 .section .history-box {
  width: calc(100% - 240px);
}
.about-box .about-box-3 .section .history-box .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.about-box .about-box-3 .section .history-box .swiper-slide .text {
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
  width: 55%;
}
.about-box .about-box-3 .section .history-box .swiper-slide .text .item {
  display: flex;
  margin-bottom: 20px;
}
.about-box .about-box-3 .section .history-box .swiper-slide .text .item .month {
  font-size: 18px;
  flex-basis: 60px;
}
.about-box .about-box-3 .section .history-box .swiper-slide .text .item .summary {
  flex-basis: calc(100% - 60px);
  margin-top: 4px;
}
.about-box .about-box-3 .section .history-box .swiper-slide .text p {
  margin-bottom: 10px;
  line-height: 1.6;
}
.about-box .about-box-3 .section .history-box .swiper-slide .text p:last-child {
  margin-bottom: 0;
}
.about-box .about-box-3 .section .history-box .swiper-slide .img {
  width: 40%;
  max-width: 360px;
}
.about-box .about-box-4 {
  margin: 100px auto;
}
.about-box .about-box-4 .swiper-slide img {
  width: 100%;
}
.about-box .about-box-4 .swiper-button-prev,
.about-box .about-box-4 .swiper-button-next {
  width: 25px;
  height: 55px;
  background: rgba(0, 0, 0, 0.3);
}
.about-box .about-box-4 .swiper-button-prev::after,
.about-box .about-box-4 .swiper-button-next::after {
  font-size: 16px;
  color: #fff;
}
.about-box .about-box-4 .swiper-button-prev {
  left: 0;
}
.about-box .about-box-4 .swiper-button-next {
  right: 0;
}
/*关于我们视频弹窗*/
.about-video-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}
.about-video-show .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.about-video-show .about-video-box {
  max-width: 1000px;
  height: 100%;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*个人中心*/
.member {
  padding-top: 80px;
  background: #f2f2f2;
  /*添加地址*/
}
.member .cart-tip {
  padding: 20px 0;
  background: #f2f2f2;
}
.member.member-cart {
  background: none;
}
.member .member-box {
  background-size: cover !important;
  display: flow-root;
}
.member .member-box .member-content {
  max-width: 500px;
  margin: 110px auto 140px;
  background: #fff;
  width: 90%;
}
.member .member-box .member-content.login {
  margin: 150px auto;
}
.member .member-box .member-content .member-top {
  background: #3d3d3d;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.member .member-box .member-content .member-register {
  padding: 60px;
}
.member .member-box .member-content .member-register label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.member .member-box .member-content .member-register label span {
  width: 80px;
  color: #999;
  font-size: 14px;
  text-align: right;
  margin-right: 30px;
}
.member .member-box .member-content .member-register label input {
  width: calc(100% - 110px);
  height: 48px;
}
.member .member-box .member-content .member-register label .checkCode {
  margin-left: auto;
  text-align: right;
}
.member .member-box .member-content .member-register label .change {
  width: 100px;
  margin-left: 15px;
}
.member .member-box .member-content .member-register label.check {
  align-items: flex-start;
}
.member .member-box .member-content .member-register label.check .check-box {
  display: flex;
  align-items: center;
}
.member .member-box .member-content .member-register label.check .change {
  color: #999;
  font-size: 14px;
  margin-top: 4px;
}
.member .member-box .member-content .member-register label.check .change a {
  color: var(--dominant-color);
}
.member .member-box .member-content .member-register .tip {
  width: calc(100% - 110px);
  margin-right: 0;
  margin-left: auto;
}
.member .member-box .member-content .member-register .tip .read {
  display: flex;
  align-items: baseline;
}
.member .member-box .member-content .member-register .tip .read input {
  margin-right: 6px;
}
.member .member-box .member-content .member-register .tip button {
  height: 48px;
  background: var(--dominant-color);
  font-size: 18px;
  width: 100%;
  border: none;
  margin: 15px auto;
  color: #fff;
}
.member .member-box .member-content .member-register .tip button:hover {
  background: #024287;
}
.member .member-box .member-content .member-register .tip .login {
  color: #999;
  text-align: right;
}
.member .member-box .member-content .member-register .tip .login a {
  color: var(--dominant-color);
}
.member .member-box .member-content .member-register .tip .login a:hover {
  text-decoration: underline;
}
.member .member-box .member-content .member-login {
  padding: 100px;
}
.member .member-box .member-content .member-login label {
  position: relative;
  margin-bottom: 30px;
}
.member .member-box .member-content .member-login label i {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.member .member-box .member-content .member-login label input {
  width: 100%;
  padding-left: 30px;
}
.member .member-box .member-content .member-login label input::placeholder {
  color: #999;
}
.member .member-box .member-content button {
  background: var(--dominant-color);
  height: 48px;
  border: none;
  width: 100%;
  color: #fff;
  font-size: 18px;
}
.member .member-box .member-content button:hover {
  background: #024287;
}
.member .member-box .member-content .logon-tip {
  color: #999;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.member .member-box .member-content .logon-tip span a {
  color: var(--dominant-color);
}
.member .member-box .member-content .logon-tip a:hover {
  text-decoration: underline;
}
.member .member-box .section {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  flex-wrap: wrap;
}
.member .member-box .section .member-menu {
  width: calc(31% - 30px);
}
.member .member-box .section .member-menu .member-phone-click {
  display: none;
}
.member .member-box .section .member-menu .item-list {
  background: #fff;
  padding: 30px 0;
  display: block;
}
.member .member-box .section .member-menu .item-list .item a {
  font-size: 16px;
  padding-left: 50px;
  display: flex;
  align-items: center;
  height: 50px;
}
.member .member-box .section .member-menu .item-list .item a span {
  margin-left: 6px;
}
.member .member-box .section .member-menu .item-list .item.active,
.member .member-box .section .member-menu .item-list .item:hover {
  background: #f5f5f5;
}
.member .member-box .section .member-container {
  width: 69%;
  background: #fff;
  padding: 30px;
}
.member .member-box .section .member-container .member-container-title {
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.member .member-box .section .member-container .member-container-title .add-address {
  width: 96px;
  height: 32px;
  border-radius: 3px;
  background: #333;
  line-height: 32px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.member .member-box .section .member-container .member-container-title .add-address:hover {
  background: var(--dominant-color);
}
.member .member-box .section .member-container .form-password {
  max-width: 420px;
  margin-top: 20px;
}
.member .member-box .section .member-container .form-password label {
  margin-bottom: 30px;
  display: block;
}
.member .member-box .section .member-container .form-password label span {
  color: #666;
  display: block;
}
.member .member-box .section .member-container .form-password label input {
  margin-top: 10px;
  width: calc(100% - 120px);
}
.member .member-box .section .member-container .form-password label.get-code button {
  width: 110px;
  background: var(--dominant-color);
  margin-top: 10px;
  margin-left: 10px;
  height: 38px;
  font-size: 14px;
}
.member .member-box .section .member-container .form-password label.get-code .get-code-box {
  display: flex;
  justify-content: space-between;
}
.member .member-box .section .member-container .form-password button {
  width: 140px;
  height: 42px;
  background: #333;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  border: none;
}
.member .member-box .section .member-container .form-password button.button {
  margin-bottom: 50px;
}
.member .member-box .section .member-container .form-password button:hover {
  background: #024287;
}
.member .member-box .section .member-container .address-box-phone {
  display: none;
}
.member .member-box .section .member-container .address-box {
  margin-top: 30px;
  margin-bottom: 50px;
}
.member .member-box .section .member-container .address-box .item-list {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.member .member-box .section .member-container .address-box .item-list.list-top {
  background: #f5f5f5;
  border-bottom: none;
}
.member .member-box .section .member-container .address-box .item-list.list-top .item {
  font-size: 16px;
  color: #333;
  padding: 12px 20px;
}
.member .member-box .section .member-container .address-box .item-list .item {
  padding: 25px 20px;
  text-align: center;
  width: 15%;
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: center;
}
.member .member-box .section .member-container .address-box .item-list .item:nth-child(3) {
  width: 25%;
  text-align: left;
  justify-content: flex-start;
}
.member .member-box .section .member-container .address-box .item-list .item .update,
.member .member-box .section .member-container .address-box .item-list .item .delete {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.member .member-box .section .member-container .address-box .item-list .item .update {
  background: url("../images/member/member-14.png") no-repeat center;
  margin-right: 10px;
}
.member .member-box .section .member-container .address-box .item-list .item .delete {
  background: url("../images/member/member-15.png") no-repeat center;
}
.member .member-box .section .member-container .order-box {
  margin-top: 30px;
  margin-bottom: 50px;
}
.member .member-box .section .member-container .order-box .item {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.member .member-box .section .member-container .order-box .item .img {
  width: 100px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
}
.member .member-box .section .member-container .order-box .item .price-box {
  width: 220px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.member .member-box .section .member-container .order-box .item .price-box .price-top .price {
  font-size: 18px;
  text-align: right;
}
.member .member-box .section .member-container .order-box .item .price-box .price-top .number {
  opacity: 0.5;
  text-align: right;
  padding-right: 20px;
}
.member .member-box .section .member-container .order-box .item .price-box .button-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.member .member-box .section .member-container .order-box .item .price-box .button-box a {
  font-size: 12px;
}
.member .member-box .section .member-container .order-box .item .price-box .button-box a.order-change {
  opacity: 0.5;
}
.member .member-box .section .member-container .order-box .item .price-box .button-box a:hover {
  color: var(--dominant-color);
  opacity: 1;
  border-color: var(--dominant-color);
}
.member .member-box .section .member-container .order-box .item .price-box .button-box a.order-detail,
.member .member-box .section .member-container .order-box .item .price-box .button-box a.order-buy {
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  padding: 4px 9px;
}
.member .member-box .section .member-container .order-box .item .price-box .button-box a.order-detail:hover,
.member .member-box .section .member-container .order-box .item .price-box .button-box a.order-buy:hover {
  background: var(--dominant-color);
  color: #fff;
}
.member .member-box .section .member-container .order-box .item .price-box .button-box a.order-buy {
  border-color: var(--dominant-color);
  color: var(--dominant-color);
}
.member .member-box .section .member-container .order-box .item .price-box .button-box a.order-buy:hover {
  color: #fff;
}
.member .member-box .section .member-container .order-box .item .text {
  margin-left: 25px;
  max-width: 350px;
  margin-right: 25px;
}
.member .member-box .section .member-container .order-box .item .text .title {
  font-size: 18px;
}
.member .member-box .section .member-container .order-box .item .text .sub {
  font-size: 12px;
  background: #ededed;
  padding: 2px 5px;
  color: #666;
  display: inline-block;
  margin-top: 15px;
}
.member .member-box .section .member-container .card-box {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 30px;
}
.member .member-box .section .member-container .card-box .item {
  /* width: calc((100% - 30px) / 2); */
  /* margin-right: 30px; */
  /* margin-bottom: 30px; */
  border: 1px solid #e5e5e5;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  /* float: left; */
}
.member .member-box .section .member-container .card-box .item:nth-child(2n) {
  margin-right: 0;
}
.member .member-box .section .member-container .card-box .item .img {
  width: 60%;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.member .member-box .section .member-container .card-box .item .img .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.member .member-box .section .member-container .card-box .item .img .text .price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.member .member-box .section .member-container .card-box .item .img .text .price span {
  font-size: 32px;
}
.member .member-box .section .member-container .card-box .item .img .text .price-can-use {
  margin-top: 10px;
}
.member .member-box .section .member-container .card-box .item .get-box {
  width: 40%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.member .member-box .section .member-container .card-box .item .get-box .get {
  width: 100px;
  height: 34px;
  background: url("../images/member/member-21.png") no-repeat center;
  text-align: center;
  line-height: 34px;
  color: #fff;
  cursor: pointer;
}
.member .member-box .section .member-container .card-box .item .get-box .get:hover,
.member .member-box .section .member-container .card-box .item .get-box .get.is-get {
  background: url("../images/member/member-22.png") no-repeat center;
}
.member .member-box .section .member-container .card-box .item .get-box .term-of-validity {
  color: #666;
  opacity: 0.8;
}
.member .member-box .section .member-container .card-box .item .get-box .term-of-validity span {
  font-size: 12px;
}
.member .member-box .section .member-container .order-detail-box {
  margin-top: 30px;
  margin-bottom: 50px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.member .member-box .section .member-container .order-detail-box .order-detail-top .order-text {
  font-size: 14px;
  color: #666;
  line-height: 2;
}
.member .member-box .section .member-container .order-detail-box .order-detail-top .order-text span {
  width: 70px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-top .order-delete {
  font-size: 12px;
  color: #666;
  background: #f2f2f2;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  padding: 3px 9px;
  cursor: pointer;
}
.member .member-box .section .member-container .order-detail-box .order-detail-top .order-delete:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.member .member-box .section .member-container .order-detail-box .order-progress {
  background: #f8f8f8;
  border-top: 1px solid #ececec;
  padding: 30px 40px;
  margin-top: 30px;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-top {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-top .title {
  font-size: 18px;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-top .summary {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item {
  height: 75px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item::before {
  content: '';
  position: absolute;
  background: #c6c6c6;
  height: 96%;
  width: 1px;
  left: 3px;
  top: 10px;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item:last-child {
  height: fit-content;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item:last-child::before {
  display: none;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item .title {
  font-size: 14px;
  position: relative;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item .title::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background: #c6c6c6;
  border-radius: 50%;
  left: -25px;
  top: 7px;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item:first-child .title::after {
  background: #333;
}
.member .member-box .section .member-container .order-detail-box .order-progress .order-progress-bottom .item .time {
  color: #999;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom {
  margin-top: 30px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .title {
  font-size: 20px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box {
  margin-top: 30px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-top {
  padding-bottom: 20px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-top,
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list {
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-top .item,
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item {
  width: 120px;
  text-align: center;
  font-size: 16px;
  color: #666;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-top .item:first-child,
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item:first-child {
  width: calc(100% - 360px);
  text-align: left;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-top .item:last-child,
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item:last-child {
  text-align: right;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list {
  border-bottom: 1px solid #f5f5f5;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item .text .img {
  width: 100px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item .text .title {
  width: calc(100% - 110px);
  font-size: 16px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item span {
  font-size: 16px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .item-box .item-list .item span.total {
  font-size: 18px;
  color: #000;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .total-box {
  margin-top: 30px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .total-box .item {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  margin-bottom: 20px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .total-box .item .key,
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .total-box .item .value {
  width: 150px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .total-box .item .key span.total,
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .total-box .item .value span.total {
  font-size: 18px;
  color: #333;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list {
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list .title {
  margin-bottom: 30px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list .item {
  display: flex;
  margin-bottom: 20px;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list .item .key {
  width: 150px;
  color: #999;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list.apply .item {
  align-items: center;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list.invoice .item {
  position: relative;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list.invoice .item .invoice-tip {
  position: absolute;
  top: 30px;
  background: #fff;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  padding: 10px;
  border-radius: 16px;
  color: #999;
  display: none;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list.invoice .item .key {
  background: url("../images/member/member-24.png") no-repeat center left 60px;
  padding-right: 20px;
  height: fit-content;
  cursor: pointer;
}
.member .member-box .section .member-container .order-detail-box .order-detail-bottom .detail-info .item-list.invoice .item .value .tip {
  color: #999;
  margin-top: 10px;
}
.member .member-box .section .member-container .img-upload {
  background: #fbfbfb;
  border: 1px solid #f2f2f2;
  padding: 40px;
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.member .member-box .section .member-container .img-upload .img {
  width: 72px;
  margin-right: 50px;
  border-radius: 50%;
  height: 72px;
  overflow: hidden;
}
.member .member-box .section .member-container .img-upload .update .title {
  color: #333;
}
.member .member-box .section .member-container .img-upload .update label {
  width: 90px;
  height: 28px;
  background: var(--dominant-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-top: 10px;
  color: #fff;
  position: relative;
}
.member .member-box .section .member-container .img-upload .update label input {
  opacity: 0;
}
.member .member-box .section .member-container .img-upload .update label span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: 100%;
  text-align: center;
}
.member .member-box .section .member-container .img-upload .update .tip {
  color: #666;
  margin-top: 6px;
}
.member .member-box .section .member-container .member-messages {
  padding-top: 40px;
}
.member .member-box .section .member-container .member-messages .form-messages {
  padding: 0;
  border: none;
}
.member .member-box .section .member-container .member-messages .form-messages .item {
  margin-bottom: 0;
}
.member .member-box .section .member-container .member-messages .form-messages .item .isSex {
  margin-bottom: 30px;
}
.member .member-box .section .member-container .member-messages .form-messages .item .isSex label {
  margin-left: 40px;
  margin-right: 0;
}
.member .member-box .section .member-container .member-messages .form-messages .item .textarea-item {
  width: 100%;
  margin-right: 0;
}
.member .member-box .section .member-container .member-messages .form-messages .button-box {
  text-align: left;
  width: 138px;
  height: 42px;
}
.member .member-box .section .member-apply-list {
  width: 30%;
}
.member .member-box .section .member-apply-list .member-apply-list-box {
  background: #fff;
  padding: 30px;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-list-title {
  font-size: 32px;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-list-time {
  font-size: 16px;
  color: #666;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order {
  margin-top: 40px;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .title {
  font-size: 18px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .title::after {
  content: '';
  background: url("../images/member/member-26.png") no-repeat center right;
  width: 12px;
  height: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  position: absolute;
  background-size: 12px;
  transition: all 0.5s;
  transform: rotate(180deg);
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box {
  padding: 30px 0;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box .item-list-title {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box .item-list .item {
  display: flex;
  align-items: center;
  color: #666;
  margin: 10px 0;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box .item-list .item-img {
  max-width: 40px;
  width: 40px;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box .item-list .item-title {
  margin-left: 30px;
  margin-right: 30px;
  width: calc(100% - 140px);
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box .item-list .item-number {
  font-size: 12px;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box .add {
  margin-top: 30px;
  color: #666;
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}
.member .member-box .section .member-apply-list .member-apply-list-box .apply-order .item-box .add div {
  margin-bottom: 20px;
}
.member .member-box .section .member-apply-detail {
  width: 66%;
  background: #fff;
  padding: 30px;
}
.member .member-box .section .member-apply-detail .apply-title {
  margin-bottom: 30px;
}
.member .member-box .section .member-apply-detail .apply-list {
  margin-bottom: 30px;
}
.member .member-box .section .member-apply-detail .apply-list:nth-child(1) .item-list .item {
  align-items: center;
}
.member .member-box .section .member-apply-detail .apply-list:nth-child(1) .item-list .item .img {
  align-items: center;
}
.member .member-box .section .member-apply-detail .apply-list:nth-child(2) .item-list .item {
  flex-basis: 100%;
}
.member .member-box .section .member-apply-detail .apply-list .item-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.member .member-box .section .member-apply-detail .apply-list .item-list .item {
  flex-basis: 48%;
  display: flex;
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
}
.member .member-box .section .member-apply-detail .apply-list .item-list .item.active,
.member .member-box .section .member-apply-detail .apply-list .item-list .item:hover {
  border-color: var(--dominant-color);
}
.member .member-box .section .member-apply-detail .apply-list .item-list .item .img {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-right: 20px;
}
.member .member-box .section .member-apply-detail .apply-list .item-list .item .summary {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}
.member .member-box .section .member-apply-detail .apply-list .item-list .item .text {
  width: calc(100% - 70px);
}
.member .member-box .member-title {
  width: 90%;
  max-width: 1280px;
  margin: 50px auto 30px;
}
.member .member-box.member-faq .member-menu .item-list {
  padding: 30px 20px;
}
.member .member-box.member-faq .member-menu .item-list .item a {
  padding-left: 20px;
}
.member .member-box.member-faq .member-faq-box {
  margin-bottom: 30px;
}
.member .member-box.member-faq .member-faq-box .item {
  border-bottom: 1px solid #e5e5e5;
  padding: 30px 0;
}
.member .member-box.member-faq .member-faq-box .item .title {
  font-size: 18px;
  position: relative;
  cursor: pointer;
}
.member .member-box.member-faq .member-faq-box .item .title::after {
  content: '';
  background: url("../images/member/member-26.png") no-repeat center right;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
}
.member .member-box.member-faq .member-faq-box .item .title.active::after {
  transition: all 0.5s;
  transform: rotate(180deg);
}
.member .member-box.member-faq .member-faq-box .item .summary {
  margin-top: 10px;
  color: #666;
  line-height: 2;
  display: none;
}
.member .member-box.member-check .check-title {
  font-size: 24px;
  margin-bottom: 30px;
}
.member .member-box.member-check .member-check-detail {
  width: calc(100% - 430px);
  padding: 40px 30px;
  background: #fff;
}
.member .member-box.member-check .member-check-detail .item-list {
  margin-bottom: 30px;
}
.member .member-box.member-check .member-check-detail .item-list .item-box {
  display: flex;
  flex-wrap: wrap;
}
.member .member-box.member-check .member-check-detail .item-list .item-box .item {
  margin-right: 25px;
  width: calc((100% - 75px) / 4);
  text-align: center;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 20px;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.member .member-box.member-check .member-check-detail .item-list .item-box .item:nth-child(4n) {
  margin-right: 0;
}
.member .member-box.member-check .member-check-detail .item-list .item-box .item.active {
  border-color: var(--dominant-color);
  border-width: 2px;
}
.member .member-box.member-check .member-check-detail .item-list .item-box-choose {
  margin-top: 30px;
}
.member .member-box.member-check .member-check-detail .item-list .item-box-choose .item {
  display: none;
}
.member .member-box.member-check .member-check-detail .item-list .item-box-choose .item .item-bg {
  background: rgba(238, 238, 238, 0.3);
  padding: 15px 15px 5px 15px;
}
.member .member-box.member-check .member-check-detail .item-list .item-box-choose .item.active {
  display: block;
}
.member .member-box.member-check .member-check-detail .item-list .item-box-choose .item label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .member .member-box.member-check .member-check-detail .item-list .item-box-choose .item label {
    flex-direction: column;
    align-items: flex-start;
  }
}
.member .member-box.member-check .member-check-detail .item-list .item-box-choose .item label span {
  flex-basis: 120px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .member .member-box.member-check .member-check-detail .item-list .item-box-choose .item label span {
    flex-basis: auto;
  }
}
.member .member-box.member-check .member-check-detail .item-list.distribution .item-box .item {
  width: 100%;
  margin-right: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 20px;
}
.member .member-box.member-check .member-check-detail .item-list.distribution .item-box .item .title {
  font-size: 18px;
  color: #333;
}
.member .member-box.member-check .member-check-detail .item-list.distribution .item-box .item .summary {
  color: #666;
}
.member .member-box.member-check .member-check-detail .item-list .item-input label {
  margin-bottom: 30px;
  display: block;
}
.member .member-box.member-check .member-check-detail .item-list .item-input label input {
  height: 58px;
  padding: 0 10px;
}
.member .member-box.member-check .member-check-detail .item-list .item-input .select-box {
  display: flex;
  width: 100%;
}
.member .member-box.member-check .member-check-detail .item-list .item-input .select-box label {
  margin-right: 30px;
  width: calc((100% - 30px) / 2);
}
.member .member-box.member-check .member-check-detail .item-list .item-input .select-box label:last-child {
  margin-right: 0;
}
.member .member-box.member-check .member-check-detail .item-list .tip-box {
  margin-top: 20px;
  position: relative;
}
.member .member-box.member-check .member-check-detail .item-list .tip-box .summary {
  color: var(--dominant-color);
  background: url("../images/member/member-29.png") no-repeat center right;
  display: inline-block;
  padding-right: 10px;
  cursor: pointer;
}
.member .member-box.member-check .member-check-detail .item-list .tip-box .invoice-tip {
  position: absolute;
  top: 30px;
  background: #fff;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  padding: 10px;
  border-radius: 16px;
  color: #999;
  display: none;
}
.member .member-box.member-check .member-check-sub {
  width: 400px;
}
.member .member-box.member-check .member-check-sub .check-sub-box {
  background: #fff;
  padding: 30px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .check-product {
  display: flex;
  align-items: center;
  border-top: 1px solid #e5e5e5;
}
.member .member-box.member-check .member-check-sub .check-sub-box .check-product .img {
  width: 80px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .check-product .text {
  margin: 0 20px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .check-product .price {
  margin-left: auto;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box {
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
  margin-bottom: 30px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item {
  display: flex;
  justify-content: space-between;
  color: #666;
  margin-bottom: 20px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item .key,
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item .value {
  width: 50%;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item .value {
  text-align: right;
  position: relative;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item .value.cart-show-button {
  cursor: pointer;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item .value::after {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  position: absolute;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item:nth-child(2) .value {
  color: var(--dominant-color);
  padding-right: 10px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item:nth-child(2) .value::after {
  content: '';
  background: url("../images/page/next2.png") no-repeat center right 0;
}
/* .member .member-box.member-check .member-check-sub .check-sub-box .total-box .item:nth-child(3) .value::after {
  content: '';
  /* background: url("../images/member/member-28.png") no-repeat center right 32px; 
}*/
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item:nth-child(3) .value {
  color: #333;
  font-size: 20px;
  line-height: 1;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item:nth-child(3) .value span {
  font-size: 20px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .total-box .item:nth-child(3) .value .tip {
  margin-top: 10px;
  color: #666;
}
.member .member-box.member-check .member-check-sub .check-sub-box .button {
  width: 100%;
  background: var(--dominant-color);
  height: 44px;
  font-size: 16px;
  border-radius: 16px;
  border: none;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
}
.member .member-box.member-check .member-check-sub .check-sub-box .button:hover {
  background: #024287;
}
.member .member-box.member-check .member-check-sub .check-sub-box .check-input a {
  color: var(--dominant-color);
}
.member .member-box.member-check .member-check-sub .check-sub-box .check-input a:hover {
  text-decoration: underline;
}
.member .member-box.member-check .card-show-box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}
.member .member-box.member-check .card-show-box::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.member .member-box.member-check .card-show-box .card-box {
  width: 90%;
  max-width: 600px;
  background: #fff;
  border-radius: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  height: fit-content;
  max-height: 80vh;
  padding: 35px;
}
.member .member-box.member-check .card-show-box .card-box .close {
  position: absolute;
  top: 35px;
  right: 30px;
  cursor: pointer;
}
.member .member-box.member-check .card-show-box .card-box .card-box-title {
  font-size: 24px;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list {
  display: flex;
  flex-wrap: wrap;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item {
  width: calc((100% - 40px) / 2);
  margin-right: 40px;
  margin-top: 30px;
  position: relative;
  padding: 10px;
  cursor: pointer;
  border: 1px solid transparent;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item:nth-child(1).active {
  border-color: #63b3fc;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item:nth-child(2).active {
  border-color: #fcc163;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item:nth-child(3).active {
  border-color: #fd87da;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item:nth-child(4).active {
  border-color: #63dafc;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item:nth-child(2n) {
  margin-right: 0;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item img {
  width: 100%;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item .text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  text-align: center;
  height: fit-content;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item .text .price {
  font-size: 24px;
  line-height: 1;
}
.member .member-box.member-check .card-show-box .card-box .card-box-list .item .text .price span {
  font-size: 48px;
  font-weight: 600;
}
.member .member-box .cart-box {
  width: 100%;
}
.member .member-box .cart-box .cart-box-top,
.member .member-box .cart-box .cart-box-bottom {
  display: flex;
  justify-content: flex-end;
  background: #f8f8f8;
  height: 54px;
  line-height: 54px;
  padding-right: 30px;
}
.member .member-box .cart-box .cart-box-top .item,
.member .member-box .cart-box .cart-box-bottom .item {
  font-size: 16px;
  width: 15%;
  text-align: center;
}
.member .member-box .cart-box .cart-box-top .item:first-child,
.member .member-box .cart-box .cart-box-bottom .item:first-child {
  width: 40%;
  margin-right: auto;
}
.member .member-box .cart-box .cart-box-top .item:last-child,
.member .member-box .cart-box .cart-box-bottom .item:last-child {
  width: 50px;
}
.member .member-box .cart-box .cart-box-bottom {
  height: auto;
  background: none;
  line-height: normal;
  display: block;
}
.member .member-box .cart-box .cart-box-bottom .item-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  margin: 30px 0;
  padding-bottom: 30px;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item .img {
  width: 115px;
  margin-left: 30px;
  height: 115px;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item .title {
  font-size: 18px;
  margin-left: 10px;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item span {
  font-size: 16px;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item:first-child {
  display: flex;
  align-items: center;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item:first-child input {
  width: 18px;
  height: 18px;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item.number-button {
  display: flex;
  justify-content: center;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item.number-button .button {
  width: 25px;
  height: 25px;
  background: #f2f2f2;
  border: none;
  font-size: 22px;
  line-height: 25px;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item.number-button .button:hover {
  background: #e5e5e5;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item.number-button input {
  width: 50px;
  height: 25px;
  border: none;
  text-align: center;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item.delete-button {
  cursor: pointer;
}
.member .member-box .cart-box .cart-box-bottom .item-list .item.delete-button:hover {
  filter: brightness(0);
}
.member .member-box .cart-box .apply-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}
.member .member-box .cart-box .apply-box .apply-list img {
  margin-right: 20px;
}
.member .member-box .cart-box .apply-box .result-list {
  text-align: right;
}
.member .member-box .cart-box .apply-box .result-list .result-box {
  font-size: 32px;
}
.member .member-box .cart-box .apply-box .result-list .result-box span {
  font-size: 32px;
  font-weight: 100;
}
.member .member-box .cart-box .apply-box .result-list .freight {
  font-size: 16px;
}
.member .member-box .cart-box .apply-box .result-list .freight span {
  font-size: 16px;
  color: #666;
}
.member .member-box .cart-box .cart-submit {
  text-align: right;
  margin-top: 60px;
}
.member .member-box .cart-box .cart-submit button {
  width: 244px;
  height: 44px;
  border-radius: 16px;
  background: #ececec;
  border: none;
  font-size: 16px;
  color: #666;
}
.member .member-box .cart-box .cart-submit button:hover {
  background: var(--dominant-color);
  color: #fff;
}
.member .member-box .you-will-like {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #e5e5e5;
  margin-top: 100px;
  padding-top: 80px;
}
.member .member-box .you-will-like .swiper {
  padding: 0 40px;
  width: 100%;
}
.member .member-box .you-will-like .like-title {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.member .member-box .you-will-like .swiper-button-prev::after,
.member .member-box .you-will-like .swiper-button-next::after {
  font-size: 20px;
  color: #007aff;
}
.member .member-box .you-will-like .item {
  text-align: center;
}
.member .member-box .you-will-like .item .imgBox {
  height: auto;
}
.member .member-box .you-will-like .item .summary {
  color: #666;
  margin: 20px auto;
}
.member .member-box .you-will-like .item .price {
  color: var(--dominant-color);
}
.member .member-box .you-will-like .item button {
  background: var(--dominant-color);
  width: 110px;
  height: 32px;
  color: #fff;
  border-radius: 16px;
  margin-top: 30px;
}
.member .member-location {
  margin-top: 30px;
  border-bottom: none;
}
.member .add-address-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  overflow: hidden;
  display: none;
}
.member .add-address-show::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.member .add-address-show .add-address-box {
  max-width: 800px;
  background: #fff;
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 80vh;
  z-index: 10;
  overflow: auto;
  border-radius: 10px;
}
.member .add-address-show .add-address-box .add-title {
  height: 80px;
  line-height: 80px;
  font-size: 18px;
  padding: 0 30px;
  border-bottom: 1px solid #e5e5e5;
}
.member .add-address-show .add-address-box .close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.member .add-address-show .add-address-box .form-address {
  padding: 30px;
}
.member .add-address-show .add-address-box .form-address .item-list {
  display: flex;
  margin-bottom: 30px;
}
.member .add-address-show .add-address-box .form-address .item-list .item p {
  color: #666;
  margin-bottom: 6px;
}
.member .add-address-show .add-address-box .form-address .item-list .item p span {
  color: #f11111;
}
.member .add-address-show .add-address-box .form-address .item-list .item input {
  border-radius: 3px;
}
.member .add-address-show .add-address-box .form-address .item-list .item select {
  text-indent: 10px;
  height: 38px;
}
.member .add-address-show .add-address-box .form-address .item-list .item:nth-child(1) {
  width: calc(35% - 30px);
  margin-right: 30px;
}
.member .add-address-show .add-address-box .form-address .item-list .item:nth-child(2) {
  width: 65%;
}
.member .add-address-show .add-address-box .form-address .item-list .item.item-width {
  width: 100%;
  margin-right: 0;
}
.member .add-address-show .add-address-box .form-address .item-list .item .tip {
  opacity: 0.5;
  margin-top: 10px;
}
.member .add-address-show .add-address-box .form-address .check {
  color: #666;
  display: flex;
  align-items: center;
}
.member .add-address-show .add-address-box .form-address .check span {
  margin-left: 6px;
}
.member .add-address-show .add-address-box .form-address button {
  width: 140px;
  height: 38px;
  background: #333;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  margin-top: 40px;
}
.member .is-delete {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  overflow: hidden;
  display: none;
}
.member .is-delete::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.member .is-delete .is-delete-box {
  padding: 30px;
  max-width: 300px;
  height: 150px;
  background: #fff;
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  overflow: auto;
  border-radius: 10px;
}
.member .is-delete .is-delete-box .title {
  margin-bottom: 20px;
}
.member .is-delete .is-delete-box .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.member .is-delete .is-delete-box button {
  width: 45%;
  margin-right: 2%;
  height: 40px;
  color: #fff;
  background: var(--dominant-color);
}
.member .is-delete .is-delete-box button:hover {
  background: #024287;
}
.pay-box-show {
  position: relative;
  z-index: 11;
  display: none;
}
.pay-box-show .pay-box {
  padding: 60px 50px;
  background: #fff;
  position: fixed;
  z-index: 11;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 590px;
  width: 90%;
  margin: auto;
  height: fit-content;
  max-height: 80vh;
  border-radius: 10px;
  text-align: center;
}
.pay-box-show .pay-box .close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.pay-box-show .pay-box .pay-code {
  max-width: 240px;
  margin: auto;
}
.pay-box-show .pay-box .pay-text {
  margin-top: 40px;
}
.pay-box-show .pay-box .pay-text .pay-title {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.pay-box-show .pay-box .pay-text .pay-icon {
  max-width: 60px;
  margin: auto;
}
.pay-box-show .pay-box .pay-text .pay-tip {
  font-size: 14px;
  color: #999;
}
.pay-box-show .pay-box .pay-text .pay-tip a {
  color: var(--dominant-color);
}
.pay-box-show::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  position: fixed;
}
.contact-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.contact-item .item {
  line-height: 2;
}
.scene-menu {
  position: sticky;
  display: flex;
  justify-content: center;
  height: 44px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  top: 54px;
  background: #fff;
  align-items: center;
  z-index: 1;
}
.scene-menu .item {
  font-size: 16px;
  margin: 0 20px;
  font-weight: 600;
}
/*# sourceMappingURL=page.css.map */