/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 5px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ddd;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  background-color: #0547c5;
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  padding: 0;
  color: #fff;
  text-align: center;

  border: 0;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #0547c5;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0px;
}

.carousel-control-next {
  right: 0px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/* Carousel 1 base class */
.jzp-carousel-1 {
	
}
.jzp-carousel-1 .carousel-inner {
	background: rgba(0, 0, 0, 0.2) url(../images/bg-about.jpg) no-repeat center 50%;
    background-blend-mode: overlay;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
   
}


.jzp-carousel-1 #jzp-carousel-1 .carousel-item {
  height: 100vh;
	text-align:center;
}
.jzp-carousel-1 #jzp-carousel-1 .carousel-item img {
	  max-width: 100%;
      height: auto;


}

.jzp-carousel-1 #jzp-carousel-1 .carousel-caption {
  position: absolute;
  top:0px;
	bottom:0px;
	left:0px;
	right:0px;
   background:rgba(0,0,0,0);
   width:100%;
   height:auto;
   
  z-index: 10;
}
.jzp-carousel-1 #jzp-carousel-1 .carousel-caption h2{
  
}
.jzp-carousel-1 #jzp-carousel-1 .carousel-caption p{
	color:#fff;
}


@media (max-width: 992px) {
.jzp-carousel-1 #jzp-carousel-1 .carousel-item {
  
	height: 75vh;
}
.jzp-carousel-1 #jzp-carousel-1 .carousel-item img{

	  max-width: 100%;
      height:auto;
	 
	  

}
}



/*======= index-about-two =========*/

.bg-about {
	background: url(../images/bg-about.jpg) no-repeat center 50%;
	background-size: cover;
    background-attachment:fixed;
	position: relative;
    z-index: 1;
	color:#fff;
}
.bg-about:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.75));
  content: "";
  z-index: -1;

}
.index-about-two {

}

.index-about-two .img-box {
  position: relative;
  padding: 0 15px 15px 0;
}

.index-about-two .img-box img {
  position: relative;
  max-width: 100%;
  z-index:1;
}

.index-about-two .img-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  background-color: none;
  border:solid 5px #0547c5;
  z-index: 1;
  opacity: 0.95;
}



.index-about-two .counter-number {
  position: relative;
  text-align:center;
}
.index-about-two .counter-number::after {
  background: #f1f2f3;
  bottom: 0;
  content: "";
  height: 50px;
  margin-top: -30px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  z-index: 1;
}

@media (max-width: 767px) {
.index-about-two .counter-number::after {
  background: #0547c5;
  bottom: 0;
  content: "";
  height: 50px;
  margin-top: -30px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0px;
}
}

.index-about-two .col-item:last-child .counter-number::after {
  width: 0px;
}

.index-about-two .counter-number h1{
	font-size:3.25em;
}
.index-about-two .col-item:nth-child(1) .counter-number h1{
	color:#00cde5;
}
.index-about-two .col-item:nth-child(2) .counter-number h1{
	color:#ff5e5e;
}
.index-about-two .col-item:nth-child(3) .counter-number h1{
	color:#5bb286;
}
.index-about-two .col-item:nth-child(4) .counter-number h1{
	color:#f9b73f;
}
.index-about-two .col-item:nth-child(5) .counter-number h1{
	color:#6177ff;
}
.index-about-two .col-item:nth-child(6) .counter-number h1{
	color:#b540ff;
}
.index-about-two .counter-number p{
    margin-top:0px;
	
	color:#666666;
}


/*======= news-list =========*/


.news-data {
	
}
.news-data dl{
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding-bottom:25px;
	margin-bottom:25px;
	border-bottom:solid 1px #eee;
}
.news-data dl dt{
	background:#0547c5;
	flex-shrink: 0;
	width:120px;
	height:120px;
	color:#fff;
	text-align:center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}
