/* 标题 在 小于460px 尺寸下字号 */
/* 顶部 */
.top-wrap {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.top-placeholder {
  width: 100%;
  height: 71px;
}
.top-content {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.top-content  .logo-img-wrap {
  width:180px;
  height: 45px;
  padding: 13px 0;
  vertical-align: bottom;
  cursor: pointer;
  user-select:none;
  pointer-events:none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.top-content .title {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-left: 20px;
  box-sizing: border-box;
  color: #222222;
  font-size: 16px;
}
.top-content .title > div:last-of-type {
  margin-right: 0;
}
.top-content .title > div {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  margin-right: 40px;
}
.top-content .title > div:hover {
  color: #ed1c21 !important;
}
.top-content .title > div:hover > .title-menu-wrap {
  display: block!important;
}
.top-content .title > div .title-menu-wrap {
  padding-top: 25px;
  position: absolute;
  left: -10px;
  top: 0;
  background-color: transparent;
  min-width: 150px;
  z-index: 1;
  display: none;
}
.top-content .title > div .title-menu-wrap .title-menu {
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #1B171B;
  font-size: 14px;
  font-weight: 500;
}
.top-content .title > div .title-menu-wrap .title-menu li {
  padding: 12px 16px;
}
.top-content .title > div .title-menu-wrap .title-menu li:hover {
  color: #ed1c21 !important;
}
.top-content .menu {
  display: none;
  cursor: pointer;
}
.top-content .menu-content {
  position: absolute;
  left: 0px;
  right: 0px;
  background-color: #fff;
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
  bottom: 0;
  transform: translateY(100%);
  z-index: 999;
  overflow: hidden;
}
.top-content .menu-content li {
  line-height: 40px;
  cursor: pointer;
  border-bottom: 1px solid #aaa;
}
.top-content .menu-content li span {
  font-size: 14px;
}
.top-content .menu-content li:hover {
  color: #ed1c21;
}
@media only screen and (max-width: 850px) {
  .top-content  .logo-img-wrap {
    width: 160px;
    height: 40px;
  }
  .top-placeholder {
    width: 100%;
    height: 66px;
  }
}
@media only screen and (max-width: 700px) {
  .top-content .title {
    display: none!important;
  }
  .top-content .menu {
    display: block;
  }
}
@media only screen and (max-width: 460px) {
  .menu > img {
    width: 20px!important;
  }
  .top-content  .logo-img-wrap {
    width:120px;
    height: 30px;
    padding: 10px 0;
  }
  .top-placeholder {
    width: 100%;
    height: 50px;
  }
}
/*# sourceMappingURL=top.css.map */