
/* 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: #666666; /* 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; 
  --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: #18d26e; /* 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: #18d26e; /* 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: #006AF1;
  --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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.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: 1200px) {
  .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 .nav {
	  margin-bottom: 0;
	}
	.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: center;
	  gap: 12px 32px;
	  margin: 0 auto;
	  max-width: 1100px;
	  padding: 18px 16px 0 16px;
	  list-style: none;
	}
	.main-nav .sub-nav-list > li {
	  margin: 0;
	  padding: 8px;
	}
	.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;
	  margin-bottom: 0.7rem;
	  font-weight: bold;
	}
	.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);
	}
}

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

  .navmenu {
    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;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}




.footer-top {
  background-image: url("../img/foot-bg.png");
  color: #fff;
  padding: 48px 0 32px 0;
}
.footer-top .btn-outline-light {
  border-radius: 24px;
  padding: 8px 32px;
  font-size: 1.2rem;
  font-weight: 500;
}
.footer-top .qr-section {
  text-align: right;
}
.footer-top .qr-section img {
  width: 120px;
  height: 120px;
  margin-bottom: 8px;
  object-fit: cover;
}
.footer-top .qr-section .qr-text {
	transform: translateX(-20px);
}
.footer-middle {
  /*background: #fff;*/
  padding: 32px 0 0 0;
}
.footer-middle .footer-title {
  font-size: 1.6rem;
  font-family: 'KaiTi', '楷体', serif;
  color: #2B3A73;
  letter-spacing: 2px;
  white-space: nowrap;
}
.footer-middle .nav {
  font-size: 1.1rem;
  font-weight: 500;
}
.footer-middle .nav-link {
  color: #222;
  margin-left: 32px;
  padding: 0;
}
.footer-middle .nav-link:hover {
  color: #0a8efc;
}
.footer-divider {
  border-top: 1px solid #e5e5e5;
  margin: 30px 0;
}
.footer-bottom {
  /*background: #fff;*/
  color: #b0b0b0;
  font-size: 0.95rem;
  text-align: center;
  padding-bottom: 30px;
}
@media (max-width: 991.98px) {
  .footer-middle .d-flex {
	flex-direction: column !important;
	align-items: flex-start !important;
  }
  .footer-middle .footer-title {
	margin-bottom: 16px;
  }
  .footer-middle .nav {
	justify-content: flex-start !important;
  }
  .footer-top .qr-section {
	text-align: center;
  }
  
  .footer-top .qr-section .qr-text{
  	transform: none;
  }
}

@media (max-width: 768px) {
	/*
	.footer-top > div > div:not(.footer-about) {
		display: none;
	}*/
	.footer-top .qr-section .qr-text{
		transform: none;
	}
	.footer .footer-top {
		padding-left:50px;
	}

	.copyright {
		padding:40px 12px 25px 50px !important;
	}

}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# 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: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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


.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  /*
  margin-bottom: 20px;
  padding-bottom: 20px;
  */
  position: relative;
}
/*
.section-title h2: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;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
*/
.section-title p {
  margin-bottom: 0;
  font-weight: 700;
  line-height:0.8;
}

/*--------------------------------------------------------------
# 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;
  top: 40%;
  left: 10%;
  /*inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  inset: 35vh 0 0 0;
  align-items: center;
  flex-direction: column;*/
  z-index: 3;    

}

.hero h2 {
  /*margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;*/
  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:30%;
    left:1%;
  }
}
.hero p {
  animation: fadeInDown 1s both 0.2s;
  font-size: 24px;
  margin-bottom: 50px;
}
/*
@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}*/

.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;
}
/*
.carousel-control-prev {
  left: 28px !important;
}
.carousel-control-next {
  right: 28px !important;
}*/

.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;
}
/*
@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}*/

.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;
}

@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);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0 10px 0;
}

.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}


.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*grid-template-rows: 1fr 1fr;
  height: 100vh;*/
  gap: 0;
}
.left-top {
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.left-top .left-content{
  padding-left: calc((100vw - 1400px) / 2);
}


@media (min-width: 1200px) {
	.left-top .left-content{
	  padding-left: calc((100vw - 1140px) / 2);
	}
}

@media (min-width: 1400px) {
	.left-top .left-content{
	  padding-left: calc((100vw - 1400px) / 2);
	}
}
.right-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}
/*
.right-top-video {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}*/
.right-top-bar-wrapper {
  background-color: #E9E9E9;
  position: relative;
  margin-left: 0;
}
.right-top-bar {
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 38px;
  width: 68%; 
}
/*.left-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}*/
.right-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
}
.company-desc {
  font-size: 1.1rem;
  color: #222;
  text-indent: 2em;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 50px 100px;
  justify-items: center;
  align-items: center;
  margin:auto;
}
.stat-block {
  text-align: center;
  /*width: 100px;*/
}
.stat-block .stat-num {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--accent-color);
}
.stat-block .stat-label {
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
}