.news-data dl dt span{
	font-size:2.5em;
	font-weight:normal;
	line-height: 1.1;
}
.news-data dl dd{
	flex: 1;
	min-width: 0;
}
.news-data i{
	color:#0547c5;
	opacity:0.5;
}
/* 移动端：日期块缩小 */
@media (max-width: 767px) {
	.news-data dl dt{
		width: 72px;
		height: 72px;
	}
	.news-data dl dt span{
		font-size: 1.6em;
	}
	.news-data dl dt{
		font-size: 0.75rem;
	}
}

.news-data-rounded-circle {
	
}
.news-data-rounded-circle dl{
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding-bottom:25px;
	margin-bottom:25px;
	border-bottom:solid 1px #eee;
}
.news-data-rounded-circle dl dt{
	border:solid 2px #f8f9fa;
	flex-shrink: 0;
	width:120px;
	height:120px;
	color:#0547c5;
	text-align:center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s;
}
.news-data-rounded-circle dl:hover dt{
	background:#0547c5;
	color:#fff;
}
.news-data-rounded-circle dl dt span{
	font-size:2.5em;
	line-height: 1.1;
}
.news-data-rounded-circle dl dd{
	flex: 1;
	min-width: 0;
}

.news-data-rounded-circle i{
	color:#0547c5;
	opacity:0.5;
}
/* 移动端：圆形日期块缩小 */
@media (max-width: 767px) {
	.news-data-rounded-circle dl dt{
		width: 72px;
		height: 72px;
	}
	.news-data-rounded-circle dl dt span{
		font-size: 1.6em;
	}
}



.news-img {
	padding-bottom:25px;
	margin-bottom:25px;
	border-bottom:solid 1px #eee;
}
.news-img i{
	color:#0547c5;
	opacity:0.5;
}
/*======= Single =========*/

.single {

}

.single  p.info i{
	color: #0547c5;
}
.single p.tags{

}
.single p.tags a{
	background:#fafafa;
	color:#0547c5;
	margin-right:10px;
	padding:6px 10px;
	border-radius:0%;
}
.single p.tags a:hover{
	background:#0547c5;
	color:#fff;
}
.single p a.btn{
	font-size:1em;
}



.single .content,.page .content{

}

.single .content p,.page .content p{
	color: #4f4f4f;
}
.single .content p img,.page .content p img {
	width:100%;
	max-width:100%;
	height:auto;
}
.single figure.wp-block-image img,.page figure.wp-block-image img{
	width:100%;
	max-width:100%;
	height:auto;
}
.single .content .wp-video ,.page .content .wp-video  {
	width:100%;
	max-width:100%;
	height:auto;
	margin:15px auto;
}

.single .content ul,.page .content ul{
	padding:15px;
	background:#f3f3f3;
	border-bottom:solid 0px #0547c5;
}
.single .content ul li,.page .content ul li{
	
}
.single .content ul li,.page .content ul li:before{
    font-family: 'FontAwesome';
	content:"\f00c";
	margin-right:15px;
	color:#888;
}

.single .content blockquote,.page .content blockquote{
	padding:15px 15px 30px 15px;
	background:#f3f3f3;
	border-left:solid 2px #0547c5;
}
.single .content blockquote:before,.page .content blockquote:before{
	font-family: 'FontAwesome';
	content:"\f10d";
	float:left;
	margin-right:30px;
	color:#0547c5;
	opacity: .5;
}
.single .content blockquote:after,.page .content blockquote:after{
	font-family: 'FontAwesome';
	content:"\f10e";
	color:#0547c5;
	float:right;
	opacity: .5;
}


