/*
Theme Name: aic
Version: 1.0
Description: 安徽领聚数字作为Google中国区核心合作伙伴,拥有安徽省唯一的一家Google出海体验中心,为安徽本土化外贸企业出海提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：安徽领聚
*/
@charset "utf-8";

:root {
  --i_color: #ff5000;
  /* 全局颜色 */
  --top1_height: 0.4rem;
  /* 头部1高度 */
  --top2_height: 0.7rem;
  /* 头部2高度 */
  --header_height: calc(var(--top1_height) + var(--top2_height));
  /* 头部高度 */
  --border_color: rgba(0, 0, 0, 0.15);
  /* 默认边框颜色 */
}
@media screen and (max-width: 1024px) {
  :root {
    --top1_height: 0.34rem;
    --top2_height: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --top2_height: 0.54rem;
    --border_color: rgba(0, 0, 0, 0.08);
  }
}

.wrap {
  width: 92vw;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
}
.wrap2 {
  width: 94vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 94vw;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2014;
}

.top_line {
  background: #191919;
}
.top_line .wrap2 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.top_line_r {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.4rem;
}

.top_t {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.3rem;
}

.top_t li {
  display: flex;
  align-items: center;
  color: #fff;
  line-height: var(--top1_height);
  position: relative;
  font-size: 14px;
  color: #fff;
}

.top_t li::before {
  content: "";
  display: block;
  width: 1px;
  height: 30%;
  background-color: rgb(255, 255, 255, 0.6);
  position: absolute;
  right: -0.15rem;
  top: 50%;
  transform: translate(0, -50%);
}

.top_t li a {
  font-size: 14px;
  color: #fff;
}

.top_t li iconify-icon {
  font-size: 0.2rem;
  transform: rotate(-90deg);
  cursor: pointer;
}

.top_t li:last-child iconify-icon {
  font-size: 0.14rem;
  transform: rotate(0deg);
}

.top_t a {
  margin-right: 0.1rem;
}

.top_calculator {
  font-size: 14px;
  color: #fff;
}

.top_dropdown {
  min-width: 2.5rem;
  position: absolute;
  left: 50%;
  top: var(--top1_height);
  transform: translate(-50%, -6px);
  background-color: #191919;
  z-index: 2025;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top_dropdown a {
  text-align: center;
  display: block;
  font-size: 0.14rem;
  color: #fff;
  transition: all 0.4s;
}

.top_dropdown a:hover {
  color: var(--i_color);
}

.top_t li iconify-icon:hover {
  color: var(--i_color);
}

.top_calculator:hover {
  color: var(--i_color);
}

.language {
  position: relative;
}

.language p {
  font-size: 14px;
  color: #fff;
  position: relative;
  padding-right: 0.2rem;
  line-height: var(--top1_height);
  cursor: pointer;
}
.language p.on {
  color: var(--i_color);
}
.language p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
}
.language p.on::before {
  border-top-color: var(--i_color);
}
.language_list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(var(--top1_height) + 0.2rem);
  right: 0;
  background: #191919;
  z-index: 2016;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.language_list.on {
  opacity: 1;
  visibility: visible;
  top: var(--top1_height);
}
.language_list li {
}
.language_list a > span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0.08rem 0.2rem;
}
.language_list .trp-ls-language-name {
  /* margin-left: 0.1rem; */
  font-size: 14px;
  color: #fff;
}
.language_list li:hover {
  background: var(--i_color);
}
.language_list li:hover .trp-ls-language-name {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .language::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .top_line_r {
    width: 100%;
    margin-left: 0;
    gap: 0;
    justify-content: space-between;
  }
  .top_t {
    gap: 0 0.1rem;
  }
  .top_t li::before {
    display: none;
  }
  .top_t li a {
    font-size: 0.12rem;
    margin-right: 0.05rem;
  }
  .top_t li iconify-icon {
    font-size: 0.16rem;
  }
}

