  @charset "utf-8";

  * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: normal;
    outline: none;
  }

  /* @font-face {
    font-family: sys;
    src:
      url('../fonts/sySong.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  } */

  @font-face {
    font-family: sys-semibold;
    src:
      url('../fonts/SourceHanSerifCN-SemiBold.otf');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: yuweij;
    src:
      url('../fonts/yuweij.ttf');
    font-weight: normal;
    font-style: normal;
  }

  html,
  body {
    color: #333;
    font-family: "微软雅黑";
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
  }

  html {
    font-size: 100px;
    font-size: 5.2083333333333vw;
  }

  body {
    font-size: 0.16rem;
    background: #FCFAF6;
    padding-left: 3.82rem;
  }

  .index::-webkit-scrollbar,
  html::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: #f5f5f5;
  }

  .index::-webkit-scrollbar-track,
  html::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e2e2e2;
  }

  .index::-webkit-scrollbar-thumb,
  html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333;
  }

  /* rem */

  @media screen and (max-width: 1024px) {
    html {
      font-size: 85px !important;
    }
  }

  /* @media screen and (max-width: 900px) {
    html {
      font-size: 85px !important;
    }
  }
  
  @media screen and (max-width: 640px) {
    html {
      font-size: 80px !important;
    }
  }
  
  @media screen and (max-width: 480px) {
    html {
      font-size: 80px !important;
    }
  }
  
  @media screen and (max-width: 375px) {
    html {
      font-size: 75px !important;
    }
  }
  
  @media screen and (max-width: 360px) {
    html {
      font-size: 70px !important;
    }
  }
  
  @media screen and (max-width: 350px) {
    html {
      font-size: 65px !important;
    }
  } */

  /* rem */

  li {
    list-style: none;
  }

  a {
    text-decoration: none;
    color: #333;

    word-wrap: break-word;
  }

  a:hover {
    color: #B51C23;
  }

  img,
  input {
    border: 0;
    outline: none;
  }

  body .clear {
    clear: both;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }

  .clearfix:after {
    content: "";
    clear: both;
    display: block;
    overflow: hidden;
    font-size: 0;
    height: 0;
  }

  .clearfix {
    zoom: 1;
  }

  .fl {
    float: left;
  }

  .fr {
    float: right;
  }

  .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .wp {
    width: 12rem;
    max-width: 94%;
    margin: 0 auto;
  }

  .pic {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
  }

  .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
  }

  .pich:hover .pic img {
    transform: scale(1.1);
  }

  .pic::before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: 0.25;
    pointer-events: none;
    background: -webkit-linear-gradient(left,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 53) 50%,
        rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 53) 50%,
        rgba(255, 255, 255, 0) 70%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 3;
  }

  .pich:hover .pic:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
  }

  @-webkit-keyframes shine {
    100% {
      left: 125%;
    }
  }

  @keyframes shine {
    100% {
      left: 125%;
    }
  }

  .pic div.a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    transition: all 0.8s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .pich:hover .pic div.a {
    width: 110%;
    height: 110%;
  }

  @keyframes icon-yh {
    0% {
      transform: rotateZ(0);
    }

    10% {
      transform: rotateZ(10deg);
    }

    20% {
      transform: rotateZ(0);
    }

    30% {
      transform: rotateZ(-10deg);
    }

    40% {
      transform: rotateZ(0);
    }

    50% {
      transform: rotateZ(10deg);
    }

    60% {
      transform: rotateZ(0);
    }

    70% {
      transform: rotateZ(-10deg);
    }

    80% {
      transform: rotateZ(0);
    }

    90% {
      transform: rotateZ(10deg);
    }

    100% {
      transform: rotateZ(0);
    }
  }

  @keyframes jello {

    from,
    11.1%,
    to {
      -webkit-transform: none;
      -moz-transform: none;
      transform: none;
    }

    22.2% {
      -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
      -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
      transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
      -webkit-transform: skewX(6.25deg) skewY(6.25deg);
      -moz-transform: skewX(6.25deg) skewY(6.25deg);
      transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
      -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
      -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
      transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
      -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
      -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
      transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
      -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
      -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
      transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
      -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
      -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
      transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
      -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
      -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
      transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
  }

  @keyframes play {
    0% {
      -webkit-transform: rotate(0deg)
    }

    100% {
      -webkit-transform: rotate(-360deg)
    }
  }


  em {
    font-style: normal;
    position: relative;
    background-image: linear-gradient(#019390, #019390);
    background-position: 0 100%;
    background-size: 0 8px;
    background-repeat: no-repeat;
    transition: background-size 0.5s;
  }

  a:hover em {
    color: #019390;
    background-size: 100% 8px;
  }

  .line {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .line2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .line3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .line4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .wap {
    display: none !important;
  }

  /*search*/
  .search {
    width: 2.14rem;
    height: 0.4rem;
    border: 1px solid #fff;
    border-radius: 0.2rem;
    position: relative;
    z-index: 1;
    margin-top: 0.38rem;
    margin-top: 3.95vh;
    margin-left: 0.75rem;
    transition: all 0.5s;
  }

  input,
  button {
    border: none;
    outline: none;
  }

  .search .text {
    width: 2.14rem;
    padding-left: 0.14rem;
    padding-right: 0.49rem;
    height: 0.4rem;
    font-size: 0.16rem;
    background: none;
    color: #fff;
  }
.search .qqq{
    width: 2.14rem;
    padding-left: 0.14rem;
    padding-right: 0.49rem;
    height: 0.4rem;
    font-size: 0.16rem;
    background: none;
    color: #333;
}

.qqq::-webkit-input-placeholder { /* WebKit browsers */ 
color:#333; 
} 

.qqq:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ 
color:#333; 
} 

.qqq::-moz-placeholder { /* Mozilla Firefox 19+ */ 
color:#333;
} 

.qqq:-ms-input-placeholder { /* Internet Explorer 10+ */ 
color:#333;
} 
.qqq{
color:#333;
}
  .search .button {
    width: 0.49rem;
    height: 0.4rem;
    background: url(../images/fdj.png) no-repeat center;
    background-size: 0.19rem auto;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    text-align: center;
  }

  input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  input::-moz-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .search:hover {
    box-shadow: 0 0 0.1rem rgba(255, 255, 255, 0.3);
  }

  /*头部*/

  .pc {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all .8s ease-in-out;
  }

  .pc::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.89rem;
    background: linear-gradient(rgba(41, 164, 162, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    transition: all .8s ease-in-out;
  }

  .scrollDown .pc {
    /* top: -1.37rem; */
  }

  .pc.on::before {
    /* height: 100%; */
  }

  .scrollDown .pc::before {
    /* height: 0; */
  }

  .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .2rem 1.69rem 0 0.39rem;
  }

  .logo a {
    display: block;
    font-size: 0;
  }

  .logo a>img {
    display: block;
    height: .6rem;
  }

  .head-r {}

  .head-en {}

  .head-en a {
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    line-height: 0.4rem;
    text-align: center;
    font-size: 0;
    background: #B28853;
    border-radius: 50%;
    font-family: Arial;
    font-size: 0.16rem;
    color: #FFFFFF;
    transition: all 0.5s;
  }

  .head-en a:hover {
    background: #981B1E;
  }

  /* nav */
  .nav {
    height: .4rem;
    line-height: .4rem;
    margin-top: 0.08rem;
  }

  .nav>ul {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav>ul>li {
    text-align: center;
    position: relative;
    margin-left: 0.45rem;
    z-index: 1;
  }

  .nav>ul>li>a {
    display: block;
    font-size: 0.2rem;
    color: #fff;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
  }

  .nav>ul>li.active>a {
    color: #fff;
  }

  .nav>ul>li>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    border-bottom: 1px solid #fff;
    transition: all 0.5s;
  }

  .nav>ul>li.active>a::before,
  .nav>ul>li:hover>a::before {
    transform: none;
  }

  .nav>ul>li>div {
    position: absolute;
    top: 100%;
    line-height: normal;
    min-width: 1.6rem;
    left: 50%;
    margin-left: -0.8rem;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    visibility: hidden;
    transition: all 0.5s;
    z-index: -9;
  }

  .nav>ul>li>div>ul {
    background: #fff;
    box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.19);
  }

  .nav>ul>li>div>ul>li a {
    display: block;
    font-size: 0.16rem;
    line-height: 0.3rem;
    padding: 0.08rem 0.1rem;
    transition: all 0.5s;
    color: #333;
  }

  .nav>ul>li>div>ul>li a:hover {
    background: #019390;
    color: #fff;
  }

  .nav>ul>li:hover>div {
    z-index: 9999;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav>ul>li:hover>a,
  .nav>ul>li.active>a {
    color: #fff;
  }

  .nav>ul>li.active>a {
    font-weight: 700;
  }

  /*底部*/
  .foot {
    color: #fff;
    padding: 0.25rem 0.1rem;
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .foot::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -19.89%;
    right: 0;
    background: #8C0007;
    z-index: -1;
  }

  .foot a {
    color: #fff;
  }

  .foot-dz {
    text-align: center;
  }

  .foot-dz p {
    font-size: 0.18rem;
    line-height: 0.3rem;
    color: #FFFFFF;
  }

  /* 侧栏 */
  #asideNav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3.82rem;
    background-image: url(../images/aside-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    padding-top: 0.55rem;
    padding-top: 5.72vh;
    z-index: 9999;
  }

  #asideNav .picbox {
    width: 2.58rem;
    height: 3.26rem;
    /* width: 26.87vh;
    height: 33.95vh; */
    margin: 0 auto;
    background: url(../images/s1-picbg.png) no-repeat;
    background-size: 100% 100%;
    padding: 0.18rem 0.19rem;
    position: relative;
    z-index: 1;
    /* padding: 1.87vh 1.97vh; */
  }

  #asideNav .picbox::before {
    content: '';
    position: absolute;
    bottom: 0.12rem;
    right: 0.15rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    opacity: 0.5;
    background: linear-gradient(214deg, #F0DE9C 14%, rgba(216, 216, 216, 0) 85%);
  }

  #asideNav .picbox::after {
    content: '';
    position: absolute;
    top: 0.07rem;
    left: -0.06rem;
    width: 0.92rem;
    height: 0.92rem;
    border-radius: 50%;
    background: linear-gradient(34deg, #F0DE9C 14%, rgba(216, 216, 216, 0) 85%);
  }

  #asideNav .picbox .pic {
    padding-top: 131.81%;
    border-radius: 1.1rem;
    /* border-radius: 11.45vh; */
    background: #D8D8D8;
  }

  #asideNav .con {
    width: 1.2rem;
    /* width: 12.5vh; */
    text-align: center;
    margin-left: 1.2rem;
    margin-top: 0.11rem;
    /* margin-left: 12.5vh; */
    margin-top: 1.14vh;
    text-align: center;
  }

  #asideNav .con h3 {
    text-align: center;
    font-size: 0.32rem;
    /* font-size: 3.33vh; */
    font-weight: bold;
    color: #FFFFFF;
  }

  #asideNav .con p {
    width: 1.2rem;
    line-height: 0.4rem;
    border-radius: 0.25rem;
    /* width: 12.5vh;
    line-height: 4.16vh;
    border-radius: 2.6vh; */
    background: #B28752;
    text-align: center;
    font-size: 0.18rem;
    /* font-size: 1.87vh; */
    color: #FFFFFF;
    margin-top: 0.19rem;
    margin-top: 1.97vh;
  }

  #asideNav .con .lll {
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 0.28rem;
    margin-top: 0.2rem;
    margin-top: 2.08vh;
  }

  #asideNav .con .lll img {
    vertical-align: middle;
    margin-right: 0.06rem;
    width: 0.28rem;
  }

  #asideNav .lj {
    width: 2.14rem;
    margin-left: 0.75rem;
    margin-top: 0.4rem;
    margin-top: 4.16vh;
  }

  #asideNav .lj ul li {
    margin-top: 0.1rem;
  }

  #asideNav .lj ul li a {
    display: block;
    text-align: center;
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.3rem;
    transition: all 0.5s;
  }

  #asideNav .lj ul li a img {
    vertical-align: middle;
    width: 0.09rem;
  }

  #asideNav .lj ul li:hover a {
    color: #F0DE9C;
  }

  @media screen and (max-width: 1024px) {
.search .text {
    width: 2.14rem;
    padding-left: 0.14rem;
    padding-right: 0.49rem;
    height: 0.4rem;
    font-size: 0.16rem;
    background: none;
    color: #333;
}

    .wp {
      width: 100%;
      max-width: inherit;
      padding-left: 15px !important;
      padding-right: 15px !important;
    }

    body {
      padding-top: 60px !important;
    }

    .pc {
      display: none !important;
    }

    .m-top {
      max-width: 19.2rem;
      margin: 0 auto;
      position: fixed;
      right: 20px;
      top: 18px;
      width: 25px;
      height: 25px;
      z-index: 9999;
    }

    .wap {
      display: block !important;
    }

    .wap-menu {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 99999;
      font-size: 0;
    }

    .wap-menu img {
      height: 25px;
    }

    .close-menu {
      display: none;
      position: absolute;
      right: 0;
      top: 0;
    }

    .m-head {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: #A7181F;
      z-index: 999;
      padding: 10px 15px;
    }

    /* .m-head.on {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    } */

    .m-logo {
      font-size: 0;
    }

    .m-logo a {
      font-size: 0;
      line-height: 40px;
      display: block;
    }

    .m-logo img {
      max-height: 40px;
      max-width: 85%;
      vertical-align: middle;
      filter: grayscale(100%) brightness(100);
    }

    .m-tlink {
      font-size: 12px;
      padding: 10px 15px 0 15px;
      color: rgba(255, 255, 255, 0.5);
    }

    .m-tlink a {
      display: inline-block;
      width: 30px;
      margin: 0 10px 0 0;
      color: #fff;
      /*background: #fff;*/
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 5px;
      line-height: 28px;
      text-align: center;
      font-size: 13px;
    }

    .m-tlink a img {
      vertical-align: middle;
      height: 12px;
    }

    .m-search {
      margin: 0 15px;
      padding-right: 50px;
      padding-left: 10px;
      padding-top: 5px;
      padding-bottom: 5px;
      position: relative;
      line-height: 35px;
      /* background: #fff; */
      margin-top: 15px;
      margin-bottom: 15px;
      border: 1px solid #fff;
    }

    .m-search input[type="text"] {
      display: block;
      width: 100%;
      line-height: 25px;
      background: none;
      color: #fff;
      font-size: 12px;
    }

    .m-search input[type="text"]::placeholder {
      color: #fff;
    }

    .m-search input[type="image"] {
      position: absolute;
      right: 10px;
      top: 10px;
      height: 15px;
    }

    .m-nav {
      position: fixed;
      top: 60px;
      right: -100%;
      bottom: 0;
      z-index: 999;
      background: #A7181F;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      overflow-y: scroll;
      width: 100%;
      max-width: 375px;
    }

    .m-nav .top-r {
      color: #fff;
      padding-left: 15px;
    }

    .m-nav ul {
      padding: 0 15px;
      /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    }

    .m-nav ul li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
    }

    .m-nav ul li>span.on {
      transform: rotateZ(90deg);
    }

    .m-nav ul li ul {
      display: none;
    }

    .m-nav ul li ul li {
      border: none;
    }

    .m-nav>ul>li a {
      display: block;
      font-size: 14px;
      line-height: 20px;
      padding: 15px 0;
      position: relative;
      color: #fff;
    }

    .m-nav>ul>li ul li a {
      padding: 10px 0;
    }

    .m-nav>ul>li>span {
      position: absolute;
      width: 20px;
      height: 20px;
      background: url(../images/m-nav_down.png) no-repeat;
      background-size: 14px 14px;
      background-position: center center;
      right: 0;
      top: 15px;
      cursor: pointer;
      display: block;
      color: #fff;
      transition: all 0.3s;
    }

    .m-ks ul {
      display: flex;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .m-ks ul li {
      width: 50%;
    }

    .m-ks ul li a {
      display: block;
      padding: 15px 0;
    }

    .m-ks ul li a .icon1 {
      text-align: center;
    }

    .m-ks ul li a .icon1 img {
      max-width: 29px;
      max-height: 26px;
      transition: all 0.5s;
    }

    .m-ks ul li a h3 {
      text-align: center;
      color: #fff;
      font-size: 14px;
      margin-top: 10px;
    }

    .m-ks ul li:hover a .icon1 img {
      transform: rotateY(180deg);
    }

    .search {
      border-color: #666;
      margin: 0 auto;
      margin-top: 0.2rem;
    }

    .search input::-webkit-input-placeholder {
      color: rgba(000, 000, 000, 0.4);
    }

    .search input::-moz-input-placeholder {
      color: rgba(000, 000, 000, 0.4);
    }

    .search input::-ms-input-placeholder {
      color: rgba(000, 000, 000, 0.4);
    }

    .search .button {
      background: url(../images/fdj2.png) no-repeat center;
      background-size: 0.19rem auto;
    }

    #asideNav .lj {
      margin: 0 auto;
      margin-top: 0.2rem;
    }

    #asideNav .lj ul li a img {
      filter: invert(1) grayscale(1) brightness(0.2);
    }

    .foot {
      padding: 0.15rem 0.1rem;
    }
  }

  @media screen and (max-width: 768px) {
    .m-nav {
      max-width: 100%;
    }

    .foot-dz p {
      font-size: 0.16rem;
      line-height: 0.26rem;
    }
  }