CSS在线编辑
   |  | 文件：style.css
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
更多下载：https://www.bootstrapmb.com 
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --careon-font: "Roboto", serif;
  --careon-gray: #4a5b80;
  --careon-gray-rgb: 74, 91, 128;
  /*--careon-base: #006D77;*/
  --careon-base: #8b8b8b;
  --careon-base-rgb: 0, 109, 119;
  --careon-primary: #bee1e6;
  --careon-primary-rgb: 190, 225, 230;
  --careon-black: #031b4e;
  --careon-black-rgb: 3, 27, 78;
  --careon-white: #ffffff;
  --careon-white-rgb: 255, 255, 255;
  --careon-extra: #f2f4f7;
  --careon-extra-rgb: 242, 244, 247;
  --careon-bdr-color: #efefef;
  --careon-bdr-color-rgb: 239, 239, 239;
  --careon-bdr-radius: 20px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  position: relative;
  display: block;
  /*font-family: var(--careon-font);*/
  color: var(--careon-gray);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  z-index: 1;
  background-image: url(../images/cut/body-bg.jpg);
  background-size: cover;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--careon-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h3,
h4,
h5,
h6 {
  font-family: var(--careon-font);
  color: var(--careon-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1460px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--careon-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--careon-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--careon-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-bottom: 59px;
  margin-top: -6px;
  z-index: 1;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: var(--careon-black);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-title__tagline span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--careon-black);
  margin-right: 5px;
  top: 1px;
}

.section-title__title {
  color: var(--careon-black);
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  margin: 4px 0 0;
}

.section-title__title .split-line {
  text-transform: none;
}

/* Section Title Two Css */

.section-title-two {
  position: relative;
  display: block;
  margin-bottom: 59px;
  z-index: 1;
}

.section-title-two__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: var(--careon-black);
  font-weight: 700;
  text-transform: capitalize;
  border: 1px solid var(--careon-black);
  padding: 8px 17px 7px;
  border-radius: 18px;
}

.section-title-two__title {
  color: var(--careon-black);
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  margin: 20px 0 0;
}

.section-title-two__title .split-line {
  text-transform: none;
}

/* Section Title Three Css */

.section-title-three {
  position: relative;
  display: block;
  margin-top: -5px;
  margin-bottom: 59px;
  z-index: 1;
}

.section-title-three__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: var(--careon-base);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-title-three__title {
  color: var(--careon-black);
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  margin: 4px 0 0;
}

.section-title-three__title .split-line {
  text-transform: none;
}

/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: var(--careon-white);
  background-color: var(--careon-black);
  padding: 16px 30px 16px;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}

.thm-btn span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  padding-left: 6px;
  top: 2px;
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--careon-base);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn::after {
  position: absolute;
  background-color: var(--careon-base);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
  color: var(--careon-white);
}

/* Proloader Css */

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  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;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--careon-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--careon-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--careon-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  cursor: pointer;
  z-index: 9999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--careon-base);
  border-color: var(--careon-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--careon-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--careon-white);
  color: var(--careon-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:hover {
  color: var(--careon-white);
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:after {
  background-color: var(--careon-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 30px 0;
  background-color: var(--careon-white);
  box-shadow: 0px 10px 49.1px -14px rgba(0, 0, 0, 0.07);
  border-radius: 40px;
  z-index: 1;
}

.main-menu__logo {
  position: relative;
  display: block;
  padding: 15.5px 0;
  z-index: 2;
}

.main-menu__left {
  position: relative;
  display: block;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__thm-btn {
  position: relative;
  display: block;
}

.main-menu__thm-btn .thm-btn {
  background-color: var(--careon-base);
}

.main-menu__thm-btn .thm-btn::before {
  background-color: var(--careon-black);
}

.main-menu__thm-btn .thm-btn::after {
  background-color: var(--careon-black);
}

.stricky-header.main-menu {
  background-color: var(--careon-white);
}

.stricky-header .main-menu__wrapper-inner {
  padding: 0 0px 0;
  background-color: transparent;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 30px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*color: var(--careon-black);*/
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--careon-base);
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--careon-base);
  position: absolute;
  bottom: 3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 15px;
}

.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 52%;
  right: 0;
  font-family: "Font Awesome 5 pro";
  content: "\f107";
  font-size: 14px;
  /*color: var(--careon-black);*/
  color: #fff;
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
  color: var(--careon-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(var(--careon-black-rgb), 0.1);
}

.main-menu .main-menu__list > li > ul > li:last-child,
.main-menu .main-menu__list > li > ul > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li > ul > li:last-child {
  border-bottom: 0;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: 0;
  margin-top: 0px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--careon-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: #29619f;
  color: var(--careon-white);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--careon-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--careon-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--careon-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--careon-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--careon-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--careon-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--careon-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--careon-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--careon-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--careon-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--careon-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--careon-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--careon-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--careon-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--careon-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--careon-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--careon-base);
  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;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 25px 0;
  z-index: 2;
}

.main-menu-two__left {
  position: relative;
  display: block;
}

.main-menu-two__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__btn {
  position: relative;
  display: block;
}

.main-menu-two__btn .thm-btn {
  background-color: var(--careon-primary);
  color: var(--careon-black);
}

.main-menu-two__btn .thm-btn::before,
.main-menu-two__btn .thm-btn::after {
  background-color: var(--careon-white);
}

.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  color: var(--careon-white);
}

