:root {
  --primary: #0055BC;
  --accent: #FF3D85;
  --secondary: #645F88;
  --success: #35bb78;
  --info: #05B4E1;
  --warning: #FAC14D;
  --danger: #FF4943;
  --grey: #B4B2C5;
  --dark: #2D2B3A;
  --light: #F6F5FC;
}

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.5;
  color: #2D2B3A;
}

a {
  color: #0055BC;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}

a:hover {
  color: #0055BC;
  text-decoration: none;
}


.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-md {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-xl {
  font-size: 20px !important;
}

/* Color systems */
.bg-primary {
  background-color: #0055BC !important;
}

a.bg-primary:hover, a.bg-primary:focus {
  background-color: #5d47eb !important;
}

.bg-accent {
  background-color: #FF3D85 !important;
}

a.bg-accent:hover, a.bg-accent:focus {
  background-color: #e93577 !important;
}

.bg-secondary {
  background-color: #F9FAFB !important;
}

a.bg-secondary:hover, a.bg-secondary:focus {
  background-color: #59547c !important;
}

.bg-success {
  background-color: #35bb78 !important;
}

a.bg-success:hover, a.bg-success:focus {
  background-color: #28a868 !important;
}

.bg-info {
  background-color: #05B4E1 !important;
}

a.bg-info:hover, a.bg-info:focus {
  background-color: #07a2c8 !important;
}

.bg-warning {
  background-color: #FAC14D !important;
}

a.bg-warning:hover, a.bg-warning:focus {
  background-color: #ebb039 !important;
}

.bg-danger {
  background-color: #FF4943 !important;
}

a.bg-danger:hover, a.bg-danger:focus {
  background-color: #e73832 !important;
}

.bg-grey {
  background-color: #8e8aad !important;
}

a.bg-grey:hover, a.bg-grey:focus {
  background-color: #7d7a99 !important;
}

.bg-light {
  background-color: #F6F5FC !important;
}

a.bg-light:hover, a.bg-light:focus {
  background-color: #EDECF5 !important;
}

.bg-dark {
  background-color: #2D2B3A !important;
}

a.bg-dark:hover, a.bg-dark:focus {
  background-color: #1d1b25 !important;
}

.text-primary {
  color: #0055BC !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #5d47eb !important;
}

.text-accent {
  color: #FF3D85 !important;
}

a.text-accent:hover, a.text-accent:focus {
  color: #e93577 !important;
}

.text-secondary {
  color: #645F88 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #59547c !important;
}

.text-success {
  color: #35bb78 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #28a868 !important;
}

.text-info {
  color: #05B4E1 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #07a2c8 !important;
}

.text-warning {
  color: #FAC14D !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ebb039 !important;
}

.text-danger {
  color: #FF4943 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #e73832 !important;
}

.text-grey {
  color: #8e8aad !important;
}

a.text-grey:hover, a.text-grey:focus {
  color: #7d7a99 !important;
}

.text-light {
  color: #F6F5FC !important;
}

a.text-light:hover, a.text-light:focus {
  color: #EDECF5 !important;
}

.text-dark {
  color: #2D2B3A !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d1b25 !important;
}

.text-body {
  color: #3f3d4d !important;
}


.border-primary {
  border-color: #0055BC !important;
}

.border-accent {
  border-color: #FF3D85 !important;
}

.border-secondary {
  border-color: #645F88 !important;
}

.border-success {
  border-color: #35bb78 !important;
}

.border-info {
  border-color: #05B4E1 !important;
}

.border-warning {
  border-color: #FAC14D !important;
}

.border-danger {
  border-color: #FF4943 !important;
}

.border-grey {
  border-color: #B4B2C5 !important;
}

.border-light {
  border-color: #F6F5FC !important;
}

.border-dark {
  border-color: #2D2B3A !important;
}

.navbar {
  min-height: 70px;
}

.navbar.sticky {
  z-index: 1080;
}

.navbar.sticky.fixed ~ * {
  margin-top: 70px;
}

.navbar.sticky.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: navTransition .5s ease;
  box-shadow: 0 2px 6px rgba(100, 95, 136, 0.15);
  z-index: 1080;
}

@keyframes navTransition {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.navbar-brand {
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-nav {
  margin-top: 10px;
  border-top: 1px solid #e4e7ee;
  flex-shrink: 0;
}

.navbar-nav .nav-link {
  transition: all .2s ease;
}

.navbar-nav .btn {
  font-size: 14px;
}

.navbar-light .navbar-nav .nav-link {
	font-size: 14px;
	font-weight: 500;
  color: #0f122a;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: #7bb03b;
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #7bb03b;
}


@media (min-width: 576px) {
  .navbar-expand-sm .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-sm .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-md .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-lg .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-xl .navbar-nav {
    align-items: center;
  }
}

/** page-section **/
.page-section {
	margin-bottom: 3rem;
}
.page-section .text-left {
	border-left: 6px solid #7bb03b;
	padding-left: 1rem;
}
.page-section .text-left .title {
	font-size: 28px;
	font-weight: 600;
	color: #0f122a;
	line-height: 1;
	margin-bottom: 0.5rem;
}
.page-section .text-left .subhead {
	font-size: 16px;
	font-weight: 500;
	color: #6b7280;
}
/** pagesection **/

/** top-header **/
.top-header {
	background-color: #0f122a;
}
.top-header .container {
	display: flex;
	justify-content: flex-end;
	line-height: 40px;
	color: white;
	font-size: 14px;
}
.top-header .container span img {
	width: 20px;
	margin-right: 0.5rem;
}
.top-header .container .item-section span {
	margin-left: 2rem;
}
/** top-header **/

/** section-one **/
.section-one .container {
	background: linear-gradient(to right, #f9fafb, #ffffff);
}
.section-one .container .row {
	padding: 1rem;
}
.section-one .container .flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.section-one .tag-section {
	background-color: #ecf3e7;
  color: #7bb03b;
	text-align: center;
	line-height: 28px;
	border-radius: 14px;
	font-size: 16px;
	padding: 0 1rem;
	margin-bottom: 1rem;
	margin-right: 0.5rem;
}
.section-one .title-section {
	margin-bottom: 2rem;
}
.section-one .title-section h1 {
	font-size: 48px;
	font-weight: 600;
	margin: 0;
}
.section-one .list-section {
	background-color: #ecf3e7;
	border-left: 2px solid #7bb03b;
	border-radius: 0 28px 28px 0;
	height: 56px;
	line-height: 56px;
	margin-top: 1rem;
	padding-left: 1rem;
}
.section-one .list-section img {
	margin-right: 0.5rem;
}
.section-one .list-section span {
	font-size: 18px;
	font-weight: 600;
}
.section-one .container img {
	box-shadow: 0 0 10px rgba(0, 0, 0, .068);
}
.section-one #productCarousel .carousel-item img {
		width: 100%;
		height: auto;
		object-fit: cover; /* 保持图片比例并覆盖容器 */
}

/* ------------------- 优化箭头样式 ------------------- */
.section-one #productCarousel .carousel-control-prev,
.section-one #productCarousel .carousel-control-next {
		width: 50px;
		height: 50px;
		top: 50%;
		transform: translateY(-50%);
		background-color: rgba(0, 0, 0, 0); /* 半透明黑色背景 */
		border: none;
		opacity: 0.8;
		transition: all 0.3s ease; /* 平滑过渡效果 */
}

/* 调整箭头位置 */
.section-one #productCarousel .carousel-control-prev {
		left: 20px;
}

.section-one #productCarousel .carousel-control-next {
		right: 20px;
}

