
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  /*--accent-color: #18d26e;*/ /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color: #006AF1; /* 主题色 */
  --btn-hover-color: #0356bf; /* 按钮选中背景色 */
  --footer-hover-color: #cde9df; 
  --footer-background-color: #f8f9fa; 
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #006AF1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #006AF1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #06060600;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.dark-background-footer {
  --background-color: transparent;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--contrast-color);
  /*font-family: var(--heading-font);*/
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);   
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 70px;
}

.header .logo img.logo-cqct {
  height: 55px;
}

.header .logo img.logo-default {
  height: 55px;
}

.scrolled .header .logo img.logo-cqct,
.header .logo img.logo-cqct-full {
  height: 55px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/*覆盖fixed*/
.fixed-top{
	/*position: absolute !important;*/
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  /*--background-color: rgba(0, 0, 0, 0.9);*/
  --background-color: #fff;
}

/* 滚动后应用的样式 */
.scrolled .navmenu .nav-link,.scrolled .navmenu .bi-search {
	color: black !important;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1400px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    /*display: flex;*/
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    /*color: var(--nav-color);*/
    /*padding: 10px;*/
    /*font-size: 15px;*/
    font-family: var(--nav-font);
    /*font-weight: 600;*/
    /*text-transform: uppercase; 英文大写*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  
  
	  
	.main-nav {
	  border-bottom: 1px solid transparent;
	  /*position: relative;*/
	  z-index: 10;
	  transition: background 0.3s, border-color 0.3s;
	}
	
	.main-nav .div-nav{
	    border-bottom: 1px solid;
		/*padding-bottom: 15px;*/
		width:85%;
	}
	.main-nav .nav {
	  margin-bottom: 0;
		flex-wrap: nowrap;
	}
	.main-nav .nav > li {
	  position: relative;
	  list-style: none;
	}
	.main-nav .nav-link {
	  color: #fff;
	  font-size: 1.1rem;
	  /*font-weight: 700;*/
	  padding: 16px 32px;
	  border: none;
	  background: none;
	  position: relative;
	  cursor: pointer;
	  transition: color 0.3s, background 0.3s;
	  display: block;
	  text-align: center;
	}
	/* 整个一级菜单栏变白，所有栏目变深色 */
	/*.main-nav:hover,
	.main-nav:focus-within {
	  background: #fff;
	  border-bottom: 1px solid #eee;
	}*/
	
	.main-nav:has(.navmenu:hover) {
	  background: #fff;
	  border-bottom: 1px solid #eee;
	}
	.main-nav .navmenu:hover .nav-link,
	.main-nav .navmenu:focus-within .nav-link,	
	.main-nav .navmenu:hover .bi-search,
	.main-nav .navmenu:focus-within .bi-search {
	  color: #222;
	}
	/* 一级菜单悬浮时显示二级菜单 */
	.main-nav .nav > li > ul.sub-nav {
	  display: none;
	}
	.main-nav .nav > li:hover > ul.sub-nav,
	.main-nav .nav > li:focus-within > ul.sub-nav {
	  display: block;
	}
	/* 二级菜单全屏 */
	.main-nav .sub-nav {
	  position: fixed;
	  left: 0;
	  /*top: 64px;  一级菜单高度 */
	  width: 100vw;
	  background: #fff;
	  z-index: 999;
	  margin: 0;
	  padding: 0 0 18px 0;
	  border-top: 1px solid #eee;
	  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	  animation: fadeIn 0.2s;
	}
	@keyframes fadeIn {
	  from { opacity: 0; transform: translateY(-10px);}
	  to { opacity: 1; transform: translateY(0);}
	}
	/* 水平线紧贴一级和二级菜单 */
	.main-nav .sub-nav-divider {
	  width: 100vw;
	  height: 1px;
	  background: #eee;
	  margin: 0;
	  border: none;
	}
	/* 二级菜单内容：左对齐一级导航第一个列（游轮舰队） */
	.main-nav .sub-nav-list {
	  /*display: flex;*/
	  flex-wrap: wrap;
	  justify-content: flex-start;                    /* 原为 center */
	  gap: 12px 32px;
	  margin: 0;                                       /* 取消 0 auto 居中 */
	  max-width: none;                                 /* 取消 400px 限制 */
	  padding: 18px 16px 0 var(--first-col-left, 28vw); /* 左内边距 = 第一个 li 的 left */
	  list-style: none;
	}
	.main-nav .sub-nav-list > li {
	  margin: 0;
	  padding: 8px 0;   /* 去掉左右 padding，避免链接文字再向右偏移 */
	}
	.main-nav .sub-nav-link{
	  color: #222;
	  font-size: 1rem;
	  text-decoration: none;
	  transition: color 0.2s;
	  /*padding: 2px 6px;*/
	  white-space: nowrap;
	  display: inline-block;
	}
	.main-nav .sub-nav-link1 {
	  color: #222;
	  font-size: 1rem;
	  padding:10px;
	}

	.main-nav .sub-nav-link.active,.main-nav .sub-nav-link1.active {
	  color: #1976d2;
	  text-decoration: underline;
	}
	.main-nav .sub-nav-link:hover,.main-nav .sub-nav-link1:hover {
	  color: #1976d2;
	}


	.center-img {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  /*height: 200px;*/
	}
	.section-title {
	  text-align: center;
	  padding:50px 0px;
	}
	.container-custom {
	  margin-top: 40px;
	}
	.sub-list {
	  max-width: 320px;
	  margin: 0 auto;
	}
	
	/* 导航栏下划线动画效果 */
	.navmenu .nav-link {
	  position: relative;
	  color: inherit;
	  text-decoration: none;
	  transition: color 0.2s;
	}

	.navmenu .nav-link::after {
	  content: "";
	  position: absolute;
	  left: 50%;
	  bottom: 0;
	  width: 60%;
	  height: 2px;
	  background: #0066ff;
	  transform: translateX(-50%) scaleX(0);
	  transform-origin: left;
	  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
	}

	.navmenu .nav-link:hover::after,
	.navmenu .nav-link:focus::after {
	  transform: translateX(-50%) scaleX(1);
	}
}