/*======= Sidebar-menu-page =========*/
.sidebar-menu-page {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.sidebar-menu-page ul {
	padding:0px;
}
.sidebar-menu-page ul li {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.sidebar-menu-page ul li:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.sidebar-menu-page ul li:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.sidebar-menu-page ul li:hover, .sidebar-menu-page li:focus {
  z-index: 1;
  text-decoration: none;
}

.sidebar-menu-page ul li.disabled, .sidebar-menu-page li:disabled {
  color: #0547c5;
  background-color: #fff;
}

.sidebar-menu-page ul li.current_page_item {
  z-index: 2;
  color: #fff;
  background-color: #0547c5;
  border-color: #0547c5;
}
.sidebar-menu-page ul li.current_page_item a{
  color: #fff;
}



.sidebar-menu-list-page {
	padding:0;
	margin:0;
}
.sidebar-menu-list-page li {
	padding:0;
	transition:all .5s ease 0s
}
.sidebar-menu-list-page li a {
	color:#1f2a37;
	padding:5px 0;
	width:100%;
	display:inline-block;
}
.sidebar-menu-list-page li a::before {
	background-color:#eee;
	content:"";
	display:inline-block;
	height:2px;
	margin-right:15px;
	position:relative;
	top:-4px;
	transition:all .2s ease 0s;
	width:10px
}
.sidebar-menu-list-page li:hover {
	padding:0 0 0 15px;
	transition:all .5s ease 0s
}
.sidebar-menu-list-page li:hover a {
	color:#0547c5
}
.sidebar-menu-list-page li:hover a::before {
	background-color:#0547c5
}
.sidebar-menu-list-page li.current-menu-item {
	padding:0;
	transition:all .5s ease 0s
}
.sidebar-menu-list-page li.current-menu-item a {
	color:#0547c5
}
.sidebar-menu-list-page li.current-menu-item a::before {
	background-color:#0547c5;
	content:"";
	display:inline-block;
	height:2px;
	margin-right:15px;
	position:relative;
	top:-4px;
	transition:all .2s ease 0s;
	width:10px
}

/*======= Sidebar-menu-page =========*/
.sidebar-news {
	
}
.sidebar-news ul{
	background: url('') no-repeat right bottom;
	margin:0px;
	padding:0px;
}
.sidebar-news ul li{
	
	margin-bottom:10px;
	list-style: none;
	color:#666666;
}

.sidebar-news ul li i{
	color: #0547c5;
	margin-right:10px;
}

/*======= Sidebar-product =========*/

.sidebar-product {
	
}

.sidebar-product ul{
	margin:0px;
	padding:0px;
}
.sidebar-product ul li{
	line-height:2rem;
	border-bottom:dashed 1px #d8d8d8;
	position:relative;
}
.sidebar-product ul li a{
	color: rgba(0, 0, 0, 0.7);
}
.sidebar-product ul li.current-menu-parent a{
	color:#0547c5;
}
.sidebar-product ul li.current-menu-parent:before {
	color:#0547c5;
}

.sidebar-product ul li a:hover{
	color:#0547c5;
}

.sidebar-product ul li:before {
    font-family: 'FontAwesome';
	content:"\f068";
    position: absolute;
	top:0.5rem;
	color:#d8d8d8;
}

/*======= Sidebar-contact =========*/
.sidebar-contact {
	
}
.sidebar-contact ul{
	background: url('') no-repeat right bottom;
	margin:0px;
	padding:0px;
}
.sidebar-contact ul li{
	list-style: none;
	color:#666666;
	margin-bottom:0.5em;
}

.sidebar-contact ul li i{
	color: #0547c5;
	margin-right:10px;
}







.owl-carousel-product {

}
.owl-carousel-product .item{





}

.owl-carousel-product .owl-nav {




	
	top: 15%;
  position: absolute;
  width: 100%;
  left:0;
  right:0;
  text-align:center;



}

.owl-carousel-product .owl-nav .owl-next span{
  position: absolute;
  right: 0px;
  outline: none; }

.owl-carousel-product .owl-nav .owl-prev span{
  position: absolute;
  left: 0px;
  outline: none; }

@media only screen and (max-width: 1024px) {
.owl-carousel-product .owl-nav .owl-next span{
    right: 0px; }
.owl-carousel-product .owl-nav .owl-prev span{
    left:0px; } }

.owl-carousel-product .owl-nav .owl-next span,
.owl-carousel-product .owl-nav .owl-prev span{

   	 font-size:4.5em;
     color:#fff;

	 padding:15px;


	border-radius: 50%;

  }


.owl-carousel-product .owl-nav .owl-next span:hover,.owl-carousel-product .owl-nav .owl-prev span:hover {
	color: #0547c5;
}




.owl-carousel-product .owl-dots {
	margin-top:30px;
	text-align:center;
	display:none;
   
}
.owl-carousel-product .owl-dots .owl-dot {
	display:inline-block;
	zoom:1;
	outline: none;
}
.owl-carousel-product .owl-dots .owl-dot span {
	width:10px;
	height:10px;
	margin:5px 7px;
	background:#D6D6D6;
	display:block;
	-webkit-backface-visibility:visible;
	transition:opacity .2s ease;
	border-radius:30px
}
.owl-carousel-product .owl-dots .owl-dot.active span,.owl-carousel-product .owl-dots .owl-dot:hover span {
	background:#0547c5;
}



.owl-carousel-testimonials-three {
	
}
.owl-carousel-testimonials-three i {
	font-size:3rem;
	opacity: .5;
	color:#0547c5;
}
.owl-carousel-testimonials-three .owl-nav {




	
	bottom: 15%;
  position: absolute;
  width: 100%;
  text-align:center;



}

.owl-carousel-testimonials-three .owl-nav .owl-next span{
  position: absolute;
  right: 0px;
  outline: none; }

.owl-carousel-testimonials-three .owl-nav .owl-prev span{
  position: absolute;
  right: 30px;
  outline: none; }

@media only screen and (max-width: 1024px) {
.owl-carousel-testimonials-three .owl-nav .owl-next span{
    right: 0px; }
.owl-carousel-testimonials-three .owl-nav .owl-prev span{
    right:30px; } }

.owl-carousel-testimonials-three .owl-nav .owl-next span,
.owl-carousel-testimonials-three .owl-nav .owl-prev span{

   	 font-size:3em;
     color:#666666;

	border-radius: 50%;

  }


.owl-carousel-testimonials-three .owl-nav .owl-next span:hover,.owl-carousel-testimonials-three .owl-nav .owl-prev span:hover {
	color: #0547c5;
}




/*------------------------------------
  Concept
------------------------------------*/
.bg-concept {
  background: url(../images/bg-concept.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: left top;
  color:#fff;
}

.bg-concept h4,.bg-concept h5{
  color:#fff;
}



.concept-item {
	color: #fff;
}

.concept-item .icon {
  float: left;
  border: 1px solid #fff;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all .6s ease;
  -moz-transition: all .6s ease;
  -webkit-transition: all .6s ease;
  margin-right:20px;
}

.concept-item .icon i {
  font-size: 36px;
  color: #0547c5;
  line-height: 80px;
}


.concept-item:hover .icon {
  background: #fff;
}

.concept-item:hover .icon i {
  color: #0547c5;
}


.item-card {
	border:solid 2px #f8f9fa;
	transition: all 0.3s;
}



.item-card:hover {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
	border:solid 2px #0547c5;
}

.item-card .services-title-border {
    height: 3px;
    width: 40px;
    margin: 15px auto;
    transition: all 0.5s;
	background-color: #0547c5;
}

.item-card:hover .services-title-border {
    width: 60px;
}

.item-card .services-title-border:hover {
    background-color: #0547c5;
}

.icon-quote {
  border: 4px solid #e5e6e8;
  height: 40px;
  width: 40px;
  line-height: 37px;
  border-radius: 10px;
  font-size: 20px;
}

.icon {
  font-size: 25px;
}

.icon-lg {
  font-size: 50px;
}

.icon-bg-circle {
  position: relative;
}

.icon-bg-circle::after {
  content: '';
  position: absolute;
  width: 68px;
  height: 68px;
  top: -35px;
  left: 15px;
  border-radius: 50%;
  background: inherit;
  opacity: .1;
}

.icon-bg-circle::before {
  z-index: 1;
  position: relative;
}

.icon-bg-square {
  position: relative;
  color:#0547c5;
}

.icon-bg-square::after {
  content: '';
  position: absolute;
  top: -55px;
  left: 73%;
  width: 75px;
  height: 75px;
  -webkit-transform: rotate(50deg) scale(0.8) skew(-1deg, -15deg) translateX(16px) translateY(97px);
          transform: rotate(50deg) scale(0.8) skew(-1deg, -15deg) translateX(16px) translateY(97px);
  background: #f8f9fa;
}
.item-card:hover .icon-bg-square::after {
  background: #f7f8f9;
}
.icon-bg-square::before {
  z-index: 1;
  position: relative;
}

.icon-green {
  color: #2cb663;
}
.icon-orange {
  color: #f4b329;
}
.icon-red {
  color: #f96c6c;
}

.icon-purple {
  color: #bd72d9;
}

.icon-blue {
  color: #249cfa;
}

.icon-cyan {
  color: #0acfd7;
}



.icon-bg-green::after {
  color: #defbea;
}
.icon-bg-orange::after {
  color: #fdf2db;
}
.icon-bg-red::after {
  color: #fde6e6;
}

.icon-bg-purple::after {
  color: #f5e7fb;
}

.icon-bg-blue::after {
  color: #e0f0fc;
}

.icon-bg-cyan::after {
  color: #dffafb;
}





/*======= Project =========*/

.project-one {
	
}
.project-one .filter-button{
	border:solid 1px #0547c5;
	color:#0547c5;
	margin-left:5px;
	margin-right:5px;
	margin-bottom:15px;
}

.project-one .filter-button:hover{
	background:#0547c5;
	color:#fff;

}

.project-one .filter-button.active {
	background:#0547c5;
	color:#fff;
}
.project-one .filter-button:focus {
	background:#0547c5;
	color:#fff;
}


.project-one .filter-item {
    
}

.index-tabs-one {

}
.index-tabs-one .nav-item{
	
}
.index-tabs-one .nav-item .nav-link{
	background:#f8f9fa;
	color:#0547c5;
	margin-left:5px;
	margin-right:5px;
	margin-bottom:15px;
}
.index-tabs-one .nav-item .nav-link.active{
	background:#0547c5;
	color:#fff;
}


/*------------------------------------
  Team
------------------------------------*/
.owl-carousel-team {
	
}
.owl-carousel-team .item{





}

.owl-carousel-team .owl-nav {




	
	top: 15%;
  position: absolute;
  width: 100%;
  text-align:center;
   
  left:0;
  right:0;

}

.owl-carousel-team .owl-nav .owl-next span{
  position: absolute;
  right: 0px;
  outline: none; }

.owl-carousel-team .owl-nav .owl-prev span{
  position: absolute;
  left: 0px;
  outline: none; }

@media only screen and (max-width: 1024px) {
.owl-carousel-team .owl-nav .owl-next span{
    right: 0px; }
.owl-carousel-team .owl-nav .owl-prev span{
    left:0px; } }

.owl-carousel-team .owl-nav .owl-next span,
.owl-carousel-team .owl-nav .owl-prev span{

   	 font-size:4.5em;
     color:#fff;

	 padding:15px;


	border-radius: 50%;

  }


.owl-carousel-team .owl-nav .owl-next span:hover,.owl-carousel-team .owl-nav .owl-prev span:hover {
	color: #0547c5;
}




.owl-carousel-team .owl-dots {
	margin-top:30px;
	text-align:center;
	display:none;

}
.owl-carousel-team .owl-dots .owl-dot {
	display:inline-block;
	zoom:1;
	outline: none;
}
.owl-carousel-team .owl-dots .owl-dot span {
	width:10px;
	height:10px;
	margin:5px 7px;
	background:#D6D6D6;
	display:block;
	-webkit-backface-visibility:visible;
	transition:opacity .2s ease;
	border-radius:30px
}
.owl-carousel-team .owl-dots .owl-dot.active span,.owl-carousel-team .owl-dots .owl-dot:hover span {
	background:#0547c5;
}


/*======= index-contact =========*/

.index-contact {

}


.index-contact i.fa {
	font-size: 1.75rem;
	color:#fff;
	position: absolute;
	text-align: center;
	width:3rem;
	height:3rem;
	line-height:2.75rem;
	border:solid 2px #eee;

}

.index-contact h5 {
	margin-left:4rem;
	color: #f5f5f5;
}
.index-contact h5 small {
	display: block;
    font-size:1rem;
	color:#f5f5f5;
}/* CSS added on: 223!_>)<1^99(1*08+5 2025-10-08 10:00:32 */