/* 鼠标悬停效果 */
.section-one #productCarousel .carousel-control-prev:hover,
.section-one #productCarousel .carousel-control-next:hover {
		background-color: rgba(0, 0, 0, 0.8);
		opacity: 1;
}

/* ------------------- 优化圆点样式 ------------------- */
.section-one #productCarousel .carousel-indicators {
		bottom: 20px; /* 将圆点移到轮播图下方 */
}

.section-one #productCarousel .carousel-indicators button {
		width: 12px;
		height: 12px;
		border-radius: 50%; /* 圆形圆点 */
		background-color: #ccc; /* 默认灰色 */
		border: none;
		margin: 0 5px; /* 增加圆点间距 */
		transition: all 0.3s ease;
}

.section-one #productCarousel .carousel-indicators button.active {
		background-color: #7bb03b; /* 使用你logo中的绿色作为激活颜色 */
		transform: scale(1.2); /* 激活时稍微放大 */
}
/** section-one **/

/** section-two **/
.section-two .container {
	padding: 0;
}
.section-two .features {
  border-radius: 10px;
  border-top: 6px solid;
  border-left: 2px solid;
  border-right: 2px solid;
  border-bottom: 2px solid;
}
.section-two .features img {
	border-radius: 10px 10px 0 0;
}
.section-two .features.features-one {
	border-color: #7bb03b;
	background-color: #7bb03b;
}
.section-two .features.features-two {
	border-color: #3b82f6;
	background-color: #3b82f6;
}
.section-two .features.features-three {
	border-color: #f97316;
	background-color: #f97316;
}
.section-two .features .features-item {
	background-color: white;
	border-radius: 0 0 10px 10px;
	padding: 1.5rem 1rem;
}
.section-two .features h1 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #0f122a;
}
.section-two .features p {
	font-size: 14px;
	margin-bottom: 0.5rem;
	color: #6b7280;
}
.section-two .features p span {
	margin-right: 0.25rem;
}
.section-two .tag-section {
	height: 28px;
	line-height: 28px;
}
.section-two .tag-section span {
	background-color: #ecf3e7;
	color: #7bb03b;
	padding: 0.25rem 0.5rem;
	font-size: 14px;
}
.section-two .btn-button {
	display: block;
	text-align: center;
	margin-top: 2rem;
	border: 1px solid #6b7280;
	border-radius: 4px;
	font-size: 14px;
	color: #6b7280;
	line-height: 32px;
}
.page-product .container {
	background-color: #f9fafb;
	padding: 2.5rem 1rem;
}
.page-product .container .title {
	font-size: 28px;
	font-weight: 600;
	color: #7bb03b;
}
.page-product .container .text-left {
  border: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.page-product .features img {
	border-radius: 10px;
}
/** section-two **/

/** section-three **/
.section-three .container {
	background-color: #f9fafb;
	padding: 2.5rem 1rem;
}
.section-three .container .title {
	font-size: 28px;
	font-weight: 600;
	color: #7bb03b;
}
.section-three .btn-section {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 1rem 0 1.5rem;
}
.section-three .btn-section span {
	margin-right: 1rem;
	font-size: 14px;
}
.section-three .btn-section button {
	margin-left: 1rem;
	border: 1px solid #6b7280;
	outline: none;
	background-color: white;
	padding: 0 1rem;
	line-height: 24px;
	border-radius: 12px;
	color: #6b7280;
	font-size: 14px;
}
.section-three .features-bg {
	position: relative;
	cursor: pointer;
}
.section-three .features-bg img {
	border-radius: 10px;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	transition: .3s;
}
.section-three .features-bg img:hover {
	box-shadow: 0 0 12px rgba(0, 0, 0, .28);
}
.section-three .features-item {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.5rem 1rem;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .68));
	border-radius: 0 0 10px 10px;
}
.section-three .features-item .tag-section {
	background-color: #7bb03b;
	color: #ecf3e7;
	font-size: 14px;
	padding: 0.2rem 1rem;
	border-radius: 4px;
}
.section-three .features-item h1 {
	font-size: 16px;
	color: white;
	margin-top: 0.5rem;
}
.section-three .btn-link {
	background-color: white;
	border: 1px solid rgba(0, 0, 0, .068);
	border-radius: 4px;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
}
.section-three .btn-link h1 {
	font-size: 20px;
	font-weight: 600;
	color: #0f122a;
}
.section-three .btn-link h2 {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}
.section-three .btn-link a {
	background-color: #7bb03b;
	color: #ecf3e7;
	border: none;
	outline: none;
	border-radius: 4px;
	font-size: 14px;
	padding: 0.25rem 1rem;
}
/** section-three **/

