:root {
  --color-base: #08E773;
}

html,
body {
  font-size: 16px;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: underline;
  transition: all .3s;
}

hr {
  border-top: 1px dashed var(--border-color);
  opacity: 1;
}

small {
  font-size: .8rem;
}

.header {
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, .8);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .05);
}

.header .menu li {
  color: #000;
  font-weight: bold;
  padding: 20px 0;
  list-style-type: none;
}

.header .menu li a {
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}

.header a.enquire {
  background-color: #000;
  border-radius: 100px;
  color: #fff;
  height: 45px;
  line-height: 45px;
}

.header a.enquire:hover {
  background-color: var(--color-base);
  color: #000;
}

.header .menu a:hover {
  color: var(--color-base);
}

.header .menu li.active {
  border-bottom: 3px solid var(--color-base);
}

.home {
  background: url('img01.webp') no-repeat center;
  background-size: cover;
}

.btnLink {
  background: var(--color-base);
  border-radius: 100px;
  padding: 12px 30px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: #000;
  transition: all .2s;
  font-size: 14px;
  font-weight: bold;
}

.btnLink:hover {
  padding: 12px 35px;
}

.btnLink2 {
  background: #000;
  border-radius: 100px;
  padding: 12px 30px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: #fff;
  transition: all .2s;
  font-size: 14px;
  font-weight: bold;
}

.btnLink2:hover {
  padding: 12px 35px;
}

.section .container,
.section .container-fluid {
  overflow: hidden;
}

.about .container-fluid,
.specs .container-fluid {
  height: 100vh;
}

.about,
.gallery {
  background: linear-gradient(130deg, #08E773 0%, #fff 100%);
}

small.small {
  font-size: .7rem;
}

.baseColor {
  color: var(--color-base);
}

.galleryList a {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all .2s;
  border: 3px solid transparent;
}

.galleryList a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(0px);
  transition: all .2s;
}

.galleryList a:hover::before {
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(2px);
}

.galleryList a::after {
  content: 'View';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  transition: all .2s;
  background-color: #000;
  padding: 5px 15px;
  border-radius: 100px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .05);
  pointer-events: none;
}

.galleryList a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.galleryList a:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, .3);
  border: 3px solid #000;
}

.contact {
  background-color: var(--color-base);
  background-image: url('icon.png');
  background-repeat: no-repeat;
  background-position: 100% -10%;
  background-size: 30% auto;
}

.animate-item {
  opacity: 0;
  transform: translateY(50px);
}

.break-word {
  word-wrap: break-word;
  word-break: break-all;
}

.fp-watermark {
  display: none !important;
}

#copyBtn{
  background-color: transparent;
  color: #000;
  box-shadow: inset 0 0 0 2px black; /* 内描边 */
}

/* 当屏幕小于bootstrap的LG宽度时 */
@media (max-width: 992px) {
  .contact {

    background-position: 140% -5%;
    background-size: 70% auto;
  }
}