.top_cont {
  background: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_cont .top {
  height: var(--top2_height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.TopHeader .top_cont {
  /* background: #373737; */
}

@media screen and (max-width: 1024px) {
  .top_cont {
    background: #373737;
  }
}

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 48%;
}
.logo img {
  max-height: 100%;
}

@media screen and (max-width: 768px) {
  .logo a {
    height: 40%;
  }
}
@media screen and (max-width: 560px) {
  .logo a {
    height: 34%;
  }
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    gap: 0 0.3rem;
    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }

  .i_nav > li > a {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: var(--top2_height);
    white-space: nowrap;
    -webkit-border-radius: 0.08rem;
    border-radius: 0.08rem;
  }

  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > .active > a {
    color: var(--i_color) !important;
  }

  .i_nav .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    min-width: 100%;
    background: #191919;
    overflow: hidden;
    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
    font-size: 0;
  }
  .nav_dropdown_menu1 > .sub-menu,
  .nav_dropdown_menu2 > .sub-menu,
  .nav_dropdown_menu3 > .sub-menu,
  .nav_dropdown_menu4 > .sub-menu {
    display: none !important;
  }
  .i_nav .sub-menu li {
    position: relative;
    border-bottom: 1px solid var(--border_color);
  }
  .i_nav .sub-menu a {
    display: block;
    padding: 0 0.16rem;
    font-size: 0.15rem;
    color: #fff;
    line-height: 0.36rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    transition: all 0.4s ease;
  }
  .i_nav .sub-menu li:hover a {
    color: var(--i_color);
  }
}

@media screen and (max-width: 1440px) {
  .i_nav > li > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1366px) {
  .logo a {
    height: 30%;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.38rem;
  }
  .i_nav > li > a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: fixed;
    top: var(--header_height);
    left: 0;
    width: 100%;
    width: 100vw;
    max-height: calc(100vh - var(--header_height));
    background: #fff;
    overflow-y: auto;
    z-index: 2;
  }
  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    box-sizing: border-box;
    background: #f1f1f1
      url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.24rem;
  }

  .i_nav > .menu-item-has-children span.on {
    background: #f1f1f1
      url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="48" height="48" viewBox="0 0 48 48"%3E%3Cg transform="rotate(180 24 24)"%3E%3Cpath fill="none" stroke="%23666" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.24rem;
  }

  .i_nav > li > a {
    padding: 0 0.2rem;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }

  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 0.15rem;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  /* .i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	} */

  .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url(../images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(../images/public/arrow_up_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }

  .i_nav .sub-menu .sub-menu {
    display: none;
  }

  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 0.13rem;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }

  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: #fff;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}

@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
  }
}

/* 导航下拉 */
.nav_dropdown {
  position: fixed;
  top: var(--header_height);
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2013;
}
.nav_dropdown_item {
  display: none;
  padding: 0.4rem 0;
}

.nav_dropdown_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 3%;
}
.nav_dropdown_list dt {
  width: 100%;
  max-width: 3.8rem;
}

.nav_p_cat_name a {
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 900;
}

.nav_dropdown_list ul {
  margin-top: 0.2rem;
}
.nav_dropdown_list li {
  position: relative;
  padding-left: 0.24rem;
}
.nav_dropdown_list li::before {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 24 24"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M24 0v24H0V0h24ZM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018Zm.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022Zm-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01l-.184-.092Z"%2F%3E%3Cpath fill="currentColor" d="M15.707 11.293a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 1 1-1.414-1.414l4.95-4.95l-4.95-4.95a1 1 0 0 1 1.414-1.414l5.657 5.657Z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}
.nav_dropdown_list li a {
  display: block;
  padding: 0.06rem 0;
  font-size: 0.15rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav_dropdown_list li:hover a {
  margin-left: 8px;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .top_cont .top {
    justify-content: space-between;
  }
  .i_nav > li > a iconify-icon {
    display: none !important;
  }

  .top_dropdown {
    left: 0;
    transform: none !important;
  }
  .language {
    margin-left: auto;
  }
}

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #fff;
  position: relative;
}
.in_position .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #333;
  position: relative;
  line-height: 20px;
}
.in_position a:first-child {
  padding-left: 0.26rem;
}
.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../imgs/home.webp) no-repeat center;
  background-size: contain;
}
.in_position a:not(:last-child):after {
  content: "/";
  margin: 0 4px;
  color: #555;
}