.main-menu-two .main-menu__list > li.current > a,
.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a {
  color: var(--careon-base);
}

.main-menu-two .main-menu__list > li.dropdown > a:after {
  color: var(--careon-white);
}

.main-menu-two .main-menu__list > li.current > a::after,
.main-menu-two .main-menu__list > li:hover > a::after,
.stricky-header.main-menu-two .main-menu__list > li.current > a::after,
.stricky-header.main-menu-two .main-menu__list > li:hover > a::after {
  color: var(--careon-base);
}

.stricky-header.main-menu-two {
  background-color: var(--careon-black);
}

.stricky-header .main-menu-two__wrapper-inner {
  padding: 0 0px 0;
  background-color: transparent;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--careon-base);
}

.main-menu-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 11px 0px 11px;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--careon-white-rgb), 0.2);
}

.main-menu-three__contact-list li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li + li {
  margin-left: 50px;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 16px;
  color: var(--careon-white);
}

.main-menu-three__contact-list li .text {
  margin-left: 10px;
}

.main-menu-three__contact-list li .text p {
  font-size: 16px;
  color: var(--careon-white);
}

.main-menu-three__contact-list li .text p a {
  color: var(--careon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--careon-black);
}

.main-menu-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--careon-white);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-three__social a:hover {
  color: var(--careon-black);
}

.main-menu-three__social a + a {
  margin-left: 20px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 0px 0px;
  z-index: 1;
}

.main-menu-three__left {
  position: relative;
  display: block;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 22.5px 0;
}

.main-menu-three__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: block;
}

.main-menu-three__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 17.5px 0;
}

.main-menu-three__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.main-menu-three__call-icon img {
  width: auto;
}

.main-menu-three__call-number {
  margin-left: 20px;
}

.main-menu-three__call-number p {
  font-size: 16px;
  margin: 0;
  line-height: 16px;
  color: var(--careon-gray);
  font-weight: 400;
  margin-bottom: 11px;
}

.main-menu-three__call-number h5 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}

.main-menu-three__call-number h5 a {
  color: var(--careon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__call-number a:hover {
  color: var(--careon-base);
}

.main-menu-three .main-menu__list > li,
.stricky-header.main-menu-three .main-menu__list > li {
  padding-top: 31px;
  padding-bottom: 31px;
}

.main-menu-three .main-menu__list > li > a,
.stricky-header.main-menu-three .main-menu__list > li > a {
  color: var(--careon-black);
}

.main-menu-three .main-menu__list > li.current > a,
.main-menu-three .main-menu__list > li:hover > a,
.stricky-header.main-menu-three .main-menu__list > li.current > a,
.stricky-header.main-menu-three .main-menu__list > li:hover > a {
  color: var(--careon-base);
}

.main-menu-three .main-menu__list > li.dropdown > a:after {
  color: var(--careon-black);
}

.main-menu-three .main-menu__list > li.current > a::after,
.main-menu-three .main-menu__list > li:hover > a::after,
.stricky-header.main-menu-three .main-menu__list > li.current > a::after,
.stricky-header.main-menu-three .main-menu__list > li:hover > a::after {
  color: var(--careon-base);
}

.stricky-header.main-menu-three {
  background-color: var(--careon-white);
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-four__top {
  position: relative;
  display: block;
}

.main-menu-four__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5px 0px 5px;
  border-bottom: 1px solid rgba(var(--careon-base-rgb), 0.2);
}

.main-menu-four__social-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu-four__social-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--careon-gray);
}

.main-menu-four__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--careon-black);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-four__social a:hover {
  color: var(--careon-base);
}

.main-menu-four__social a + a {
  margin-left: 20px;
}

.main-menu-four__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-four__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__contact-list li:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--careon-base-rgb), 0.2);
}

.main-menu-four__contact-list li:first-child:before {
  display: none;
}

.main-menu-four__contact-list li + li {
  margin-left: 10px;
}

.main-menu-four__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__contact-list li .icon i {
  font-size: 16px;
  color: var(--careon-base);
}

.main-menu-four__contact-list li .text {
  margin-left: 10px;
}

.main-menu-four__contact-list li .text p {
  font-size: 13px;
  color: var(--careon-gray);
}

