@charset "UTF-8";
:root {
  --default-color: var(--main-color, #0D6EFD); }

html {
  overflow: auto; }
  html.noscroll {
    overflow: hidden;
    margin-right: 18px; }

body {
  color: #666;
  font-size: 14px;
  font-family: "Arial", "Microsoft YaHei", serif;
  overflow: hidden; }

form, div, body, img, p, img, dl, dt, dd, h2, h1, h3 {
  margin: 0;
  padding: 0;
  border: 0; }

a:link {
  text-decoration: none; }
a:visited {
  text-decoration: none; }
a:hover {
  text-decoration: none; }
a:focus {
  -moz-outline-style: none; }
a:active {
  outline: none;
  text-decoration: none; }

em, i {
  font-style: normal; }

ul, li {
  list-style: none;
  margin: 0;
  padding: 0; }

input, textarea, select {
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: Arial, sans-serif;
  vertical-align: middle; }

input:focus, textarea:focus {
  outline: none; }

/*删除火狐下按钮默认样式*/
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: none;
  padding: 0; }

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #D2D6E6; }

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #D2D6E6; }

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #D2D6E6; }

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #D2D6E6; }

img {
  max-width: 100%;
  max-height: 100%; }

.member {
  color: transparent !important; }
  .member:hover {
    color: inherit !important; }

/*浮动*/
.clearboth {
  *zoom: 1; }
  .clearboth:after {
    display: block;
    clear: both;
    content: "";
    overflow: hidden;
    height: 0; }

.left {
  float: left; }

.right {
  float: right; }

/*字体*/
@font-face {
  font-family: "raj";
  src: url("../font/rajdhani-b.eot");
  src: url("../font/rajdhani-b.eot") format("embedded-opentype"), url("../font/rajdhani-b.woff") format("woff"), url("../font/rajdhani-b.ttf") format("truetype"), url("../font/rajdhani-b.svg") format("svg");
  font-style: normal;
  font-weight: normal; }
.fz16 {
  font-size: 16px; }

/*上下间距*/
.mb5 {
  margin-bottom: 5px; }

.mb10 {
  margin-bottom: 10px; }

.mb15 {
  margin-bottom: 15px; }

.mb18 {
  margin-bottom: 18px; }

.mb20 {
  margin-bottom: 20px; }

.mb25 {
  margin-bottom: 25px; }

.mb30 {
  margin-bottom: 30px; }

.mb35 {
  margin-bottom: 35px; }

.mb40 {
  margin-bottom: 40px; }

.mb45 {
  margin-bottom: 45px; }

.mb50 {
  margin-bottom: 50px; }

.mb60 {
  margin-bottom: 60px; }

.mb80 {
  margin-bottom: 80px; }

.mb100 {
  margin-bottom: 100px; }

/*公用*/
.div100 {
  width: 100%; }

.B {
  font-weight: bold; }

.Text_l {
  text-align: left; }

.Text_r {
  text-align: right; }

.Text_c {
  text-align: center; }

.animate {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease; }

br {
  opacity: 0; }

.red {
  color: #BA2F2F; }

.blue {
  color: var(--default-color); }

.lh26 {
  line-height: 26px; }

@keyframes shake {
  0% {
    transform: translateX(-1px); }
  50% {
    transform: translateX(1px); }
  100% {
    transform: translateX(-1px); } }
@keyframes updown {
  100% {
    top: 5px; } }
.container {
  transition: all 0.3s ease;
  transform-origin: 50% 0; }
  .container.min {
    transform: scale(0.95);
    transition: all 0.3s ease 0.2s; }

.main-head {
  padding-top: 20px;
  z-index: 100;
  padding-bottom: 20px;
  transition: all 0.3s ease;
  background: #FFF;
  box-shadow: 0 0 10px rgba(150, 150, 150, 0.5); }
  .main-head .main-tel {
    display: block;
    line-height: 55px;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease; }
    .main-head .main-tel span {
      font-size: 14px; }
  .main-head .main-logo {
    width: 260px;
    height: 44px;
    display: flex; }
    .main-head .main-logo a {
      display: block; }
      .main-head .main-logo a.light-logo {
        display: none; }
  .main-head .main-menu .search {
    width: 38px;
    height: 38px;
    border: 1px solid var(--default-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 35px;
    cursor: pointer;
    font-size: 18px; }
  .main-head .main-menu li + li {
    margin-left: 40px; }
  .main-head .main-menu li a.main {
    color: #333;
    line-height: 34px;
    display: block;
    position: relative; }
    .main-head .main-menu li a.main::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      transform: translateX(-50%);
      height: 3px;
      background: var(--default-color);
      transition: width 0.3s ease; }
  .main-head .main-menu li.active a.main {
    color: var(--default-color); }
  .main-head .main-menu li:hover .sub-menu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1; }
  .main-head .main-menu li.active a.main::after,
  .main-head .main-menu li a.main:hover::after {
    width: 100%; }
  .main-head .main-menu .sub-menu {
    position: absolute;
    min-width: 850px;
    right: 0;
    height: 70px;
    color: #333;
    padding-top: 25px;
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease; }
    .main-head .main-menu .sub-menu .bg {
      background: rgba(255, 255, 255, 0.9);
      padding-left: 30px;
      position: relative;
      border-top: 1px solid var(--default-color);
      box-shadow: 10px 1px 10px rgba(150, 150, 150, 0.5); }
      .main-head .main-menu .sub-menu .bg::after {
        content: "";
        position: absolute;
        left: -40px;
        top: -1px;
        width: 40px;
        height: 70px;
        background: url(../img/menubg.png) no-repeat;
        border-top: 1px solid var(--default-color); }
    .main-head .main-menu .sub-menu a {
      display: inline-block;
      line-height: 70px;
      color: #333; }
      .main-head .main-menu .sub-menu a:hover, .main-head .main-menu .sub-menu a.on {
        color: var(--default-color); }
    .main-head .main-menu .sub-menu span {
      margin: 0 20px; }
  .main-head .m-mbtn {
    width: 30px;
    height: 30px;
    position: relative;
    display: none; }
    .main-head .m-mbtn span {
      display: block;
      width: 90%;
      height: 4px;
      left: 5%;
      background: var(--default-color);
      position: absolute;
      border-radius: 50px;
      transition: all 0.3s ease; }
    .main-head .m-mbtn .sp1 {
      top: 4px;
      transform: translateX(0); }
    .main-head .m-mbtn .sp2 {
      top: 13px;
      transform: rotateY(0); }
    .main-head .m-mbtn .sp3 {
      bottom: 4px;
      transform: translateX(0); }
    .main-head .m-mbtn.active span {
      width: 100%;
      height: 100%;
      position: unset;
      background: transparent;
      border-radius: 0; }
    .main-head .m-mbtn.active .sp1, .main-head .m-mbtn.active .sp3 {
      display: none; }
    .main-head .m-mbtn.active .sp2 em {
      display: block;
      width: 80%;
      height: 4px;
      left: 10%;
      background: var(--default-color);
      position: absolute;
      border-radius: 50px;
      top: 13px;
      transition: all 0.3s ease; }
      .main-head .m-mbtn.active .sp2 em:nth-of-type(1) {
        transform: rotate(45deg); }
      .main-head .m-mbtn.active .sp2 em:nth-of-type(2) {
        transform: rotate(-45deg); }
  .main-head.active .main-tel {
    line-height: 30px; }

.index .main-head {
  background: none;
  box-shadow: initial; }
  .index .main-head .main-menu .search {
    color: #FFF;
    border: 1px solid #FFF; }
  .index .main-head .main-menu li a.main::after {
    background: #FFF; }
  .index .main-head .main-menu li a.main, .index .main-head .main-menu li.active a.main {
    color: #FFF; }
  .index .main-head .main-tel {
    color: #FFF; }
  .index .main-head .m-mbtn span {
    background: #FFF; }
  .index .main-head .main-logo a.light-logo {
    display: block; }
  .index .main-head .main-logo a.dark-logo {
    display: none; }
  .index .main-head.active {
    background: #FFF;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.5); }
    .index .main-head.active .main-menu .search {
      color: var(--default-color) !important;
      border: 1px solid var(--default-color) !important; }
    .index .main-head.active .main-menu li.active a.main {
      color: var(--default-color) !important; }
    .index .main-head.active .main-menu li a.main::after {
      background: var(--default-color) !important; }
    .index .main-head.active .main-menu li a.main,
    .index .main-head.active .main-tel {
      color: #333; }
    .index .main-head.active .main-logo a.light-logo {
      display: none; }
    .index .main-head.active .main-logo a.dark-logo {
      display: block; }
    .index .main-head.active .m-mbtn span {
      background: var(--default-color); }

.m-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #FFF;
  padding: 100px 0 30px;
  transform: translateY(30%);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden; }
  .m-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible; }
  .m-menu ul {
    height: 100%;
    overflow-x: scroll; }
    .m-menu ul li {
      margin-bottom: 5px; }
      .m-menu ul li > a {
        display: flex;
        height: 56px;
        line-height: 56px;
        font-size: 20px;
        color: #858585;
        position: relative;
        padding: 0 5%;
        align-items: center;
        justify-content: space-between; }
        .m-menu ul li > a.active {
          background: #F5F6FB;
          color: var(--default-color); }
          .m-menu ul li > a.active span {
            transform: rotate(-90deg); }
          .m-menu ul li > a.active + dl {
            display: block; }
          .m-menu ul li > a.active i {
            transform: rotate(90deg); }
        .m-menu ul li > a span {
          content: "";
          position: absolute;
          right: 20px;
          top: 24px;
          border: 7px solid;
          border-color: #333 transparent transparent transparent;
          transform-origin: 50% 25%;
          transition: all 0.3s ease; }
      .m-menu ul li dl {
        display: none;
        padding: 10px 6%; }
        .m-menu ul li dl dd a {
          display: block;
          line-height: 38px;
          font-size: 18px;
          color: #888; }
          .m-menu ul li dl dd a.active {
            color: var(--default-color); }

#searchOffcanvas .inpBox {
  margin-bottom: 50px;
  border-bottom: 1px solid var(--default-color);
  position: relative; }
  #searchOffcanvas .inpBox input {
    height: 42px;
    color: var(--default-color);
    font-size: 18px;
    border: none;
    width: 100%; }
  #searchOffcanvas .inpBox button {
    width: 42px;
    height: 42px;
    border: none;
    cursor: pointer;
    font-size: 20px; }
#searchOffcanvas .searchList {
  margin-bottom: 30px; }
  #searchOffcanvas .searchList .tit {
    font-size: 16px;
    color: #ACAFBC;
    margin-bottom: 10px; }
  #searchOffcanvas .searchList .tips span {
    display: inline-block;
    margin: 0 10px 10px 0; }
    #searchOffcanvas .searchList .tips span a {
      color: #666;
      line-height: 30px;
      padding: 0 10px;
      background: #EEF1FF;
      height: 30px;
      display: inline-block;
      border-radius: 5px; }
      #searchOffcanvas .searchList .tips span a:hover {
        background: #DBDFF3; }

.main-footer {
  padding: 60px 0 20px;
  color: #888;
  font-size: 12px;
  border-top: 1px solid #E9EBF3; }
  .main-footer .f-add {
    float: left;
    margin-right: 8%; }
    .main-footer .f-add img {
      margin-bottom: 20px; }
    .main-footer .f-add p {
      line-height: 24px; }
      .main-footer .f-add p a {
        color: var(--default-color); }
      .main-footer .f-add p span {
        display: inline-block;
        width: 60px;
        margin-right: 5px; }
  .main-footer .f-text {
    float: left;
    width: 48%;
    line-height: 24px;
    margin-top: -5px; }
    .main-footer .f-text p {
      margin-bottom: 20px; }
    .main-footer .f-text table {
      width: 100%;
      border-spacing: 0;
      border-top: 1px dashed #E9EBF3; }
      .main-footer .f-text table.b {
        border-bottom: 1px dashed #E9EBF3; }
      .main-footer .f-text table td {
        text-align: center;
        line-height: 35px;
        position: relative; }
        .main-footer .f-text table td a {
          color: #888; }
        .main-footer .f-text table td i {
          position: absolute;
          height: 80%;
          border-right: 1px dashed #E9EBF3;
          right: 0;
          top: 10%; }
  .main-footer .f-menu {
    border: 1px solid #E9EBF3;
    border-radius: 5px;
    margin-top: 20px; }
    .main-footer .f-menu a {
      display: inline-block;
      width: 25%;
      line-height: 35px;
      text-align: center;
      color: #888;
      position: relative; }
      .main-footer .f-menu a::after {
        position: absolute;
        content: "";
        border: 4px solid;
        border-color: transparent transparent transparent var(--default-color);
        right: 10px;
        top: 50%;
        margin-top: -4px;
        transition: all 0.3s ease; }
      .main-footer .f-menu a::before {
        content: "";
        position: absolute;
        height: 80%;
        border-right: 1px dashed #E9EBF3;
        right: 0;
        top: 10%; }
      .main-footer .f-menu a:last-child:before {
        display: none; }
      .main-footer .f-menu a:hover::after {
        transform: translateX(-5px); }
  .main-footer .f-code {
    float: right;
    text-align: center; }
    .main-footer .f-code img {
      width: 109px; }
    .main-footer .f-code p {
      margin-top: 10px;
      line-height: 18px; }

.main-footer .f-menu a:hover, .main-footer .f-text table td a:hover {
  color: var(--default-color); }

.copy {
  line-height: 120px;
  text-align: center;
  font-size: 12px;
  color: #C3C6CC; }

.backTop {
  position: fixed;
  z-index: 99;
  right: 50px;
  background: #FFF;
  bottom: 100px;
  border: 1px solid #DBDDE6;
  width: 54px;
  height: 54px;
  cursor: pointer;
  border-radius: 60px;
  display: none;
  color: var(--default-color);
  font-size: 24px; }

@media only screen and (min-width: 1230px) {
  .container-fluid {
    padding-left: 4%;
    padding-right: 4%; } }
@media only screen and (max-width: 1230px) {
  .main-head .main-menu li {
    margin-left: 30px; }
  .main-head .main-menu .search {
    margin-left: 30px; }
  .main-footer .f-add {
    margin-right: 4%; } }
@media only screen and (max-width: 1090px) {
  .main-head .main-logo {
    width: 200px;
    background-size: 100% auto !important; }

  .main-footer .f-text {
    width: 42%; } }
@media only screen and (max-width: 1030px) {
  .main-head .main-menu {
    margin-right: 20px; }

  .main-footer .f-code {
    display: none; }
  .main-footer .f-text {
    float: right;
    width: 56%; }

  html.noscroll {
    margin-right: 0; } }
@media only screen and (max-width: 820px) {
  .main-head {
    padding: 0;
    height: 80px; }
    .main-head .main-logo {
      margin-top: 22px; }
    .main-head .main-tel {
      display: none; }
    .main-head .m-mbtn,
    .main-head .m-sbtn {
      display: block; }
    .main-head.active {
      padding-top: 0; }
  .main-footer .f-code {
    display: none; }
  .main-footer .f-text {
    width: 46%; }
  .main-footer .f-add {
    width: 40%; }
  .main-footer .f-menu, .main-head .main-menu {
    display: none; }

  .index .main-head.active {
    box-shadow: none;
    border-bottom: 1px solid #E5E5E5; } }
@media only screen and (max-width: 510px) {
  .main-footer {
    padding: 40px 0 10px; }
    .main-footer .f-text {
      display: none; }
    .main-footer .f-add {
      width: 100%;
      margin: 0;
      text-align: center; }
      .main-footer .f-add p {
        text-align: left; }

  .copy {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 2; }
    .copy a {
      display: block;
      width: auto;
      margin: 0 auto; }

  .main-head .main-logo {
    width: 200px;
    margin-left: 0; }

  .backTop {
    display: none !important; } }
