/* -------------------------------------------------------------------
   Base                               
   ------------------------ /
 * 01.Base
 * 02.Typography
 * 03.Helper Class
   ------------------------ /
   Components                               
   ------------------------ /
 * 04.Buttons  
   ------------------------ /
   Layout                               
   ------------------------ /
 * 05.Navbar
 * 06.Hero 
 * 07.Features 
 * 08.Footer
 * 09.Responsive

/* ---------------------------------------------------------------- */
/* 01.Base                               
/* ---------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

body, html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #677294;
}

a:link, a:hover, a:active, a:visited {
  text-decoration: none;
  color: #677294;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

textarea, textarea:focus, input, input:focus, button, button:focus {
  outline: none;
  resize: inherit;
}

/* ---------------------------------------------------------------- */
/* 02.Typography                                                  
/* ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  color: #000;
  line-height: 1.3;
  text-transform: capitalize;
}

h1, .h1 {
  font-size: 55px;
}

h2, .h2 {
  font-size: 42px;
}

h3, .h3 {
  font-size: 44px;
}

h4, .h4 {
  font-size: 22px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

p {
  color: #677294;
  margin: 0;
  line-height: 28px;
}

.colum-text {
  text-align: center;
}

/* ---------------------------------------------------------------- */
/* 03.Helper Class                                                  
/* ---------------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-heading .section-title {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.section-heading .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  background: #23c87a;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bg-light-grey {
  background: #f1f2f6;
}

.pb-minus-70 {
  padding-bottom: 70px;
}

/* ---------------------------------------------------------------- */
/* 04.Buttons                                                   
/* ---------------------------------------------------------------- */
.button {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 5px;
  border: none;
  outline: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.button.default-button {
  background: #23c87a;
  color: #fff;
}

.button.default-button:hover {
  background: #1da565;
}

/* ---------------------------------------------------------------- */
/* 05.Navbar                                                   
/* ---------------------------------------------------------------- */
.header {
  padding: 10px 0;
  z-index: 3333;
  background: linear-gradient(rgba(0, 0, 0, .7), transparent);
}

.header ul li {
  list-style-type: none;
}

.header .nav-link {
  font-size: 16px;
  font-weight: 700;
  padding: 30px 20px !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  position: relative;
  color: #fff;
  line-height: 28px;
}
@media (min-width: 1300px) {
	.header .nav-link {
		padding: 30px 25px !important;
	}
}
.header .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background-color: #23c87a;
}

.header .nav-link:not(.active)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  z-index: -7;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  background-color: #0e6fb5;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.header .nav-link:not(.active):hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.header .nav-link.signup-btn-toggle:after, .header .nav-link.login-btn-toggle:after {
  display: none;
}

.header .dropdown-menu {
  border: 0;
  background: #fff;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: 0px 13px 35px 0 rgba(43, 50, 54, 0.2);
          box-shadow: 0px 13px 35px 0 rgba(43, 50, 54, 0.2);
}

.header .dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 14px 28px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header .dropdown-menu .dropdown-item:focus, .header .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background-color: #0e6fb5;
  padding-left: 22px;
}

.header .dropdown-toggle {
  padding-right: 25px !important;
}

.header .dropdown-toggle:before {
  content: "\f078";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  font-weight: 700;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .dropdown-toggle[aria-expanded="true"]:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 30px;
}

.header .navbar-toggler {
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0 10px 0 0;
}