.in_position a:nth-child(2),
.in_position a:nth-child(3) {
  color: var(--i_color);
}

.in_position a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}

main {
  background-color: #f4f4f4;
}

/* 产品简述 */
.pi_cont {
  background-color: #fff;
  padding: 0.4rem 0 0.3rem 0.4rem;
}

.pi_cont > a {
  color: #000;
}

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

/* atlas */
.p_atlas {
  width: 47%;
}
.p_atlas_list {
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_atlas_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 76%;
}
.p_atlas_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* thumbnail */
.p_thumbnail_list {
  width: calc(100% - 1.6rem);
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_thumbnail_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  cursor: pointer;
}
.p_thumbnail_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 76%;
}
.p_thumbnail_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p_thumbnail_list .swiper-slide-thumb-active {
  border-color: var(--i_color);
}

.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 3;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
}
.thumbnail-prev {
  left: 0;
}
.thumbnail-next {
  right: 0;
}
.thumbnail-prev iconify-icon,
.thumbnail-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.26rem;
  color: #000;
}
.p_thumbnail_list .swiper-button-disabled {
  cursor: not-allowed;
}

.thumbnail-prev:hover,
.thumbnail-next:hover {
  border-color: var(--i_color);
}

.thumbnail-prev:hover iconify-icon,
.thumbnail-next:hover iconify-icon {
  color: var(--i_color);
}

.p_info {
  width: 53%;
  background-color: #f7f7f7;
}

.p_info h4 {
  background-color: #f7f7f7;
  padding: 1.5rem 0.48rem 0.4rem 0.48rem;
}

.p_info h4 i {
  display: block;
  width: max-content;
  position: relative;
  color: #666;
}

.p_info h4 i::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #666;
  position: absolute;
  left: 0;
  bottom: 0;
}

.p_info h2 {
  background-color: #f8e6de;
  padding: 0.34rem 0.48rem;
}

.p_info h2 span {
  font-weight: bold;
  color: var(--i_color);
}

.p_info h2 i {
  color: var(--i_color);
}

.p_info h2 b {
  color: #666;
}

.p_info_list {
  padding: 0.3rem 0.48rem 0.52rem 0.48rem;
  background-color: #f7f7f7;
}

.pl_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem 4%;
  margin-top: 0.24rem;
}

.pl_cont li {
  width: 48%;
  box-sizing: border-box;
  border-radius: 0.04rem;
  border: 1px solid var(--i_color);
  padding: 0.1rem;
  transition: all 0.4s ease;
}

.pl_cont li i {
  color: var(--i_color);
}

.pl_cont li span {
  color: #000;
}

.pl_cont li:hover {
  background-color: var(--i_color);
}
.pl_cont li:hover i,
.pl_cont li:hover span {
  color: #fff;
}

.p_info > b {
  display: block;
  margin-top: 0.24rem;
  color: #666;
  padding-left: 0.72rem;
  padding-right: 0.4rem;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
  .p_info h4 {
    padding: 0.4rem 0.48rem;
  }
  .pl_cont li {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 1200px) {
  .p_info h2 {
    padding: 0.34rem 0.3rem;
  }
  .pl_cont li {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 1024px) {
  .pi_cont {
    padding: 0.2rem 0.2rem 0 0.2rem;
  }
  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
  .p_atlas {
    width: 100%;
  }
  .p_info {
    width: 100%;
    margin-top: 0.2rem;
  }
  .p_info h4,
  .p_info h2,
  .p_info_list,
  .p_info > b {
    padding: 0.2rem;
  }
  .p_info > b {
    margin-top: 0;
  }
}
@media screen and (max-width: 560px) {
  .pl_cont li {
    width: 100%;
  }
}

/* 产品信息 */
.product_info {
}

.product_info_cont {
  background-color: #fff;
  padding-right: 0.8rem;
}

.title {
  width: max-content;
  position: relative;
  font-weight: bold;
  color: #fff;
  z-index: 20;
  padding-left: 0.48rem;
  padding-right: 0.3rem;
  padding-top: 0.08rem;
  padding-bottom: 0.08rem;
}

.title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -8px;
  top: 0;
  background-color: var(--i_color);
  z-index: -1;
  border-radius: 0 10rem 10rem 0;
}

.title::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../imgs/Triangle.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -8px;
  bottom: -6px;
}