/*企业文化*/

/* 波浪虚线容器 */
.wave-container {
	position: absolute;
	top: 50%;
	left: 0;
   /* width: 100%;
	height: 200px;*/
	transform: translateY(-50%);
	/*z-index: 10;*/
	overflow: hidden;
}

/* 波浪虚线图片样式 */
.wave-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Swiper容器 */
.qyhw-swiper {
	height: 500px;
}

/* 图标容器 */
.icon-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10% 10px 10%;
	height: 100%;
}

.icon-item {
	position: absolute;
	/*width: 150px;*/
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 25;
	transform: translateX(-50%);
}

/* 图标样式 */
.icon-wrapper {
	
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	transition: all var(--transition-speed) ease;
}

.icon-wrapper:hover {
	transform: scale(1.1);
}

.icon-img {
	width: 60px;
	height: 60px;
	cursor: pointer;
	object-fit: contain;
	transition: opacity var(--transition-speed) ease;
}
.icon-img.active, .icon-img:hover {
  transform: scale(1.1);
}

.icon-default {
	opacity: 1;
}

.icon-hover {
	position: absolute;
	opacity: 0;
}

.icon-wrapper:hover .icon-default {
	opacity: 0;
}

.icon-wrapper:hover .icon-hover {
	opacity: 1;
}

/* 图标标题 */
.icon-title {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #222;
	transition: all var(--transition-speed) ease;
}

.panel-content {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
}

.content-item {
	margin-bottom: 8px;
	padding-left: 15px;
	position: relative;
}

.content-item:before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary-blue);
}


@media (max-width: 992px) {
   
	.qyhw-swiper {
		height: auto;
		margin-top: 20px
	}
	
	.icon-container {
		flex-direction: column;
		justify-content: center;
		gap: 25px;
	}
	
	.wave-container {
		top: 35%;
		height: 300px;
	}
	
	.icon-item {
		position: relative;
		transform: none;
		left: auto !important;
		align-items: normal;
	}
}

@media (max-width: 912px) {
   
	
	.icon-title {
		font-size: 1.4rem;
	}
   
	.wave-container {
		display: none;
	}
}

/*服务体系*/

.service-card {
  position: relative;
  min-height: 300px;
  border-radius: 40px;
  overflow: hidden;
  padding: 40px 30px 30px 30px;
  margin-bottom: 30px;
  box-shadow: none;
  border: none;
  background: #fff;
  transition: background 0.3s, color 0.3s;
  color: #6C6C6C;
}
.service-card .card-number {
  position: absolute;
  left: 30px;
  bottom: -6%; 
  font-size: 72px;
  font-weight: bold;
  opacity: 0.08;
  z-index: 0;
  user-select: none;
  line-height: 1;
  color: #000;
  pointer-events: none;
  transition: color 0.3s;
}
.service-card .card-content {
  position: relative;
  z-index: 1;
}
.service-card:hover {
  background: #0066ff !important;
  color: #fff !important;
}
.service-card:hover .card-number {
  color: #fff !important;
}
.service-card ul {
  font-size: 20px;
}


@media (max-width: 912px) {
  .main-grid {
	grid-template-columns: 1fr;
	grid-template-rows: none;
	height: auto;
	gap:15px;
  }
  .right-bottom {
	padding: 24px 8px;
  }
  .stats-grid {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	height: auto;
	margin:0;
  }
  
  .right-top-bar {
	padding-left: 15px;
  }
  
  .dashed-bg {
	  background: none;
	  position: relative;
	  height: auto;
  }
  .icon-block {
	top: 40px !important; 
  }

}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --default-color: #ffffff;
}

.team .member {
  text-align: center;
  position: relative;
  height: 100%;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# 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 .content {
  margin-top: 10px;
}*/

.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 {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}*/
.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;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

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

/*覆盖超大型屏幕（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;
}
/*--------------------------------------------------------------
# 基础按钮样式
--------------------------------------------------------------*/

