@charset "UTF-8";
/* 头尾各个页面相同的共享 */
.wrapper {
  margin: 0 auto;
  width: 1200px;
}

/* home版本1 */
/* 头部区域 */
.home-one-header {
  border-bottom: 1px solid #EEF2FC;
  background: #ffffff;
}

.home-one-header-container {
  height: 120px;
  display: flex;
}

.home-one-header .logo {
  margin-top: 13px;
  width: 180px;
  height: 87px;
  display: flex;
  align-items: center;
}

.home-one-header .logo img {
  width: 180px;
  height: auto;
}

.home-one-header-search {
  margin-left: 103px;
  margin-top: 26px;
  width: 575px;
}

.home-one-header-search-top {
  display: flex;
  justify-content: space-between;
  border: 2px solid #3161F5;
  height: 41px;
}

.home-one-header-search-left {
  margin-top: 5px;
  margin-left: 16px;
}

.home-one-header-search-left span {
  color: #222;
  padding-right: 15px;
  border-right: 2px solid #d1d1d1;
  font-size: 14px;
}

.home-one-header-search-left input {
  margin-left: 10px;
  width: 350px;
}

.home-one-header-search-right-search {
  height: 100%;
  width: 110px;
  color: #fff;
  line-height: 36px;
  text-align: center;
  background-color: #3161F5;
  cursor: pointer;
}

.home-one-header-search-footer {
  position: absolute;
  overflow: hidden;
  display: flex;
  margin-top: 10px;
  font-size: 14px;
  width: 575px;
  white-space: nowrap;
}

.home-one-header-search-footer .hot {
  padding-right: 14px;
  border-right: 1px solid #d1d1d1;
}

.home-one-header-search-footer .hot span {
  border: 1px solid #EA2C2C;
  color: #EA2C2C;
  padding: 0 5px;
}

.home-one-header-search-footer .hot-container span:first-child {
  margin-left: 14px;
}

.home-one-header-search-footer .hot-container span a {
  margin-right: 28px;
}

.home-one-header-right {
  height: 76px;
  width: 300px;
  margin-left: 40px;
  margin-top: 7px;
  cursor: pointer;
}

/* nav导航区域 */
.home-one-header-nav {
  height: 58px;
}

.home-one-header-nav ul {
  display: flex;
  font-size: 17px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.home-one-header-nav ul li .home-one-header-nav-home {
  /* padding: 0 px; */
  padding-left: 30px;
  background: url("/images/fangzi.png") no-repeat;
  background-position: 2px -2px;
}

.home-one-header-nav ul li {
  margin-top: 18px;
  text-align: center;
}

.home-one-header-nav ul li a {
  display: block;
  padding: 0 13px;
  height: 35px;
}

.home-one-header-nav ul li a:hover {
  color: #3161F5;
  font-weight: 600;
}

.home-one-header-nav ul a.active {
  color: #3161F5;
  border-bottom: 3px solid #3161F5;
  font-weight: 600;
}

.home-one-header-nav .home-one-header-nav-home.active {
  background: url("/images/fangzi2.png") no-repeat;
  background-position: 2px -2px;
}

.home-one-header-nav .home-one-header-nav-home.active:hover {
  background: url("/images/fangzi2.png") no-repeat;
  background-position: 2px -2px;
}

/* 首页 版本4 */
@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
    /* 上下移动3px，总共6px的偏移 */
  }
}