@media (max-width: 1400px) {

	.main-nav .sub-nav-list {
	  max-width: 580px;
	}
}
	
	
/* Navmenu - Mobile */
@media (max-width: 1399px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    position: absolute;
	right: 0;
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    position: absolute;
    display: none;
    list-style: none;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .sub-nav,.sub-nav-list{
    display: block !important;
    position: static !important;
	box-shadow: none !important;
  } 
  .sub-nav-list .nav-link{
    font-size: 1rem !important;
  }
	.sub-nav-divider{
		margin:0;
	} 
	.navmenu .sub-nav{
		padding:0 12px;
	}	
  
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: block;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
	#top-phone {
		display: none;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  /*padding: 30px 0;*/
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1399px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
	.section-title {
	  text-align: center;
	  padding:18px 0px;
	}
}
@media (max-width: 768px) {
	.section-title {
	  text-align: center;
	  padding:25px 0px;
	}
	.section-title h2 {
		font-size: 28px !important;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/


.section-title h2 {
  font-size: 42px;
  color: #222222;
  position: relative;
}
.section-title p {
  font-size: 18px;
  color: #222222;
  margin-bottom:0
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
	position: absolute;
	inset: -150px 0 64px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 3;
}

.hero h2 {
  font-size: 60px;
  font-weight: 600;
  animation: fadeInDown 1s both;
}
.fadeInUp-custom{
  animation: fadeInUp 1s both;
}


@media (max-width: 1368px) {
 
  .hero .carousel {
    min-height: 75vh;
  }
}	

@media (max-width: 912px) {
  .hero h2 {
    font-size: 26px;
  }
  
  .nav-container {
      /*height: 90px;*/
      width:100px;
    }

  .hero .carousel {
    min-height: 25vh;
	margin-top:75px;
  }
  .carousel-control-prev {
        display: none;
    }
  .carousel-control-next {
        display: none;
    }
  .swiper-button-prev {
        display: none;
    }
  .swiper-button-next {
        display: none;
    }
    
  .hero .carousel-container{
    top:2%;
  }
}
@media (max-width: 768px) {
	
  .hero .search-box{
	  bottom: 0 !important;
  }	
  .hero .title {
		font-size:24px !important;
  }
  .hero .subTitle {
		font-size:18px !important;
  }
  .hero .search-box .search {
	padding:2px;
	gap: 0px;
}
  .hero .search-box .search .text{
		font-size: 14px;
		padding: 0 10px !important;
  }
  .hero .search-box .search .search-icon{
	  padding: 4px 16px !important;
  }
 .hero .carousel-container{
	inset: -20px 0 20px 0;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
  font-size: 26px;
  margin-bottom: 0;
}
.hero .title {
  animation: fadeInDown 1s both 0.2s;
  font-size: 56px;
}
.hero .search-box{
	position: absolute;
    bottom: 90px;
}
.hero .search-box .search {
	display:flex;
	justify-content:space-between;
	align-items: center;
	padding:4px;
	gap: 20px;
	background-color: #fff;
    border-radius: 50px;
	color: #000;
}
.hero .search-box .search .text{
	padding: 0 20px;
}
.hero .search-box .search .search-icon{
    background-color: #416BDB;
    padding: 7px 25px;
    color: #fff;
    border-radius: 50px;
	cursor: pointer;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}
.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}
.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 75px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}


/* 自定义轮播指示器样式 */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  justify-content: center;
  padding: 0;
}

/* 未选中状态 - 白色实心小圆点 */
.carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white; /* 白色实心 */
  border: none; /* 移除边框 */
  opacity: 1; 
  margin: 0 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 选中状态 - 带有浅色外圈的白点 */
.carousel-indicators .active {
  background-color: white; /* 保持白色实心 */
  transform: scale(1.8);
  position: relative;
}

/* 添加选中状态的外圈 */
.carousel-indicators .active::after {
  content: '';
  position: absolute;
  width: 16px; /* 外圈大小 */
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5); /* 半透明白色外圈 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  /*overflow: hidden;*/
  position: relative;
}