.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: #006AF1; /* 背景色 */
  color: white;   /* 文字颜色 */
  text-decoration: none;    /* 去除下划线 */
  
  /* 交互效果 */
  transition: all 0.3s ease; /* 平滑过渡动画 */
  cursor: pointer;          /* 鼠标手势 */
  

  letter-spacing: 2px;/* 字体间距 */
}

/* 悬停状态 */
.btn-custom:hover,.btn-custom-routine: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: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}
.header-title .en-title {
    font-size: 24px;
    font-weight: 700;
}

.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;
    }
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/

  /*关闭input清除图标*/
  input[type="search"]::-webkit-search-cancel-button {
      -webkit-appearance: none;
      display: none;
  }
  
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
  
  /* 对于Firefox */
  input[type="search"]::-moz-search-cancel-button {
      display: none;
  }
  #searchModal{
    /*background: #006AF1;
    opacity: 0.8;*/
    background: #006AF180; /* 8位HEX - 最后两位控制透明度 */
  }
 
 
  #searchModal input {
    background-color: #ffffff !important; /* 6位HEX确保完全不透明 */
    background-clip: padding-box; /* 防止背景渗透到边框 */
  }
    
    /* 模态框自定义样式 */
    .search-modal .modal-content {
      background: rgba(0, 0, 0, 0.85);
      border: none;
      border-radius: 0;
    }
    
    .search-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }
    
    .search-box {
      position: relative;
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .search-input-wrapper {
      position: relative;
      background: white;
      border-radius: 50rem;
      box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.3), 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      display: flex;
      overflow: hidden;
    }
    
    .search-input-wrapper:focus-within {
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .search-input {
      background: transparent;
      border: none;
      color: #212529;
      font-size: 1.4rem;
      padding: 25px 25px 25px 60px;
      width: 100%;
      height: 100%;
      flex-grow: 1;
    }
    
    .search-input:focus {
      outline: none;
      box-shadow: none;
    }
    
    .search-input::placeholder {
      color: #adb5bd;
    }
    
    .search-button {
     
      border: none;
      padding: 0 30px;
      font-size: 1.2rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    
    .search-button i {
      margin-right: 8px;
    }
    
    .close-btn {
      border-radius: 50%;
      margin-top: 40px;
      padding: 13px 18px;
      font-size: 1.2rem;
      border: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .close-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      color: white;
    }
    @media (max-width: 768px) {
      .search-input {
        padding: 20px 20px 20px 50px;
        font-size: 1.2rem;
      }
      
      .search-button {
        padding: 0 20px;
      }
    }



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

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

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

.right-nav>.ul .li {
	width: 100%;
	height: 50px;
	margin-bottom: 1px;
	border-radius: 10px;
	background-color: #b5b5b5;
	transition: background-color .8s;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.right-nav>.ul a {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 9;
}
.right-nav>.ul .wechat {
	background-image: url("../img/wxqr.png");
}

.right-nav>.ul .wechat .wechat-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 .wechat .wechat-box .phone-box-box {
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 5px;
}

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



.right-nav>.ul .wechat:hover .wechat-box {
	transform: translateX(-100px);
	transition: ease 1s;
	opacity: 1;
}
.right-nav>.ul .toTop {
	background-image: url("../img/top.png");
	cursor: pointer;
}
.right-nav>.ul .phone {
	background-image: url("../img/phone.png");
}

.right-nav>.ul .phone .phone-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 .phone .phone-box .inner {
	min-width: 200px;
	height: 40px;
	padding: 0 10px;
	border-radius: 20px;
	background: #006AF1;
	line-height: 40px;
	color: #fff;
	text-align: center;
}


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

.right-nav>.ul .world {
	background-image: url("../img/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("../img/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("../img/101.png");
}

.right-nav>.ul .mail:hover .mail-box {
	display: block;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/

.image-hover-container {
	position: relative;
	display: inline-block;
	transition: transform 0.3s ease;
}

/* 图片悬停效果 */
.image-hover-container:hover {
	transform: translateY(-5px);
}

/* 二维码容器样式 */
.qr-code-container {
	position: absolute;
	bottom: 100%;
	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);
}

/* 悬停时显示二维码 */
.image-hover-container:hover .qr-code-container {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-10px);
}

/* 二维码图片样式 */
.qr-code {
	width: 120px;
	height: 120px;
	display: block;
}

/*底部列表超过4加滚动*/
.scrollable-list {
    max-height: calc(35px * 4); /* 按单个项高度计算 */
    overflow-y: hidden;
}
.scrollable-list:hover {
    overflow-y: auto; /* 悬停时显示滚动条 */
} 
/* 手机端移除滚动效果 */
@media (max-width: 768px) {
  .scrollable-list {
    max-height: none;
    overflow-y: visible;
  }
  .footer-contact{
	  line-height: 0.5;
  }
}
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #6c757d;
}
/*
.nav-pills .nav-link.active {
  background-color: transparent;
  color: #0d6efd !important;
  border-bottom: 2px solid #0d6efd;
  border-radius: 0;
}*/

@media (max-width: 768px) {
  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-item {
    margin: 5px;
  }
}
/*--------------------------------------------------------------
# 知识产权
--------------------------------------------------------------*/
/* 图片完全填充 */
.custom-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%; /* 聚焦人物面部 */
}

/* 内容区域优化 */
.content-column {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.content-column .summary{
 /* height: 60px;*/
}


/*--------------------------------------------------------------
# 公司资质
--------------------------------------------------------------*/
.form-check-input:checked {
    background-color: #006AF1 !important;
    border-color: #006AF1 !important;
  }

  :target::before {
    content: "";
    display: block;
    height: calc(var(--header-height, 60px) + 20px); /* 动态补偿高度 */
    margin-top: calc(-1 * (var(--header-height, 60px) + 20px));
  }

  /* 图片预览样式 */
  .modal-content {
    background-color: rgba(0, 0, 0, 0.85) !important;
  }

  .btn-light {
    transition: all 0.3s;
  }

  .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.1);
  }