.product_info_cont p {
  padding-left: 0.48rem;
}

.product_info_cont p a {
  color: #003da7;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .product_info_cont {
    padding: 0.2rem 0.2rem 0.2rem 0;
  }
  .product_info_cont p,
  .title {
    padding-left: 0.2rem;
  }
}

.product_info_imgs {
  padding-right: 0.2rem;
}

.big_img {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding-left: 0.2rem;
}

.big_img img {
  width: 100%;
}

.big_img02 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  justify-content: space-between;
  padding-left: 0.2rem;
  position: relative;
}

.img111 {
  width: 44.59%;
  position: relative;
}

.img111::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 96%;
}

.img111 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.big_imgtxt {
  color: #fff;
  position: absolute;
  left: 0.48rem;
  bottom: 0.6rem;
}

.img111_txt {
  width: 3.2rem;
  color: rgb(255, 255, 255, 0.7);
  position: absolute;
  left: 0.48rem;
  top: 0.6rem;
}

.big_imgtxt h2 {
  border-bottom: 3px solid #fff;
  width: max-content;
}

.big_imgtxt h3 {
  display: flex;
  align-items: center;
  margin-top: 0.14rem;
}

.big_imgtxt h3::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../imgs/hao.webp) no-repeat center;
  background-size: contain;
  margin-right: 0.16rem;
}

@media screen and (max-width: 560px) {
  .big_imgtxt {
    left: 0.2rem;
    bottom: 0.2rem;
  }
  .big_imgtxt h2 {
    font-size: 0.16rem;
  }
  .big_imgtxt h3 {
    font-size: 0.13rem;
    margin-top: 0.06rem;
  }
  .big_imgtxt h3::before {
    width: 8px;
    height: 8px;
    margin-right: 0.06rem;
  }
}

.big_imgtxt02 {
  width: 51.35%;
  position: relative;
}

.big_imgtxt02::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 84%;
}

.big_imgtxt02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.img222_txt {
  width: 3.52rem;
  position: absolute;
  left: 0.48rem;
  top: 0.6rem;
}

.img222_txt h3 {
  color: #000;
  position: relative;
  padding-bottom: 0.16rem;
  display: flex;
  align-items: center;
}

.img222_txt h3::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../imgs/trip_txt.webp) no-repeat center;
  margin-right: 0.16rem;
  margin-top: 3px;
}

.img222_txt h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.img222_txt h4 {
  width: 80%;
  box-sizing: border-box;
  padding: 0.06rem 0.12rem;
  background: linear-gradient(
    90deg,
    rgba(255, 80, 0, 0.2) 0%,
    rgba(255, 80, 0, 0) 100%
  );
  color: #000;
  margin-left: 0.27rem;
  margin-top: 0.24rem;
}

.img222_txt h4 i {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .img111 {
    width: 100%;
  }
  .big_imgtxt02 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 560px) {
  .img111_txt {
    width: 50%;
    font-size: 0.13rem;
    left: 0.2rem;
    top: 0.2rem;
  }
  .img222_txt {
    width: 50%;
    left: 0.2rem;
    top: 0.2rem;
  }
  .img222_txt h3 {
    padding: 0;
    margin-bottom: 0.1rem;
  }
  .img222_txt h4 {
    width: 100%;
    font-size: 0.12rem;
    margin: 0;
    margin-top: 0.05rem;
    padding: 0.02rem 0.06rem;
  }
}