.blog-posts .title {
  font-size: 20px;
  /*font-weight: 700;*/
  padding: 0;
  margin: 20px 0 0 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .read-more a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  border-radius: 12%;
  background-color: #F5F5F5;
  color: #0A0A0A;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: #006AF1;
  color: #FFFEFE;
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: #FFFEFE;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# 通用基础样式
--------------------------------------------------------------*/

/*覆盖超大型屏幕（xxl）的宽度*/
@media (min-width: 1400px) {
  .container, .container-lg, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}

/*主题背景色*/
.bg-theme{
  background-color: var(--accent-color);
}
.txt-theme{
  color: var(--accent-color);
}


.img-container {
	overflow: hidden; /* 确保图片在容器内 */
}

.img-zoom {
	transition: transform 0.5s ease; /* 平滑过渡效果 */
	width: 100%; /* 或者设置具体宽度 */
	height: auto; /* 保持图片比例 */
	cursor: pointer;
}

.img-zoom:hover {
	transform: scale(1.1); /* 放大1.1倍 */
}
.translate-y-50 {
	transform: translateY(50%);  /* 向下移动自身高度的50% */
}
.textHover:hover {
  color: #006AF1 !important;
}


/* 悬停效果-位置偏移-水平排列 */
.image-hover-container {
	position: relative;
	display: inline-block;
	transition: transform 0.3s ease;
	cursor: pointer;
}
.image-hover-container:hover {
	transform: translateY(-5px);
}

/* 悬停效果-位置偏移-垂直排列 */
.image-hover-container-block {
	position: relative;
	display: block;
	transition: transform 0.3s ease;
	cursor: pointer;
}
.image-hover-container:hover,.image-hover-container-block:hover {
	transform: translateY(-5px);
}

/*关闭按钮180度旋转效果*/
.image-close-btn img {
	cursor: pointer;
    /*transition: transform 0.5s ease;*/
    transform: rotate(0deg); 
}
.close-btn img {
	cursor: pointer;
}
 
.image-close-btn:hover img {
    transform: rotate(180deg); /* 鼠标悬停时旋转180度 */
}


/* 模态框视频容器样式 */

/* 确保模态框居中 */
.video-modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 1rem);
}
.video-modal-dialog .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-container {
  /*position: relative;*/
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 比例 */
  max-width: 900px;
  margin: 0 auto;
}

.modal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-text {
	/* 容器换行设置 */
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-all;
	white-space: normal;
}

.content-text p,
.content-text span {
	/* 覆盖内联样式 */
	white-space: normal !important;
	text-wrap: wrap !important;
}
.content-text br {
	display: block; /* 使br标签可控制 */
	content: ""; /* 清除默认内容 */
	margin-top: 1em; /* 减小行间距 */
}

/* 响应式调整 */
@media (max-width: 768px) {
  .video-icon-btn {
	  width: 80px;
	  height: 80px;
	  font-size: 1.5rem;
  }
  
  .modal-content {
	  margin: 0.5rem;
  }
}

/*--------------------------------------------------------------
# 基础按钮样式
--------------------------------------------------------------*/

.btn-custom {
  
  /* 视觉效果 */
  background-color: #006AF1; /* 背景色 */
  color: white ;   /* 文字颜色 */
  text-decoration: none;    /* 去除下划线 */
  
  /* 非对称圆角 */
  border-top-left-radius: 21px;    /* 左上角圆角 */
  border-bottom-right-radius: 21px; /* 右下角圆角 */
  
  /* 交互效果 */
  transition: all 0.3s ease; /* 平滑过渡动画 */
  cursor: pointer;          /* 鼠标手势 */
  

  letter-spacing: 3px;/* 字体间距 */
  
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.btn-custom-routine {
  
  /* 视觉效果 */
  background-color: #FFFFFF; /* 背景色 */
  color: #222;   /* 文字颜色 */
  /* 交互效果 */
  transition: all 0.3s ease; /* 平滑过渡动画 */
  letter-spacing: 2px;/* 字体间距 */
  border-radius:20px;
}

/* 悬停状态 */
.btn-custom:hover{
  background-color: var(--btn-hover-color); /* 深色背景 */
  color: white;   /* 文字颜色 */
  box-shadow: 3px 3px 8px rgba(0,0,0,0.2); /* 添加阴影 */
}

.btn-outline-theme{
    background-color: var(--accent-color); 
    border-color: var(--accent-color);
	color:#fff;
	
}
.btn-outline-theme:hover{
    background-color: var(--btn-hover-color); 
    border-color: var(--btn-hover-color);
	color:#fff;
	
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* 较深的投影 */
.deep-text-shadow {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}
 
/* 多重投影 */
.multi-text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), 3px 3px 5px rgba(0, 0, 0, 0.6);
}

/* a,span标签类标题加白色下划线 */
a.active-link {
  position: relative;
  display: inline-block;
  color: white;
}
span.active-link {
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
	a.active-link{
		color: var(--nav-dropdown-color);
	}
	span.active-link{
		color: var(--nav-dropdown-color);
	}
}