/* 修复背景透明问题 */
.modal-backdrop {
  --bs-backdrop-opacity: 0.6; /* 控制外围遮罩透明度 */
}

.modal-content {
  background-color: transparent !important; /* 移除默认背景色 */
}

/* 优化过渡效果 */
#galleryImage {
  transition: opacity 0.3s ease-in-out;
}

.form-check-input:focus{
	box-shadow: none !important; 
}
.closeBtn{
	z-index: 9999;
	top:8%;
	right:8%;
}
.prevBtn{
	left:8%
}
.nextBtn{
	right:8%
}
/*--------------------------------------------------------------
# 联系我们
--------------------------------------------------------------*/
#baidu-map {
    min-height: 600px;
  }
.accordion-button:focus { 
	box-shadow: none !important; 
}
.accordion-body{
	padding:0 0 10px 20px;
}
.accordion-body p{
	margin: 0;
    line-height: 1.8;
}
  .accordion-button:not(.collapsed) {
    /*background: rgba(25, 135, 84, 0.1);*/
	background: rgba(255, 255, 255, 0);
	color: #006AF1;
	box-shadow:none;/*展开去掉水平线*/
  }
  
  .position-sidebar{
	  position: absolute;
	  width: 340px; 
	  left: 30px; 
	  top: 30px; 
	  z-index: 9;
  }
  @media (max-width: 768px) {
	.position-sidebar {
		position: static;
		width: 100%;
	}
	#baidu-map {
		min-height: 400px;
	}
  }
  .bi-search {
    font-size: 1.2rem;
  }

  /* 滚动条整体部分 */
  ::-webkit-scrollbar {
      width: 5px;               /* 滚动条的宽度 */
      height: 5px;              /* 滚动条的高度 */
  }
  
  /* 滚动条的轨道 */
  ::-webkit-scrollbar-track {
      background: #f1f1f1;       /* 轨道颜色 */
  }
  
  /* 滚动条上的滑块 */
  ::-webkit-scrollbar-thumb {
      background: #006AF1;          /* 滑块颜色 */
      border-radius: 10px;       /* 滑块圆角 */
  }
  
/* 修改展开状态下的图标颜色 */
.accordion-button:not(.collapsed)::after {
	background-image: url("../img/down.svg");
}
  /* 修改未展开状态下的图标颜色 */
.accordion-button::after {
	background-image: url("../img/down.svg");
}
/*--------------------------------------------------------------
# 产品中心
--------------------------------------------------------------*/  
.overlay-text-main {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #222;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.overlay-text-sub {
  position: absolute;
  top: 80px;
  left: 30px;
  color: #444;
  font-size: .8rem;
}
.overlay-text-link {
  position: absolute;
  bottom: 70px;
  left: 30px;
  color: #222;
  font-size: .8rem;
}

