.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 102px;
  transition: transform 0.3s ease-out, background-color 0.3s;
}
header.hover {
  background-color: #fff;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
}
.header-wrap:hover {
  background: #fff;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
}
.head {
  position: relative;
  display: flex;
}
.logo-img,
.logo-red-img {
  width: 90px;
  height: 70px;
  margin-top: 21px;
}
.logo-red-img,
.header-wrap:hover .logo-img,
.header-wrap.hover .logo-img {
  display: none;
}
.header-wrap:hover .logo-red-img,
.header-wrap.hover .logo-red-img {
  display: block;
}

.header-companyName {
  color: #fff;
  margin-left: 10px;
}

.header-companyName-small {
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  margin: 33px 0 10px 0;
}
.header-companyName-big {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
}

.header-wrap:hover .header-companyName,
.header-wrap.hover .header-companyName {
  color: #2278cb;
}

.header-actions {
  font-size: 0;
}
.down {
  transform: translateY(-102px);
}
.action-item {
  padding: 50px 16px 0 16px;
  height: 102px;
  opacity: 0.9;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
.action-second-wrap {
  position: absolute;
  top: 102px;
  left: 0;
  width: 100%;
  background: #ff6600;
  color: #fff;
  display: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.action-item:hover .action-second-wrap {
  display: block;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  animation-duration: 0.7s;
}

.action-second-item {
  height: 40px;
  font-size: 14px;
  color: #fff;
  display: block;
  line-height: 40px;
  transition: color 0.5s ease-out, background 0.5s;
}
.action-second-item:hover {
  color: #ff6600;
  background: #fff;
}

header.hover .action-item,
.header-wrap:hover .action-item {
  color: #333;
}

.header-wrap.hover .action-active-item,
.header-wrap:hover .action-active-item {
  color: #fff;
}

.action-item:hover {
  background: #ff6600;
  color: #fff !important;
}

.action-active-item {
  background: #ff6600;
}

.search-wrap {
  padding-top: 48px;
  padding-left: 10px;
}

.search-wrap-img {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../images/search-white.png');
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s;
}

.search-wrap-img.on {
  background-image: url('../images/close-white.png');
}

.header-wrap.hover .search-wrap-img,
.header-wrap:hover .search-wrap-img{
  background-image: url('../images/search-black.png');
}

.header-wrap.hover .search-wrap-img.on,
.header-wrap:hover .search-wrap-img.on{
  background-image: url('../images/close-black.png');
}

.search-alert-wrap {
  display: none;
  position: absolute;
  top: 102px;
  right: 0;
  width: 350px;
  height: 60px;
  background: #fff;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 4px 4px;
}

.search-alert-wrap.active,
.search-hover-wrap .active {
  display: block;
}

.search-alert-ipt {
  height: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin-left: 24px;
  border-right: 1px solid #e2e2e2;
}

/* 修改placeholder文本的颜色和字体样式 */
input.search-alert-right::placeholder {
  color: #ccc; /* 文本颜色 */
}

.search-alert-img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin: 0 20px;
}

footer {
  box-sizing: border-box;
  height: 466px;
  padding-top: 60px;
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.footer-module {
  flex: 0 0 auto;
  width: 146px;
}

a.footer-module-header {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 16px;
  margin-bottom: 24px;
}

a.footer-module-text {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #999;
  line-height: 38px;
}

.footer-qrcode-wrap {
  width: 158px;
  height: 186px;
  background: #fff;
}

.footer-qrcode-img {
  width: 138px;
  height: 138px;
  margin: 10px 10px 0 10px;
}

.footer-qrcode-text {
  font-weight: 700;
  font-size: 16px;
  color: #5b5b5b;
  line-height: 16px;
  text-align: center;
  margin-top: 4px;
}
.footer-division {
  width: 100%;
  height: 1px;
  background: #f7f4f3;
  margin-top: 40px;
}

.footer-line2-each {
  font-weight: 400;
  font-size: 14px;
  color: #999;
  line-height: 14px;
  margin-top: 40px;
}

.footer-line2-each:not(:last-of-type) {
  padding-right: 30px;
  border-right: 1px solid #e2e2e2;
}

.footer-line2-each:not(:first-of-type) {
  padding-left: 30px;
}