/** section-four **/
.section-four .container .title {
	font-size: 28px;
	font-weight: 600;
	color: #005a9c;
}
.section-four .row {
	background-color: #f9fafb;
	padding: 2.5rem 1rem;
	border-radius: 20px;
	box-shadow: 0 0 2px rgba(0, 0, 0, .18);
}
.section-four .left-section {
	background-color: #ffedd5;
	border-radius: 4px;
	padding: 1.5rem 1rem;
}
.section-four .title-section h1 {
	font-size: 24px;
	font-weight: 600;
	color: #7bb03b;
}
.section-four .title-section p {
	text-align: justify;
	font-size: 16px;
  background-color: rgba(123, 176, 59, .08);
	padding: 1rem;
}
.section-four .left-section h1 {
	color: #9a3412;
	font-size: 24px;
	font-weight: 600;
}
.section-four .left-section h2 {
	color: #a4674d;
	font-size: 16px;
	margin-bottom: 1rem;
}
.section-four .left-section p {
	font-size: 16px;
	margin: 0;
	color: #0f122a;
}
.section-four .left-section p span {
	font-size: 24px;
	margin-right: 0.5rem;
	color: #a4674d;
}
.section-four .right-section h1 {
	font-size: 20px;
	font-weight: 600;
	color: #005a9c;
}
.section-four .list-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 1rem;
}
.section-four .list-section img {
	display: block;
	width: 60px;
}
.section-four .item-section {
	width: calc(100% - 70px);
	margin-top: 0.25rem;
}
.section-four .item-section h2 {
	font-size: 16px;
	background-color: #7bb03b;
	border-radius: 4px;
	color: white;
	padding: 0.25rem 0.5rem;
	margin-bottom: 0.25rem;
}
.section-four .item-section.active h2 {
	background-color: #005a9c;
}
.section-four .item-section span {
	font-size: 14px;
	line-height: 1;
}
/** section-four **/

