* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-size: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
html,
body {
  width: 100%;
  height: 100%;
}
pre {
  font-family: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
ul > li {
  list-style: none;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
button {
  outline: none;
  text-align: center;
}
button.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
button.contact-btn i {
  width: 16px;
  height: 16px;
  background-image: url(/images/contact-icon.png);
  background-size: cover;
  margin-right: 8px;
  display: inline-block;
}
.w-1200 {
  width: 1200px;
  margin: 0 auto;
}
#header {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  border-bottom: 1px solid #e5e5e5;
}
#header .container {
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .container .logo {
  display: flex;
  align-items: center;
}
#header .container .logo img {
  height: 30px;
}
#header .container .logo span {
  font-size: 14px;
  color: #000;
  padding-left: 8px;
  font-weight: 600;
}
#header .container nav ul {
  display: flex;
}
#header .container nav ul li {
  height: 62px;
  margin-left: 32px;
  position: relative;
}
#header .container nav ul li a {
  height: 100%;
  line-height: 62px;
  font-size: 14px;
  color: #191919;
  display: block;
}
#header .container nav ul li.active a {
  font-weight: 600;
}
#header .container nav ul li.active:after {
  content: '';
  height: 4px;
  background: #2D914B;
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: -1px;
}
#header .container button.contact-btn {
  width: 106px;
  height: 32px;
  line-height: 32px;
  background-color: #2D914B;
  border: none;
  font-size: 14px;
  color: #fff;
}
#footer {
  width: 100%;
  padding: 40px 0 64px;
  background-color: #252525;
  background-image: url(/images/footer_bg.png);
  background-size: cover;
  background-position: center center;
}
#footer .container {
  height: 100%;
}
#footer .container .logo {
  width: 100%;
  display: flex;
  align-items: center;
}
#footer .container .logo img {
  height: 30px;
}
#footer .container .logo span {
  font-size: 20px;
  color: #fff;
  line-height: 28px;
  font-weight: 600;
  padding-left: 8px;
}
#footer .container .sections {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 48px 0 0;
}
#footer .container .sections .link {
  display: inline-flex;
  align-items: center;
  gap: 72px;
}
#footer .container .sections .link a {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  position: relative;
}
#footer .container .sections .contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
#footer .container .sections .contact a {
  width: 36px;
  height: 36px;
  position: relative;
}
#footer .container .sections .contact a:hover .pop {
  display: block;
}
#footer .container .sections .contact a .pop {
  position: absolute;
  width: 160px;
  background-color: #FFF;
  text-align: center;
  padding: 10px 10px 16px;
  bottom: 50px;
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0px rgba(200, 201, 204, 0.5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
}
#footer .container .sections .contact a .pop::after {
  position: absolute;
  bottom: -8px;
  content: '';
  width: 21px;
  height: 12px;
  background: url(/images/icon-arrow-down.png) 50% 50% no-repeat;
  background-size: cover;
  left: 50%;
  transform: translateX(-50%);
}
#footer .container .sections .contact a .pop .code {
  width: 100%;
}
#footer .container .sections .contact a .pop p {
  color: #606266;
  font-size: 14px;
  line-height: 18px;
  padding: 4px 6px 0;
}
#footer .container .blogroll {
  width: 100%;
  margin: 48px 0 0;
  padding: 32px 0 0 120px;
  display: flex;
  align-items: center;
  gap: 12px 32px;
  flex-wrap: wrap;
  border-top: 1px solid #606266;
  position: relative;
}
#footer .container .blogroll label {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  position: absolute;
  left: 0;
  top: 32px;
}
#footer .container .blogroll a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 17px;
}
#footer .container .blogroll a:hover {
  color: #fff;
}
#contact-popup {
  position: fixed;
  top: 62px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}
#contact-popup.show {
  display: block;
}
#contact-popup.show .wrapper {
  animation: popupScaleShow 0.3s;
}
@keyframes popupScaleShow {
  0% {
    opacity: 0.5;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#contact-popup .wrapper {
  width: 1200px;
  height: 757px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -378px 0 0 -600px;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}
#contact-popup .wrapper .bg {
  width: 50%;
  height: 100%;
  display: inline-block;
  vertical-align: top;
}
#contact-popup .wrapper .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contact-popup .wrapper .content {
  width: 50%;
  height: 100%;
  padding: 80px 48px 48px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
#contact-popup .wrapper .content .close {
  width: 24px;
  height: 24px;
  background: url(/images/close.png) no-repeat center center;
  display: inline-block;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
#contact-popup .wrapper .content strong {
  font-size: 24px;
  color: #000;
  line-height: 33px;
  font-weight: normal;
  display: inline-block;
}
#contact-popup .wrapper .content .t {
  font-size: 14px;
  color: #606266;
  line-height: 20px;
  margin: 8px 0 8px;
}
#contact-popup .wrapper .content .form-data {
  width: 100%;
}
#contact-popup .wrapper .content .form-data .form-item {
  width: 100%;
  display: inline-block;
  margin: 16px 0 0;
}
#contact-popup .wrapper .content .form-data .form-item label {
  font-size: 14px;
  color: #000;
  line-height: 20px;
  padding: 0 0 0 12px;
  display: inline-block;
  height: 20px;
}
#contact-popup .wrapper .content .form-data .form-item label .red {
  font-size: 16px;
  color: #E61211;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
}
#contact-popup .wrapper .content .form-data .form-item .form-block {
  width: 100%;
  margin: 8px 0 0;
  position: relative;
}
#contact-popup .wrapper .content .form-data .form-item .form-block input[type='text'],
#contact-popup .wrapper .content .form-data .form-item .form-block textarea {
  width: 100%;
  font-size: 14px;
  color: #303133;
  line-height: 14px;
  padding: 11px 0 11px 12px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background-color: #fff;
  outline: none;
  box-sizing: border-box;
}
#contact-popup .wrapper .content .form-data .form-item .form-block input[type='text']::placeholder,
#contact-popup .wrapper .content .form-data .form-item .form-block textarea::placeholder {
  color: #c0c4cc;
}
#contact-popup .wrapper .content .form-data .form-item .form-block textarea {
  height: 72px;
  resize: none;
}
#contact-popup .wrapper .content .form-data .form-item .form-block .words {
  font-size: 14px;
  font-style: normal;
  color: #909399;
  line-height: 18px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
#contact-popup .wrapper .content .form-data .form-item .form-block .captcha-img {
  width: 112px;
  height: 43px;
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #dcdfe6;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
#contact-popup .wrapper .content .form-data .submit-btn {
  width: 400px;
  height: 64px;
  line-height: 64px;
  font-size: 20px;
  color: #fff;
  background-color: #2D914B;
  border: none;
  border-radius: 6px;
  outline: none;
  display: block;
  margin: 24px auto 0;
  cursor: pointer;
}
