﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  font-size: 14px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #000;
  font-weight: 400;
}

a {
  text-decoration: none;
}

.hh-wid {
  width: 100%;
  margin: 0 auto;
}

.hh-wid-16 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.hh-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.hh-head .left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.hh-head .logo {
  height: 48px;
}

.hh-head .menus {
  color: #000;
}

.hh-head .menus a {
  color: #000;
}

.hh-head .menus.hover {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  padding: 120px 0;
}

.hh-banner {
  display: flex;
  justify-content: space-between;
}

.hh-banner .left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 5% 5% 5% 6%;
  width: 37%;
  gap: 15%;
}

.hh-banner .left h2 {
  font-size: 52px;
  line-height: 1.2;
  flex: 1;
}

.hh-banner .left p {
  font-size: 18px;
}

.hh-banner .left a {
  width: 142px;
  height: 46px;
  border: 1px solid #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #000;
  flex: none;
}

.hh-banner .right {
  max-width: 1644px;
  min-height: 420px;
  width: 63%;
  position: relative;
}

.hh-banner .right img {
  width: 100%;
  height: 100%;
}

.hh-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  padding: 50px 0;
  row-gap: 50px;
}

.hh-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hh-list li a {
  width: 100%;
}

.hh-list li .img {
  width: 100%;
}

.hh-list li .main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hh-list li .main strong {
  font-size: 18px;
}

.hh-list li .main p {
  font-size: 16px;
  line-height: 1.6;
}

.hh-title {
  font-size: 60px;
  text-align: center;
  font-weight: bold;
  margin-top: 80px;
}

.hh-footer {
  text-align: center;
  font-size: 12px;
  color: #000;
  padding: 30px 0;
}

.hh-footer a {
  color: #000;
}

.hh-list-home {
  width: 1200px;
  margin: 0 auto;
}

.hh-list-home li {
  width: 100%;
}

.hh-list-home li .img {
  border-radius: 20px;
  overflow: hidden;
}

.hh-list-home li strong {
  text-align: center;
  font-size: 30px !important;
}

.hh-list-home li p {
  text-align: center !important;
  font-size: 14px !important;
}

.hh-menus {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.menus-nav {
  display: flex;
  position: relative;
  width: 30px;
  height: 2px;
  background: #000;
}

.menus-nav::before, .menus-nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

.menus-nav::before {
  top: -10px;
}

.menus-nav::after {
  bottom: -10px;
}

.menus-nav.hover {
  display: flex;
  z-index: 3;
  background: none !important;
}

.menus-nav.hover::before {
  transform: rotate(45deg);
  top: auto;
}

.menus-nav.hover::after {
  transform: rotate(-45deg);
  bottom: auto;
}

@media screen and (max-width: 750px) {
  .hh-list-home {
    width: 100%;
  }
  .hh-list {
    padding: 30px;
  }
  .hh-banner {
    flex-direction: column;
  }
  .hh-banner .left {
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 10%;
  }
  .hh-banner .left h2 {
    text-align: center;
  }
  .hh-banner .right {
    width: 100%;
    min-height: auto;
  }
  .hh-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .menus {
    display: none;
  }
  .menus a {
    color: #1a6aff !important;
  }
  .hh-menus {
    display: flex;
  }
}

@media screen and (max-width: 1200px) {
  .hh-list-home {
    width: 100%;
  }
}

@media screen and (max-width: 1600px) {
  .hh-list {
    padding: 30px;
  }
}