.main-menu-four__contact-list li .text p a {
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__contact-list li .text p a:hover {
  color: var(--careon-base);
}

.main-menu-four__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-four__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-four__logo {
  position: relative;
  display: block;
  padding: 22.5px 0;
}

.main-menu-four__left {
  position: relative;
  display: block;
}

.main-menu-four__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-four__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.main-menu-four__btn {
  position: relative;
  display: block;
}

.main-menu-four__btn .thm-btn {
  background-color: var(--careon-white);
  color: var(--careon-black);
}

.main-menu-four__btn .thm-btn:hover {
  color: var(--careon-white);
}

.main-menu-four .main-menu__list > li,
.stricky-header.main-menu-four .main-menu__list > li {
  padding-top: 31px;
  padding-bottom: 31px;
}

.main-menu-four .main-menu__list > li > a,
.stricky-header.main-menu-four .main-menu__list > li > a {
  color: var(--careon-black);
}

.main-menu-four .main-menu__list > li.current > a,
.main-menu-four .main-menu__list > li:hover > a,
.stricky-header.main-menu-four .main-menu__list > li.current > a,
.stricky-header.main-menu-four .main-menu__list > li:hover > a {
  color: var(--careon-base);
}

.main-menu-four .main-menu__list > li.dropdown > a:after {
  color: var(--careon-black);
}

.main-menu-four .main-menu__list > li.current > a::after,
.main-menu-four .main-menu__list > li:hover > a::after,
.stricky-header.main-menu-four .main-menu__list > li.current > a::after,
.stricky-header.main-menu-four .main-menu__list > li:hover > a::after {
  color: var(--careon-base);
}

.stricky-header.main-menu-four {
  background-color: #fff3ea;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-five {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-five__wrapper {
  position: relative;
  display: block;
}

.main-menu-five__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-five__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 30px 0px;
  /*background-color: var(--careon-black);*/
  border-radius: 10px;
  z-index: 1;
}

.main-menu-five__left {
  position: relative;
  display: block;
}

.main-menu-five__logo {
  position: relative;
  display: block;
  padding: 22.5px 0;
}

.main-menu-five__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-five__right {
  position: relative;
  display: block;
}

.main-menu-five__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 17.5px 0;
}

.main-menu-five__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.main-menu-five__call-icon img {
  width: auto;
}

.main-menu-five__call-number {
  margin-left: 20px;
}

.main-menu-five__call-number p {
  font-size: 16px;
  margin: 0;
  line-height: 16px;
  color: var(--careon-white);
  font-weight: 400;
  margin-bottom: 11px;
}

.main-menu-five__call-number h5 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}