.header .navbar-toggler .togler-icon-inner > span {
  height: 3px;
  margin: 5px;
  width: 30px;
  display: block;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .navbar-toggler .togler-icon-inner > span:nth-child(2) {
  width: 20px !important;
  margin-left: auto;
}

.header .navbar-toggler .togler-icon-inner > span:last-child {
  margin-bottom: 0;
}

.header .navbar-toggler[aria-expanded="true"] .togler-icon-inner > span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.header .navbar-toggler[aria-expanded="true"] .togler-icon-inner > span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

.header .navbar-toggler[aria-expanded="true"] .togler-icon-inner > span:nth-child(2) {
  opacity: 0;
}

.header .login-btn-mobile, .header .signup-btn-mobile {
  display: none;
}

.header .navbar-brand {
  color: #fff;
  text-transform: capitalize;
  margin-right: 0;
  padding: 0;
}

.header .navbar-brand img {
  display: none;
}
.header .navbar-brand img.logo-normal{
	height:60px;
}
@media (max-width:992px){
	.header .navbar-brand img{
	height:60px;
}
}
@media (max-width:768px){
	.header .navbar-brand img{
	height:50px;
}
}
@media (max-width:576px){
	.header .navbar-brand img{
	height:40px;
}
}
.header .navbar-brand img.logo-transparent {
  display: block;
}

.header.header-shrink {
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0px 13px 35px -12px rgba(43, 50, 54, 0.2);
          box-shadow: 0px 13px 35px -12px rgba(43, 50, 54, 0.2);
  -webkit-animation: stickyMenu 0.7s ease-in-out;
          animation: stickyMenu 0.7s ease-in-out;
}

.header.header-shrink .nav-link {
  color: #555 !important;
}

.header.header-shrink .togler-icon-inner > span {
  background-color: #000;
}

.header.header-shrink .navbar-brand {
  color: #23c87a;
}

#login-form {
  z-index: 6666;
}

#signup-form {
  z-index: 7777;
}

.laus-form-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 450px;
  display: none;
  -webkit-box-shadow: 0px 23px 49px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0px 23px 49px 0 rgba(0, 0, 0, 0.3);
}

.laus-form-header {
  padding: 20px 30px;
  background: #23c87a;
  color: #fff;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.laus-form-header .laus-form-title {
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: center;
}