/** section-five **/
.section-five .container {
	padding: 0;
}
.section-five .list-section {
	background-color: #f9fafb;
	border-radius: 4px;
	border-bottom: 3px solid #7bb03b;
	padding: 1rem 2rem;
	text-align: center;
}
.section-five .list-section h1 {
	font-size: 18px;
	font-weight: 600;
	color: #0f122a;
}
.section-five .list-section p {
	font-size: 16px;
	color: #6b7280;
	height: 40px;
	line-height: 20px;
	margin-bottom: 0;
}
.section-five .carousel {
	margin-top: 0.5rem;
}
.section-five .carousel img {
	border-radius: 20px;
}
.section-five .carousel-indicators button {
	width: 16px;
	height: 16px;
	border-radius: 8px;
	padding: 0;
	margin: 0 0.25rem 0.5rem;
	outline: none;
	border: 1px solid #6b7280;
}
.section-five .carousel-control-prev,
.section-five .carousel-control-next {
	border: none;
	background-color: rgba(0, 0, 0, 0);
	width: 6%;
}
.section-five .carousel-caption {
	text-align: left;
	top: 0;
	height: 100%;
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	transform: none;
}
.section-five .carousel-caption div {
	width: 50%;
}
.section-five .carousel-caption h1 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.section-five .carousel-caption p {
	font-size: 16px;
	margin: 0;
}

/* 轮播指示器模块样式 - 核心修改 */
.section-five .section.carousel-indicator-item {
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.section-five .carousel-indicator-item.active .list-section {
  background-color: rgba(123, 176, 59, .08);
}
/* 隐藏原有轮播白色圆点 */
.section-five .carousel-indicators {
  display: none !important;
}
/** section-five **/

.page-footer {
  position: relative;
  display: block;
	background-color: #0f122a;
}
.page-footer .container {
	padding: 2rem 2rem 1rem;
}
.page-footer .container h5 {
	font-size: 20px;
	font-weight: 600;
	color: white;
	margin-bottom: 1rem;
}
.page-footer .container .text-right h5 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.page-footer .container .text-right button {
	background-color: rgba(0, 0, 0, 0);
	border: none;
	outline: none;
	margin-left: 0.5rem;
	padding: 0;
}
.page-footer .container .text-right button img{
	width: 40px;
}
.page-footer .container .footer-menu {
	padding: 0;
}
.page-footer .container .footer-menu li {
  margin-bottom: 0.25;
	list-style: none;
}
.page-footer .container .footer-menu a {
  color: #9ca3af;
  font-size: 14px;
}
.page-footer .container .footer-link {
	padding-top: 1rem;
	margin-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .18);
	font-size: 14px;
	color: white;
}