.main-menu-five__call-number h5 a {
  color: var(--careon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-five__call-number a:hover {
  color: var(--careon-base);
}

.main-menu-five .main-menu__list > li,
.stricky-header.main-menu-five .main-menu__list > li {
  padding-top: 31px;
  padding-bottom: 31px;
}

.main-menu-five .main-menu__list > li > a,
.stricky-header.main-menu-five .main-menu__list > li > a {
 /* color: var(--careon-white);*/
text-shadow: 0px 0px 11px rgb(27 28 29 / 70%);
} 

.main-menu-five .main-menu__list > li.current > a,
.main-menu-five .main-menu__list > li:hover > a,
.stricky-header.main-menu-five .main-menu__list > li.current > a,
.stricky-header.main-menu-five .main-menu__list > li:hover > a {
  color: var(--careon-base);
}

.main-menu-five .main-menu__list > li.dropdown > a:after {
  color: var(--careon-white);
}

.main-menu-five .main-menu__list > li.current > a::after,
.main-menu-five .main-menu__list > li:hover > a::after,
.stricky-header.main-menu-five .main-menu__list > li.current > a::after,
.stricky-header.main-menu-five .main-menu__list > li:hover > a::after {
  color: var(--careon-base);
}

.stricky-header.main-menu-five {
  background-color: var(--careon-black);
}

.stricky-header .main-menu-five__wrapper-inner {
  padding: 0px 0px 0px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  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;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--careon-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  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;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--careon-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn::after {
  background-color: var(--careon-black);
  border-radius: 0;
}

.search-popup__content .thm-btn::before {
  background-color: var(--careon-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--careon-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--careon-white);
}

/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--careon-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--careon-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.main-slider-three__content {
  min-height: 500px !important;
}
.jianzhu {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  z-index: 999;
  transform: translateY(100%); /* 初始隐藏在下方 */
  opacity: 0; /* 初始完全透明 */
  transition: transform 0.3s ease-out, opacity 0.3s ease-out; /* 平滑过渡 */
}
.jianzhu img {
  width: 50%;
}
/* 显示时的样式 */
.jianzhu-show {
  transform: translateY(0); /* 回到正常位置 */
  opacity: 1; /* 完全不透明 */
}
.model-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 20px;
}
.model-small-title {
  font-size: 13px;
  color: #29619f;
  font-weight: 700;
}
.model-big-title {
  font-size: 26px;
  color: #29619f;
  font-weight: 700;
  margin-top: 8px;
}
.more-img-box {
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.more-img-box img {
  width: 70%;
}
.more-text {
  text-align: center;
  font-size: 13px;
  color: #29619f;
  font-weight: 700;
}
.xyyw-banner-text-box {
  width: 100%;
  position: absolute;
  bottom: 60px;
  height: auto;
  display: flex;
  justify-content: center;
  z-index: 999;
}
.xyyw-banner-text {
  width: 90%;
  height: auto;
  overflow: hidden;
}
.xyyw-banner-time {
  font-size: 12px;
  color: #e5e5e5;
}
.xyyw-banner-title {
  font-size: 18px;
  font-weight: 700;
  color: #eeeeee;
}
.bottom-border-hui {
  border-bottom: 1px solid #d3d3d3;
  border-left: 3px solid #29619f;
}
.border-left-zi {
}
.border-left-zi a {
  padding: 0px;
  color: #2a2a2a;
  line-height: 48px;
  font-weight: 450 !important;
  font-size: 17px !important;
}
/*.xstd-items{width: 100%;box-sizing: border-box;border-bottom: 1px solid #E2E2E2;height: auto;margin-top: 15px;padding-bottom: 15px;}
.xstd-time{background-color: #E7B449;color: #7D2F8B;padding: 5px 10px;font-size: 13px;font-weight: 700}
.index-xstd-title{margin-top: 10px;font-size: 16px;}
.index-notice-list a{color: #272727}*/
/* 添加以下CSS样式 */
.testimonial-two__carousel .item {
  overflow: hidden; /* 防止放大时图片溢出容器 */
  position: relative; /* 为子元素定位提供上下文 */
}

.testimonial-two__carousel .item img {
  transition: transform 1s ease; /* 添加过渡效果 */
  width: 100%; /* 确保图片填充容器 */
  /*height: 628px;  保持图片比例 */
}

.testimonial-two__carousel .item:hover img {
  transform: scale(1.05); /* 鼠标悬停时图片放大5% */
}

/* 确保文字内容在图片放大时保持位置 */
.xyyw-banner-text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); /* 半透明背景，提高文字可读性 */
  color: white;
  padding: 15px;
}
/* 添加以下CSS样式 */
.testimonial-three__carousel .item {
  overflow: hidden; /* 防止放大时图片溢出容器 */
}

.testimonial-three__content img {
  transition: transform 0.8s ease; /* 添加过渡效果 */
  width: 100%; /* 确保图片填充容器 */
  height: auto; /* 保持图片比例 */
}

.testimonial-three__carousel .item:hover img {
  transform: scale(1.05); /* 鼠标悬停时图片放大5% */
}
.xstd-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.xstd-items {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #e2e2e2;
  height: 115px;
  margin-top: 15px;
  padding: 15px 15px 15px 15px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  background-color: transparent;
}

.xstd-link:hover .xstd-items {
  transform: translateY(-5px); /* 文字上移效果 */
}

.xstd-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(107, 164, 234, 0.5),
    rgba(41, 97, 159, 1)
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.xstd-link:hover::before {
  left: 0; /* 背景从左到右滑入 */
}

.xstd-time {
  background-color: #0f437f;
  color: #fff;
  padding: 5px 10px;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.xstd-link:hover .xstd-time {
  background-color: #7d2f8b;
  color: #e7b449;
}

.index-xstd-title {
  margin-top: 10px;
  font-size: 18px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.index-notice-list a {
  color: #272727;
}
.ai-box {
  margin-left: calc((100% - min(1460px, 100%)) / 2);
  width: calc(100% - ((100% - min(1460px, 100%)) / 2));
  height: auto;
  position: relative;
}
.ai-box img {
  width: 100%;
}
.ai-box-center {
  width: 1460px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: start;
}
.ai-center-left {
  width: 50%;
  height: 100%;
}
.ai-center-right {
  width: 50%;
  height: 100%;
}
.heightb19 {
  height: 18%;
}
.heightb73 {
  height: 73%;
}
.heightb50 {
  height: 50%;
}
.heightb48 {
  height: 48%;
}
.heightb100 {
  height: 100%;
}
.ai-contents-box {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 0px;
}
.ai-items {
  width: 95%;
  height: 100%;
  box-sizing: border-box;
}
.ai-items-top {
  width: 100%;
  height: 16%;
  margin-bottom: 2%;
}
.ai-items-bottom {
  width: 100%;
  height: 82%;
  background-color: #fff;
  border-top: 5px solid #e7b449;
  box-sizing: border-box;
  padding: 10px 10px;
}
.ai-items-bottom h3 {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid #a064a9;
  padding-bottom: 4px;
  line-height: 23px;
  color: #000;
  font-family: var(--bs-font-sans-serif);
}
.ai-items-bottom p {
font-size: 14px;
    color: #2D2D2D;
    line-height: 27px;
    margin-top: 10px;
}
.mbb2 {
  margin-bottom: 2%;
}
/*.newit-box{
  width: calc( 100% - ( (100% - min(1460px, 100%)) / 2 ));
  height: 100%;
  position: relative;
  background-color: #EEEEEE;
  padding: 20px 30px 20px 0;
}*/
.newit-box {
  /* width: calc( 100% - ( (100% - min(1460px, 100%)) / 2 ));*/
  width: 100%;
  height: 100%;
  position: absolute;
  /*background-color: #EEEEEE;*/
  background-image: url(../images/cut/huise-jianbian.png);
  left: 0;
  top: 0;
  z-index: -1;
}
.newit-contents {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.mt50 {
  margin-top: 50px;
}
.mt30 {
  margin-top: 30px;
}
.newid-contents {
  padding: 0px 50px 20px 50px;
}
.custom-prev-img,
.custom-next-img {
  width: 40px; /* 根据实际图片尺寸调整 */
  height: 40px;
  transition: opacity 0.3s; /* 添加悬停渐变效果 */
}

/* 悬停时改变透明度 */
.custom-prev-img:hover,
.custom-next-img:hover {
  opacity: 0.7;
}
.journal-number {
  color: #868585;
  font-size: 14px;
}
.journal-title {
  color: #000;
}
.journal-bottom {
  width: 100%;
  box-sizing: border-box;
  padding-left: 10px;
  border-left: 2px solid #622c88;
  margin-top: 20px;
}
.journal-bottom-items {
  display: flex;
  justify-content: start;
  align-items: center;
}
.journal-bottom-items img {
  width: 25px !important;
  height: 25px;
  margin-right: 10px;
}
.journal-bottom-items span {
  font-size: 14px;
  color: #622c88;
}
.xtfc-box {
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding: 0 !important;
}
.xtfc-box img {
  width: 100%;
}
.xtfc-continer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 80px 0;
}
.position-default {
  position: relative;
  height: 100%;
  width: 100%;
}
.xtfc-special-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
}
.xtfc-special-box img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
}
.xtfc-contents-top {
  width: 35%;
  box-sizing: border-box;
  height: auto;
}
.xtfc-contents {
  width: 40%;
  background-color: #fff;
  height: auto;
  box-sizing: border-box;
  margin-top: 7%;
  position: relative;
  z-index: 999;
  padding: 25px 5px 5px 5px;
}
/*.xtfc-contents-items{box-sizing: border-box;border-left: 3px solid #29619F;padding-left: 20px;margin-bottom: 25px;}
.xtfc-contents-items p{color: #000;font-weight: 700}*/
.xtfc-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.xtfc-contents-items {
  box-sizing: border-box;
  border-left: 3px solid #29619f;
  padding-left: 20px;
  margin-bottom: 25px;
  position: relative;
  transition: transform 0.3s ease;
  padding-bottom: 5px; /* 为底部边框留出空间 */
}

.xtfc-link:hover .xtfc-contents-items {
  transform: translateY(-3px); /* 文字上移效果 */
}

.xtfc-contents-items::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #29619f; /* 使用和左边框相同的颜色 */
  transition: width 0.3s ease;
}

