* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Roboto, Helvetica, Arial, sans-serif; */
}

/* 左右24px */
.header-standard {
  margin: 45px 0px 10px;
}
.header-standard .top {
  display: flex;
}

.header-standard .topLeft img {
  width: 72px;
  height: 72px;
}

.header-standard .topRight {
  margin-left: 16px;
  margin-top: -3px;
}

.header-standard .topRight h1 {
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: #202124;
}

.header-standard .topRight h2 {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: rgb(1, 135, 95);
}

.header-standard .topRight span {
  color: #5f6368;
  font-size: 12px;
}

/* ul列表 */
.header-standard .center ul {
  display: flex;
  margin-top: 30px;
  height: 48px;
  /* background-color: skyblue; */
}

.header-standard .center ul li {
  position: relative;
  list-style: none;
  width: 33%;
  height: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* font-weight: 600; */
}

.header-standard .center ul li strong {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 600;
  color: #202124;
}

.header-standard .center ul li p {
  color: rgb(95, 99, 104);
}

.header-standard .center ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 55%;
  background-color: rgb(235, 235, 235);
}

.header-standard .center ul li img {
  width: 12px;
  height: 11px;
}

.header-standard .center ul li:nth-child(3) img {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto;
}

/* 底部按钮 */
.header-standard .bottom {
  /* background-color: green; */
  margin-top: 20px;
}

.header-standard .bottom button {
  margin: 6px 0;
  background-color: rgb(1, 135, 95);
  color: #fff;
  width: 100%;
  height: 43px;
  border-width: 0;
  border-radius: 8px;
  /* position: relative; */
  /* overflow: hidden; */
}

.header-standard .bottom button:hover {
  background-color: #095943;
  cursor: pointer;
}

.header-standard .bottom button:active {
  background-color: #0d4e3d;
  cursor: pointer;
}

.header-standard .bottom button a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 1280px) {
  .header-standard .bottom button a {
    font-size: 14px;
  }
  .header-standard .bottom button {
    height: 38px;
  }
}
/* 动画 */
/* .header-standard .bottom button::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  animation: btn-shine 2s infinite linear;
  transform: skewX(-18deg);
  border-radius: 8px;
} */

/* @keyframes btn-shine {
  0% {
    left: -40px;
    opacity: 0;
  }
  15% {
    opacity: 0.4;
  }
  45% {
    left: 50%;
    opacity: 0.4;
  }
  60% {
    left: 55%;
    opacity: 0;
  }
  100% {
    left: 55%;
    opacity: 0;
  }
} */
