* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

html {
  font-size: 10px;
}

body {
  background-color: #fff;
}

.navbar {
  width: 100%;
  position: fixed;
}

.header {
  padding: 11.2px 24px;
  height: 60px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.932);
  display: flex; /*Flex布局*/
  align-content: center;
  align-items: center; /*指定垂直居中*/
  border-bottom: 1px solid rgb(134, 130, 130, 0.6);
}

.right-nav {
  position: absolute;
  right: 10px;
  font-size: 18px;
}

.right-nav span {
  margin-right: 8px;
}

.right-nav a {
  text-decoration: none;
}

.rotate {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0;
  border-top: 2px solid #000; /* 箭头颜色 */
  border-right: 2px solid #000; /* 箭头颜色 */
  transform: rotate(135deg);
  transition: all 0.5s ease 0s; /*all是所有属性都将获得动画效果  0.5秒完成动画 ease(逐渐变慢)*/
}

.rotate:hover {
  cursor: pointer;
  transform: rotate(315deg); /*旋转180度 */
}

.navbar .header a {
  text-decoration: none;
  color: black;
}

.navbar .header img {
  width: 3rem;
  height: 3rem;
  margin: 0 13px 0 0;
}

.home {
  display: flex;
  flex-direction: column;
  padding: 7%;
  /* margin: 0px 253.2px;
  padding: 57.6px 32px 0px; */
}

.hero {
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  /* padding-right: 10%;
  padding-left: 10%;
  height: 320px; */
  text-align: left;
}

img {
  width: 320px;
  height: 320px;
}

.hero-info {
  display: flex;
  flex-direction: column;

  justify-content: center;
  /* height: 320px; */
}

.hero-info h1 {
  color: rgb(0, 0, 0);
  font-size: 4rem;
  margin: 28.8px 0px;
}

.hero-info p {
  margin: 28.8px 0px;
  font-size: 2rem;
}

.action a {
  text-decoration: none;
  padding: 16px 24px;
  margin: 9.6px 12.8px;
  background-color: rgb(39, 145, 101);
  border-radius: 2rem;
  color: aliceblue;
}

.action {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.content {
  padding: 0px 0px 24px;
}

.home .content h2 {
  font-size: 3rem;
  margin: 10px;
}

.home .content a {
  font-size: 1.8rem;
  color: rgb(46, 134, 105);
  text-decoration: none;
}

.home .content li {
  margin: 10px 2%;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 12px 30px;
  font-size: 15px;
  border-top: 1px solid rgb(190, 189, 186);
}

.footer-content .record a {
  text-decoration: none;
  color: rgb(116, 189, 116);
}

@media screen and (max-width: 958px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    /* padding: 10% 10%; */
    margin: 40px;
    text-align: center;
  }

  img {
    width: 240px;
    height: 240px;
    margin: 44px;
  }
}

/* @media screen and (max-width:368) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    padding: 10% 10%;
    margin: 40px;
    text-align: center;
    background-color: rgb(116, 51, 51);
  }

  img {
    width: 210px;
    height: 210px;
    margin: 44px;
  }

  .action {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
  }
} */