.xtfc-link:hover .xtfc-contents-items::after {
  width: 100%; /* 底部边框从左到右展开 */
}

.xtfc-contents-items p {
  color: #000;
  font-weight: 700;
  transition: color 0.3s ease;
}

.xtfc-link:hover .xtfc-contents-items p {
  color: #29619f; /* 鼠标悬停时文字颜色变为蓝色 */
}
.model-zhuanti-dalou {
  width: 12%;
}
.model-zhuanti-dalou img {
  width: 100%;
}
.zhuanti-box {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  position: relative;
}
.zhuanti-box img {
  width: 100%;
}
.zhuanti-contents {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30px;
}
.zhuanti-carousel-style {
  position: relative;
}
/* 修改 Owl Carousel 容器为相对定位 */
.project-carousel-style {
  position: relative;
}

/* 调整导航按钮容器位置 */
#newid .owl-nav {
  position: absolute;
  top: -80px; /* 按钮向上移动到轮播容器外 */
  /*width: 50%;*/
  left: 48%;
  display: none;
  justify-content: space-between; /* 左右两侧分布 */
  margin-bottom: 20px; /* 增加与轮播内容的间距 */
}

/* 清除默认按钮定位 */
#newid .owl-prev,
#newid .owl-next {
  position: static !important; /* 取消绝对定位 */
  margin: 0 10px !important; /* 按钮左右间距 */
}

/* 调整图片按钮样式 */
#newid .custom-prev-img,
#newid .custom-next-img {
  width: 30px;
  height: 30px;
}

/* 轮播容器设为相对定位 */
.zhuanti-carousel-style {
  position: relative;
  padding: 0 60px; /* 为两侧按钮留出空间 */
}

/* 导航按钮容器样式 */
#zhuantiid .owl-nav {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between; /* 左右按钮分开 */
  pointer-events: none; /* 防止按钮区域阻挡点击 */
}

/* 单个按钮样式 */
#zhuantiid .owl-prev,
#zhuantiid .owl-next {
  pointer-events: auto; /* 恢复按钮点击 */
  background: none !important;
  margin: 0 !important;
}

/* 左侧按钮定位 */
#zhuantiid .owl-prev {
  margin-left: -60px !important; /* 根据实际图片宽度调整 */
}

/* 右侧按钮定位 */
#zhuantiid .owl-next {
  margin-right: -60px !important;
}

/* 图片按钮尺寸优化 */
#zhuantiid .custom-prev-img,
#zhuantiid .custom-next-img {
  width: 40px; /* 根据实际图片尺寸调整 */
  height: 40px;
  transition: transform 0.3s;
}

