:root {
  /*----- color ------*/
  --primary-color:#016341;
  --header-ws-background:#dae7df;
  --border-color:#dcdfe0;
  /*font size */
  --header-ws-fontsize:16px;
  --hero-info-p-fontsize:24px;
  --h1-lg-fontsize:100px;
  /*line height*/
  --hero-info-p-lh:40px;
  /*container width*/
  --container-lg-max:1720px;
  /*padding*/
  --section-padding:160px;
  --hero-home-padding:100px;
  /* margin */
  --h-margin-bottom:16px;
  --h1-lg-margin-top:10px;
}

/* 下面样式规则只在屏幕宽度 大于等于1201px 和 小于等于 1760px 时生效 */
@media all and (min-width: 1201px) and (max-width: 1760px) {
  :root {
    --section-padding:100px;
    --hero-home-padding:60px;
    --hero-info-p-fontsize:20px;
    --hero-info-p-lh:36px;
    --h1-lg-fontsize:76px;
  }
}

/* 下面样式规则只在屏幕宽度 小于等于 1200px 时生效 */
@media all and (max-width: 1200px) {
  :root {
    --header-ws-fontsize:14px;
    --section-padding:80px;
    --hero-home-padding:60px;
    --hero-info-p-fontsize:20px;
    --hero-info-p-lh:36px;
    --h1-lg-fontsize:65px;
  }
}

/* 下面样式规则只在屏幕宽度 小于等于 767px 时生效 */
@media all and (max-width: 767px) {
  :root {
    --hero-info-p-fontsize:18px;
    --hero-info-p-lh:28px;
  }
}

/* 下面样式规则只在屏幕宽度 小于等于 575px 时生效 */
@media all and (max-width: 575px) {
  :root {
    --section-padding:60px;
    --h1-lg-fontsize:45px;
    --h-margin-bottom:13px;
    --h1-lg-margin-top:8px;
  }
}

/* root variables end 常量设置*/