/*--------------------------------------------------------------
# 案例展示
--------------------------------------------------------------*/  
/* 自定义样式 */
.radio-card {
	cursor: pointer;
	background: #f8f9fa;
	border: 1px solid transparent;
	border-radius: 20px;
	padding: 5px 10px;
	margin: 4px;
	transition: all 0.3s ease;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
}

.radio-card:hover {
	border-color: #006AF1;
	background: #e5f0ff;
}

.radio-card.active {
	border-color: #006AF1;
	background: #e5f0ff;
}

.radio-dot {
	width: 16px;
	height: 16px;
	border: 2px solid #adb5bd;
	border-radius: 50%;
	margin-right: 8px;
	transition: all 0.3s ease;
}

.radio-card.active .radio-dot {
	/*border-color: white;
	background: white;*/
	box-shadow: 0 0 0 1px #006AF1;
	border: 4px solid #adb5bd;
	
	border-color: #006AF1;
	background: #e1fdf5;
}

.radioInput {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

/* 自定义悬停效果-覆盖bootcss */
.btn-outline-secondary:hover {
    background-color: #006AF1; 
    border-color: #006AF1;
}


.hover-card {
  position: relative;
  overflow: hidden; 
}
.hover-card img.main-img {
  width: 100%;
  height: 100%;
}
.plus-btn-img {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: 56px;
  height: 56px;
  z-index: 3;
  cursor: pointer;
  transform: translateY(50%);
  transition: opacity 0.4s cubic-bezier(.4,2,.6,1);
}
.hover-card:hover .plus-btn-img {
  opacity: 0;
}
/*
.plus-btn-img:hover {
  opacity: 0;
}*/
.post-img:hover>.plus-btn-img {
  opacity: 0;
}
.hover-card .overlay {
  position: absolute;
  left: 0;
  top: 0; 
  width: 0; 
  /*width: 56px;
  height: 56px;*/
  background: #0067da;
  opacity: 0;
  transition:
	width 0.5s cubic-bezier(.4,2,.6,1),
	height 0.5s cubic-bezier(.4,2,.6,1),
	border-radius 0.5s cubic-bezier(.4,2,.6,1),
	right 0.5s cubic-bezier(.4,2,.6,1),
	bottom 0.5s cubic-bezier(.4,2,.6,1),
	opacity 0.3s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hover-card:hover .overlay {
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  opacity: 1;
  background: rgba(51,136,255,0.5); /* 半透明蓝色 */
  pointer-events: auto;
}
.plus-btn-img:hover + .hover-card .overlay {
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  opacity: 1;
  background: rgba(51,136,255,0.5);
  pointer-events: auto;
}
.plus-btn-img:hover + .hover-card .overlay .overlay-link {
  opacity: 1;
  transition: opacity 0.3s 0.3s;
}
.overlay-link {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s 0.2s;
  z-index: 4;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  text-decoration: none;
}
.hover-card:hover .overlay-link {
  opacity: 1;
  transition: opacity 0.3s 0.3s;
}
.overlay-link:hover,
.overlay-link:focus {
  color: #fff;
}
/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/  

.horizontal-line-left {
	width: 100%; /* 宽度100% */
	/* margin-top: 18px ;*/
	transform: translateY(18px);
	border: 0;
	border-top: var(--bs-border-width) solid;
	opacity: .25;
}
.horizontal-line-right {
	width: 100%; /* 宽度100% */
	/* margin-top: 18px ;*/
	transform: translate(-18px,18px);
	border: 0;
	border-top: var(--bs-border-width) solid;
	opacity: .25;
}
.toggle-btn{
	cursor: pointer;
}

/* 隐藏默认滚动条 */
.scroll-row {
	overflow-x: auto; 
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch; /* 移动端流畅滚动 */
	scrollbar-width: none; /* Firefox */
}
.scroll-row::-webkit-scrollbar {
	display: none; /* Chrome/Safari/Edge */
}
		
@media (max-width: 768px) {
	.horizontal-line-left {
        display: none;
    }
	.horizontal-line-right {
        display: none;
    }
	.nav-right [class*="text-end"] {
		text-align: left !important; /* 覆盖对齐方式 */
	}
}

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

  /*关闭input清除图标*/
  input[type="search"]::-webkit-search-cancel-button {
      -webkit-appearance: none;
      display: none;
  }
  
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
  
  /* 对于Firefox */
  input[type="search"]::-moz-search-cancel-button {
      display: none;
  }
  #searchModal{
    /*background: #006AF1;
    opacity: 0.8;*/
    background: #006AF180; /* 8位HEX - 最后两位控制透明度 */
  }
 
 
  #searchModal input {
    background-color: #ffffff !important; /* 6位HEX确保完全不透明 */
    background-clip: padding-box; /* 防止背景渗透到边框 */
  }
    
    /* 模态框自定义样式 */
    .search-modal .modal-content {
      background: rgba(0, 0, 0, 0.85);
      border: none;
      border-radius: 0;
    }
    
    .search-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }
    
    .search-box {
      position: relative;
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .search-input-wrapper {
      position: relative;
      background: white;
      border-radius: 50rem;
      box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.3), 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      display: flex;
      overflow: hidden;
    }
    
    .search-input-wrapper:focus-within {
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .search-input {
      background: transparent;
      border: none;
      color: #212529;
      font-size: 1.4rem;
      padding: 25px 25px 25px 60px;
      width: 100%;
      height: 100%;
      flex-grow: 1;
    }
    
    .search-input:focus {
      outline: none;
      box-shadow: none;
    }
    
    .search-input::placeholder {
      color: #adb5bd;
    }
    
    .search-button {
     
      border: none;
      padding: 0 30px;
      font-size: 1.2rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    
    .search-button i {
      margin-right: 8px;
    }
    
    .close-btn {
      border-radius: 50%;
      margin-top: 40px;
      padding: 13px 18px;
      font-size: 1.2rem;
      border: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .close-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      color: white;
    }
    
    @media (max-width: 768px) {
      .search-input {
        padding: 20px 20px 20px 50px;
        font-size: 1.2rem;
      }
      
      .search-button {
        padding: 0 20px;
      }
	  .header-search{
       background-color:rgba(33, 37, 41, 0.5);
     }
    }
	
/*--------------------------------------------------------------
# 首页
--------------------------------------------------------------*/  
/*Banner*/
.video-container {
    position: relative;
    width: 100%; /* 确保父元素宽度为100% */
    padding-top: 56.25%; /* 16:9 视频比例 */
    overflow: hidden;
}
 
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持视频比例并覆盖整个容器 */
}

/* 自定义轮播指示器样式 */
.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%);
}
.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
  }

  .section-desc {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .more-btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px 0 0 0;
    z-index: 2;
    display: flex;
    align-items: center;
  }
  
 .header-text {
	z-index: 1;
	position: absolute;
	top: 30%;
	left: 8%;
	max-width:60%;
}