/* 旅行亮点 */

.product_highlight .wrap {
  background-color: #fff;
}

.ph_top {
  position: relative;
}

.ph_top img {
  width: 100%;
}

.product_highlight .pt_title {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  transform: translate(-50%, 0);
}

.pt_title h3 {
  position: relative;
  color: #000;
}

.pt_title h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-width: 17px 11px 0 11px;
  border-style: solid;
  border-color: var(--i_color) transparent transparent transparent;
  left: 50%;
  bottom: -0.33rem;
  transform: translate(-50%, 0);
}

.ph_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 5%;
  box-sizing: border-box;
  padding: 0 0.4rem;
}

.ph_list li {
  width: 47.5%;
}

.ph_itemImg {
  width: 100%;
  position: relative;
}

.ph_itemImg::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 54%;
}

.ph_itemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ph_list h3 {
  color: #000;
  position: relative;
  padding-bottom: 0.16rem;
  display: flex;
  align-items: center;
}

.ph_list h3::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../imgs/trip_txt.webp) no-repeat center;
  margin-right: 0.16rem;
  margin-top: 3px;
}

.ph_list h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.ph_list p {
  color: #666;
  padding: 0 0.27rem;
}

@media screen and (max-width: 1024px) {
  .ph_list {
    padding: 0 0.2rem;
  }
  .ph_list li {
    width: 100%;
  }
  .ph_list p {
    padding: 0;
  }
}

/* 酒店介绍 */
.hotel_intro .wrap {
  background-color: #fff;
  box-sizing: border-box;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.hiBox {
  padding: 0 0.4rem;
}

.hotel_info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 6%;
}

.hotel_info li {
  width: 47%;
  display: flex;
  align-items: center;
  background-color: #fff1eb;
  box-sizing: border-box;
  padding: 0.16rem 0.3rem;
}

.hotel_info li::before {
  content: "";
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  background: url(../imgs/hotel_icon.webp) no-repeat center;
  background-size: contain;
  margin-right: 0.21rem;
}

@media screen and (max-width: 1024px) {
  .hotel_info li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hotel_info {
    gap: 0.2rem 0;
  }
  .hotel_info li {
    padding: 0.1rem;
    font-size: 0.13rem;
  }
  .hotel_info li::before {
    width: 0.25rem;
    height: 0.25rem;
    margin-right: 0.1rem;
  }
}

.hotel_imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.hotel_imgs li {
  width: 32%;
  position: relative;
}

.hotel_imgs li::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 79%;
}

.hotel_imgs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .hotel_intro .wrap {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .hotel_imgs {
    gap: 0.15rem 2%;
  }
  .hotel_imgs li {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .hotel_imgs {
    gap: 0.1rem 0;
  }
  .hotel_imgs li {
    width: 100%;
  }
}

/* 食品介绍 */

.food_intro {
}

.foodBox {
  background-color: #fff;
  padding: 0 0.4rem;
}

.food_list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.food_itemImg {
  width: 44.5%;
  position: relative;
}

.food_itemImg::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 54.5%;
}

.food_itemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.food_itemInfo {
  width: 51%;
}

.food_itemInfo h3 {
  color: #000;
  position: relative;
  padding-bottom: 0.16rem;
  display: flex;
  align-items: center;
}

.food_itemInfo h3::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../imgs/trip_txt.webp) no-repeat center;
  margin-right: 0.16rem;
  margin-top: 3px;
}

.food_itemInfo h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.food_itemInfo p {
  color: #666;
  padding-left: 0.27rem;
}

.food_list li:nth-child(even) .food_itemImg {
  order: 2;
}

.food_list li:nth-child(even) .food_itemInfo {
  order: 1;
}