a.active-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}
span.active-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.translateY-custom {
	transition: transform 0.3s ease;
}
.translateY-custom:hover {
	transform: translateY(-5px);
}

.main{
	min-height:60vh;
}
.text-overflow-2{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
} 
.text-overflow-3{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}  
.text-overflow-4{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical
}   
/*--------------------------------------------------------------
# 头部
--------------------------------------------------------------*/
.header-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  position: relative;
}

.header-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.header-title h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.header-title .en-title {
    font-size: 24px;
}

.header-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.header-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.header-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# 标题加下划线
--------------------------------------------------------------*/
/*
.underline-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
*/

.underline-title a {
	/*
  font-size: 32px;
  font-weight: 700;
  
  margin-bottom: 20px;*/
  padding-bottom: 20px;
  
  position: relative;
}
.underline-title a:before {
  content: "";
  position: absolute;
  display: block;
  /*width: 160px;
  height: 1px;*/
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.underline-title a::after {
  content: "";
  position: absolute;
  display: block;
  /*width: 60px;*/
  height: 3px;
  background: #006AF1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} 

@media (max-width: 768px) {
  .underline-title a {
		padding-bottom: 12px;
    }
}

/*--------------------------------------------------------------
# floating
--------------------------------------------------------------*/

.right-nav {
	position: fixed;
	right: 10px;
	top: 50%;
	/*margin-top: -76px;*/
	z-index: 10020;
}

.right-nav>.ul {
	width: 150px;
}

.right-nav>.ul .li {
	width: 100%;
	height: 60px;
	margin-bottom: 10px;
	/*border-radius: 10px;
	background-color: #b5b5b5;
	transition: background-color .8s;*/
	transition: transform 0.3s ease;
	
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}
.right-nav>.ul .li:hover {
	transform: translateY(-5px);
}

.right-nav>.ul a {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 9;
}
.right-nav>.ul .feedback {
	background-image: url("../images/feedback.png");
    background-size: 60px 60px;
}

.right-nav>.ul .feedback .feedback-box {
	position: absolute;
	top: 5px;
	left: 0;
	box-sizing: border-box;
	text-align: center;
	transform: translateX(120px);
	transition: ease 1s;
	opacity: 0;
	display: block;
	z-index: 8;
	border: 4px solid #006AF1;
	border-radius: 5px;
}

.right-nav>.ul .feedback .feedback-box .service-box {
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 5px;
}

.right-nav>.ul .feedback .feedback-box .inner-box img {
	width: 80px;
	display: inline-block;
}

.right-nav>.ul .feedback:hover .feedback-box {
	transform: translateX(-100px);
	transition: ease 1s;
	opacity: 1;
}
.right-nav>.ul .toTop {
	background-image: url("../images/top.png");
    background-size: 60px 60px;
	cursor: pointer;
}
.right-nav>.ul .service {
	background-image: url("../images/service.png");
    background-size: 60px 60px;
}
.right-nav>.ul .feizhu {
	background-image: url("../images/feizhu.png");
    background-size: 130px 50px;
}

.right-nav>.ul .service .service-box {
	position: absolute;
	top: 5px;
	left: 0;
	box-sizing: border-box;
	text-align: center;
	transform: translateX(120px);
	transition: ease 1s;
	opacity: 0;
	display: block;
	z-index: 8;
}

.right-nav>.ul .service .service-box .inner {
	min-width: 140px;
	height: 40px;
	padding: 0 10px;
	border-radius: 20px;
	background: #006AF1;
	line-height: 40px;
	color: #fff;
	text-align: center;
}


.right-nav>.ul .service:hover .service-box {
	transform: translateX(-150px);
	transition: ease 1s;
	opacity: 1;
}

.right-nav>.ul .world {
	background-image: url("../images/oa.png");
}

.right-nav>.ul .world .world-box {
	position: absolute;
	top: 5px;
	left: 0;
	box-sizing: border-box;
	text-align: center;
	transform: translateX(120px);
	transition: ease 1s;
	opacity: 0;
	display: block;
	z-index:  8;
}

.right-nav>.ul .world .world-box .inner {
	/*width: 120px;*/
	height: 40px;
	padding: 0 10px;
	/* padding-right: 40px; */
	border-radius: 20px;
	background: #006AF1;
	line-height: 40px;
	color: #fff;
	text-align:  center;
}

.right-nav>.ul .world a {
	display: inline-block;
	width: 100%;
	height: 100%;
	position:  relative;
	z-index:  9;
}



.right-nav>.ul .world:hover .world-box {
	transform: translateX(-130px);
	transition: ease 1s;
	opacity: 1;
}

.right-nav>.ul .mail {
	background-image: url("../images/100.png");
	background-size: 22px 22px;
}

.right-nav>.ul .mail .mail-box {
	padding-right: 15px;
	position: absolute;
	top: 0;
	left: -113px;
	display: none;
}

.right-nav>.ul .mail .mail-box .inner {
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
	color: #ef001e;
	font-weight: bold;
	font-size: 20px;
	border-radius: 6px;
	display: inline-block;
}

.right-nav>.ul .mail a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.right-nav>.ul .mail:hover {
	background-image: url("../images/101.png");
}

.right-nav>.ul .mail:hover .mail-box {
	display: block;
}
/*
@media (max-width: 768px) {
  .right-nav {
		display:none;
    }
}*/

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer {
	background-image: url('../images/footer/footer.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 60px 0 20px 0;
	position: relative;
	z-index: 2;
	color: #fff;
}

.footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.15);
	z-index: 0;
}

.footer .container,
.footer .container-fluid {
	position: relative;
	z-index: 1;
}

/* 关于我们区域 */
.aboutUs {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 2rem;
	text-align: center;
}

.footer-section-title {
	font-size: 1.25rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 1.5rem;
}

/* 社交图标 */
.social-icons {
	font-size: 1.5rem;
	margin: 1.5rem 0;
}

.social-icons .image-hover-container {
	position: relative;
	display: inline-block;
	margin: 0 1rem;
	vertical-align: middle;
}

.social-icons .image-hover-container img {
	cursor: pointer;
	transition: transform 0.3s ease;
}
/*
.social-icons .image-hover-container:hover img {
	transform: translateY(-5px);
}*/

/* 小红书图标白色 */
.social-icons .xhs-icon {
	filter: brightness(0) invert(1);
}

/* 联系方式 */
.contact-info {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	color: #fff;
	font-size: 0.95rem;
}

.contact-info span {
	display: inline-block;
	margin: 0 1.5rem;
}

.contact-info i {
	margin-right: 0.5rem;
}

/* 二维码 */
.qr-code-container {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	padding: 10px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	line-height: 0;
	display:flex;
}

.image-hover-container:hover .qr-code-container {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.qr-code {
	width: 120px;
	height: 120px;
	display: block;
}

/* 底部导航 */
.footer-title {
	font-weight: bold;
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1.1rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.footer-link:hover {
	color: #fff;
	text-decoration: none;
}

.footer-nav {
	text-align: left;
	padding-top: 1.5rem;
	justify-content: center;
}

.footer-nav .col-md-3 {
	flex: 0 0 auto;
	width: 22%;
	max-width: 260px;
}

.footer-nav .col-md-3:not(:last-child) {
	margin-right: 2%;
}

.copyright {
	padding-top: 1rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

/* 响应式 */
@media (max-width: 991px) {
	.footer-nav .col-md-3 {
		width: 45%;
		max-width: none;
		margin-right: 0 !important;
	}
}

@media (max-width: 768px) {
	.social-icons {
		gap: 1.5rem;
	}

	.contact-info {
		flex-direction: column;
		gap: 0.75rem;
	}

	.qr-code-container {
		/*width: 140px;
		height: 140px;*/
		display: block;
	}

	/*.qr-code {
		width: 116px !important;
		height: 116px !important;
	}*/

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

	.footer-nav .col-md-3 {
		width: 100%;
		max-width: none;
		margin-right: 0 !important;
	}
}

/*--------------------------------------------------------------
# swiper
--------------------------------------------------------------*/  

/* 基础切换按钮样式 */
.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-color: #ffffff; /* 图标颜色 */
}

/* 悬停效果 */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  --swiper-navigation-color: rgba(225,225,225,0.9);
}
/*
.swiper-button-prev::after, 
.swiper-button-next::after {
  width: 16px;
  height: 16px;
}*/


/* 防止箭头覆盖内容 */
.swiper-slide-p {
	padding: 0 50px;  /* 为两侧箭头留出空间 */
}

/* 分页器保持在底部 
.swiper-pagination {
  position: relative;
}*/


/* 自定义分页器样式-白色 */
.custom-pagination-white .swiper-pagination-bullet {
    background: white;
    opacity: 0.8;
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}

.custom-pagination-white .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: white;
    opacity: 1;
} 

/* 自定义分页器样式-主题色（需在分页器父元素增加class=custom-pagination） */


.custom-pagination .swiper-wrapper {
  height: auto;
}

.custom-pagination .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.custom-pagination .swiper-pagination .swiper-pagination-bullet {
    background: #006AF1;
    opacity: 0.8;
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}

.custom-pagination .swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #006AF1;
    opacity: 1;
}


