
/**
 * 该文件用于清除浏览器样式
 */
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  font-family: 'Microsoft YaHei', 'Helvetica Neue For Number', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Hiragino Sans GB', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  word-wrap: break-word;
  box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%; }

a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); }

a:link {
  outline: none; }

a:visited {
  outline: none; }

a:active {
  outline: none; }

a,
a:hover {
  text-decoration: none; }

ul,
ol {
  list-style-type: none; }

textarea {
  resize: none; }

/*去除input button默认样式*/
input,
button,
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 225, 225, 0);
  padding: 0;
  border: 0;
  outline: 0; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999; }

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999; }

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999; }

input {
  background: none;
  outline: none;
  border: none; }

textarea {
  resize: none;
  outline: none;
  border: none; }

button {
  border: none;
  outline: none;
  background-color: transparent; }

/*以下两行可替代js*/
html {
  /*100vw=750px 1px=0.13333333vw 100px=13.3333333*/
  /*100vw=640px 1px=0.15625vw 100px=15.625*/
  /*设备根元素大小 vw 结合rem*/
  /*font-size：100vw/750*100 (750px为设计稿大小)*/
  font-size: 5.208vw; }

body {
  font-size: 0.18rem; }

.header {
  width: 100%;
  height: 0.8rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  position: relative;
  box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.15); }
  .header .logo {
    margin-left: 0.16rem;
    display: flex;
    align-items: center;
    height: 100%; }
    .header .logo .img {
      display: block;
      width: 1.93rem;
      height: 0.48rem; }
      .header .logo .img img {
        width: 100%;
        height: 100%; }
  .header .headerC {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center; }
    .header .headerC li {
      margin-right: 0.3rem;
      line-height: 0.8rem;
      position: relative; }
      .header .headerC li:last-child {
        margin-right: 0; }
      .header .headerC li a {
        font-size: 0.2rem;
        line-height: 0.26rem;
        color: #555;
        font-weight: bold;
        position: relative; }
        .header .headerC li a::after {
          width: 50%;
          display: block;
          content: '';
          border-bottom: 0.02rem solid transparent;
          position: absolute;
          bottom: -0.1rem;
          left: 50%;
          transform: translateX(-50%); }
        .header .headerC li a:hover {
          color: #e61d4c; }
      .header .headerC li .son {
        display: none;
        width: 1.5rem;
        background-color: #fff;
        position: absolute;
        left: 50%;
        top: 0.65rem;
        transform: translateX(-50%);
        border-bottom-left-radius: 0.1rem;
        border-bottom-right-radius: 0.1rem;
        border-top: 2px solid #e61d4c;
        padding: 0.1rem 0;
        z-index: 2;
        box-shadow: 0 0 0.05rem 0.01rem rgba(0, 0, 0, 0.15); }
        .header .headerC li .son a {
          display: block;
          font-size: 0.16rem;
          line-height: 0.4rem;
          color: #333;
          text-align: center; }
          .header .headerC li .son a:hover {
            background-color: #ffebf0;
            color: #e61d4c; }
      .header .headerC li.cur > a::after {
        border-color: #e61d4c; }
      .header .headerC li.cur > a:hover::after {
        border-color: transparent; }
      .header .headerC li:hover .son {
        display: block; }
  .header .headerR {
    width: 2.1rem;
    height: 100%;
    display: flex;
    justify-content: flex-end; }
    .header .headerR .hItem {
      width: 0.8rem;
      height: 0.8rem;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center; }
      .header .headerR .hItem img {
        width: 0.24rem;
        height: 0.24rem; }
      .header .headerR .hItem .search {
        display: flex;
        align-items: center;
        opacity: 0;
        width: 0rem;
        height: 0.4rem;
        line-height: 0.4rem;
        border: 1px solid #ccc;
        border-radius: 0.4rem;
        background-color: #fff;
        position: absolute;
        top: 0.4rem;
        right: 0.18rem;
        z-index: -1;
        transform: translateY(-50%);
        transition: 0.6s; }
        .header .headerR .hItem .search input {
          display: block;
          width: 100%;
          height: 0.4rem;
          line-height: 0.4rem;
          font-size: 0.16rem;
          padding-left: 0.15rem;
          padding-right: 0.4rem;
          padding-bottom: 0.04rem; }
        .header .headerR .hItem .search img {
          position: absolute;
          right: 0.08rem;
          top: 50%;
          transform: translateY(-50%); }
        .header .headerR .hItem .search.cur {
          opacity: 1;
          z-index: 2;
          width: 2.5rem;
          transition: 0.6s; }
    .header .headerR .hItemColor {
      background-color: #e61d4c; }
    .header .headerR .navs {
      display: none; }

.overlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999; }
  .overlay .searchClose {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    background-image: url("../image/close2.png");
    background-size: 0.5rem 0.5rem;
    font-size: 0.32rem;
    color: #fff;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
    font-style: normal; }
  .overlay .modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.5); }
  .overlay .search-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    .overlay .search-box em {
      font-size: 0.24rem;
      color: #aaaaaa;
      position: absolute;
      left: 0.3rem; }
    .overlay .search-box input {
      width: 6.1rem;
      height: 0.6rem;
      font-size: 0.14rem;
      line-height: 0.6rem;
      padding-left: 0.3rem;
      padding-right: 0.1rem;
      font-size: 0.18rem;
      color: #555;
      border: none;
      border-top-left-radius: 0.3rem;
      border-bottom-left-radius: 0.3rem;
      background-color: #fff; }
    .overlay .search-box button {
      width: 0.9rem;
      height: 0.6rem;
      padding: 0.1rem;
      font-size: 0.18rem;
      font-weight: 700;
      border: none;
      border-top-right-radius: 0.3rem;
      border-bottom-right-radius: 0.3rem;
      background-color: #007bff;
      color: #fff;
      cursor: pointer; }
  .overlay.show {
    display: block;
    animation: overlay-show 0.5s forwards; }
  .overlay.hide {
    animation: overlay-hide 0.5s forwards; }
  .overlay .modal.hide {
    animation: modal-hide 0.5s forwards; }

@keyframes overlay-show {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes modal-show {
  from {
    opacity: 0;
    transform: translate(-50%, -60%); }
  to {
    opacity: 1;
    transform: translate(-50%, -50%); } }

@keyframes overlay-hide {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    display: none; } }

@keyframes modal-hide {
  from {
    opacity: 1;
    transform: translate(-50%, -50%); }
  to {
    opacity: 0;
    transform: translate(-50%, -60%); } }

.searchBox {
  display: none; }

.weCode {
  opacity: 0;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 0;
  top: 0.8rem;
  z-index: -1;
  transition: 0.3s; }
  .weCode img {
    width: 100%;
    height: 100%; }
  .weCode.cur {
    z-index: 2;
    opacity: 1;
    transition: 0.3s; }

.wapNav {
  display: none; }

.menu {
  display: block;
  background-color: #fff;
  margin-bottom: 0.6rem; }
  .menu .menuBox {
    display: flex;
    align-items: center;
    height: 2rem; }
    .menu .menuBox .left {
      margin-left: 1.5rem;
      margin-right: 0.5rem;
      padding-right: 0.4rem;
      border-right: 0.02rem solid #eeeeee; }
      .menu .menuBox .left img {
        width: 2.11rem;
        height: 1rem; }
    .menu .menuBox .right .title {
      padding-top: 0.2rem;
      font-size: 0.4rem;
      line-height: 0.58rem;
      color: #555;
      font-weight: bold;
      margin-bottom: 0.4rem; }
    .menu .menuBox .right ul {
      display: flex; }
      .menu .menuBox .right ul li {
        margin-right: 0.3rem; }
        .menu .menuBox .right ul li a {
          font-size: 0.18rem;
          color: #777777;
          font-weight: bold;
          position: relative; }
          .menu .menuBox .right ul li a::after {
            content: '';
            display: block;
            width: 100%;
            border-bottom: 0.02rem solid transparent;
            position: absolute;
            left: 0;
            bottom: -0.28rem; }
          .menu .menuBox .right ul li a:hover {
            color: #e61d4c; }
        .menu .menuBox .right ul li:last-child {
          margin-right: 0; }
        .menu .menuBox .right ul li.cur a {
          color: #e61d4c; }
          .menu .menuBox .right ul li.cur a::after {
            border-color: #e61d4c; }

.menu2 {
  display: none; }

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem; }
  .page .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.5rem;
    height: 0.5rem;
    font-size: 0.16rem;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #aaaaaa;
    color: #333333;
    margin-right: 0.3rem; }
    .page .item img {
      width: 0.24rem;
      height: 0.24rem; }
    .page .item.cur {
      color: #fff;
      border-color: #e61d4c; }
    .page .item:last-child {
      margin-right: 0; }

.footer {
  margin-top: 0.5rem;
  padding: 0.6rem 0.2rem;
  background-color: #434b54; }
  .footer .main {
    width: 16rem;
    margin: 0 auto; }
    .footer .main .top {
      display: flex; }
      .footer .main .top .left {
        flex: 1; }
        .footer .main .top .left .logo {
          width: 2.66rem;
          height: 0.7rem;
          margin-bottom: 0.2rem; }
        .footer .main .top .left p {
          display: flex;
          align-items: center;
          font-size: 0.18rem;
          line-height: 0.23rem;
          color: #a1a5a9;
          margin-bottom: 0.1rem; }
          .footer .main .top .left p img {
            width: 0.2rem;
            height: 0.2rem; }
          .footer .main .top .left p i {
            margin-left: 0.05rem;
            margin-right: 0.15rem;
            font-style: normal; }
      .footer .main .top .center {
        flex: 1;
        border-left: 1px solid #4e565e;
        border-right: 1px solid #4e565e; }
        .footer .main .top .center h6 {
          font-size: 0.24rem;
          line-height: 0.35rem;
          color: #fff;
          font-weight: bold;
          margin-bottom: 0.3rem;
          text-align: center; }
        .footer .main .top .center .zixunPhone {
          margin-bottom: 0.3rem;
          text-align: center; }
          .footer .main .top .center .zixunPhone span {
            color: #a1a5a9;
            font-size: 0.18rem;
            line-height: 0.31rem; }
          .footer .main .top .center .zixunPhone i {
            color: #a1a5a9;
            font-size: 0.2rem;
            line-height: 0.31rem;
            margin: 0 0.1rem;
            font-style: normal; }
          .footer .main .top .center .zixunPhone em {
            color: #fff;
            font-size: 0.26rem;
            line-height: 0.31rem;
            font-style: normal;
            font-weight: bold; }
        .footer .main .top .center .a {
          display: block;
          width: 1.32rem;
          height: 0.5rem;
          line-height: 0.5rem;
          border: 1px solid #696f76;
          color: #fff;
          text-align: center;
          border-radius: 0.5rem;
          margin: 0 auto; }
          .footer .main .top .center .a:hover {
            background-color: #e61d4c;
            color: #fff;
            border-color: #e61d4c;
            transition: 0.3s; }
      .footer .main .top .right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center; }
        .footer .main .top .right .imgBox {
          height: 1.83rem;
          padding: 0.15rem;
          border-radius: 0.1rem;
          background-color: #394047;
          margin-left: 0.2rem; }
          .footer .main .top .right .imgBox img {
            width: 1.2rem;
            height: 1.2rem;
            border-radius: 0.1rem;
            margin-bottom: 0.1rem; }
          .footer .main .top .right .imgBox p {
            font-size: 0.18rem;
            line-height: 0.23rem;
            color: #aaaaaa;
            text-align: center; }
    .footer .main .down {
      text-align: center;
      font-size: 0.18rem;
      line-height: 0.2rem;
      color: #a1a5a9; }
      .footer .main .down .text {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        padding: 0.3rem 0;
        border-top: 1px solid #4e565e;
        border-bottom: 1px solid #4e565e; }
      .footer .main .down .text a {
        color: #a1a5a9; }
      .footer .main .down .links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap; }
        .footer .main .down .links a {
          color: #a1a5a9;
          margin-bottom: 0.1rem; }
        .footer .main .down .links i {
          margin: 0 0.3rem 0.1rem;
          font-style: normal; }

.header .headerC li .son a {
  color: #333; }

.header .headerC li .son a::after {
  border: none; }

.menu .menuBox .right ul li.currclass a {
  color: #e61d4c; }

.menu .menuBox .right ul li.currclass a::after {
  border-color: #e61d4c; }

.page .num,
.page .curr,
.page .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.2rem;
  border-radius: 50%;
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #aaaaaa;
  color: #333333;
  margin-right: 0.1rem; }

.page .num img {
  width: 0.24rem;
  height: 0.24rem; }

.page .curr {
  color: #fff;
  border-color: #e61d4c; }

.page .num:last-child {
  margin-right: 0; }

@media (max-width: 896px) {
  .searchBox {
    z-index: -1; }
  .searchBox.cur {
    z-index: 98; }
  .menu2 .box a.currclass {
    background-color: #e61d4c;
    border-color: #e61d4c;
    color: #fff; } }