/* 悬停动画 */
#zhuantiid .custom-prev-img:hover,
#zhuantiid .custom-next-img:hover {
  transform: scale(1.1);
}
.index-footer {
  position: relative;
  width: 100%;
  margin-top: 0px;
  z-index: -1;
}
.index-footer img {
  width: 100%;
}
.index-footer-jianzhu {
  position: relative;
  bottom: 0;
  /*left: calc( (100% - min(1460px, 100%)) / 2 );
  width: calc( 100% - ( (100% - min(1460px, 100%)) / 2 ));*/
  width: 100%;
  height: auto;
  margin-top: -160px;
}
.index-footer-jianzhu img {
  width: 100%;
}
.index-footer-contents {
  position: absolute;
  left: 0;
  top: 36%;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 30px 50px;
}
.footer-contents-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: auto;
}
.footer-logo {
  width: 46%; /*display: flex;justify-content: start;*/
}
.footer-logo img {
  width: 100%;
}
.footer-right {
  width: 100%;
  height: auto;
  margin-right: 20%;
  text-align: center;
  padding-top: 38px;
}
.footer-right p {
  color: #dedede;
  font-size: 14px;
  float: left;
  padding-right: 50px;
}
.footer-footer {
  position: absolute;
  bottom: 10px;
  left: 50px;
  border-top: 1px solid #909090;
  padding-top: 10px;
  width: 1460px;
  display: flex;
  justify-content: space-between;
}
.footer-copy {
  width: 50%;
}
.footer-copy p {
  color: #dedede;
  font-size: 13px;
}
.footer-link {
  width: 50%;
  text-align: right;
}
.footer-link a {
  font-size: 13px;
  color: #dedede;
}
.qrcode-box {
  position: relative;
  right: 0;
  width: 12%;
  text-align: center;
}
.qrcode-box p {
  color: #fff;
  font-size: 14px;
}
.qrcode-box img {
  width: 100%;
}
.main-menu-five__left {
  width: 30%;
}
.main-menu-five__left img {
  width: 120%;
}
.position-relative {
  position: relative;
}
.zindex-total999 {
  z-index: 999;
}
.zindex-total888 {
  z-index: 888;
}
.page-now-box {
  position: absolute;
  left: 0;
  bottom: -20px;
  box-sizing: border-box;
  display: flex;
  justify-content: start;
  width: 100%;
  height: auto;
}
.page-name-info {
  text-align: center;
}
.page-name-info p {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
.page-position-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 60px;
  align-items: center;
  background-color: #29619f;
  border-left: 5px solid #4b0c77;
  border-top-right-radius: 20px;
  padding: 0 20px;
}
.little-dian {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
.page-position-detail a {
  color: #fff;
  font-size: 14px;
}
.page-position-detail span {
  color: #fff;
  font-size: 14px;
}
.blog-contents {
  padding: 80px 30px;
}
.blog-list-box {
  padding: 80px 30px;
}
.blog-contents p {
  letter-spacing: 1.5px;
  line-height: 40px;
}
.blog-contents img {
  width: 100%;
  display: block;
}
.blog-title {
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 20px;
}
.blog-title h2 {
  color: #29619f;
  text-align: center;
}
.blog-title p {
  text-align: center;
}
.blog-title p span {
  font-size: 14px;
  margin-right: 15px;
  color: #29619f;
  padding: 3px 5px;
}
.blog-contents a {
  color: #000000;
}
.blog-contents a:hover {
  color: #024585;
}
.huang-bg {
  font-size: 13px;
  margin-right: 15px;
  color: #29619f;
  padding: 3px 5px;
}
.blog-right-model {
  padding: 90px 0;
}
.cate-text {
  padding-left: 10px;
  border-left: 5px solid #4b0c77;
}
.blog-abstract {
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 10px;
  margin-bottom: 15px;
}
.blog-abstract p {
  color: #000000;
}
.abstract-flag {
  border-left: 5px solid #e7b449;
}
.left-huang {
  padding-left: 10px;
  border-left: 5px solid #4b0c77;
}
.blog-list-items {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.blog-list-title {
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  font-size: 16px;
  font-weight: 500;
  color: #29619f;
}
.blog-list-text {
  font-size: 13px;
  color: #595757;
}
.blog-list-items img {
  width: 30%;
  margin-right: 2%;
}
.blog-list-left {
  width: 60%;
  margin-right: 2%;
  position: relative;
  max-width: 300px;
}
.blog-list-left img {
  width: 100%;
}
.team-list-items {
  display: flex;
  justify-content: start;
  height: auto;
  padding-bottom: 20px;
}
.team-list-title {
  width: 47%;
  height: auto;
  margin-right: 1%;
}
.team-list-title p {
  border-left: 5px solid #e7b449;
  padding-left: 15px;
  color: #29619f;
  letter-spacing: 1.5px;
}
.team-job-box {
  width: 50%;
  height: auto;
}
.team-job-box p {
  color: #595757;
}
.xueshudongtai {
  margin-top: 50px;
}
.xueshudongtai img {
  width: 100%;
}
.xsdt-container-box {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.xsdt-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.xsdt-left-box {
  width: 52%;
  box-sizing: border-box;
}
.xsdt-right-box {
  width: 44%;
}
.xsdt-tj-box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  align-items: end;
  min-height: 42%;
}
.xsdt-tj-box img {
  width: 30%;
  margin-right: 15px;
}
.xsdt-tj-time-box {
  width: 100%;
  height: auto;
}
.xsdt-tj-time-box img {
  width: 10%;
}
.xsdt-tj-time-box p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.xsdt-tj-text {
  margin-top: 3%;
  max-height: 55%;
  height: auto;
  width: 75%;
  box-sizing: border-box;
}
.xsdt-title-box {
  width: 100%;
  border-bottom: 3px solid #e7b449;
  padding-bottom: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.xsdt-tj-text p {
  color: #fff;
  font-size: 13px;
  margin-top: 10px;
}
.xsdt-carousel {
  width: 100%;
  height: 70%;
  box-sizing: border-box;
  overflow: hidden;
}
/*.xsdt-items{width: 100%;height: 33%;display: flex;justify-content: start;align-items: center;}
.xsdt-items img{height: 70%;border-radius: 200px;width: auto;margin-right: 4%}*/
.height100 {
  height: 100%;
}
.heightb15 {
  height: 15%;
}
/*.xsdt-items-text h2{font-size: 18px;font-weight: 700;color: #000}
.xsdt-items-text p{font-size: 13px;color: #3C3C3C}*/
.xsdt-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 33%;
}

.xsdt-items {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  padding-bottom: 10px; /* 为底部边框留出空间 */
  transition: transform 0.3s ease;
}

.xsdt-link:hover .xsdt-items {
  transform: translateY(-5px); /* 文字上移效果 */
}

.xsdt-items::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e7b449; /* 边框颜色 */
  transition: width 0.4s ease;
}

.xsdt-link:hover .xsdt-items::after {
  width: 100%; /* 边框从左到右展开 */
}

.xsdt-items img {
  height: 70%;
  border-radius: 200px;
  width: auto;
  margin-right: 4%;
  transition: transform 0.3s ease;
}

.xsdt-link:hover .xsdt-items img {
  transform: scale(1.05); /* 图片轻微放大 */
}

.xsdt-items-text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  transition: color 0.3s ease;
}