* {
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* body 全局样式 */
body {
  overflow-x: hidden;
  width: 100%;
  background: white;
  position: relative;
  font-size:14px;
  line-height:34px;
  letter-spacing: 0.5px;
  color:#3e4447; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: calc(100vw - 100%);
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  body {
    font-size: 16px;
    line-height: 30px;
  }
}
@media all and (max-width: 1200px) {
  body {
    line-height: 30px; 
  }
}

a {
  touch-action: manipulation;
  text-decoration: none;
  outline: none;
  color: var(--primary-color); 
}
a:hover {
  text-decoration: none;
}
a:hover, a:focus, a:active {
	text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  color:#000;
  margin: 0 0 var(--h-margin-bottom) 0;
  padding: 0;
  position: relative;
}

/* container-lg 视频推广*/
.container-lg {
  width: 92%;
  max-width: var(--container-lg-max);
  margin-left: auto;
  margin-right: auto;
  padding-left:20px;
  padding-right:20px;
}
@media all and (max-width: 575px) {
  .container-lg {
    width: 100%;
    padding-left:20px;
    padding-right:20px;
  }
}

.row {
  margin-left:-20px;
  margin-right:-20px;
}
@media all and (max-width: 1760px) {
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.row > [class*=col] {
  padding-left:20px;
  padding-right:20px;
}
@media all and (max-width: 1760px) {
  .row > [class*=col] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row.g-0 {
  margin-left: 0;
  margin-right: 0;
}
.row.g-0 > [class*=col] {
  padding-left: 0;
  padding-right: 0;
}

/* h1-lg 视频推广 大标题*/
.h1-lg {
  font-size: var(--h1-lg-fontsize);
  line-height:102px;
  color:#000;
  letter-spacing: -0.02em;
  margin-top: calc(var(--h1-lg-margin-top) * -1);
  margin-bottom:24px;
}
@media all and (min-width: 1201px) and (max-width: 1760px) {
  .h1-lg {
    line-height:80px;
  }
}
@media all and (max-width: 1200px) {
  .h1-lg {
    line-height:70px;
  }
}
@media all and (max-width: 575px) {
  .h1-lg {
    line-height:50px;
  }
}

section,
.section {
  background:#fff;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

header {
  transition: 0.3s all;
  position: sticky;
  top: 0;
  z-index: 999;
  pointer-events: none;
}

header:has(.hamburger-mega-menu.show) {
  z-index: 1002;
}

.admin-bar header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 46px !important;
  }
}

.header-top {
  position: relative;
  background: #ffffff;
  z-index: 4;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  pointer-events: auto;
  height:96px;
  padding-left: 24px;
  padding-right: 36px;
}
@media all and (max-width: 1600px) {
  .header-top {
    height: 80px;
  }
}
@media all and (max-width: 767px) {
  .header-top {
    padding-left: 10px;
  }
}
@media all and (max-width: 575px) {
  .header-top {
    padding-right: 16px;
    height: 70px;
  }
}


.header-bottom {
  background: #006039;
  position: relative;
  z-index: 2;
  transition: 0.3s all;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
@media all and (max-width: 1200px) {
  .header-bottom {
    height: 80px;
  }
}

.header-main-menu {
  position: relative;
  z-index: 1;
  transition: 0.3s all;
  height: 70px;
  background: #ffffff;
  pointer-events: auto;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .header-main-menu {
    height: 55px;
  }
}
@media all and (max-width: 1200px) {
  .header-main-menu {
    height: auto;
    border: 0;
  }
}

/*----- On Scroll Header Link Carousel + Rolex Bar Hide Style  ------*/

/* @media (min-width: 1201px) {
  header.shrink .header-bottom, header.shrink .header-main-menu {
    transform: translateY(-151px);
  }
}
@media (max-width: 1200px) {
  header.shrink .header-bottom, header.shrink .header-main-menu {
    transform: translateY(-135px);
  }
}
@media (max-width: 575px) {
  header.shrink .header-bottom {
    transform: translateY(-125px);
  }
} */

@media (min-width: 1201px) {
  header.shrink .header-bottom, header.shrink .header-main-menu {
    transform: translateY(-100px);
  }
}
@media (max-width: 1200px) {
  header.shrink .header-bottom, header.shrink .header-main-menu {
    transform: translateY(-80px);
  }
}

/*-- 导航栏图片 logo --*/
.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 45px;
  padding: 0;
  transition: 0.3s all;
}
@media all and (max-width: 1200px) {
  .navbar-brand {
    margin-right: 36px;
  }
}
@media all and (max-width: 575px) {
  .navbar-brand {
    margin-right: auto;
  }
}

.navbar-brand .navbar-brand-text {
  width: 160px;
  height: auto;
}
@media all and (max-width: 1760px) {
  .navbar-brand .navbar-brand-text {
    width: 150px;
  }
}
@media all and (max-width: 575px) {
  .navbar-brand .navbar-brand-text {
    width: 105px;
  }
}

.header-rolex-clock {
  display: flex;
  align-items: center;
  position: relative;
}
.header-rolex-clock iframe {
  width: 303px;
}

@media all and (max-width: 1200px) {
  .header-rolex-clock iframe {
    transform: scale(0.8);
  }
}

.header-weather {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}
@media all and (max-width: 991px) {
  .header-weather {
    display: none;
  }
}

.header-weather ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
.header-weather ul li {
  margin: 6px;
}
.header-weather ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  background: var(--header-ws-background);
  height:36px;
  width:36px;
  font-size: var(--header-ws-fontsize);
  position: relative;
  transition: 0.3s all;
}

.primary-nav {
  height: 100%;
}
.primary-nav .navbar-nav {
  flex-direction: row;
  height: 100%;
  justify-content: space-around;
}

.primary-nav .navbar-nav .menu-item .active {
  color: var(--primary-color);
}
.primary-nav .navbar-nav .menu-item-has-children .active{
  color: var(--primary-color);
}

@media all and (max-width: 1200px) {
  .primary-nav .navbar-nav {
    flex-direction: column !important;
    padding-bottom:20px;
    align-items: start;
    padding: 30px 24px 30px;
  }
}
.primary-nav .navbar-nav li {
  position: relative;
  padding: 0;
  margin-bottom: 0px;
  line-height: normal;
  display: flex;
  align-items: center;
}
@media all and (max-width: 1200px) {
  .primary-nav .navbar-nav li {
    display: block;
    padding: 0;
    margin-left: 0;
    margin-bottom: 16px;
    width: 100%;
  }
}
.primary-nav .navbar-nav li > a {
  height: auto !important;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0 20px;
  transition: 0.3s all;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
}
@media all and (min-width: 1441px) and (max-width: 1760px) {
  .primary-nav .navbar-nav li > a {
    font-size: 16px;
    font-weight: 500; 
  }
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .primary-nav .navbar-nav li > a {
    font-size: 15px;
    font-weight: 500;
  }
}
@media all and (max-width: 1200px) {
  .primary-nav .navbar-nav li > a {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 575px) {
  .primary-nav .navbar-nav li > a {
    font-size: 16px;
    line-height: 18px;
  }
}
.primary-nav .navbar-nav li > a:hover {
  color: var(--primary-color);
}
.primary-nav .navbar-nav li:first-child {
  margin-left: 0;
}

.menu-item-has-children {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  padding: 0;
  cursor: pointer;
}
@media all and (max-width: 1200px) {
  .menu-item-has-children {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}
.menu-item-has-children > a {
  position: relative;
  padding: 0;
}
.menu-item-has-children > a::after {
  content: "";
  background: url(../img/select-down-arrow2.png) no-repeat center/contain;
  width: 12px;
  height: 7px;
  display: inline-block;
  margin-left: 12px;
  filter: brightness(0);
  transition: 0.3s all;
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .menu-item-has-children > a::after {
    width: 14px;
  }
}
@media all and (max-width: 1200px) {
  .menu-item-has-children > a::after {
    margin-left: auto;
  }
}
.menu-item-has-children > a:hover::after {
  filter: none;
}
.menu-item-has-children .sub-menu {
  position: absolute;
  background: white;
  border: 1px solid transparent;
  padding: 18px 22px 22px;
  width: 320px;
  top: 100%;
  left: 0px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.07);
  z-index: 10;
  transform-origin: 50% 0;
  transform: scaleY(0) translateZ(0);
  opacity: 0;
  transition: 0.25s all;
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .menu-item-has-children .sub-menu {
    width: 260px;
  }
}
@media all and (max-width: 1200px) {
  .menu-item-has-children .sub-menu {
    top: 0;
    position: relative;
    width: 100%;
    opacity: 1;
    transform: none;
    transform: none;
    box-shadow: none;
    padding: 12px 16px;
    background: #dcdfe04a;
    display: none;
    transition: 0s all;
  }
}
@media all and (max-width: 575px) {
  .menu-item-has-children .sub-menu {
    gap: 10px;
  }
}
.menu-item-has-children .sub-menu li {
  padding: 0;
  margin: 0 0 14px 0;
  display: block;
}
@media all and (max-width: 1200px) {
  .menu-item-has-children .sub-menu li {
    pointer-events: none !important;
  }
}
.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
.menu-item-has-children .sub-menu li > a {
  padding: 0;
  display: block;
  pointer-events: auto;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color:#000;
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .menu-item-has-children .sub-menu li > a {
    font-size: 14px;
    line-height: 16px;
  }
}
@media all and (max-width: 1200px) {
  .menu-item-has-children .sub-menu li > a {
    font-size: 14px;
    line-height: 20px;
  }
}
.menu-item-has-children .sub-menu li > a::after {
  display: none;
}
.menu-item-has-children .sub-menu li > a:hover {
  color: var(--primary-color);
}
.menu-item-has-children .sub-menu li > a:not([href]) {
  cursor: default;
  font-size: 16px;
  line-height: 22px;
  color:#000;
  font-weight: 550;
  opacity: 0.9;
  margin-bottom: 14px;
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .menu-item-has-children .sub-menu li > a:not([href]) {
    font-size: 14px;
    line-height: 16px;
  }
}
@media all and (max-width: 1200px) {
  .menu-item-has-children .sub-menu li > a:not([href]) {
    font-size: 14px;
    line-height: 20px;
    pointer-events: none;
  }
}
.menu-item-has-children .sub-menu li > a:not([href]):hover {
  color:#000;
}
.menu-item-has-children .sub-menu li .sub-menu {
  position: initial;
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  box-shadow: none;
  z-index: inherit;
  transform: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-item-has-children .sub-menu li .sub-menu li {
  line-height: initial;
  margin: 0;
}
.menu-item-has-children .sub-menu li .sub-menu li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color:#000;
  display: block;
  opacity: 0.7;
  transition: 0.3s all;
  padding-left: 22px;
  margin: 0;
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .menu-item-has-children .sub-menu li .sub-menu li a {
    font-size: 14px;
    line-height: 16px;
    padding-left: 18px;
  }
}
@media all and (max-width: 1200px) {
  .menu-item-has-children .sub-menu li .sub-menu li a {
    font-size: 14px;
    line-height: 20px;
  }
}
.menu-item-has-children .sub-menu li .sub-menu li a::before {
  content: "";
  position: absolute;
  opacity: 0.8;
  top: 4px;
  left: 0;
  width: 12px;
  height: 15px;
  /* background: url(../img/menu-arrow-icon.svg) no-repeat center/contain; */
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .menu-item-has-children .sub-menu li .sub-menu li a::before {
    top: 2px;
    width: 10px;
    height: 13px;
  }
}
@media all and (max-width: 1200px) {
  .menu-item-has-children .sub-menu li .sub-menu li a::before {
    height: 13px;
  }
}
.menu-item-has-children .sub-menu li .sub-menu li a:hover {
  color: var(--primary-color);
  opacity: 1;
}
.menu-item-has-children:last-child .sub-menu {
  left: auto;
  right: 0;
}
@media (min-width: 1201px) {
  .menu-item-has-children:hover .sub-menu {
    transform: scaleY(1) translateZ(0);
    opacity: 1;
  }
}

.menu-item-has-children:has(.sub-menu.show)::after {
  transform: rotate(180deg);
}

.hamburger-menu {
  flex: none;
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  width: 24px;
  padding: 4px 2px;
}
@media all and (max-width: 1200px) {
  .hamburger-menu {
    display: flex;
    margin-left: 22px;
  }
}
@media all and (max-width: 575px) {
  .hamburger-menu {
    margin-left: 14px;
  }
}
.hamburger-menu span {
  height: 1px;
  width: 100%;
  background: #000000;
  transition: 0.3s all;
}
.hamburger-menu.icon-animation span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-menu.icon-animation span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.icon-animation span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media all and (max-width: 1200px) {
  .hamburger-mega-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    width: 300px;
    background: #ffffff;
    transform: translateX(-100%);
    transition: 0.3s all;
  }
}

.hamburger-mega-menu.show {
  transform: scaleY(1) translateZ(0);
  opacity: 1;
}
.hamburger-mega-menu.show .hamburger-close {
  transform: translateX(0);
} 

@media all and (max-width: 1200px) {
  .admin-bar .hamburger-mega-menu {
    top: 32px;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .hamburger-mega-menu {
    top: 46px;
  }
}

.hamburger-close {
  position: absolute;
  top: 20px;
  right: -50px;
  background: #ffffff;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateX(-100px);
  transition: 0.3s all;
}
@media all and (max-width: 1200px) {
  .hamburger-close {
    display: flex;
  }
}

.overlay {
  background: rgba(0, 0, 0, 0.57);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all;
}
@media all and (max-width: 1200px) {
  .overlay.show-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

.flyout-menu-logo {
  display: none;
  height: 110px;
  display: none;
  align-items: center;
  padding-left: 30px;
  border-bottom: 1px solid var(--border-color);
}
@media all and (max-width: 1200px) {
  .flyout-menu-logo {
    display: flex;
  }
}
@media all and (max-width: 575px) {
  .flyout-menu-logo {
    height: 90px;
    padding-left: 24px;
  }
}
.flyout-menu-logo img {
  width: 120px;
}
@media all and (max-width: 575px) {
  .flyout-menu-logo img {
    width: 100px;
  }
}



.header-socials {
  padding: 20px;
  display: none;
}
@media all and (max-width: 1200px) {
  .header-socials {
    display: block;
  }
}
.header-socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
.header-socials ul li {
  margin: 6px;
}
.header-socials ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  background: var(--header-ws-background);
  height:36px;
  width:36px;
  font-size: var(--header-ws-fontsize);
  position: relative;
  transition: 0.3s all;
}

@media all and (max-width: 1200px) {
  .mega-menu-scroll {
    height: calc(100% - 110px);
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
  }
}







/*---- Hero Home 视频or大图 ----*/
.hero-home {
  position: relative;
  overflow: hidden;
  height: 830px;
  padding-top: var(--hero-home-padding);
  padding-bottom: var(--hero-home-padding);
  padding-left:40px;
  padding-right:40px;
}
@media all and (min-width: 1441px) and (max-width: 1760px) {
  .hero-home {
    height: 600px;
  }
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .hero-home {
    height: 600px;
  }
}
@media all and (max-width: 1200px) {
  .hero-home {
    height: 640px;
  }
}
@media all and (max-width: 991px) {
  .hero-home {
    height: 620px;
    padding-left:20px;
  }
}
@media all and (max-width: 575px) {
  .hero-home {
    height: 500px;
    padding-left:16px;
    padding-right:16px;
  }
}
.hero-home .container-lg {
  max-width: 100%;
  padding: 0;
  width: 100%;
}
.hero-home .hero-bg {
  position: absolute;
  inset: 0;
}
.hero-home .hero-bg img,
.hero-home .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -16.45%, rgba(0, 0, 0, 0.6) 71.45%);
}
.hero-home .hero-info {
  display: flex;
  flex-direction: column;
  max-width: 920px;
}
@media all and (min-width: 1441px) and (max-width: 1760px) {
  .hero-home .hero-info {
    max-width: 700px;
  }
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  .hero-home .hero-info {
    max-width: 700px;
  }
}
@media all and (max-width: 1200px) {
  .hero-home .hero-info {
    max-width: 700px;
  }
}
.hero-home .hero-info h1 {
  color: #fff;
}
.hero-home .hero-info p {
  position: relative;
  font-size: var(--hero-info-p-fontsize);
  line-height: var(--hero-info-p-lh);
  color: #fff;
  margin: 0;
}