.form-link-margin {
  margin-top: 20px;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-link-margin a {
  color: #000;
}

.form-link-margin a:hover {
  color: #23c87a;
}

.laus-form-inner {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 5px 5px;
}

.laus-form-group {
  position: relative;
  overflow: hidden;
}

.laus-form-group .laus-form-control {
  margin-bottom: 20px;
  height: 60px;
  outline: none;
  padding: 0 20px 0 50px;
  border: none;
  color: #000;
  width: 100%;
  -webkit-box-shadow: 0px 13px 35px -12px rgba(43, 50, 54, 0.2);
          box-shadow: 0px 13px 35px -12px rgba(43, 50, 54, 0.2);
}

.laus-form-group .laus-form-control :focus {
  outline: none;
  border: none;
  color: #000;
  -webkit-box-shadow: 0px 10px 26px 0px rgba(43, 50, 54, 0.2);
          box-shadow: 0px 10px 26px 0px rgba(43, 50, 54, 0.2);
}

.laus-form-group > span {
  position: absolute;
  top: 22px;
  left: 16px;
  font-size: 16px;
  color: #23c87a;
  border-radius: 0 5px 5px 0;
}

.laus-form-control, .laus-form-btn {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.laus-form-btn {
  border: none;
  outline: none;
  border-radius: 5px;
  width: 100%;
  padding: 20px 60px;
  color: #fff !important;
  background: #23c87a;
  text-transform: capitalize;
  display: block;
}

.laus-form-pt {
  padding-top: 20px;
}

.custom-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: auto;
  line-height: 26px;
}

.custom-control-label {
  margin-left: 15px;
  padding-left: 10px;
  color: #000;
}

.custom-control-label::before {
  background-color: #fff;
  border: 1px solid #23c87a;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #23c87a;
  background: #23c87a;
}

.form-close-btn {
  border: none;
  background: transparent;
  color: #fff;
}

.form-close-btn i {
  font-weight: 600;
}

@-webkit-keyframes stickyMenu {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes stickyMenu {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* ---------------------------------------------------------------- */
/* 06.Hero                                                   
/* ---------------------------------------------------------------- */
.hero {
  height: 850px;
  background: #0033cc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero h2, .hero h1, .hero p {
  color: #fff;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 10px;
}

.hero p {
  line-height: 28px;
  margin-bottom: 60px;
  opacity: 0.85;
}

/* ---------------------------------------------------------------- */
/* 07.Features                                                   
/* ---------------------------------------------------------------- */
.features-box {
  padding: 30px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 10px 0 rgba(43, 50, 54, 0.2);
          box-shadow: 0 6px 10px 0 rgba(43, 50, 54, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.features-box:hover {
  -webkit-box-shadow: 0 22px 49px 0 rgba(43, 50, 54, 0.2);
          box-shadow: 0 22px 49px 0 rgba(43, 50, 54, 0.2);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.features-box .features-icon i {
  color: #fff;
  font-size: 40px;
  margin-left: 0;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #23c87a;
}

/* ---------------------------------------------------------------- */
/* 08.Footer                                                   
/* ---------------------------------------------------------------- */
.footer {
  background: #0033cc;
}

.footer .copyright-wrap {
  padding: 30px;
}

.footer .copyright-wrap .copyright-inner .copyright-text {
  text-align: center;
  color: #fff;
  opacity: 0.85;
}

/* ---------------------------------------------------------------- */
/* 09.Responsive                                                   
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media screen and (max-width: 991.98px) {
  .header .container, .header, .header ul li {
    padding: 0;
  }
  .header .container {
    max-width: 100%;
  }
  .header .navbar-nav .nav-link {
    color: #000;
    padding: 10px 15px !important;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    border-bottom: 1px solid #f1f1f1;
  }
  .header .navbar-nav .nav-link:after {
    display: none;
  }
  .header .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
  .header .navbar-nav .dropdown-toggle:before {
    top: 27px;
    right: 20px;
  }
  .header .navbar-nav .dropdown-toggle[aria-expanded="true"]:before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    top: 11px;
  }
  .header .navbar-nav .dropdown-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #f1f2f6;
  }
  .header .navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #23c87a;
  }
  .header .main-menu {
    background: #fff;
  }
  .header .navbar-nav .nav-link:not(.active):hover, .header .navbar-nav .nav-link.active {
    background: #23c87a;
    color: #fff !important;
    border-color: #23c87a;
  }
  .header .navbar-brand {
    padding: 10px 0 10px 15px;
  }
  .header .login-btn-mobile, .header .signup-btn-mobile {
    display: block;
    position: absolute;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
  }
  .header .signup-btn-mobile {
    right: 65px;
  }
  .header .login-btn-mobile {
    right: 110px;
  }
  .header.header-shrink .login-btn-mobile, .header.header-shrink .signup-btn-mobile {
    color: #000;
  }
  /* Login & Sign Up Form  */
  .login-btn-resp, .signup-btn-resp {
    display: none;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Large devices (desktop, less than min-width: 992px)
/* ---------------------------------------------------------------- */
@media screen and (min-width: 992px) {
  .dropdown-menu {
    position: absolute;
    top: 80%;
    left: 0;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    display: initial;
    min-width: 250px;
    color: #000;
    border: 0;
    border-radius: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .dropdown-menu.show {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* ------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .laus-form-wrap {
    width: 80%;
  }
  .laus-form-inner {
    padding: 15px;
  }
  .laus-form-group {
    position: relative;
    overflow: hidden;
  }
  .laus-form-group .laus-form-control {
    margin-bottom: 15px;
    height: 50px;
  }
  .laus-form-group > span {
    position: absolute;
    top: 17px;
    left: 16px;
    font-size: 14px;
  }
  .laus-form-btn {
    padding: 15px 50px;
  }
  .laus-form-header {
    padding: 15px 30px;
  }
  body, html {
    font-size: 14px;
  }
}
/*product*/

        .container2{
            display: flex;
            width: 100%;
            max-width: 1920px;
            margin: -10px auto;
            background-color: #fff;
            overflow: hidden;
        }
        /* 左侧导航 */
        .left-nav2 {
            width: 50%;
            padding: 60px 8.5%;
            background-color: #f9f9f9;
            position: relative;
            z-index: 2;
        }
        .left-nav2 h1 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .left-nav2 .subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 60px;
            line-height: 1.6;
        }
        .nav-list2 {
            list-style: none;
            margin-bottom: 60px;
			border-left: 1px solid #ddd;
        }
        .nav-list2 li {
            padding: 18px 0;
            padding-left: 20px;
            border-left: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #333;
        }
        .nav-list2 li.active {
            border-left-color: #0d6eb5;
            color: #0d6eb5;
            font-weight: 500;
        }
        .nav-list2 li:hover {
            border-left-color: #0d6eb5;
            color: #0d6eb5;
        }
        /* 产品信息区 */
        .product-info {
            margin-bottom: 40px;
        }
        .product-info h2 {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 25px;
        }
        .product-info p {
            font-size: 14px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .product-meta {
            display: flex;
            gap: 60px;
            font-size: 14px;
            color: #666;
            margin-bottom: 60px;
        }
        .btn-more {
            padding: 12px 40px;
            background-color: #0d6eb5;
            color: #fff;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        .btn-more:hover {
            background-color: #139646;
        }
        /* 右侧展示区 */
        .right-show {
            width: 70%;
            position: relative;
            background-color: #f0f0f0;
        }
        .bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: background-image 0.5s ease;
        }
        .tile-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .tile {
            position: absolute;
            transition: all 0.5s ease;
        }
        /* 切换按钮 */
        .switch-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.3);
            border: none;
            font-size: 20px;
            cursor: pointer;
            z-index: 3;
            transition: background-color 0.3s;
        }
        .switch-btn:hover {
            background-color: #fff;
        }
        .prev-btn {
            left: 20px;
        }
        .next-btn {
            right: 20px;
        }
/*news*/
.news-container {
            max-width: 85%;
            margin: 0 auto;
            padding: 60px 0;
        }
		@media screen and (min-width:776px){
		.news-h1{
			display: flex;
			justify-content: space-between;
		}
		}
        .news-header {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .news-logo {
            width: 65px;
            height: auto;
            margin-right: 15px;
        }
        .news-title {
            font-size: 28px;
            font-weight: bold;
            margin-right: 20px;
        }
        .news-subtitle {
            color: #666;
            font-size: 16px;
        }
        .tab-nav {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 10px 25px;
            border: none;
            border-radius: 25px;
            background-color: #e9ecef;
            color: #333;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
			height: 40px;
        }
		.tab-btn:hover{
            padding: 10px 25px;
            border: none;
            border-radius: 25px;
            background-color: #0e6fb5;
            color: #fff;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
			height: 40px;
        }
        .tab-btn.active {
            background-color: #0d6eb5;
            color: #fff;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .featured-news {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .featured-item {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .featured-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            position: relative;
        }
        .date-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #c82333;
            color: #fff;
            padding: 8px 15px;
            text-align: center;
        }
        .date-badge .day {
            font-size: 24px;
            font-weight: bold;
        }
        .date-badge .month {
            font-size: 14px;
        }
        .featured-info {
            padding: 20px;
        }
        .featured-date {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .featured-link {
            color: #0d6eb5;
            font-size: 14px;
            text-decoration: none;
            float: right;
        }
        .featured-title {
            font-size: 18px;
            font-weight: bold;
            margin-top: 10px;
            line-height: 1.5;
        }
        
        .news-item {
            background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 23%;
    margin-top: 1%;
        }
        .news-title {
            font-size: 36px;
            font-weight: bold;
            line-height: 1.4;
			color:#0d6eb5;
        }
		.news-title2{
			font-size: 18px;
            font-weight: bold;
            line-height: 1.4;
		}
        .news-desc {
            font-size: 13px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .news-link {
            color: #0d6eb5;
            text-decoration: none;
        }
        .news-date {
            color: #999;
        }
		.news-list {
            display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
        }
		@media screen and (max-width:776px){
		.news-item {
            background-color: #fff;
			border-radius: 8px;
			padding: 20px;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			width: 46%;
			margin-top: 1%;
        }
		}
/*about*/
.banner {
            position: relative;
            width: 100%;
            background: linear-gradient(90deg, #4a90e2 0%, #64b5f6 100%);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .banner-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
            z-index: 1;
        }
        .banner-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 90px 20px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .vertical-text {
            position: absolute;
            left: -10px;
            top: 40%;
            z-index: 99;
            transform: translateY(-50%);
            font-size: 80px;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.1);
            writing-mode: vertical-rl;
            letter-spacing: 10px;
            display: none;
        }
        .vertical-text img {
            height: 520px;
            opacity: 0.2;
        }
        .title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .desc {
            font-size: 18px;
            line-height: 1.8;
            max-width: 600px;
            margin-bottom: 40px;
        }
        .btn-more {
            width: 150px;
            height: 50px;
            background: #00a86b;
            border: none;
            border-radius: 4px;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s;
            margin-bottom: 40px;
        }
        .btn-more:hover {
            background: #008f5a;
        }
        /* 资质荣誉区域 */
        .cert-section {
            width: 100%;
            max-width: 600px;
        }
        .cert-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #fff;
            writing-mode: horizontal-tb;
        }
        .cert-slider {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            padding: 10px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .cert-slider::-webkit-scrollbar {
            display: none;
        }
        .cert-item {
            min-width: 120px;
            height: 180px;
            background: #fff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }
        .cert-item img {
            max-width: 90%;
            max-height: 90%;
        }
        /* 数据面板 */
        .data-panel {
            position: relative;
            margin-top: 40px;
            background: rgba(0,0,0,0.6);
            border-radius: 8px;
            overflow: hidden;
            width: 100%;
            max-width: 600px;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }
        .data-item {
            padding: 20px 15px;
            color: #fff;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .data-item:last-child {
            border-bottom: none;
        }
        .data-value {
            font-size: 20px;
            font-weight: bold;
            margin-top: 5px;
        }
        /* 视频容器和播放按钮 */
        .video-container {
            position: absolute;
            right: 25%;
            top: 40%;
            transform: translateY(-50%);
            z-index: 3;
        }
        .play-btn {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #2d8cf0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.3s ease;
        }
        .play-icon {
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 20px 0 20px 30px;
            border-color: transparent transparent transparent #ffffff;
            margin-left: 5px;
        }
        .play-btn::before,
        .play-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 2px solid #2d8cf0;
            animation: pulse 3s infinite ease-out;
            z-index: -1;
        }
        .play-btn::before {
            width: 110%;
            height: 110%;
            animation-delay: 0s;
        }
        .play-btn::after {
            width: 130%;
            height: 130%;
            animation-delay: 0.8s;
        }
        @keyframes pulse {
            0% {
                width: 100%;
                height: 100%;
                opacity: 1;
            }
            100% {
                width: 200%;
                height: 200%;
                opacity: 0;
            }
        }
        .play-btn:hover {
            background-color: #1c7ed6;
            transform: scale(1.05);
        }
        /* 视频弹窗 */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        .video-modal.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            width: 90%;
            max-width: 1000px;
            background-color: #ffffff;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            transform: scale(0.8);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
        }
        .video-modal.active .modal-content {
            transform: scale(1);
            opacity: 1;
        }
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            z-index: 1001;
            transition: all 0.2s ease;
        }
        .close-btn:hover {
            background-color: #ff4d4f;
            transform: scale(1.1);
        }
        .video-player {
            width: 100%;
            height: 500px;
            background-color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* 大屏样式 (≥768px) */
        @media (min-width: 768px) {
            .vertical-text {
                display: block;
            }
            .cert-title {
                writing-mode: vertical-rl;
                display: inline-block;
                margin-right: 20px;
            }
            .cert-section {
                display: flex;
                align-items: flex-start;
            }
            .cert-slider {
                max-width: calc(100% - 80px);
            }
            .cert-item {
                min-width: 120px;
            }
            .data-panel {
                position: absolute;
                bottom: 60px;
                right: 60px;
                max-width: unset;
                width: auto;
            }
            .data-grid {
                grid-template-columns: unset;
                display: flex;
            }
            .data-item {
				padding: 25px 50px;
                border-bottom: none;
                border-right: 1px solid rgba(255,255,255,0.2);
            }
            .data-item:last-child {
                border-right: none;
            }
            .banner-content {
                height: 100%;
                width: 85%;
                margin: 0 auto;
            }
        }
        /* 小屏幕样式 (<768px) */
        @media (max-width: 767px) {
            .cert-item {
                min-width: calc(100% - 40px);
                height: 200px;
            }
            .title {
                font-size: 24px;
            }
            .desc {
                font-size: 16px;
            }
            .banner-bg {
                width: 100%;
                opacity: 0.7;
            }
            .video-container {
                display: none;
            }
            .video-player {
                height: 300px;
            }
        }
.banner-content .desc p{
	color:#fff;
}
/*kf悬浮链接*/
.suspension{position:fixed;z-index:55;right:0;bottom:85px;width:70px;height:240px;}
.suspension-box{position:relative;float:right;}
.suspension .a{display:block;width:44px;height:44px;background-color:#353535;margin-bottom:4px;cursor:pointer;outline:none;}
.suspension .a.active,
.suspension .a:hover{background:#F05352;}
.suspension .a .i{float:left;width:44px;height:44px;background-image:url(../img/side_icon.png);background-repeat:no-repeat;}
/* .suspension .a-service .i{background-position:0 0;} */
.suspension .a-service .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../img/suspension-bg.png);background-repeat:no-repeat;background-position:0 0;}
.suspension .a-service-phone .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../img/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
.suspension .a-qrcode .i{background-position:-44px 0;}
.suspension .a-cart .i{background-position:-88px 0;}
.suspension .a-top .i{background-position:-132px 0;}
.suspension .a-top{background:#353535;}
.suspension .a-top:hover{background:#F05352;}
.suspension .d{display:none;width:223px;background:#fff;position:absolute;right:67px;min-height:90px;border:1px solid #E0E1E5;border-radius:3px;box-shadow:0px 2px 5px 0px rgba(161, 163, 175, 0.11);}
.suspension .d .arrow{position:absolute;width:8px;height:12px;background:url(../img/side_bg_arrow.png) no-repeat;right:-8px;top:31px;}
.suspension .d-service{top:0;}
.suspension .d-service-phone{top:34px;}
.suspension .d-qrcode{top:78px;}
.suspension .d .inner-box{padding:8px 22px 12px;}
.suspension .d-service-item{border-bottom:1px solid #eee;padding:14px 0;}
.suspension .d-service .d-service-item{border-bottom:none;}
.suspension .d-service-item .circle{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#F1F1F3;display:block;float:left;}
.suspension .d-service-item .i-qq{width:44px;height:44px;background:url(../img/side_con_icon03.png) no-repeat center 15px;display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item:hover .i-qq{background-position:center 3px;}
.suspension .d-service-item .i-tel{width:44px;height:44px;background:url(../img/side_con_icon02.png) no-repeat center center;display:block;}
.suspension .d-service-item h3{float:left;width:112px;line-height:44px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text{float:left;width:112px;line-height:22px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text .number{font-family:Arial,"Microsoft Yahei","HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;}
.suspension .d-service-intro{padding-top:10px;}
.suspension .d-service-intro p{float:left;line-height:27px;font-size:12px;width:50%;white-space:nowrap;color:#888;}
.suspension .d-service-intro i{background:url(../img/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}
.suspension .d-qrcode{text-align:center;}
.suspension .d-qrcode .inner-box{padding:20px 0;}
.suspension .d-qrcode p{font-size:16px;color:#93959c;}
/*foot*/
.footer-section {
            background-color: #f8faff;
            padding: 60px 20px;
            font-family: Arial, sans-serif;
            color: #333;
            position: relative;
            overflow: hidden;
        }
        /* 内容网格布局 */
        .footer-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
			
        }
.qrcode-box{
	border-right:0 !important;
}
        /* Logo区域 */
        .footer-logo h2 {
            font-size: 28px;
            color: #1a237e;
            margin: 0 0 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo p {
            line-height: 1.6;
            color: #666;
            margin-bottom: 25px;
        }
        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #4267b2;
            color: white;
            text-align: center;
            line-height: 36px;
            margin-right: 10px;
            text-decoration: none;
        }
        .social-icons a:nth-child(2) {
            background-color: #e1306c;
        }
        .social-icons a:nth-child(3) {
            background-color: #0077b5;
        }
        .social-icons a:nth-child(4) {
            background-color: #e60023;
        }

        /* 通用标题样式 */
        .footer-title {
            font-size: 20px;
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 20px;
        }

        /* 服务列表 */
		.footer-services{
			display: flex;
    flex-direction: column;
    align-items: center;
		}
        .services-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .services-list li {
            margin-bottom: 12px;
        }
        .services-list li::before {
            content: "»";
            color: #2196f3;
            margin-right: 8px;
        }
        .services-list a {
            color: #666;
            text-decoration: none;
        }
        .services-list a:hover {
            color: #2196f3;
        }

        /* 联系信息 */
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #666;
        }
        .contact-info p i {
            margin-right: 10px;
            color: #2196f3;
            font-size: 18px;
        }

        /* 热门文章 */
        .popular-posts .post-item {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }
        .popular-posts .post-img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
        }
        .post-content h4 {
            margin: 0 0 5px;
            font-size: 15px;
        }
        .post-content h4 a {
            color: #1a237e;
            text-decoration: none;
        }
        .post-content p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }
		 /* 页脚主容器 - 完全匹配原图尺寸 */
        .footer-container {
            width: 85%;
            margin: 0 auto;
            padding: 30px 0;
            display: flex;
            align-items: flex-start;
            border-top: 1px solid #e5e5e5;
justify-content:space-between;
        }
		.footer-left,.footer-right-wrap,.footer-contact,.qrcode-box{
border-right: 1px solid #ddd;
}

footer{border-top:1px solid #ddd;}
        /* 左侧区域 */
        .footer-left {
            width: 400px;
            padding-right: 50px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: bold;
            color: #005ea6;
            margin-bottom: 20px;
        }

        .footer-logo span {
            display: block;
            font-size: 20px;
            color: #333;
            font-weight: normal;
            margin-top: 8px;
        }

        .footer-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        /* 右侧整体区域（导航+联系） */
        .footer-right-wrap {

            display: flex;
            justify-content: space-between;
        }

        /* 导航4列区域 - 严格匹配原图列数/间距 */
        .footer-nav {
            display: flex;
		flex-direction: column;
        }

        .nav-column {
          display: flex;
        }

        .nav-column h3 {
            font-size: 16px;
            color: #333;
            margin-bottom: 20px; /* 原图标题下间距 */
            font-weight: 600;
        }

        .nav-column ul {
            list-style: none;
display: flex;
        }

        .nav-column ul li {
            margin-bottom: 12px; /* 原图列表项间距 */
width: 6em;
text-align: justify;
text-align-last: center;
margin-bottom: 40px;
        }

        .nav-column ul li a {
            font-size: 14px;
            color: #666;
            text-decoration: none;
            line-height: 1.5;
width: 6em;
text-align: justify;
text-align-last: center;

        }
 .nav-column ul li:first-child  a{
font-size: 16px;
	font-weight:700;
color:#333;
}

        /* 联系+二维码区域 */
        .footer-contact {
            width: 280px;
            padding-left: 30px;
        }

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

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .contact-item .icon {
            font-size: 16px;
            color: #005ea6;
            margin-top: 2px;
        }

        .qrcode-box {

            text-align: center;
        }

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

        .qrcode-img {
            width: 200px;
            height: 200px;
            border: 1px solid #e5e5e5;
        }
		.qrcode-img2 {
            width: 200px;
            height: 200px;
            border: 1px solid #e5e5e5;
        }
		@media screen and (max-width:765px){
	.footer-container{
display:flex;
justify-content:space-between;
flex-direction: column;
}
	.footer-left,.footer-right-wrap,.footer-contact,.qrcode-box{
	width:100%;
padding-left:0;
border-right: 0;
padding-left: 0px;
padding-right: 0px;
}
}
@media screen and (max-width:480px){
	.footer-container{
}
	.footer-left,.footer-right-wrap,.footer-contact,.qrcode-box{
	width:100%;
padding-left:0;
border-right: 1px solid #ddd;
}
}