/* 移动设备优化 */
@media (max-width: 992px) {
  .swiper-button-prev, 
  .swiper-button-next {
    width: 36px;
    height: 36px;
    margin: 0 10px; /* 与轮播边缘的距离 */
  }
  
  .swiper-pagination {
    bottom: 10px !important;
  }
}

/* 小屏幕移除内边距 */
@media (max-width: 768px) {
  .swiper-slide-p {
    padding: 0 40px;
  }
  .swiper-pagination {
  bottom: -3px !important;
}
}

/*--------------------------------------------------------------
# 二级导航栏容器navbar
--------------------------------------------------------------*/  

.nav-container {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	background-color: var(--footer-background-color);
	
}

/* 隐藏滚动条但保留滚动功能 */
.nav-container::-webkit-scrollbar {
	display: none;
}

.nav-row {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.nav-col {
	flex: 0 0 auto;
	padding: 0;
	margin: 0;
}

.nav-item {
	margin: 0;
	transition: all 0.3s ease;
}

.nav-link {
	color: #000;
	text-align: center;
	padding:12px 36px;
	border-radius: 0;
	transition: all 0.3s ease;
	display: flex;
	/*flex-direction: column;*/
	align-items: center;
	justify-content: center;
	min-width: 100px;
	cursor: pointer;
}
/*
.nav-link i {
	font-size: 1.4rem;
	margin-bottom: 5px;
}*/

.nav-link.active {
	background-color: #0d6efd;
	color: #fff;
	position: relative;
	z-index: 1;
}

.nav-link.active img {
	filter: invert(1);
}

.nav-link:hover:not(.active) {
	/*background-color: #e9ecef;*/
}
/*
.nav-link:hover:not(.active) img {
	transform: scale(1.1);
}*/

/*第二种样式*/
.nav-link-animated {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 15px;
	text-decoration: none;
	color: #222;
	font-size: 18px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	background: transparent;
}

/*.nav-link-animated img {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3498db;
	font-weight: bold;
}*/

/* 下划线动画效果 */
.nav-link-animated::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 4px;
	background: #4E70DB;
	transform: translateX(-50%);
	transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 悬停效果 */
.nav-link-animated:hover::after {
	width: 60%;
}

/* 选中状态效果 */
.nav-link-animated.active::after {
	width: 60%;
	/*background: #4E70DB;*/
}
/*
.nav-link-animated:hover {
	background: rgba(52, 152, 219, 0.1);
}*/


@media (max-width: 576px) {
	.nav-link {
		min-width: 90px;
		padding: 10px 12px;
		font-size: 0.85rem;
	}
	/*
	.nav-link i {
		font-size: 1.2rem;
	}*/
	
	/* 确保第一个导航项可见 */
	.nav-row::before {
		content: '';
		flex: 0 0 5px;
	}
	
	.nav-row::after {
		content: '';
		flex: 0 0 5px;
	}
}
@media (max-width: 768px) {
	
	.nav-link-animated {
		font-size: 14px;
	}
	.nav-container .nav-row {
		justify-content: space-between;
	}
}

/*--------------------------------------------------------------
# 全局搜索
--------------------------------------------------------------*/  

	
/*--------------------------------------------------------------
# 首页
--------------------------------------------------------------*/  


/*--------------------------------------------------------------
# ShipTicket.html(一票多享)
--------------------------------------------------------------*/  
.package-header {
      text-align: center;
      padding: 3rem 0 2rem;
  }
  .package-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #222222;
  }
  .services-icons {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 0.8rem 0;
  }
  .service-icon {
      text-align: center;
      /*max-width: 150px;*/
  }
  .service-icon .service-text{
      font-size:14px;
  }
  /* .service-icon img{
      width: 150px;
  } */
  .notice-text {
      color: #999;
  }
  .service-title {
      font-size: 1.2rem;
      margin: 3rem 0;
      text-align: center;
  }
  .package-details {
      margin: 2rem 0;
  }
  .detail-item {
      display: flex;
      margin-bottom: 0.8rem;
  }
  .detail-item i {
      color: #222222;
      margin-right: 0.5rem;
      flex-shrink: 0;
  }
  .detail-text {
      flex-grow: 1;
  }