.xsdt-link:hover .xsdt-items-text h2 {
  color: #7d2f8b; /* 标题颜色变化 */
}

.xsdt-items-text p {
  font-size: 13px;
  color: #3c3c3c;
  transition: color 0.3s ease;
}

.xsdt-link:hover .xsdt-items-text p {
  color: #555; /* 正文颜色加深 */
}

.marginleft30 {
  margin-left: 30px;
}
.marginleft30 {
  margin-left: 30px;
}
/* 禁用导航按钮的悬停效果 */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  opacity: 1 !important; /* 强制保持不透明 */
  background: transparent !important; /* 移除背景变化 */
}

/* 如果按钮是图片，确保图片本身不受影响 */
.owl-carousel .owl-nav button.owl-prev:hover img,
.owl-carousel .owl-nav button.owl-next:hover img {
  opacity: 1 !important;
  filter: none !important; /* 移除可能的滤镜效果（如变暗） */
}
.img-list-top {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.cate-list-items {
  width: 100%;
  min-height: 50px;
  border-bottom: 1px solid #d4d3d3;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.left-border-shenlan {
  width: 5px;
  background-color: #4b0c77;
  height: 30px;
  margin-right: 10px;
}
.cate-list-items a span {
  margin-right: 1px;
  font-weight: 500;
  color: #0e437f;
  padding: 5px 8px;
}
.cate-type-name {
  font-weight: 700;
  color: #0e437f;
}
.cate-list-items > a > span:hover {
  color: #ffffff;
  background-color: #0e437f;
  border-radius: 5px;
  cursor: pointer;
}
.cate-list-items > a.active {
  border-radius: 5px;
  background-color: #0e437f;
  color: #ffffff !important;
}
.cate-list-items > a.active span {
  border-radius: 5px;
  background-color: #0e437f;
  color: #ffffff !important;
}
.teacher-team {
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.teacher-items {
  width: 100%;
  overflow: hidden; /* 隐藏超出部分 */
  display: inline-block; /* 保持容器适应图片 */
  position: relative;
}
.teacher-items img {
  width: 100%;
  transition: transform 0.8s ease;
}
.teacher-items img:hover {
  transform: scale(1.1);
}
.teacher-items p {
  background-color: #4b0c77;
  text-align: center;
  color: #fff;
}
/* 半透明红色覆盖层 */
.teacher-items .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 20, 220, 0.35); /* 深红色，50%透明度 */
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.teacher-items:hover .overlay {
  opacity: 1;
}
.display-center {
  display: flex;
  justify-content: center;
}
.rcpy-continer {
  width: 80%;
  height: auto;
  box-sizing: border-box;
  padding: 80px 50px;
}
.sub-cate-box {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
  position: relative;
  z-index: 1;
}
.sub-cate-items {
  width: 26%;
  height: 80px;
  margin-right: 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: visible;
}
.sub-cate-yuan {
  width: 80px;
  height: 80px;
  background-color: #0e437f;
  border-radius: 80px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-cate-yuan img {
  width: 60%;
}
.sub-cate-text {
  width: 80%;
  background-color: #efefef;
  border: 1px solid #c0cbd8;
  border-top-right-radius: 20px;
  height: 80px;
  position: absolute;
  left: 40px;
  top: 0;
  padding-left: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: start;
  align-items: center;
}
.sub-cate-text span {
  margin-right: 10px;
  font-size: 18px;
  color: #0e437f;
  font-weight: 700;
}
.sub-cate-text img {
  width: 20px;
}
.xuesheng-type {
  background-color: #0e437f;
  color: #fff;
  padding: 3px 8px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
}
.sub-xiala {
  position: absolute;
  top: 90px;
  width: 80%;
  height: auto;
  background-color: #efefef;
  left: 16%;
  min-width: 60px;
  border-radius: 20px;
  border: 1px solid #d3d2d2;
  overflow: hidden;
  z-index: 5;
  display: none; /* 默认隐藏 */
}
.xiala-items {
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #0e437f;
}
.xiala-items p {
  color: #0e437f;
  font-weight: 500;
}
.xiala-items:hover {
  background-color: #0e437f;
}
.xiala-items:hover p {
  color: #fff;
}
.teacher-detail-box {
  display: flex;
  justify-content: start;
}
.teacher-detail-left {
  width: 40%;
  height: auto;
  text-align: center;
}
.teacher-detail-left img {
  width: 80%;
}
.teacher-detail-right {
  width: 60%;
  box-sizing: border-box;
  height: auto;
  padding: 200px 20px 0 20px;
}
.teacher-name-box {
  padding: 10px 0;
  border-bottom: 1px solid #dedddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.left-shu {
  border-left: 5px solid #4b0c77;
  padding-left: 20px;
  font-weight: 600;
  color: #0e437f;
  letter-spacing: 2px;
  font-size: 18px;
}
.teacher-name {
  color: #000;
}
.teacher-contents {
  width: 100%;
  height: auto;
}
.teacher-contents p {
  font-size: 13px;
}
.stricky-header {
  background-color: #29619f !important;
}
@media (max-width: 1500px) {
  .footer-footer {
    width: 1100px;
  }
}
@media (max-width: 768px) {
  .main-menu-five__left {
    width: 85%;
  }
  .teacher-team {
    grid-template-columns: repeat(2, 1fr);
  }
  .rcpy-continer {
    padding: 10px 0;
    width: 100%;
  }
  .blog-list-left {
    width: 100%;
  }
  .sub-cate-items {
    width: 100%;
    margin-bottom: 20px;
  }
  .blog-contents {
    padding: 20px 10px;
  }
  .blog-list-box {
    padding: 20px 10px;
  }
  .blog-right-model {
    padding: 10px 0;
  }
  .xyyw-banner-text-box {
    position: relative;
    bottom: 0;
    background-color: #fff;
  }
  .xyyw-banner-text {
    width: 100%;
  }
  .xyyw-banner-time {
    color: #4b4b4b;
  }
  .xyyw-banner-title {
    color: #000;
  }
  #newid .owl-nav {
    display: none;
  }
  .newid-contents {
    padding: 0px 10px;
  }
  .xtfc-special-box {
    display: none;
  }
  .xtfc-contents-top {
    width: 100%;
  }
  .xtfc-contents {
    width: 100%;
    margin-top: 10px;
    padding: 5px;
  }
  .xtfc-bg-img {
    display: none;
  }
  .xtfc-continer {
    position: relative;
    padding: 10px;
  }
  .zhuanti-contents {
    position: relative;
    top: 10px;
  }
  .zhuanti-carousel-style {
    padding: 0px 10px;
  }
  .model-zhuanti-dalou {
    width: 18%;
  }
  .footer-contents-box {
    display: block;
  }
  .footer-logo {
    width: 100%;
  }
  .footer-right {
    width: 100%;
    text-align: center;
  }
  .qrcode-box {
    position: relative;
  }
  #footer-bg {
    display: none;
  }
  .index-footer {
    /*background-image: url(../images/cut/footer-bg.png);background-position: left;*/
    margin-top: 140px;
    background-color: #0e437f;
  }
  .index-footer-jianzhu {
    position: relative;
    width: 100%;
  }
  .index-footer-contents {
    position: relative;
    width: 100%;
    padding: 10px 10px;
  }
  .qrcode-box {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
  #footer-jianzhu {
    display: none;
  }
  .footer-footer {
    position: relative;
    left: 0;
    width: 100%;
    padding: 10px 10px;
    display: block;
  }
  .footer-copy {
    width: 100%;
  }
  .footer-link {
    width: 100%;
    text-align: left;
  }
  #xsdt-img {
    display: none;
  }
  .xsdt-container-box {
    position: relative;
  }
  .xsdt-box {
    display: block;
    height: auto;
  }
  .xsdt-left-box {
    display: none;
  }
  .xsdt-right-box {
    width: 100%;
  }
  .marginleft30 {
    margin-left: 0;
  }
  .xsdt-items {
    align-items: start;
    margin-bottom: 15px;
    border-bottom: 1px solid #d3d3d3;
  }
  .xsdt-items img {
    width: 30%;
    margin-right: 2%;
  }
  .xsdt-carousel {
    margin-top: 20px;
  }
  .xueshudongtai {
    margin-top: 10px;
  }
  .ai-box-center {
    width: 100%;
    position: relative;
    padding: 10px 10px;
  }
  .ai-center-left {
    display: none;
  }
  .ai-center-right {
    width: 100%;
  }
  .xtfc-box {
    margin-top: 10px;
  }
  .main-slider-three__content {
    min-height: 10px !important;
  }
  .jianzhu img {
    width: 70%;
  }
  .team-list-items {
    display: block;
  }
  .team-list-title {
    width: 100%;
  }
  .team-job-box {
    width: 100%;
    border-bottom: 1px solid #d3d3d3;
  }
  .blog-list-items {
    display: block;
  }
  .blog-list-items img {
    width: 100%;
  }
}