@media screen and (max-width: 1024px) {
  .foodBox {
    padding: 0 0.2rem;
  }
  .food_itemImg,
  .food_itemInfo {
    width: 100%;
  }
  .food_itemInfo p {
    padding: 0 0.1rem;
  }
  .food_list li:nth-child(even) .food_itemImg,
  .food_list li:nth-child(even) .food_itemInfo {
    order: 0;
  }
}

/* 行程总结 */
.summary {
}

.summaryBox {
  width: 100%;
}

.summary .product_info_cont {
  padding-right: 0;
}

.container {
  width: 100%;
  background: white;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 0.4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #000;
  padding: 12px 15px;
  text-align: left;
}

/* th {
  background-color: #f2f2f2;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
} */

@media screen and (max-width: 1440px) {
  th,
  td {
    padding: 12px 14px;
  }
}

@media screen and (max-width: 1366px) {
  th,
  td {
    padding: 11px 13px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  th,
  td {
    padding: 10px 12px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 0.2rem;
  }
  th,
  td {
    padding: 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  th,
  td {
    padding: 8px;
    font-size: 13px;
  }

  .container {
    border-radius: 6px;
  }
}

@media screen and (max-width: 560px) {
  table {
    /* height: 2rem; */
    display: block;
    overflow-x: auto;
  }

  th,
  td {
    padding: 6px 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  th {
    min-width: 80px;
  }

  td:nth-child(1) {
    min-width: 120px;
  }

  td:nth-child(2) {
    min-width: 150px;
  }

  td:nth-child(3) {
    min-width: 200px;
  }
}

/* 成本描述 */
.cost_desc {
}

.cost_descBox {
  padding: 0 0.4rem;
}

.cost_desc_item > h3 {
  color: var(--i_color);
}

.cost_desc_item h4 {
  display: flex;
}

.cost_desc_item h4 i {
  color: #000;
  white-space: nowrap;
}

.cost_desc_item h4 span {
  color: #666;
}

.cost_desc_list {
  padding-left: 0.8rem;
  color: #000;
}

.cost_desc_list02 li {
  color: #000;
  margin-top: 0.1rem;
}

@media screen and (max-width: 1024px) {
  .cost_descBox {
    padding: 0 0.2rem;
  }
  .cost_desc_list {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .cost_desc_item h4,
  .cost_desc_list li,
  .cost_desc_list02 li {
    font-size: 0.14rem;
  }
}

/* 指南 */
.guide {
}

/* .guideBox {
  gap: 0 0.4rem;
} */

.guide .cost_desc_item b {
  color: #000;
}

.guide .cost_desc_item h5,
.guide .cost_desc_item h6 {
  color: #666;
}

.guide .cost_desc_item a {
  color: #003da7;
  text-decoration: underline;
}

.guide .cost_desc_item > h6 {
  margin-top: 0.12rem;
}

.guide_bottom {
  border-top: 1px solid #e5e5e5;
}

.guide_bottom a {
  color: var(--i_color);
  text-decoration: underline;
}

/* 联系信息 */
.contact_list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
}

.contact_list li {
  background-color: #f4f4f4;
  box-sizing: border-box;
  padding: 0.2rem 0.24rem;
}

@media screen and (max-width: 768px) {
  .guide .cost_desc_item a {
    font-size: 0.12rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
  }
  .contact_list li {
    padding: 0.1rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .title {
    font-size: 0.15rem;
    padding: 0.05rem 0.2rem 0.05rem 0.06rem;
  }
}

@media screen and (max-width: 320px) {
  .title {
    font-size: 0.13rem;
    padding: 0.05rem 0.2rem 0.05rem 0.06rem;
  }
}

/* footer */

footer {
  background-color: #000000;
  box-sizing: border-box;
  padding: 0 0.8rem;
}

.footerBox {
  width: 100%;
}

.footer_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.f_list {
  width: 40%;
  display: flex;
  justify-content: space-between;
}

.fTit {
  margin-bottom: 0.2rem;
  font-size: 0.16rem;
  color: #f4f4f4;
}

.fNav ul {
}
.fNav li {
}
.fNav li a {
  display: block;
  padding: 0.06rem 0;
  font-size: 0.17rem;
  color: rgb(244, 244, 244, 0.6);
  transition: all 0.3s ease;
}
.fNav li a:hover {
  color: var(--i_color);
}

.f_contact {
  width: 20%;
}

.fc_title {
  color: #f4f4f4;
  font-size: 0.17rem;
}

.f_contact li {
  margin-bottom: 0.4rem;
}

.f_contact li p {
  color: rgb(244, 244, 244, 0.6);
  font-size: 0.14rem;
  margin-bottom: 0.06rem;
}

.f_contact li a {
  font-size: 0.17rem;
  color: #fff;
  transition: all 0.3s ease;
}

.f_contact li a:hover {
  color: var(--i_color);
}

.request {
  display: flex;
  align-items: center;
}

.request::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../imgs/book.svg) no-repeat center;
  background-size: contain;
  margin-right: 0.1rem;
}

.footer_media {
  display: flex;
  color: #fff;
}

.footer_media span {
  font-size: 0.18rem;
  display: block;
  margin-right: 0.3rem;
}

.f_media_list {
  display: flex;
  align-items: center;
}

.f_media_list a {
  margin-right: 0.15rem;
}

.f_media_list iconify-icon {
  color: #fff;
  font-size: 0.24rem;
  transition: all 0.4s ease;
}

.f_media_list iconify-icon:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .f_list {
    display: none;
  }
  .f_contact {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0 0.2rem;
  }
  .footer_media {
    padding-top: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .f_contact li {
    margin-bottom: 0.2rem;
  }
  .footer_media span {
    font-size: 0.14rem;
    margin-right: 0.2rem;
  }
  .f_media_list iconify-icon {
    font-size: 0.18rem;
  }
}

.footer_bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0;
  align-items: center;
  justify-content: space-between;
}

.footer_bottom p {
  color: #fff;
  opacity: 0.8;
}

.f_bottom_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.f_bottom_list a {
  color: rgb(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  padding-right: 0.2rem;
  position: relative;
  transition: all 0.3s ease;
}

.f_bottom_list a::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: rgb(255, 255, 255, 0.8);
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
}
.f_bottom_list a:hover {
  color: var(--i_color);
}

.f_bottom_list li:last-child a {
  padding-right: 0;
}

.f_bottom_list li:last-child a::before {
  display: none;
}

@media screen and (max-width: 1024px) {
  .footer_bottom p,
  .f_bottom_list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer_bottom p {
    font-size: 0.14rem;
  }
  .f_bottom_list a {
    font-size: 0.14rem;
  }
}

/* 导航栏 */
.fixedNav {
  width: 100%;
  transition: all 0.4s ease;
}
.fixedNav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
}
.fixedNav li {
  text-align: center;
  cursor: pointer;
  border-radius: 0.04rem;
  transition: all 0.4s ease;
}
.fixedNav p {
  padding: 0.06rem 0.16rem;
  font-size: 0.17rem;
  font-weight: 550;
  color: #555;
}
.fixedNav li.active {
  background: #fff;
}
.fixedNav li.active p {
  color: #000;
}

.fixedNav.on {
  position: fixed;
  top: var(--header_height);
  left: 0;
  background-color: rgb(25, 25, 25);
  z-index: 100;
}

.fixedNav.on p {
  color: #fff;
}

.fixedNav_replace {
  display: none;
  width: 100%;
  background: #f1f1f1;
}

@media screen and (max-width: 1024px) {
  .fixedNav {
    display: none;
  }
}

/* 按钮 */
.Redeem {
  display: table;
  box-sizing: border-box;
  padding: 0.05rem 0.2rem;
  border: 1px solid var(--i_color);
  border-radius: 0.04rem;
  color: var(--i_color);
  transition: all 0.4s ease;
}

.Redeem:hover {
  background-color: var(--i_color);
  color: #fff;
}