.header-text .title {
	font-size: 3.8rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
	letter-spacing: 8px;
	position: relative;
	color: #333;
	 
}

.header-text .subtitle {
	font-size: 2.7rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	color: #666;
	letter-spacing: 18px;
}

.header-text .english-text {
	font-size: 1.4rem;
	color: #AABDF2;
	font-weight: 500;
	letter-spacing: 5px;
}

/* 打印效果样式 */
.char {
	opacity: 0;
	display: inline-block;
	transition: opacity 0.3s ease, transform 0.4s ease;
}

#title span.char.visible {
	background-position: 0 0;
	opacity: 1;
	transform: translateY(0);
}

#subtitle .part-left, 
#subtitle .part-right {
	width: 50%;
}


/* 响应式调整 */

@media (min-width: 1400px) {
	
  .header-text .title {
		font-size: 4.2rem;
	}
	.header-text .subtitle {
		font-size: 3.4rem;
		letter-spacing: 12px;
	}
	.header-text .english-text {
		font-size: 2.2rem;
		letter-spacing: 0;
	}
}
@media (max-width: 992px) {
	
  .header-text .title {
		font-size: 2.2rem;
	}
	.header-text .subtitle {
		font-size: 2rem;
		letter-spacing: 6px;
	}
	.header-text .english-text {
		font-size: 1.3rem;
		letter-spacing: 0;
	}
}
  