.included-list .all-inclusive-title{
    border-bottom: 1px solid;
    padding-bottom: 10px;
    font-weight:600;
    display: flex;
    align-items: center;
    }
  .not-included h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #e74c3c;
      margin-bottom: 1rem;
  }
  .not-included-list {
      list-style-type: none;
      padding-left: 0;
  }
  .not-included-list li {
      margin-bottom: 0.5rem;
      position: relative;
      padding-left: 1.2rem;
  }
  .not-included-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #222222;
  }
  .columns-container {
      display: flex;
      flex-wrap: wrap;
      gap: 5rem;
  }
  .column {
      flex: 1;
      min-width: 300px;
  }
  @media (max-width: 768px) {
      .package-title {
          font-size: 2rem;
      }
      .services-icons {
          gap: 1.5rem;
      }
      .service-icon {
          width: 150px;
      }
  }
  

/*--------------------------------------------------------------
# 六大优势(部分)
--------------------------------------------------------------*/  
/*.images-list img{
    width: 100%;
    height: 100%;
  }*/
  .images-list .btn-container{
    position: absolute;
    bottom: 50px;
    right: 40px;
    z-index: 1;
  }
  .video-container .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	width: 90%;
  }
  .video-container .content img{
	  width:80px;
  }
  .video-container .content .text-overlay{
    color: #fff;
    font-size: 34px;
  }
  .content .content-icon{
    padding:20px 0 30px 0;
  }

  .bg-img-auto{
    width:100%;
    min-height: 400px;
    object-fit: cover;
  }

  @media (max-width: 767px) {
    .video-container .content .text-overlay{
      font-size: 18px;
    }
    .content .content-icon{
      padding:10px 0 20px 0;
    }
  }

/*--------------------------------------------------------------
# 行程航线
--------------------------------------------------------------*/  
.left-column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.city-buttons {
	display: flex;
	gap: 10px;
}
.city-btn {
	flex: 1;
	background-color: white;
	color: black;
	border: 1px solid #ddd;
	padding: 10px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}
.city-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.city-btn.active {
	background-color: black;
	color: white;
	border-color: black;
}
.city-btn .direction {
	font-size: 16px;
}
.city-btn .action {
	font-size: 12px;
	opacity: 0.8;
}

/* direction 和 action 共用三列网格，小字精确对齐各自城市中心 */
.city-btn .direction,
.city-btn .action {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  column-gap: 8px;
  align-items: center;
}
.city-btn .swap-arrow {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  fill: currentColor; /* 黑底变白、白底变黑 */
}

/*
.image-container {
	position: relative;
	height: 100%;
	min-height: 400px;
}*/
.tour-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.image-counter {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
}
.image-nav {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 10px;
}
.nav-progress {
	height: 4px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	flex: 1;
	position: relative;
}
.nav-progress-bar {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 20%;
	background-color: white;
	border-radius: 2px;
}
.nav-arrow {
	color: white;
	font-size: 20px;
	cursor: pointer;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.itinerary-container {
	height: 100%;
	max-height: 435px;
	overflow-y: auto;
	background-color: #F5F5F5;
}
/* 自定义蓝色细线滚动条 */
.itinerary-container::-webkit-scrollbar {
	width: 6px;
}
.itinerary-container::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.itinerary-container::-webkit-scrollbar-thumb {
	background: #3498db;
	border-radius: 3px;
}
.itinerary-container::-webkit-scrollbar-thumb:hover {
	background: #2980b9;
}
.itinerary-header {
	background-color: #3498db;
	color: white;
	padding: 12px 15px;
}
.itinerary-row {
	display: grid;
	grid-template-columns: 80px 150px 1fr;
	border-bottom: 1px solid #eee;
}

.itinerary-header-row {
	background-color: #4F677B;
	border-bottom: 1px solid #ddd;
}
.itinerary-cell {
	padding: 20px 12px;
	vertical-align: top;
	word-wrap: break-word;
}
@media (max-width: 992px) {
	.itinerary-row {
		grid-template-columns: 1fr;
	}
	.itinerary-header-row {
		display: none;
	}
}

.highlight-title {
	font-size: 18px;
	margin-bottom: 20px;
	color: #222;
}
.highlights-text {
	/*font-size: 14px;*/
	line-height: 1.5;
	color: #666666;
	word-break: break-all;
}
.tour-footer {
	/*background-color: white;
	padding: 20px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
	display: flex;
	justify-content: space-between;
	/*align-items: center;*/
	flex-wrap: wrap;
	gap: 15px;
}
.info-item {
	padding: 8px 0;
}
.info-item a {
    color: #222;
}
.info-item a .bi-download{
    padding-right:5px;
}

.price-container {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.price-container .price{
	font-size: 24px;
}
.price-container .price span{
	font-weight: 700;
	color: #e74c3c;
}
/*
.check-detail-btn {
	background-color: #3498db;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	white-space: nowrap;
}
.check-detail-btn:hover {
	background-color: #2980b9;
}*/
@media (max-width: 768px) {
	.tour-footer {
		flex-direction: column;
		/*text-align: center;*/
	}
	.tour-info {
		justify-content: center;
	}
}

/**********轮播图***********/
.carousel-single .carousel-item-single img{
border-radius:0 !important;
}

/**************************/
.day-buttons {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.day-button {
	width: 60px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	background-color: #fff;
	color: #000;
	font-weight: bold;
	cursor: pointer;
}
.day-button.active {
	background-color: #000;
	color: #fff;
}
.day-img{
	max-height:440px;
}
.main-content {
	display: flex;
	gap: 1rem;
}
.left-section {
	flex: 1;
	min-width: 50%;
}
.right-section {
	flex: 1;
	min-width: 50%;
}

.schedule-image {
	/*width: 100%;
	height: 445px;*/
	object-fit: cover;
	display: none;
}

.schedule-image.active {
	display: block;
	/*animation: fadeIn 0.5s ease;*/
}

.highlight-text {
	display: none;
}

.highlight-text p{
	color:#696969;
	margin-bottom: 0em;
	line-height: 1.5em; /* 统一行高 */
}
.highlight-text strong{
	color:#222;
}

.highlight-text br {
	display: block; /* 使br标签可控制 */
	content: ""; /* 清除默认内容 */
	margin-top: 1em; /* 减小行间距 */
}

.highlight-text .auto-wrap {
	line-height: 1.5em; /* 确保自动换行段落行高一致 */
	word-wrap: break-word; /* 确保长单词换行 */
}


.highlight-text.active {
	display: block;
	animation: fadeIn 0.5s ease;
}
.itinerary-section {
	/*background-color: #fff;*/
	max-height:430px;
	padding: 20px 0;
	overflow-y: auto;
}
.disclaimer {
	font-size: 0.85rem;
	color:#9A9A9A;
	/*font-style: italic;
	line-height: 1.4;*/
}
.trip-highlights{
	background-color:unset;
    margin: 50px 0 20px 0;
}
/* 确保天数按钮最多6个一行显示 */
@media (max-width: 768px) {
	.main-content {
		flex-direction: column;
	}
}

/*--------------------------------------------------------------
# 搜索弹窗
--------------------------------------------------------------*/  
/* 遮罩层 */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1040;
	display: none;
}

.search-overlay.active {
	display: block;
}

/* 搜索层样式 */
.search-layer {
	position: fixed;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: white;
	transition: transform 0.3s ease-in-out;
	z-index: 1050;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.search-layer.hidden {
	transform: translateX(100%);
}

/* 上部分：头部 */
.header-section {
	background-color: white;
	padding: 60px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.brand-container {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}


/* 关闭按钮 */
.close-btn {
	font-size: 40px;
	color: #000;
	background: none;
	border: none;
	/*width: 40px;
	height: 40px;*/
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	order: -1; 
}

.close-btn:hover {
	transform: rotate(180deg);
}

/* 中间部分：选项卡和内容区域 */
.middle-section {
	background-color: #f8f9fa;
	flex: 1;
	display: flex;
	overflow: hidden;
}

/* 左侧导航选项卡 */
.nav-tabs {
	width: 180px;
	background-color: #f8f9fa;
	display: flex;
	flex-direction: column;
}

.nav-tab {
	padding: 12px 20px;
	text-decoration: none;
	color: #495057;
	font-weight: 500;
	border-left: 3px solid transparent;
	transition: all 0.2s;
}

.nav-tab:hover, .nav-tab.active {
	background-color: white; /* 激活后背景色为白色 */
	border-left-color: #3066db;
	color: #495057; /* 字体颜色保持不变 */
}

/* 内容区域 */
.content-area {
	flex: 1;
	overflow-y: auto;
	padding: 0;
}

/* 筛选组样式 */
.filter-group {
	margin-bottom: 15px;
	padding: 30px 20px;
	scroll-margin-top: 20px;
	background-color: white;
}

.filter-title {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 15px;
	color: #333;
}

/* 年份选择 - 改为垂直排列 */
.year-selector {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px;
}
/*
.year-option {
	padding: 12px 20px;
	border: 1px solid #ddd;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	width: auto;
	min-width: 120px;
	display: inline-block;
	margin-bottom: 15px;
}

.year-option.active {
	background-color: #f0f0f0;
	border-color: #ccc;
}*/

/* 月份选择 */
.month-selector {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	margin-bottom: 20px;
}

.month-option {
	padding: 8px 5px;
	text-align: center;
	border: 1px solid #ddd;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s;
}

.month-option.active,.month-option:hover {
	background-color: #3066db;
	border-color: #adb5bd;
	color: white;
}

.month-option.disabled {
	color: #ccc;
	cursor: not-allowed;
	background-color: #f8f9fa;
}

/* 行程时长和航线类型选项 - 一行显示4个 */
.option-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.option-item {
	padding: 10px 5px;
	border: 1px solid #ddd;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	font-size: 14px;
}

.option-item.active,.option-itemf:hover{
	background-color: #3066db;
	border-color: #adb5bd;
	color: white;
}

/* 下部分：按钮组 */
.footer-section {
	background-color: white;
	padding: 20px;
	border-top: 1px solid #e9ecef;
	display: flex;
	gap: 15px;
}

.reset-btn {
	flex: 1;
	background-color: transparent;
	border: none;
	padding: 12px;
	font-weight: 500;
}

.search-btn {
	flex: 2;
	background-color: #3066db;
	color: white;
	border: none;
	padding: 12px;
	font-weight: 500;
}

/* 年份月份容器 */
.year-month-container {
	margin-bottom: 20px;
}

.year-section {
	margin-bottom: 15px;
}

/* 响应式调整 */
@media (max-width: 1400px) {
	
	.month-selector {
		grid-template-columns: repeat(4, 1fr);
	}
	.option-group {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.search-layer {
		width: 85%;
	}
	
	.middle-section {
		flex-direction: column;
	}
	
	.nav-tabs {
		width: 100%;
		flex-direction: row;
		overflow-x: auto;
	}
	
	.nav-tab {
		border-left: none;
		border-bottom: 3px solid transparent;
		white-space: nowrap;
	}
	
	.nav-tab:hover, .nav-tab.active {
		border-left-color: transparent;
		border-bottom-color: #3066db;
		background-color: white;
	}
	
	.content-area {
		/*margin: 0 20px 20px;*/
	}
	
	.month-selector {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.option-group {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.header-section {
		padding:0;
	}
	.social-icons .image-hover-container{
		margin:0;
	}
}

@media (max-width: 576px) {
	.search-layer {
		width: 100%;
	}
	
	.month-selector {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.option-group {
		grid-template-columns: 1fr;
	}
	
	.header-section {
		flex-direction: column;
		gap: 15px;
	}
	
	.brand-container {
		position: static;
		transform: none;
		order: -1;
	}
	
	.close-btn {
		align-self: flex-end;
	}
}