@media (max-width: 768px) {
	 .header-text {
	  top: 50px;
	  left: 20px;
	}

	.header-text .title {
		font-size: 1.2rem;
		margin-bottom:0.2rem;
		letter-spacing: 2px;
	}
	
	.header-text .subtitle {
		font-size: 1rem;
		margin-bottom:0.2rem;
		letter-spacing: 2px;
	}
	
	#subtitle .part-left, 
	#subtitle .part-right {
		width: 100%;
	}
	.header-text .english-text {
		font-size: 0.8rem;
		letter-spacing: 0;
	}
} 

  /*.more-btn .btn-more {
    display: flex;
    align-items: center;
    background: transparent;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    padding: 6px 18px;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    border: 1px solid var(--accent-color);
    border-radius: 24px;
  }*/
  
	.more-btn .btn-more {
	  display: inline-block; /* 确保按钮包裹a标签 */
	  position: relative;
	  overflow: hidden;
	  border-radius: 40px; /* 指定的圆角值 */
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	/* 按钮链接样式 */
	.more-btn .btn-more a {
	  display: inline-block;
	  position: relative;
	  padding: 12px 36px;
	  font-size: 1rem;
	  font-weight: 600;
	  letter-spacing: 0.5px;
	  color: #333;
	  background-color: transparent;
	  border: 2px solid #006AF1;
	  border-radius: 40px; /* 相同的圆角值 */
	  text-decoration: none;
	  transition: color 0.4s ease 0.1s; /* 文字颜色延迟变化 */
	  z-index: 2; /* 确保文字在伪元素上层 */
	}

	/* 动画背景元素 */
	.more-btn .btn-more::before {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 0;
	  height: 100%;
	  background-color: #006AF1; /* 背景填充颜色 */
	  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	  z-index: 1;
	  border-radius: 40px; /* 确保动画元素也有圆角 */
	}

	/* 鼠标悬停效果 */
	.more-btn .btn-more:hover::before {
	  width: 100%;
	}

	.more-btn .btn-more:hover a {
	  color: white; /* 悬停时文字变为白色 */
	  /*border-color: transparent;  悬停时移除边框 */
	}

  .more-btn .btn-more .circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0066ff;
    border-radius: 50%;
    margin-left: 10px;
    transition: background 0.2s;
  }
  .more-btn .btn-more .circle-arrow i {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 2px;
  }
  .more-btn .btn-more:hover .circle-arrow {
    background: #0050cc;
  }
  .solution-row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 430px;
  }
  .solution-card-col {
    flex: 1 1 0;
    min-width: 0;
    transition: flex-basis 0.5s cubic-bezier(.4,0,.2,1), flex 0.5s cubic-bezier(.4,0,.2,1);
    display: flex;
  }
  .scheme-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    color: #fff;
    cursor: pointer;
    transition: box-shadow 0.3s;
    border-radius: 0;
    padding: 0;
    border: none;
    background: none;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .scheme-card .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  }
  /*
  .scheme-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,102,255,0.45) 0%, rgba(0,102,255,0.65) 100%);
    z-index: 2;
    transition: background 0.3s;
  }*/
  .scheme-card .card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 36px 32px 28px 32px;
	color: #fff;
  }
  .scheme-card .icon-circle {
    width: 48px;
    height: auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  .scheme-card .main-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
  }
  .scheme-card .sub-title {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 10px;
  }
  .card-content .desc-list {
    font-size: 0.98rem;
    opacity: 0.9;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
	display:none;
  }
 
  .scheme-card:hover .bg-img {
    transform: scale(1.06);
  }
  

  .solution-card-col:hover .desc-list  {
	  display:block;
  }
  
  /* 卡片宽度动画 */
  .solution-row:hover .solution-card-col {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 1;
  }
  .solution-card-col:hover,
  .solution-card-col:focus-within {
    flex-basis: 50% !important;
    flex-grow: 0;
    flex-shrink: 1;
    z-index: 2;
  }
  .solution-row:not(:hover) .solution-card-col {
    flex-basis: 33.3333%;
    flex-grow: 1;
    flex-shrink: 1;
  }
	
	.color-bar {
	  width: 100px;   
	  height: 10px;  
	  position: relative;
	  background: #0066ff;
	  overflow: hidden;
	}
	.color-bar::after {
	  content: "";
	  position: absolute;
	  left: 60%;
	  top: 0;
	  width: 40%;
	  height: 100%;
	  background: #09d39a;
	  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
	}
		
	
	
  @media (max-width: 991.98px) {
    .solution-row {
      flex-direction: column;
      min-height: unset;
    }
    .solution-card-col,
    .solution-row:not(:hover) .solution-card-col,
    .solution-row:hover .solution-card-col,
    .solution-card-col:hover {
      flex-basis: 100% !important;
      max-width: 100%;
    }
    .solution-card .card-content {
      padding: 24px 16px 18px 16px;
    }
    .more-btn {
      position: static;
      margin: 20px 0 0 0;
      text-align: right;
      display: block;
    }
  }

/*解决方案*/
.solution-section {
  padding: 60px 0;
}
    
.solution-desc {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.solution-card {
  /*padding: 40px 70px 24px 30px;
  min-height: 350px;
  box-shadow: 0 2px 8px rgba(59,130,254,0.04);*/
  transition: box-shadow 0.2s;
  background-size: cover;
  background-position: center;
  position: relative;
  /*color: #222;*/
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.solution-card img{
	min-height:190px;
}
/*
.solution-card-1 {
  background-image: url('../img/sysgl.png');
}
.solution-card-2 {
  background-image: url('../img/sysaq.png');
}*/
.solution-card-content{
    position: absolute;
    z-index: 2;
    padding: 40px;
	width:70%;
}
/*
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(234,246,255,0.85);
  z-index: 0;
}
.solution-card > * {
  position: relative;
  z-index: 1;
}*/
.solution-btn {
  background: #3b82fe;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 0;
  width: 100px;
  min-width: 100px;
  margin-top: 3rem;
  text-align: center;
  box-shadow: none;
  display: block;
}
.solution-btn:hover {
  background: #2563eb;
  color: #fff;
}
.solution-card h4, .solution-card p {
  text-align: left;
}
.solution-card h4{
	color:#222;
}
	
/*核心产品*/
.nav-tabs.product-nav {
  border-bottom: 1.5px solid #dee2e6;
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
}
.nav-tabs.product-nav .nav-item {
  flex-grow: 1;
}
.nav-tabs.product-nav .nav-link {
  border: none;
  color: #212529;
  font-size: 1.1rem;
  font-weight: 500;
  background: none;
  position: relative;
  transition: color 0.2s;
  padding: 0.5rem 0.25rem;
  display: inline-block;
}
.nav-tabs.product-nav .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  background: #3b82fe;
  width: 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-tabs.product-nav .nav-link.active,
.nav-tabs.product-nav .nav-link:hover {
  color: #3b82fe;
}
.nav-tabs.product-nav .nav-link.active::after,
.nav-tabs.product-nav .nav-link:hover::after {
  transform: scaleX(1);
}
.product-card {
  background: #f8f9fa;
  margin-bottom: 2rem;
  display: flex;
  min-height: 360px;
  overflow: hidden;
}
.product-info {
  flex: 1 1 50%;
  padding: 0 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info img {
	width:240px; 
	margin-bottom: 1.5rem;
	margin: auto auto 1.5rem auto;
}

.product-image {
  flex: 1 1 50%;
  min-height: 280px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-feature-list {
  margin-top: 1rem;
  padding-left: 0;
  list-style-type: none;
}
.product-feature-list li {
  color: #6c757d;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.product-feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #3b82fe;
  position: absolute;
  left: 0;
  top: 0.4em;
}
@media (max-width: 991px) {
  .product-card {
	flex-direction: column;
  }
}

 /* 合作院校 */
.partners-tabs .nav-tabs { border-bottom: 1px solid #dee2e6; margin-bottom: 40px; }
.partners-tabs .nav-item { margin-right: 4.5rem; }
.partners-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.5rem 0 1.5rem 0;
  position: relative;
  background-color: transparent;
  transition: color 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.partners-tabs .nav-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0d6efd;
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.partners-tabs .nav-link.active::after,
.partners-tabs .nav-link:hover::after { transform: scaleX(1); }
.partners-tabs .nav-link.active,
.partners-tabs .nav-link:hover {
   color: #0d6efd;
   background-color: transparent !important;
}
.logo-card {
  /*background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100px;*/
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}
.logo-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0, 0, 0, 0.07); }
.logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

@media (max-width: 912px) {
  .nav-tabs.product-nav .nav-link {
	font-size: 0.9rem;
	padding: 0.5rem 0.1rem;
  }
  .product-info {
	padding: 1.5rem;
  }
  .nav-tabs.product-nav .nav-item {
	flex-grow: 1;
  }
  
  .partners-tabs .nav-link::after {
	  bottom: -5px;
	}
	.solution-card-content{
		width:100%;
		font-size:13px;
	}
	.solution-card-content h4{
		font-size:16px;
	}
	
	.solution-btn {
	  margin-top: .8rem;
	}
}
@media (max-width: 768px) {
  
  .nav-tabs.product-nav .nav-item {
	flex-grow: 0;
  }
  
}