/* 颜色变量 */
:root {
  /* 主色调 */
  --primary-color: #252B42;
  --secondary-color: #EB301C;
  --accent-color: #ff1c03;
  /* 文本颜色 */
  --main-text-color: #333333;
  --second-text-color: #737373;
  --light-text-color: #FFFFFF;
  /* 背景颜色 */
  --main-bg-color: #FFFFFF;
  --second-bg-color: #F7FAFF;
  --third-bg-color: #EFF6FF;
  /* 边框颜色 */
  --border-color: #E5E5E5;
  /* 图标背景颜色 */
  --icon-data-bg: #F2F7FF;
  --icon-flow-bg: #EFF9F4;
  --icon-customer-bg: #FFF5E5;
  --icon-supply-bg: #F2F8FF;
  --icon-tech-bg: #F2F4FF;
  --icon-scene-bg: #FFF6F6;
  --icon-value-bg: #F0F2FF;
  --icon-cooperation-bg: #F1FAFF;
  /* 盒子阴影 */
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* 过渡 */
  --transition: all 0.3s ease;
}
/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*字体*/
@font-face {
  font-family: 'AlimamaShuHeiTi-Bold';
  src: url('font/AlimamaShuHeiTi-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
.container {
  margin-right: auto;
  margin-left: auto;
  width: 90%;
}
@media (min-width: 768px) {
  .container {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1280px;
  }
}
@media (min-width: 1680px) {
  .container {
    width: 1400px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: calc(-0.3rem/2);
  margin-left: calc(-0.3rem/2);
}
.col-xxl-1,
.col-xl-1,
.col-lg-1,
.col-md-1,
.col-sm-1,
.col-xs-1,
.col-xxl-2,
.col-xl-2,
.col-lg-2,
.col-md-2,
.col-sm-2,
.col-xs-2,
.col-xxl-3,
.col-xl-3,
.col-lg-3,
.col-md-3,
.col-sm-3,
.col-xs-3,
.col-xxl-4,
.col-xl-4,
.col-lg-4,
.col-md-4,
.col-sm-4,
.col-xs-4,
.col-xxl-5,
.col-xl-5,
.col-lg-5,
.col-md-5,
.col-sm-5,
.col-xs-5,
.col-xxl-6,
.col-xl-6,
.col-lg-6,
.col-md-6,
.col-sm-6,
.col-xs-6,
.col-xxl-7,
.col-xl-7,
.col-lg-7,
.col-md-7,
.col-sm-7,
.col-xs-7,
.col-xxl-8,
.col-xl-8,
.col-lg-8,
.col-md-8,
.col-sm-8,
.col-xs-8,
.col-xxl-9,
.col-xl-9,
.col-lg-9,
.col-md-9,
.col-sm-9,
.col-xs-9,
.col-xxl-10,
.col-xl-10,
.col-lg-10,
.col-md-10,
.col-sm-10,
.col-xs-10,
.col-xxl-11,
.col-xl-11,
.col-lg-11,
.col-md-11,
.col-sm-11,
.col-xs-11,
.col-xxl-12,
.col-xl-12,
.col-lg-12,
.col-md-12,
.col-sm-12,
.col-xs-12 {
  padding-left: calc(0.3rem/2);
  padding-right: calc(0.3rem/2);
  position: relative;
  min-height: 1px;
  float: left;
}
.col-xs-1 {
  width: calc(1/12*100%);
}
.col-xs-2 {
  width: calc(2/12*100%);
}
.col-xs-3 {
  width: calc(3/12*100%);
}
.col-xs-4 {
  width: calc(4/12*100%);
}
.col-xs-5 {
  width: calc(5/12*100%);
}
.col-xs-6 {
  width: calc(6/12*100%);
}
.col-xs-7 {
  width: calc(7/12*100%);
}
.col-xs-8 {
  width: calc(8/12*100%);
}
.col-xs-9 {
  width: calc(9/12*100%);
}
.col-xs-10 {
  width: calc(10/12*100%);
}
.col-xs-11 {
  width: calc(11/12*100%);
}
.col-xs-12 {
  width: calc(12/12*100%);
}
.col-xs-offset-1 {
  margin-left: calc(1/12*100%);
}
.col-xs-offset-2 {
  margin-left: calc(2/12*100%);
}
.col-xs-offset-3 {
  margin-left: calc(3/12*100%);
}
.col-xs-offset-4 {
  margin-left: calc(4/12*100%);
}
.col-xs-offset-5 {
  margin-left: calc(5/12*100%);
}
.col-xs-offset-6 {
  margin-left: calc(6/12*100%);
}
.col-xs-offset-7 {
  margin-left: calc(7/12*100%);
}
.col-xs-offset-8 {
  margin-left: calc(8/12*100%);
}
.col-xs-offset-9 {
  margin-left: calc(9/12*100%);
}
.col-xs-offset-10 {
  margin-left: calc(10/12*100%);
}
.col-xs-offset-11 {
  margin-left: calc(11/12*100%);
}
.col-xs-offset-12 {
  margin-left: calc(12/12*100%);
}
@media (min-width: 768px) {
  .col-sm-1 {
    width: calc(1/12*100%);
  }
  .col-sm-2 {
    width: calc(2/12*100%);
  }
  .col-sm-3 {
    width: calc(3/12*100%);
  }
  .col-sm-4 {
    width: calc(4/12*100%);
  }
  .col-sm-5 {
    width: calc(5/12*100%);
  }
  .col-sm-6 {
    width: calc(6/12*100%);
  }
  .col-sm-7 {
    width: calc(7/12*100%);
  }
  .col-sm-8 {
    width: calc(8/12*100%);
  }
  .col-sm-9 {
    width: calc(9/12*100%);
  }
  .col-sm-10 {
    width: calc(10/12*100%);
  }
  .col-sm-11 {
    width: calc(11/12*100%);
  }
  .col-sm-12 {
    width: calc(12/12*100%);
  }
  .col-sm-offset-1 {
    margin-left: calc(1/12*100%);
  }
  .col-sm-offset-2 {
    margin-left: calc(2/12*100%);
  }
  .col-sm-offset-3 {
    margin-left: calc(3/12*100%);
  }
  .col-sm-offset-4 {
    margin-left: calc(4/12*100%);
  }
  .col-sm-offset-5 {
    margin-left: calc(5/12*100%);
  }
  .col-sm-offset-6 {
    margin-left: calc(6/12*100%);
  }
  .col-sm-offset-7 {
    margin-left: calc(7/12*100%);
  }
  .col-sm-offset-8 {
    margin-left: calc(8/12*100%);
  }
  .col-sm-offset-9 {
    margin-left: calc(9/12*100%);
  }
  .col-sm-offset-10 {
    margin-left: calc(10/12*100%);
  }
  .col-sm-offset-11 {
    margin-left: calc(11/12*100%);
  }
  .col-sm-offset-12 {
    margin-left: calc(12/12*100%);
  }
}
@media (min-width: 992px) {
  .col-md-1 {
    width: calc(1/12*100%);
  }
  .col-md-2 {
    width: calc(2/12*100%);
  }
  .col-md-3 {
    width: calc(3/12*100%);
  }
  .col-md-4 {
    width: calc(4/12*100%);
  }
  .col-md-5 {
    width: calc(5/12*100%);
  }
  .col-md-6 {
    width: calc(6/12*100%);
  }
  .col-md-7 {
    width: calc(7/12*100%);
  }
  .col-md-8 {
    width: calc(8/12*100%);
  }
  .col-md-9 {
    width: calc(9/12*100%);
  }
  .col-md-10 {
    width: calc(10/12*100%);
  }
  .col-md-11 {
    width: calc(11/12*100%);
  }
  .col-md-12 {
    width: calc(12/12*100%);
  }
  .col-md-offset-1 {
    margin-left: calc(1/12*100%);
  }
  .col-md-offset-2 {
    margin-left: calc(2/12*100%);
  }
  .col-md-offset-3 {
    margin-left: calc(3/12*100%);
  }
  .col-md-offset-4 {
    margin-left: calc(4/12*100%);
  }
  .col-md-offset-5 {
    margin-left: calc(5/12*100%);
  }
  .col-md-offset-6 {
    margin-left: calc(6/12*100%);
  }
  .col-md-offset-7 {
    margin-left: calc(7/12*100%);
  }
  .col-md-offset-8 {
    margin-left: calc(8/12*100%);
  }
  .col-md-offset-9 {
    margin-left: calc(9/12*100%);
  }
  .col-md-offset-10 {
    margin-left: calc(10/12*100%);
  }
  .col-md-offset-11 {
    margin-left: calc(11/12*100%);
  }
  .col-md-offset-12 {
    margin-left: calc(12/12*100%);
  }
}
@media (min-width: 1200px) {
  .col-lg-1 {
    width: calc(1/12*100%);
  }
  .col-lg-2 {
    width: calc(2/12*100%);
  }
  .col-lg-3 {
    width: calc(3/12*100%);
  }
  .col-lg-4 {
    width: calc(4/12*100%);
  }
  .col-lg-5 {
    width: calc(5/12*100%);
  }
  .col-lg-6 {
    width: calc(6/12*100%);
  }
  .col-lg-7 {
    width: calc(7/12*100%);
  }
  .col-lg-8 {
    width: calc(8/12*100%);
  }
  .col-lg-9 {
    width: calc(9/12*100%);
  }
  .col-lg-10 {
    width: calc(10/12*100%);
  }
  .col-lg-11 {
    width: calc(11/12*100%);
  }
  .col-lg-12 {
    width: calc(12/12*100%);
  }
  .col-lg-offset-1 {
    margin-left: calc(1/12*100%);
  }
  .col-lg-offset-2 {
    margin-left: calc(2/12*100%);
  }
  .col-lg-offset-3 {
    margin-left: calc(3/12*100%);
  }
  .col-lg-offset-4 {
    margin-left: calc(4/12*100%);
  }
  .col-lg-offset-5 {
    margin-left: calc(5/12*100%);
  }
  .col-lg-offset-6 {
    margin-left: calc(6/12*100%);
  }
  .col-lg-offset-7 {
    margin-left: calc(7/12*100%);
  }
  .col-lg-offset-8 {
    margin-left: calc(8/12*100%);
  }
  .col-lg-offset-9 {
    margin-left: calc(9/12*100%);
  }
  .col-lg-offset-10 {
    margin-left: calc(10/12*100%);
  }
  .col-lg-offset-11 {
    margin-left: calc(11/12*100%);
  }
  .col-lg-offset-12 {
    margin-left: calc(12/12*100%);
  }
}
@media (min-width: 1440px) {
  .col-xl-1 {
    width: calc(1/12*100%);
  }
  .col-xl-2 {
    width: calc(2/12*100%);
  }
  .col-xl-3 {
    width: calc(3/12*100%);
  }
  .col-xl-4 {
    width: calc(4/12*100%);
  }
  .col-xl-5 {
    width: calc(5/12*100%);
  }
  .col-xl-6 {
    width: calc(6/12*100%);
  }
  .col-xl-7 {
    width: calc(7/12*100%);
  }
  .col-xl-8 {
    width: calc(8/12*100%);
  }
  .col-xl-9 {
    width: calc(9/12*100%);
  }
  .col-xl-10 {
    width: calc(10/12*100%);
  }
  .col-xl-11 {
    width: calc(11/12*100%);
  }
  .col-xl-12 {
    width: calc(12/12*100%);
  }
  .col-xl-offset-1 {
    margin-left: calc(1/12*100%);
  }
  .col-xl-offset-2 {
    margin-left: calc(2/12*100%);
  }
  .col-xl-offset-3 {
    margin-left: calc(3/12*100%);
  }
  .col-xl-offset-4 {
    margin-left: calc(4/12*100%);
  }
  .col-xl-offset-5 {
    margin-left: calc(5/12*100%);
  }
  .col-xl-offset-6 {
    margin-left: calc(6/12*100%);
  }
  .col-xl-offset-7 {
    margin-left: calc(7/12*100%);
  }
  .col-xl-offset-8 {
    margin-left: calc(8/12*100%);
  }
  .col-xl-offset-9 {
    margin-left: calc(9/12*100%);
  }
  .col-xl-offset-10 {
    margin-left: calc(10/12*100%);
  }
  .col-xl-offset-11 {
    margin-left: calc(11/12*100%);
  }
  .col-xl-offset-12 {
    margin-left: calc(12/12*100%);
  }
}
@media (min-width: 1680px) {
  .col-xxl-1 {
    width: calc(1/12*100%);
  }
  .col-xxl-2 {
    width: calc(2/12*100%);
  }
  .col-xxl-3 {
    width: calc(3/12*100%);
  }
  .col-xxl-4 {
    width: calc(4/12*100%);
  }
  .col-xxl-5 {
    width: calc(5/12*100%);
  }
  .col-xxl-6 {
    width: calc(6/12*100%);
  }
  .col-xxl-7 {
    width: calc(7/12*100%);
  }
  .col-xxl-8 {
    width: calc(8/12*100%);
  }
  .col-xxl-9 {
    width: calc(9/12*100%);
  }
  .col-xxl-10 {
    width: calc(10/12*100%);
  }
  .col-xxl-11 {
    width: calc(11/12*100%);
  }
  .col-xxl-12 {
    width: calc(12/12*100%);
  }
  .col-xxl-offset-1 {
    margin-left: calc(1/12*100%);
  }
  .col-xxl-offset-2 {
    margin-left: calc(2/12*100%);
  }
  .col-xxl-offset-3 {
    margin-left: calc(3/12*100%);
  }
  .col-xxl-offset-4 {
    margin-left: calc(4/12*100%);
  }
  .col-xxl-offset-5 {
    margin-left: calc(5/12*100%);
  }
  .col-xxl-offset-6 {
    margin-left: calc(6/12*100%);
  }
  .col-xxl-offset-7 {
    margin-left: calc(7/12*100%);
  }
  .col-xxl-offset-8 {
    margin-left: calc(8/12*100%);
  }
  .col-xxl-offset-9 {
    margin-left: calc(9/12*100%);
  }
  .col-xxl-offset-10 {
    margin-left: calc(10/12*100%);
  }
  .col-xxl-offset-11 {
    margin-left: calc(11/12*100%);
  }
  .col-xxl-offset-12 {
    margin-left: calc(12/12*100%);
  }
}
.p_0 {
  padding: 0rem !important;
}
.m_0 {
  margin: 0rem !important;
}
.pl_0 {
  padding-left: 0rem;
}
.pr_0 {
  padding-right: 0rem;
}
.pt_0 {
  padding-top: 0rem;
}
.pb_0 {
  padding-bottom: 0rem;
}
.ml_0 {
  margin-left: 0rem;
}
.mr_0 {
  margin-right: 0rem;
}
.mt_0 {
  margin-top: 0rem !important;
}
.mb_0 {
  margin-bottom: 0rem;
}
.p_1 {
  padding: 0.01rem !important;
}
.m_1 {
  margin: 0.01rem !important;
}
.pl_1 {
  padding-left: 0.01rem;
}
.pr_1 {
  padding-right: 0.01rem;
}
.pt_1 {
  padding-top: 0.01rem;
}
.pb_1 {
  padding-bottom: 0.01rem;
}
.ml_1 {
  margin-left: 0.01rem;
}
.mr_1 {
  margin-right: 0.01rem;
}
.mt_1 {
  margin-top: 0.01rem !important;
}
.mb_1 {
  margin-bottom: 0.01rem;
}
.p_2 {
  padding: 0.02rem !important;
}
.m_2 {
  margin: 0.02rem !important;
}
.pl_2 {
  padding-left: 0.02rem;
}
.pr_2 {
  padding-right: 0.02rem;
}
.pt_2 {
  padding-top: 0.02rem;
}
.pb_2 {
  padding-bottom: 0.02rem;
}
.ml_2 {
  margin-left: 0.02rem;
}
.mr_2 {
  margin-right: 0.02rem;
}
.mt_2 {
  margin-top: 0.02rem !important;
}
.mb_2 {
  margin-bottom: 0.02rem;
}
.p_3 {
  padding: 0.03rem !important;
}
.m_3 {
  margin: 0.03rem !important;
}
.pl_3 {
  padding-left: 0.03rem;
}
.pr_3 {
  padding-right: 0.03rem;
}
.pt_3 {
  padding-top: 0.03rem;
}
.pb_3 {
  padding-bottom: 0.03rem;
}
.ml_3 {
  margin-left: 0.03rem;
}
.mr_3 {
  margin-right: 0.03rem;
}
.mt_3 {
  margin-top: 0.03rem !important;
}
.mb_3 {
  margin-bottom: 0.03rem;
}
.p_4 {
  padding: 0.04rem !important;
}
.m_4 {
  margin: 0.04rem !important;
}
.pl_4 {
  padding-left: 0.04rem;
}
.pr_4 {
  padding-right: 0.04rem;
}
.pt_4 {
  padding-top: 0.04rem;
}
.pb_4 {
  padding-bottom: 0.04rem;
}
.ml_4 {
  margin-left: 0.04rem;
}
.mr_4 {
  margin-right: 0.04rem;
}
.mt_4 {
  margin-top: 0.04rem !important;
}
.mb_4 {
  margin-bottom: 0.04rem;
}
.p_5 {
  padding: 0.05rem !important;
}
.m_5 {
  margin: 0.05rem !important;
}
.pl_5 {
  padding-left: 0.05rem;
}
.pr_5 {
  padding-right: 0.05rem;
}
.pt_5 {
  padding-top: 0.05rem;
}
.pb_5 {
  padding-bottom: 0.05rem;
}
.ml_5 {
  margin-left: 0.05rem;
}
.mr_5 {
  margin-right: 0.05rem;
}
.mt_5 {
  margin-top: 0.05rem !important;
}
.mb_5 {
  margin-bottom: 0.05rem;
}
.p_6 {
  padding: 0.06rem !important;
}
.m_6 {
  margin: 0.06rem !important;
}
.pl_6 {
  padding-left: 0.06rem;
}
.pr_6 {
  padding-right: 0.06rem;
}
.pt_6 {
  padding-top: 0.06rem;
}
.pb_6 {
  padding-bottom: 0.06rem;
}
.ml_6 {
  margin-left: 0.06rem;
}
.mr_6 {
  margin-right: 0.06rem;
}
.mt_6 {
  margin-top: 0.06rem !important;
}
.mb_6 {
  margin-bottom: 0.06rem;
}
.p_7 {
  padding: 0.07rem !important;
}
.m_7 {
  margin: 0.07rem !important;
}
.pl_7 {
  padding-left: 0.07rem;
}
.pr_7 {
  padding-right: 0.07rem;
}
.pt_7 {
  padding-top: 0.07rem;
}
.pb_7 {
  padding-bottom: 0.07rem;
}
.ml_7 {
  margin-left: 0.07rem;
}
.mr_7 {
  margin-right: 0.07rem;
}
.mt_7 {
  margin-top: 0.07rem !important;
}
.mb_7 {
  margin-bottom: 0.07rem;
}
.p_8 {
  padding: 0.08rem !important;
}
.m_8 {
  margin: 0.08rem !important;
}
.pl_8 {
  padding-left: 0.08rem;
}
.pr_8 {
  padding-right: 0.08rem;
}
.pt_8 {
  padding-top: 0.08rem;
}
.pb_8 {
  padding-bottom: 0.08rem;
}
.ml_8 {
  margin-left: 0.08rem;
}
.mr_8 {
  margin-right: 0.08rem;
}
.mt_8 {
  margin-top: 0.08rem !important;
}
.mb_8 {
  margin-bottom: 0.08rem;
}
.p_9 {
  padding: 0.09rem !important;
}
.m_9 {
  margin: 0.09rem !important;
}
.pl_9 {
  padding-left: 0.09rem;
}
.pr_9 {
  padding-right: 0.09rem;
}
.pt_9 {
  padding-top: 0.09rem;
}
.pb_9 {
  padding-bottom: 0.09rem;
}
.ml_9 {
  margin-left: 0.09rem;
}
.mr_9 {
  margin-right: 0.09rem;
}
.mt_9 {
  margin-top: 0.09rem !important;
}
.mb_9 {
  margin-bottom: 0.09rem;
}
.p_10 {
  padding: 0.1rem !important;
}
.m_10 {
  margin: 0.1rem !important;
}
.pl_10 {
  padding-left: 0.1rem;
}
.pr_10 {
  padding-right: 0.1rem;
}
.pt_10 {
  padding-top: 0.1rem;
}
.pb_10 {
  padding-bottom: 0.1rem;
}
.ml_10 {
  margin-left: 0.1rem;
}
.mr_10 {
  margin-right: 0.1rem;
}
.mt_10 {
  margin-top: 0.1rem !important;
}
.mb_10 {
  margin-bottom: 0.1rem;
}
.p_11 {
  padding: 0.11rem !important;
}
.m_11 {
  margin: 0.11rem !important;
}
.pl_11 {
  padding-left: 0.11rem;
}
.pr_11 {
  padding-right: 0.11rem;
}
.pt_11 {
  padding-top: 0.11rem;
}
.pb_11 {
  padding-bottom: 0.11rem;
}
.ml_11 {
  margin-left: 0.11rem;
}
.mr_11 {
  margin-right: 0.11rem;
}
.mt_11 {
  margin-top: 0.11rem !important;
}
.mb_11 {
  margin-bottom: 0.11rem;
}
.p_12 {
  padding: 0.12rem !important;
}
.m_12 {
  margin: 0.12rem !important;
}
.pl_12 {
  padding-left: 0.12rem;
}
.pr_12 {
  padding-right: 0.12rem;
}
.pt_12 {
  padding-top: 0.12rem;
}
.pb_12 {
  padding-bottom: 0.12rem;
}
.ml_12 {
  margin-left: 0.12rem;
}
.mr_12 {
  margin-right: 0.12rem;
}
.mt_12 {
  margin-top: 0.12rem !important;
}
.mb_12 {
  margin-bottom: 0.12rem;
}
.p_13 {
  padding: 0.13rem !important;
}
.m_13 {
  margin: 0.13rem !important;
}
.pl_13 {
  padding-left: 0.13rem;
}
.pr_13 {
  padding-right: 0.13rem;
}
.pt_13 {
  padding-top: 0.13rem;
}
.pb_13 {
  padding-bottom: 0.13rem;
}
.ml_13 {
  margin-left: 0.13rem;
}
.mr_13 {
  margin-right: 0.13rem;
}
.mt_13 {
  margin-top: 0.13rem !important;
}
.mb_13 {
  margin-bottom: 0.13rem;
}
.p_14 {
  padding: 0.14rem !important;
}
.m_14 {
  margin: 0.14rem !important;
}
.pl_14 {
  padding-left: 0.14rem;
}
.pr_14 {
  padding-right: 0.14rem;
}
.pt_14 {
  padding-top: 0.14rem;
}
.pb_14 {
  padding-bottom: 0.14rem;
}
.ml_14 {
  margin-left: 0.14rem;
}
.mr_14 {
  margin-right: 0.14rem;
}
.mt_14 {
  margin-top: 0.14rem !important;
}
.mb_14 {
  margin-bottom: 0.14rem;
}
.p_15 {
  padding: 0.15rem !important;
}
.m_15 {
  margin: 0.15rem !important;
}
.pl_15 {
  padding-left: 0.15rem;
}
.pr_15 {
  padding-right: 0.15rem;
}
.pt_15 {
  padding-top: 0.15rem;
}
.pb_15 {
  padding-bottom: 0.15rem;
}
.ml_15 {
  margin-left: 0.15rem;
}
.mr_15 {
  margin-right: 0.15rem;
}
.mt_15 {
  margin-top: 0.15rem !important;
}
.mb_15 {
  margin-bottom: 0.15rem;
}
.p_16 {
  padding: 0.16rem !important;
}
.m_16 {
  margin: 0.16rem !important;
}
.pl_16 {
  padding-left: 0.16rem;
}
.pr_16 {
  padding-right: 0.16rem;
}
.pt_16 {
  padding-top: 0.16rem;
}
.pb_16 {
  padding-bottom: 0.16rem;
}
.ml_16 {
  margin-left: 0.16rem;
}
.mr_16 {
  margin-right: 0.16rem;
}
.mt_16 {
  margin-top: 0.16rem !important;
}
.mb_16 {
  margin-bottom: 0.16rem;
}
.p_17 {
  padding: 0.17rem !important;
}
.m_17 {
  margin: 0.17rem !important;
}
.pl_17 {
  padding-left: 0.17rem;
}
.pr_17 {
  padding-right: 0.17rem;
}
.pt_17 {
  padding-top: 0.17rem;
}
.pb_17 {
  padding-bottom: 0.17rem;
}
.ml_17 {
  margin-left: 0.17rem;
}
.mr_17 {
  margin-right: 0.17rem;
}
.mt_17 {
  margin-top: 0.17rem !important;
}
.mb_17 {
  margin-bottom: 0.17rem;
}
.p_18 {
  padding: 0.18rem !important;
}
.m_18 {
  margin: 0.18rem !important;
}
.pl_18 {
  padding-left: 0.18rem;
}
.pr_18 {
  padding-right: 0.18rem;
}
.pt_18 {
  padding-top: 0.18rem;
}
.pb_18 {
  padding-bottom: 0.18rem;
}
.ml_18 {
  margin-left: 0.18rem;
}
.mr_18 {
  margin-right: 0.18rem;
}
.mt_18 {
  margin-top: 0.18rem !important;
}
.mb_18 {
  margin-bottom: 0.18rem;
}
.p_19 {
  padding: 0.19rem !important;
}
.m_19 {
  margin: 0.19rem !important;
}
.pl_19 {
  padding-left: 0.19rem;
}
.pr_19 {
  padding-right: 0.19rem;
}
.pt_19 {
  padding-top: 0.19rem;
}
.pb_19 {
  padding-bottom: 0.19rem;
}
.ml_19 {
  margin-left: 0.19rem;
}
.mr_19 {
  margin-right: 0.19rem;
}
.mt_19 {
  margin-top: 0.19rem !important;
}
.mb_19 {
  margin-bottom: 0.19rem;
}
.p_20 {
  padding: 0.2rem !important;
}
.m_20 {
  margin: 0.2rem !important;
}
.pl_20 {
  padding-left: 0.2rem;
}
.pr_20 {
  padding-right: 0.2rem;
}
.pt_20 {
  padding-top: 0.2rem;
}
.pb_20 {
  padding-bottom: 0.2rem;
}
.ml_20 {
  margin-left: 0.2rem;
}
.mr_20 {
  margin-right: 0.2rem;
}
.mt_20 {
  margin-top: 0.2rem !important;
}
.mb_20 {
  margin-bottom: 0.2rem;
}
.p_21 {
  padding: 0.21rem !important;
}
.m_21 {
  margin: 0.21rem !important;
}
.pl_21 {
  padding-left: 0.21rem;
}
.pr_21 {
  padding-right: 0.21rem;
}
.pt_21 {
  padding-top: 0.21rem;
}
.pb_21 {
  padding-bottom: 0.21rem;
}
.ml_21 {
  margin-left: 0.21rem;
}
.mr_21 {
  margin-right: 0.21rem;
}
.mt_21 {
  margin-top: 0.21rem !important;
}
.mb_21 {
  margin-bottom: 0.21rem;
}
.p_22 {
  padding: 0.22rem !important;
}
.m_22 {
  margin: 0.22rem !important;
}
.pl_22 {
  padding-left: 0.22rem;
}
.pr_22 {
  padding-right: 0.22rem;
}
.pt_22 {
  padding-top: 0.22rem;
}
.pb_22 {
  padding-bottom: 0.22rem;
}
.ml_22 {
  margin-left: 0.22rem;
}
.mr_22 {
  margin-right: 0.22rem;
}
.mt_22 {
  margin-top: 0.22rem !important;
}
.mb_22 {
  margin-bottom: 0.22rem;
}
.p_23 {
  padding: 0.23rem !important;
}
.m_23 {
  margin: 0.23rem !important;
}
.pl_23 {
  padding-left: 0.23rem;
}
.pr_23 {
  padding-right: 0.23rem;
}
.pt_23 {
  padding-top: 0.23rem;
}
.pb_23 {
  padding-bottom: 0.23rem;
}
.ml_23 {
  margin-left: 0.23rem;
}
.mr_23 {
  margin-right: 0.23rem;
}
.mt_23 {
  margin-top: 0.23rem !important;
}
.mb_23 {
  margin-bottom: 0.23rem;
}
.p_24 {
  padding: 0.24rem !important;
}
.m_24 {
  margin: 0.24rem !important;
}
.pl_24 {
  padding-left: 0.24rem;
}
.pr_24 {
  padding-right: 0.24rem;
}
.pt_24 {
  padding-top: 0.24rem;
}
.pb_24 {
  padding-bottom: 0.24rem;
}
.ml_24 {
  margin-left: 0.24rem;
}
.mr_24 {
  margin-right: 0.24rem;
}
.mt_24 {
  margin-top: 0.24rem !important;
}
.mb_24 {
  margin-bottom: 0.24rem;
}
.p_25 {
  padding: 0.25rem !important;
}
.m_25 {
  margin: 0.25rem !important;
}
.pl_25 {
  padding-left: 0.25rem;
}
.pr_25 {
  padding-right: 0.25rem;
}
.pt_25 {
  padding-top: 0.25rem;
}
.pb_25 {
  padding-bottom: 0.25rem;
}
.ml_25 {
  margin-left: 0.25rem;
}
.mr_25 {
  margin-right: 0.25rem;
}
.mt_25 {
  margin-top: 0.25rem !important;
}
.mb_25 {
  margin-bottom: 0.25rem;
}
.p_26 {
  padding: 0.26rem !important;
}
.m_26 {
  margin: 0.26rem !important;
}
.pl_26 {
  padding-left: 0.26rem;
}
.pr_26 {
  padding-right: 0.26rem;
}
.pt_26 {
  padding-top: 0.26rem;
}
.pb_26 {
  padding-bottom: 0.26rem;
}
.ml_26 {
  margin-left: 0.26rem;
}
.mr_26 {
  margin-right: 0.26rem;
}
.mt_26 {
  margin-top: 0.26rem !important;
}
.mb_26 {
  margin-bottom: 0.26rem;
}
.p_27 {
  padding: 0.27rem !important;
}
.m_27 {
  margin: 0.27rem !important;
}
.pl_27 {
  padding-left: 0.27rem;
}
.pr_27 {
  padding-right: 0.27rem;
}
.pt_27 {
  padding-top: 0.27rem;
}
.pb_27 {
  padding-bottom: 0.27rem;
}
.ml_27 {
  margin-left: 0.27rem;
}
.mr_27 {
  margin-right: 0.27rem;
}
.mt_27 {
  margin-top: 0.27rem !important;
}
.mb_27 {
  margin-bottom: 0.27rem;
}
.p_28 {
  padding: 0.28rem !important;
}
.m_28 {
  margin: 0.28rem !important;
}
.pl_28 {
  padding-left: 0.28rem;
}
.pr_28 {
  padding-right: 0.28rem;
}
.pt_28 {
  padding-top: 0.28rem;
}
.pb_28 {
  padding-bottom: 0.28rem;
}
.ml_28 {
  margin-left: 0.28rem;
}
.mr_28 {
  margin-right: 0.28rem;
}
.mt_28 {
  margin-top: 0.28rem !important;
}
.mb_28 {
  margin-bottom: 0.28rem;
}
.p_29 {
  padding: 0.29rem !important;
}
.m_29 {
  margin: 0.29rem !important;
}
.pl_29 {
  padding-left: 0.29rem;
}
.pr_29 {
  padding-right: 0.29rem;
}
.pt_29 {
  padding-top: 0.29rem;
}
.pb_29 {
  padding-bottom: 0.29rem;
}
.ml_29 {
  margin-left: 0.29rem;
}
.mr_29 {
  margin-right: 0.29rem;
}
.mt_29 {
  margin-top: 0.29rem !important;
}
.mb_29 {
  margin-bottom: 0.29rem;
}
.p_30 {
  padding: 0.3rem !important;
}
.m_30 {
  margin: 0.3rem !important;
}
.pl_30 {
  padding-left: 0.3rem;
}
.pr_30 {
  padding-right: 0.3rem;
}
.pt_30 {
  padding-top: 0.3rem;
}
.pb_30 {
  padding-bottom: 0.3rem;
}
.ml_30 {
  margin-left: 0.3rem;
}
.mr_30 {
  margin-right: 0.3rem;
}
.mt_30 {
  margin-top: 0.3rem !important;
}
.mb_30 {
  margin-bottom: 0.3rem;
}
.p_31 {
  padding: 0.31rem !important;
}
.m_31 {
  margin: 0.31rem !important;
}
.pl_31 {
  padding-left: 0.31rem;
}
.pr_31 {
  padding-right: 0.31rem;
}
.pt_31 {
  padding-top: 0.31rem;
}
.pb_31 {
  padding-bottom: 0.31rem;
}
.ml_31 {
  margin-left: 0.31rem;
}
.mr_31 {
  margin-right: 0.31rem;
}
.mt_31 {
  margin-top: 0.31rem !important;
}
.mb_31 {
  margin-bottom: 0.31rem;
}
.p_32 {
  padding: 0.32rem !important;
}
.m_32 {
  margin: 0.32rem !important;
}
.pl_32 {
  padding-left: 0.32rem;
}
.pr_32 {
  padding-right: 0.32rem;
}
.pt_32 {
  padding-top: 0.32rem;
}
.pb_32 {
  padding-bottom: 0.32rem;
}
.ml_32 {
  margin-left: 0.32rem;
}
.mr_32 {
  margin-right: 0.32rem;
}
.mt_32 {
  margin-top: 0.32rem !important;
}
.mb_32 {
  margin-bottom: 0.32rem;
}
.p_33 {
  padding: 0.33rem !important;
}
.m_33 {
  margin: 0.33rem !important;
}
.pl_33 {
  padding-left: 0.33rem;
}
.pr_33 {
  padding-right: 0.33rem;
}
.pt_33 {
  padding-top: 0.33rem;
}
.pb_33 {
  padding-bottom: 0.33rem;
}
.ml_33 {
  margin-left: 0.33rem;
}
.mr_33 {
  margin-right: 0.33rem;
}
.mt_33 {
  margin-top: 0.33rem !important;
}
.mb_33 {
  margin-bottom: 0.33rem;
}
.p_34 {
  padding: 0.34rem !important;
}
.m_34 {
  margin: 0.34rem !important;
}
.pl_34 {
  padding-left: 0.34rem;
}
.pr_34 {
  padding-right: 0.34rem;
}
.pt_34 {
  padding-top: 0.34rem;
}
.pb_34 {
  padding-bottom: 0.34rem;
}
.ml_34 {
  margin-left: 0.34rem;
}
.mr_34 {
  margin-right: 0.34rem;
}
.mt_34 {
  margin-top: 0.34rem !important;
}
.mb_34 {
  margin-bottom: 0.34rem;
}
.p_35 {
  padding: 0.35rem !important;
}
.m_35 {
  margin: 0.35rem !important;
}
.pl_35 {
  padding-left: 0.35rem;
}
.pr_35 {
  padding-right: 0.35rem;
}
.pt_35 {
  padding-top: 0.35rem;
}
.pb_35 {
  padding-bottom: 0.35rem;
}
.ml_35 {
  margin-left: 0.35rem;
}
.mr_35 {
  margin-right: 0.35rem;
}
.mt_35 {
  margin-top: 0.35rem !important;
}
.mb_35 {
  margin-bottom: 0.35rem;
}
.p_36 {
  padding: 0.36rem !important;
}
.m_36 {
  margin: 0.36rem !important;
}
.pl_36 {
  padding-left: 0.36rem;
}
.pr_36 {
  padding-right: 0.36rem;
}
.pt_36 {
  padding-top: 0.36rem;
}
.pb_36 {
  padding-bottom: 0.36rem;
}
.ml_36 {
  margin-left: 0.36rem;
}
.mr_36 {
  margin-right: 0.36rem;
}
.mt_36 {
  margin-top: 0.36rem !important;
}
.mb_36 {
  margin-bottom: 0.36rem;
}
.p_37 {
  padding: 0.37rem !important;
}
.m_37 {
  margin: 0.37rem !important;
}
.pl_37 {
  padding-left: 0.37rem;
}
.pr_37 {
  padding-right: 0.37rem;
}
.pt_37 {
  padding-top: 0.37rem;
}
.pb_37 {
  padding-bottom: 0.37rem;
}
.ml_37 {
  margin-left: 0.37rem;
}
.mr_37 {
  margin-right: 0.37rem;
}
.mt_37 {
  margin-top: 0.37rem !important;
}
.mb_37 {
  margin-bottom: 0.37rem;
}
.p_38 {
  padding: 0.38rem !important;
}
.m_38 {
  margin: 0.38rem !important;
}
.pl_38 {
  padding-left: 0.38rem;
}
.pr_38 {
  padding-right: 0.38rem;
}
.pt_38 {
  padding-top: 0.38rem;
}
.pb_38 {
  padding-bottom: 0.38rem;
}
.ml_38 {
  margin-left: 0.38rem;
}
.mr_38 {
  margin-right: 0.38rem;
}
.mt_38 {
  margin-top: 0.38rem !important;
}
.mb_38 {
  margin-bottom: 0.38rem;
}
.p_39 {
  padding: 0.39rem !important;
}
.m_39 {
  margin: 0.39rem !important;
}
.pl_39 {
  padding-left: 0.39rem;
}
.pr_39 {
  padding-right: 0.39rem;
}
.pt_39 {
  padding-top: 0.39rem;
}
.pb_39 {
  padding-bottom: 0.39rem;
}
.ml_39 {
  margin-left: 0.39rem;
}
.mr_39 {
  margin-right: 0.39rem;
}
.mt_39 {
  margin-top: 0.39rem !important;
}
.mb_39 {
  margin-bottom: 0.39rem;
}
.p_40 {
  padding: 0.4rem !important;
}
.m_40 {
  margin: 0.4rem !important;
}
.pl_40 {
  padding-left: 0.4rem;
}
.pr_40 {
  padding-right: 0.4rem;
}
.pt_40 {
  padding-top: 0.4rem;
}
.pb_40 {
  padding-bottom: 0.4rem;
}
.ml_40 {
  margin-left: 0.4rem;
}
.mr_40 {
  margin-right: 0.4rem;
}
.mt_40 {
  margin-top: 0.4rem !important;
}
.mb_40 {
  margin-bottom: 0.4rem;
}
.p_41 {
  padding: 0.41rem !important;
}
.m_41 {
  margin: 0.41rem !important;
}
.pl_41 {
  padding-left: 0.41rem;
}
.pr_41 {
  padding-right: 0.41rem;
}
.pt_41 {
  padding-top: 0.41rem;
}
.pb_41 {
  padding-bottom: 0.41rem;
}
.ml_41 {
  margin-left: 0.41rem;
}
.mr_41 {
  margin-right: 0.41rem;
}
.mt_41 {
  margin-top: 0.41rem !important;
}
.mb_41 {
  margin-bottom: 0.41rem;
}
.p_42 {
  padding: 0.42rem !important;
}
.m_42 {
  margin: 0.42rem !important;
}
.pl_42 {
  padding-left: 0.42rem;
}
.pr_42 {
  padding-right: 0.42rem;
}
.pt_42 {
  padding-top: 0.42rem;
}
.pb_42 {
  padding-bottom: 0.42rem;
}
.ml_42 {
  margin-left: 0.42rem;
}
.mr_42 {
  margin-right: 0.42rem;
}
.mt_42 {
  margin-top: 0.42rem !important;
}
.mb_42 {
  margin-bottom: 0.42rem;
}
.p_43 {
  padding: 0.43rem !important;
}
.m_43 {
  margin: 0.43rem !important;
}
.pl_43 {
  padding-left: 0.43rem;
}
.pr_43 {
  padding-right: 0.43rem;
}
.pt_43 {
  padding-top: 0.43rem;
}
.pb_43 {
  padding-bottom: 0.43rem;
}
.ml_43 {
  margin-left: 0.43rem;
}
.mr_43 {
  margin-right: 0.43rem;
}
.mt_43 {
  margin-top: 0.43rem !important;
}
.mb_43 {
  margin-bottom: 0.43rem;
}
.p_44 {
  padding: 0.44rem !important;
}
.m_44 {
  margin: 0.44rem !important;
}
.pl_44 {
  padding-left: 0.44rem;
}
.pr_44 {
  padding-right: 0.44rem;
}
.pt_44 {
  padding-top: 0.44rem;
}
.pb_44 {
  padding-bottom: 0.44rem;
}
.ml_44 {
  margin-left: 0.44rem;
}
.mr_44 {
  margin-right: 0.44rem;
}
.mt_44 {
  margin-top: 0.44rem !important;
}
.mb_44 {
  margin-bottom: 0.44rem;
}
.p_45 {
  padding: 0.45rem !important;
}
.m_45 {
  margin: 0.45rem !important;
}
.pl_45 {
  padding-left: 0.45rem;
}
.pr_45 {
  padding-right: 0.45rem;
}
.pt_45 {
  padding-top: 0.45rem;
}
.pb_45 {
  padding-bottom: 0.45rem;
}
.ml_45 {
  margin-left: 0.45rem;
}
.mr_45 {
  margin-right: 0.45rem;
}
.mt_45 {
  margin-top: 0.45rem !important;
}
.mb_45 {
  margin-bottom: 0.45rem;
}
.p_46 {
  padding: 0.46rem !important;
}
.m_46 {
  margin: 0.46rem !important;
}
.pl_46 {
  padding-left: 0.46rem;
}
.pr_46 {
  padding-right: 0.46rem;
}
.pt_46 {
  padding-top: 0.46rem;
}
.pb_46 {
  padding-bottom: 0.46rem;
}
.ml_46 {
  margin-left: 0.46rem;
}
.mr_46 {
  margin-right: 0.46rem;
}
.mt_46 {
  margin-top: 0.46rem !important;
}
.mb_46 {
  margin-bottom: 0.46rem;
}
.p_47 {
  padding: 0.47rem !important;
}
.m_47 {
  margin: 0.47rem !important;
}
.pl_47 {
  padding-left: 0.47rem;
}
.pr_47 {
  padding-right: 0.47rem;
}
.pt_47 {
  padding-top: 0.47rem;
}
.pb_47 {
  padding-bottom: 0.47rem;
}
.ml_47 {
  margin-left: 0.47rem;
}
.mr_47 {
  margin-right: 0.47rem;
}
.mt_47 {
  margin-top: 0.47rem !important;
}
.mb_47 {
  margin-bottom: 0.47rem;
}
.p_48 {
  padding: 0.48rem !important;
}
.m_48 {
  margin: 0.48rem !important;
}
.pl_48 {
  padding-left: 0.48rem;
}
.pr_48 {
  padding-right: 0.48rem;
}
.pt_48 {
  padding-top: 0.48rem;
}
.pb_48 {
  padding-bottom: 0.48rem;
}
.ml_48 {
  margin-left: 0.48rem;
}
.mr_48 {
  margin-right: 0.48rem;
}
.mt_48 {
  margin-top: 0.48rem !important;
}
.mb_48 {
  margin-bottom: 0.48rem;
}
.p_49 {
  padding: 0.49rem !important;
}
.m_49 {
  margin: 0.49rem !important;
}
.pl_49 {
  padding-left: 0.49rem;
}
.pr_49 {
  padding-right: 0.49rem;
}
.pt_49 {
  padding-top: 0.49rem;
}
.pb_49 {
  padding-bottom: 0.49rem;
}
.ml_49 {
  margin-left: 0.49rem;
}
.mr_49 {
  margin-right: 0.49rem;
}
.mt_49 {
  margin-top: 0.49rem !important;
}
.mb_49 {
  margin-bottom: 0.49rem;
}
.p_50 {
  padding: 0.5rem !important;
}
.m_50 {
  margin: 0.5rem !important;
}
.pl_50 {
  padding-left: 0.5rem;
}
.pr_50 {
  padding-right: 0.5rem;
}
.pt_50 {
  padding-top: 0.5rem;
}
.pb_50 {
  padding-bottom: 0.5rem;
}
.ml_50 {
  margin-left: 0.5rem;
}
.mr_50 {
  margin-right: 0.5rem;
}
.mt_50 {
  margin-top: 0.5rem !important;
}
.mb_50 {
  margin-bottom: 0.5rem;
}
.p_51 {
  padding: 0.51rem !important;
}
.m_51 {
  margin: 0.51rem !important;
}
.pl_51 {
  padding-left: 0.51rem;
}
.pr_51 {
  padding-right: 0.51rem;
}
.pt_51 {
  padding-top: 0.51rem;
}
.pb_51 {
  padding-bottom: 0.51rem;
}
.ml_51 {
  margin-left: 0.51rem;
}
.mr_51 {
  margin-right: 0.51rem;
}
.mt_51 {
  margin-top: 0.51rem !important;
}
.mb_51 {
  margin-bottom: 0.51rem;
}
.p_52 {
  padding: 0.52rem !important;
}
.m_52 {
  margin: 0.52rem !important;
}
.pl_52 {
  padding-left: 0.52rem;
}
.pr_52 {
  padding-right: 0.52rem;
}
.pt_52 {
  padding-top: 0.52rem;
}
.pb_52 {
  padding-bottom: 0.52rem;
}
.ml_52 {
  margin-left: 0.52rem;
}
.mr_52 {
  margin-right: 0.52rem;
}
.mt_52 {
  margin-top: 0.52rem !important;
}
.mb_52 {
  margin-bottom: 0.52rem;
}
.p_53 {
  padding: 0.53rem !important;
}
.m_53 {
  margin: 0.53rem !important;
}
.pl_53 {
  padding-left: 0.53rem;
}
.pr_53 {
  padding-right: 0.53rem;
}
.pt_53 {
  padding-top: 0.53rem;
}
.pb_53 {
  padding-bottom: 0.53rem;
}
.ml_53 {
  margin-left: 0.53rem;
}
.mr_53 {
  margin-right: 0.53rem;
}
.mt_53 {
  margin-top: 0.53rem !important;
}
.mb_53 {
  margin-bottom: 0.53rem;
}
.p_54 {
  padding: 0.54rem !important;
}
.m_54 {
  margin: 0.54rem !important;
}
.pl_54 {
  padding-left: 0.54rem;
}
.pr_54 {
  padding-right: 0.54rem;
}
.pt_54 {
  padding-top: 0.54rem;
}
.pb_54 {
  padding-bottom: 0.54rem;
}
.ml_54 {
  margin-left: 0.54rem;
}
.mr_54 {
  margin-right: 0.54rem;
}
.mt_54 {
  margin-top: 0.54rem !important;
}
.mb_54 {
  margin-bottom: 0.54rem;
}
.p_55 {
  padding: 0.55rem !important;
}
.m_55 {
  margin: 0.55rem !important;
}
.pl_55 {
  padding-left: 0.55rem;
}
.pr_55 {
  padding-right: 0.55rem;
}
.pt_55 {
  padding-top: 0.55rem;
}
.pb_55 {
  padding-bottom: 0.55rem;
}
.ml_55 {
  margin-left: 0.55rem;
}
.mr_55 {
  margin-right: 0.55rem;
}
.mt_55 {
  margin-top: 0.55rem !important;
}
.mb_55 {
  margin-bottom: 0.55rem;
}
.p_56 {
  padding: 0.56rem !important;
}
.m_56 {
  margin: 0.56rem !important;
}
.pl_56 {
  padding-left: 0.56rem;
}
.pr_56 {
  padding-right: 0.56rem;
}
.pt_56 {
  padding-top: 0.56rem;
}
.pb_56 {
  padding-bottom: 0.56rem;
}
.ml_56 {
  margin-left: 0.56rem;
}
.mr_56 {
  margin-right: 0.56rem;
}
.mt_56 {
  margin-top: 0.56rem !important;
}
.mb_56 {
  margin-bottom: 0.56rem;
}
.p_57 {
  padding: 0.57rem !important;
}
.m_57 {
  margin: 0.57rem !important;
}
.pl_57 {
  padding-left: 0.57rem;
}
.pr_57 {
  padding-right: 0.57rem;
}
.pt_57 {
  padding-top: 0.57rem;
}
.pb_57 {
  padding-bottom: 0.57rem;
}
.ml_57 {
  margin-left: 0.57rem;
}
.mr_57 {
  margin-right: 0.57rem;
}
.mt_57 {
  margin-top: 0.57rem !important;
}
.mb_57 {
  margin-bottom: 0.57rem;
}
.p_58 {
  padding: 0.58rem !important;
}
.m_58 {
  margin: 0.58rem !important;
}
.pl_58 {
  padding-left: 0.58rem;
}
.pr_58 {
  padding-right: 0.58rem;
}
.pt_58 {
  padding-top: 0.58rem;
}
.pb_58 {
  padding-bottom: 0.58rem;
}
.ml_58 {
  margin-left: 0.58rem;
}
.mr_58 {
  margin-right: 0.58rem;
}
.mt_58 {
  margin-top: 0.58rem !important;
}
.mb_58 {
  margin-bottom: 0.58rem;
}
.p_59 {
  padding: 0.59rem !important;
}
.m_59 {
  margin: 0.59rem !important;
}
.pl_59 {
  padding-left: 0.59rem;
}
.pr_59 {
  padding-right: 0.59rem;
}
.pt_59 {
  padding-top: 0.59rem;
}
.pb_59 {
  padding-bottom: 0.59rem;
}
.ml_59 {
  margin-left: 0.59rem;
}
.mr_59 {
  margin-right: 0.59rem;
}
.mt_59 {
  margin-top: 0.59rem !important;
}
.mb_59 {
  margin-bottom: 0.59rem;
}
.p_60 {
  padding: 0.6rem !important;
}
.m_60 {
  margin: 0.6rem !important;
}
.pl_60 {
  padding-left: 0.6rem;
}
.pr_60 {
  padding-right: 0.6rem;
}
.pt_60 {
  padding-top: 0.6rem;
}
.pb_60 {
  padding-bottom: 0.6rem;
}
.ml_60 {
  margin-left: 0.6rem;
}
.mr_60 {
  margin-right: 0.6rem;
}
.mt_60 {
  margin-top: 0.6rem !important;
}
.mb_60 {
  margin-bottom: 0.6rem;
}
.p_61 {
  padding: 0.61rem !important;
}
.m_61 {
  margin: 0.61rem !important;
}
.pl_61 {
  padding-left: 0.61rem;
}
.pr_61 {
  padding-right: 0.61rem;
}
.pt_61 {
  padding-top: 0.61rem;
}
.pb_61 {
  padding-bottom: 0.61rem;
}
.ml_61 {
  margin-left: 0.61rem;
}
.mr_61 {
  margin-right: 0.61rem;
}
.mt_61 {
  margin-top: 0.61rem !important;
}
.mb_61 {
  margin-bottom: 0.61rem;
}
.p_62 {
  padding: 0.62rem !important;
}
.m_62 {
  margin: 0.62rem !important;
}
.pl_62 {
  padding-left: 0.62rem;
}
.pr_62 {
  padding-right: 0.62rem;
}
.pt_62 {
  padding-top: 0.62rem;
}
.pb_62 {
  padding-bottom: 0.62rem;
}
.ml_62 {
  margin-left: 0.62rem;
}
.mr_62 {
  margin-right: 0.62rem;
}
.mt_62 {
  margin-top: 0.62rem !important;
}
.mb_62 {
  margin-bottom: 0.62rem;
}
.p_63 {
  padding: 0.63rem !important;
}
.m_63 {
  margin: 0.63rem !important;
}
.pl_63 {
  padding-left: 0.63rem;
}
.pr_63 {
  padding-right: 0.63rem;
}
.pt_63 {
  padding-top: 0.63rem;
}
.pb_63 {
  padding-bottom: 0.63rem;
}
.ml_63 {
  margin-left: 0.63rem;
}
.mr_63 {
  margin-right: 0.63rem;
}
.mt_63 {
  margin-top: 0.63rem !important;
}
.mb_63 {
  margin-bottom: 0.63rem;
}
.p_64 {
  padding: 0.64rem !important;
}
.m_64 {
  margin: 0.64rem !important;
}
.pl_64 {
  padding-left: 0.64rem;
}
.pr_64 {
  padding-right: 0.64rem;
}
.pt_64 {
  padding-top: 0.64rem;
}
.pb_64 {
  padding-bottom: 0.64rem;
}
.ml_64 {
  margin-left: 0.64rem;
}
.mr_64 {
  margin-right: 0.64rem;
}
.mt_64 {
  margin-top: 0.64rem !important;
}
.mb_64 {
  margin-bottom: 0.64rem;
}
.p_65 {
  padding: 0.65rem !important;
}
.m_65 {
  margin: 0.65rem !important;
}
.pl_65 {
  padding-left: 0.65rem;
}
.pr_65 {
  padding-right: 0.65rem;
}
.pt_65 {
  padding-top: 0.65rem;
}
.pb_65 {
  padding-bottom: 0.65rem;
}
.ml_65 {
  margin-left: 0.65rem;
}
.mr_65 {
  margin-right: 0.65rem;
}
.mt_65 {
  margin-top: 0.65rem !important;
}
.mb_65 {
  margin-bottom: 0.65rem;
}
.p_66 {
  padding: 0.66rem !important;
}
.m_66 {
  margin: 0.66rem !important;
}
.pl_66 {
  padding-left: 0.66rem;
}
.pr_66 {
  padding-right: 0.66rem;
}
.pt_66 {
  padding-top: 0.66rem;
}
.pb_66 {
  padding-bottom: 0.66rem;
}
.ml_66 {
  margin-left: 0.66rem;
}
.mr_66 {
  margin-right: 0.66rem;
}
.mt_66 {
  margin-top: 0.66rem !important;
}
.mb_66 {
  margin-bottom: 0.66rem;
}
.p_67 {
  padding: 0.67rem !important;
}
.m_67 {
  margin: 0.67rem !important;
}
.pl_67 {
  padding-left: 0.67rem;
}
.pr_67 {
  padding-right: 0.67rem;
}
.pt_67 {
  padding-top: 0.67rem;
}
.pb_67 {
  padding-bottom: 0.67rem;
}
.ml_67 {
  margin-left: 0.67rem;
}
.mr_67 {
  margin-right: 0.67rem;
}
.mt_67 {
  margin-top: 0.67rem !important;
}
.mb_67 {
  margin-bottom: 0.67rem;
}
.p_68 {
  padding: 0.68rem !important;
}
.m_68 {
  margin: 0.68rem !important;
}
.pl_68 {
  padding-left: 0.68rem;
}
.pr_68 {
  padding-right: 0.68rem;
}
.pt_68 {
  padding-top: 0.68rem;
}
.pb_68 {
  padding-bottom: 0.68rem;
}
.ml_68 {
  margin-left: 0.68rem;
}
.mr_68 {
  margin-right: 0.68rem;
}
.mt_68 {
  margin-top: 0.68rem !important;
}
.mb_68 {
  margin-bottom: 0.68rem;
}
.p_69 {
  padding: 0.69rem !important;
}
.m_69 {
  margin: 0.69rem !important;
}
.pl_69 {
  padding-left: 0.69rem;
}
.pr_69 {
  padding-right: 0.69rem;
}
.pt_69 {
  padding-top: 0.69rem;
}
.pb_69 {
  padding-bottom: 0.69rem;
}
.ml_69 {
  margin-left: 0.69rem;
}
.mr_69 {
  margin-right: 0.69rem;
}
.mt_69 {
  margin-top: 0.69rem !important;
}
.mb_69 {
  margin-bottom: 0.69rem;
}
.p_70 {
  padding: 0.7rem !important;
}
.m_70 {
  margin: 0.7rem !important;
}
.pl_70 {
  padding-left: 0.7rem;
}
.pr_70 {
  padding-right: 0.7rem;
}
.pt_70 {
  padding-top: 0.7rem;
}
.pb_70 {
  padding-bottom: 0.7rem;
}
.ml_70 {
  margin-left: 0.7rem;
}
.mr_70 {
  margin-right: 0.7rem;
}
.mt_70 {
  margin-top: 0.7rem !important;
}
.mb_70 {
  margin-bottom: 0.7rem;
}
.p_71 {
  padding: 0.71rem !important;
}
.m_71 {
  margin: 0.71rem !important;
}
.pl_71 {
  padding-left: 0.71rem;
}
.pr_71 {
  padding-right: 0.71rem;
}
.pt_71 {
  padding-top: 0.71rem;
}
.pb_71 {
  padding-bottom: 0.71rem;
}
.ml_71 {
  margin-left: 0.71rem;
}
.mr_71 {
  margin-right: 0.71rem;
}
.mt_71 {
  margin-top: 0.71rem !important;
}
.mb_71 {
  margin-bottom: 0.71rem;
}
.p_72 {
  padding: 0.72rem !important;
}
.m_72 {
  margin: 0.72rem !important;
}
.pl_72 {
  padding-left: 0.72rem;
}
.pr_72 {
  padding-right: 0.72rem;
}
.pt_72 {
  padding-top: 0.72rem;
}
.pb_72 {
  padding-bottom: 0.72rem;
}
.ml_72 {
  margin-left: 0.72rem;
}
.mr_72 {
  margin-right: 0.72rem;
}
.mt_72 {
  margin-top: 0.72rem !important;
}
.mb_72 {
  margin-bottom: 0.72rem;
}
.p_73 {
  padding: 0.73rem !important;
}
.m_73 {
  margin: 0.73rem !important;
}
.pl_73 {
  padding-left: 0.73rem;
}
.pr_73 {
  padding-right: 0.73rem;
}
.pt_73 {
  padding-top: 0.73rem;
}
.pb_73 {
  padding-bottom: 0.73rem;
}
.ml_73 {
  margin-left: 0.73rem;
}
.mr_73 {
  margin-right: 0.73rem;
}
.mt_73 {
  margin-top: 0.73rem !important;
}
.mb_73 {
  margin-bottom: 0.73rem;
}
.p_74 {
  padding: 0.74rem !important;
}
.m_74 {
  margin: 0.74rem !important;
}
.pl_74 {
  padding-left: 0.74rem;
}
.pr_74 {
  padding-right: 0.74rem;
}
.pt_74 {
  padding-top: 0.74rem;
}
.pb_74 {
  padding-bottom: 0.74rem;
}
.ml_74 {
  margin-left: 0.74rem;
}
.mr_74 {
  margin-right: 0.74rem;
}
.mt_74 {
  margin-top: 0.74rem !important;
}
.mb_74 {
  margin-bottom: 0.74rem;
}
.p_75 {
  padding: 0.75rem !important;
}
.m_75 {
  margin: 0.75rem !important;
}
.pl_75 {
  padding-left: 0.75rem;
}
.pr_75 {
  padding-right: 0.75rem;
}
.pt_75 {
  padding-top: 0.75rem;
}
.pb_75 {
  padding-bottom: 0.75rem;
}
.ml_75 {
  margin-left: 0.75rem;
}
.mr_75 {
  margin-right: 0.75rem;
}
.mt_75 {
  margin-top: 0.75rem !important;
}
.mb_75 {
  margin-bottom: 0.75rem;
}
.p_76 {
  padding: 0.76rem !important;
}
.m_76 {
  margin: 0.76rem !important;
}
.pl_76 {
  padding-left: 0.76rem;
}
.pr_76 {
  padding-right: 0.76rem;
}
.pt_76 {
  padding-top: 0.76rem;
}
.pb_76 {
  padding-bottom: 0.76rem;
}
.ml_76 {
  margin-left: 0.76rem;
}
.mr_76 {
  margin-right: 0.76rem;
}
.mt_76 {
  margin-top: 0.76rem !important;
}
.mb_76 {
  margin-bottom: 0.76rem;
}
.p_77 {
  padding: 0.77rem !important;
}
.m_77 {
  margin: 0.77rem !important;
}
.pl_77 {
  padding-left: 0.77rem;
}
.pr_77 {
  padding-right: 0.77rem;
}
.pt_77 {
  padding-top: 0.77rem;
}
.pb_77 {
  padding-bottom: 0.77rem;
}
.ml_77 {
  margin-left: 0.77rem;
}
.mr_77 {
  margin-right: 0.77rem;
}
.mt_77 {
  margin-top: 0.77rem !important;
}
.mb_77 {
  margin-bottom: 0.77rem;
}
.p_78 {
  padding: 0.78rem !important;
}
.m_78 {
  margin: 0.78rem !important;
}
.pl_78 {
  padding-left: 0.78rem;
}
.pr_78 {
  padding-right: 0.78rem;
}
.pt_78 {
  padding-top: 0.78rem;
}
.pb_78 {
  padding-bottom: 0.78rem;
}
.ml_78 {
  margin-left: 0.78rem;
}
.mr_78 {
  margin-right: 0.78rem;
}
.mt_78 {
  margin-top: 0.78rem !important;
}
.mb_78 {
  margin-bottom: 0.78rem;
}
.p_79 {
  padding: 0.79rem !important;
}
.m_79 {
  margin: 0.79rem !important;
}
.pl_79 {
  padding-left: 0.79rem;
}
.pr_79 {
  padding-right: 0.79rem;
}
.pt_79 {
  padding-top: 0.79rem;
}
.pb_79 {
  padding-bottom: 0.79rem;
}
.ml_79 {
  margin-left: 0.79rem;
}
.mr_79 {
  margin-right: 0.79rem;
}
.mt_79 {
  margin-top: 0.79rem !important;
}
.mb_79 {
  margin-bottom: 0.79rem;
}
.p_80 {
  padding: 0.8rem !important;
}
.m_80 {
  margin: 0.8rem !important;
}
.pl_80 {
  padding-left: 0.8rem;
}
.pr_80 {
  padding-right: 0.8rem;
}
.pt_80 {
  padding-top: 0.8rem;
}
.pb_80 {
  padding-bottom: 0.8rem;
}
.ml_80 {
  margin-left: 0.8rem;
}
.mr_80 {
  margin-right: 0.8rem;
}
.mt_80 {
  margin-top: 0.8rem !important;
}
.mb_80 {
  margin-bottom: 0.8rem;
}
.p_81 {
  padding: 0.81rem !important;
}
.m_81 {
  margin: 0.81rem !important;
}
.pl_81 {
  padding-left: 0.81rem;
}
.pr_81 {
  padding-right: 0.81rem;
}
.pt_81 {
  padding-top: 0.81rem;
}
.pb_81 {
  padding-bottom: 0.81rem;
}
.ml_81 {
  margin-left: 0.81rem;
}
.mr_81 {
  margin-right: 0.81rem;
}
.mt_81 {
  margin-top: 0.81rem !important;
}
.mb_81 {
  margin-bottom: 0.81rem;
}
.p_82 {
  padding: 0.82rem !important;
}
.m_82 {
  margin: 0.82rem !important;
}
.pl_82 {
  padding-left: 0.82rem;
}
.pr_82 {
  padding-right: 0.82rem;
}
.pt_82 {
  padding-top: 0.82rem;
}
.pb_82 {
  padding-bottom: 0.82rem;
}
.ml_82 {
  margin-left: 0.82rem;
}
.mr_82 {
  margin-right: 0.82rem;
}
.mt_82 {
  margin-top: 0.82rem !important;
}
.mb_82 {
  margin-bottom: 0.82rem;
}
.p_83 {
  padding: 0.83rem !important;
}
.m_83 {
  margin: 0.83rem !important;
}
.pl_83 {
  padding-left: 0.83rem;
}
.pr_83 {
  padding-right: 0.83rem;
}
.pt_83 {
  padding-top: 0.83rem;
}
.pb_83 {
  padding-bottom: 0.83rem;
}
.ml_83 {
  margin-left: 0.83rem;
}
.mr_83 {
  margin-right: 0.83rem;
}
.mt_83 {
  margin-top: 0.83rem !important;
}
.mb_83 {
  margin-bottom: 0.83rem;
}
.p_84 {
  padding: 0.84rem !important;
}
.m_84 {
  margin: 0.84rem !important;
}
.pl_84 {
  padding-left: 0.84rem;
}
.pr_84 {
  padding-right: 0.84rem;
}
.pt_84 {
  padding-top: 0.84rem;
}
.pb_84 {
  padding-bottom: 0.84rem;
}
.ml_84 {
  margin-left: 0.84rem;
}
.mr_84 {
  margin-right: 0.84rem;
}
.mt_84 {
  margin-top: 0.84rem !important;
}
.mb_84 {
  margin-bottom: 0.84rem;
}
.p_85 {
  padding: 0.85rem !important;
}
.m_85 {
  margin: 0.85rem !important;
}
.pl_85 {
  padding-left: 0.85rem;
}
.pr_85 {
  padding-right: 0.85rem;
}
.pt_85 {
  padding-top: 0.85rem;
}
.pb_85 {
  padding-bottom: 0.85rem;
}
.ml_85 {
  margin-left: 0.85rem;
}
.mr_85 {
  margin-right: 0.85rem;
}
.mt_85 {
  margin-top: 0.85rem !important;
}
.mb_85 {
  margin-bottom: 0.85rem;
}
.p_86 {
  padding: 0.86rem !important;
}
.m_86 {
  margin: 0.86rem !important;
}
.pl_86 {
  padding-left: 0.86rem;
}
.pr_86 {
  padding-right: 0.86rem;
}
.pt_86 {
  padding-top: 0.86rem;
}
.pb_86 {
  padding-bottom: 0.86rem;
}
.ml_86 {
  margin-left: 0.86rem;
}
.mr_86 {
  margin-right: 0.86rem;
}
.mt_86 {
  margin-top: 0.86rem !important;
}
.mb_86 {
  margin-bottom: 0.86rem;
}
.p_87 {
  padding: 0.87rem !important;
}
.m_87 {
  margin: 0.87rem !important;
}
.pl_87 {
  padding-left: 0.87rem;
}
.pr_87 {
  padding-right: 0.87rem;
}
.pt_87 {
  padding-top: 0.87rem;
}
.pb_87 {
  padding-bottom: 0.87rem;
}
.ml_87 {
  margin-left: 0.87rem;
}
.mr_87 {
  margin-right: 0.87rem;
}
.mt_87 {
  margin-top: 0.87rem !important;
}
.mb_87 {
  margin-bottom: 0.87rem;
}
.p_88 {
  padding: 0.88rem !important;
}
.m_88 {
  margin: 0.88rem !important;
}
.pl_88 {
  padding-left: 0.88rem;
}
.pr_88 {
  padding-right: 0.88rem;
}
.pt_88 {
  padding-top: 0.88rem;
}
.pb_88 {
  padding-bottom: 0.88rem;
}
.ml_88 {
  margin-left: 0.88rem;
}
.mr_88 {
  margin-right: 0.88rem;
}
.mt_88 {
  margin-top: 0.88rem !important;
}
.mb_88 {
  margin-bottom: 0.88rem;
}
.p_89 {
  padding: 0.89rem !important;
}
.m_89 {
  margin: 0.89rem !important;
}
.pl_89 {
  padding-left: 0.89rem;
}
.pr_89 {
  padding-right: 0.89rem;
}
.pt_89 {
  padding-top: 0.89rem;
}
.pb_89 {
  padding-bottom: 0.89rem;
}
.ml_89 {
  margin-left: 0.89rem;
}
.mr_89 {
  margin-right: 0.89rem;
}
.mt_89 {
  margin-top: 0.89rem !important;
}
.mb_89 {
  margin-bottom: 0.89rem;
}
.p_90 {
  padding: 0.9rem !important;
}
.m_90 {
  margin: 0.9rem !important;
}
.pl_90 {
  padding-left: 0.9rem;
}
.pr_90 {
  padding-right: 0.9rem;
}
.pt_90 {
  padding-top: 0.9rem;
}
.pb_90 {
  padding-bottom: 0.9rem;
}
.ml_90 {
  margin-left: 0.9rem;
}
.mr_90 {
  margin-right: 0.9rem;
}
.mt_90 {
  margin-top: 0.9rem !important;
}
.mb_90 {
  margin-bottom: 0.9rem;
}
.p_91 {
  padding: 0.91rem !important;
}
.m_91 {
  margin: 0.91rem !important;
}
.pl_91 {
  padding-left: 0.91rem;
}
.pr_91 {
  padding-right: 0.91rem;
}
.pt_91 {
  padding-top: 0.91rem;
}
.pb_91 {
  padding-bottom: 0.91rem;
}
.ml_91 {
  margin-left: 0.91rem;
}
.mr_91 {
  margin-right: 0.91rem;
}
.mt_91 {
  margin-top: 0.91rem !important;
}
.mb_91 {
  margin-bottom: 0.91rem;
}
.p_92 {
  padding: 0.92rem !important;
}
.m_92 {
  margin: 0.92rem !important;
}
.pl_92 {
  padding-left: 0.92rem;
}
.pr_92 {
  padding-right: 0.92rem;
}
.pt_92 {
  padding-top: 0.92rem;
}
.pb_92 {
  padding-bottom: 0.92rem;
}
.ml_92 {
  margin-left: 0.92rem;
}
.mr_92 {
  margin-right: 0.92rem;
}
.mt_92 {
  margin-top: 0.92rem !important;
}
.mb_92 {
  margin-bottom: 0.92rem;
}
.p_93 {
  padding: 0.93rem !important;
}
.m_93 {
  margin: 0.93rem !important;
}
.pl_93 {
  padding-left: 0.93rem;
}
.pr_93 {
  padding-right: 0.93rem;
}
.pt_93 {
  padding-top: 0.93rem;
}
.pb_93 {
  padding-bottom: 0.93rem;
}
.ml_93 {
  margin-left: 0.93rem;
}
.mr_93 {
  margin-right: 0.93rem;
}
.mt_93 {
  margin-top: 0.93rem !important;
}
.mb_93 {
  margin-bottom: 0.93rem;
}
.p_94 {
  padding: 0.94rem !important;
}
.m_94 {
  margin: 0.94rem !important;
}
.pl_94 {
  padding-left: 0.94rem;
}
.pr_94 {
  padding-right: 0.94rem;
}
.pt_94 {
  padding-top: 0.94rem;
}
.pb_94 {
  padding-bottom: 0.94rem;
}
.ml_94 {
  margin-left: 0.94rem;
}
.mr_94 {
  margin-right: 0.94rem;
}
.mt_94 {
  margin-top: 0.94rem !important;
}
.mb_94 {
  margin-bottom: 0.94rem;
}
.p_95 {
  padding: 0.95rem !important;
}
.m_95 {
  margin: 0.95rem !important;
}
.pl_95 {
  padding-left: 0.95rem;
}
.pr_95 {
  padding-right: 0.95rem;
}
.pt_95 {
  padding-top: 0.95rem;
}
.pb_95 {
  padding-bottom: 0.95rem;
}
.ml_95 {
  margin-left: 0.95rem;
}
.mr_95 {
  margin-right: 0.95rem;
}
.mt_95 {
  margin-top: 0.95rem !important;
}
.mb_95 {
  margin-bottom: 0.95rem;
}
.p_96 {
  padding: 0.96rem !important;
}
.m_96 {
  margin: 0.96rem !important;
}
.pl_96 {
  padding-left: 0.96rem;
}
.pr_96 {
  padding-right: 0.96rem;
}
.pt_96 {
  padding-top: 0.96rem;
}
.pb_96 {
  padding-bottom: 0.96rem;
}
.ml_96 {
  margin-left: 0.96rem;
}
.mr_96 {
  margin-right: 0.96rem;
}
.mt_96 {
  margin-top: 0.96rem !important;
}
.mb_96 {
  margin-bottom: 0.96rem;
}
.p_97 {
  padding: 0.97rem !important;
}
.m_97 {
  margin: 0.97rem !important;
}
.pl_97 {
  padding-left: 0.97rem;
}
.pr_97 {
  padding-right: 0.97rem;
}
.pt_97 {
  padding-top: 0.97rem;
}
.pb_97 {
  padding-bottom: 0.97rem;
}
.ml_97 {
  margin-left: 0.97rem;
}
.mr_97 {
  margin-right: 0.97rem;
}
.mt_97 {
  margin-top: 0.97rem !important;
}
.mb_97 {
  margin-bottom: 0.97rem;
}
.p_98 {
  padding: 0.98rem !important;
}
.m_98 {
  margin: 0.98rem !important;
}
.pl_98 {
  padding-left: 0.98rem;
}
.pr_98 {
  padding-right: 0.98rem;
}
.pt_98 {
  padding-top: 0.98rem;
}
.pb_98 {
  padding-bottom: 0.98rem;
}
.ml_98 {
  margin-left: 0.98rem;
}
.mr_98 {
  margin-right: 0.98rem;
}
.mt_98 {
  margin-top: 0.98rem !important;
}
.mb_98 {
  margin-bottom: 0.98rem;
}
.p_99 {
  padding: 0.99rem !important;
}
.m_99 {
  margin: 0.99rem !important;
}
.pl_99 {
  padding-left: 0.99rem;
}
.pr_99 {
  padding-right: 0.99rem;
}
.pt_99 {
  padding-top: 0.99rem;
}
.pb_99 {
  padding-bottom: 0.99rem;
}
.ml_99 {
  margin-left: 0.99rem;
}
.mr_99 {
  margin-right: 0.99rem;
}
.mt_99 {
  margin-top: 0.99rem !important;
}
.mb_99 {
  margin-bottom: 0.99rem;
}
.p_100 {
  padding: 1rem !important;
}
.m_100 {
  margin: 1rem !important;
}
.pl_100 {
  padding-left: 1rem;
}
.pr_100 {
  padding-right: 1rem;
}
.pt_100 {
  padding-top: 1rem;
}
.pb_100 {
  padding-bottom: 1rem;
}
.ml_100 {
  margin-left: 1rem;
}
.mr_100 {
  margin-right: 1rem;
}
.mt_100 {
  margin-top: 1rem !important;
}
.mb_100 {
  margin-bottom: 1rem;
}
.AlimamaShuHeiTi {
  font-family: 'AlimamaShuHeiTi-Bold';
}
.container-flup {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
.rightBar {
  width: 0.4rem;
  height: 0.7rem;
  min-width: 28px;
  min-height: 50px;
  border-radius: 360px 360px 360px 360px;
  opacity: 1;
  border: none;
  background: rgba(69, 76, 92, 0.2);
  position: fixed;
  right: 0.3rem;
  top: 70vh;
  display: none;
  z-index: 9999;
  transition: all 0.3s ease;
}
.rightBar.active {
  display: block;
}
.rightBar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}
.rightBar a p {
  transition: all 0.3s ease;
}
.rightBar a svg {
  margin-bottom: 0.1rem;
  transition: all 0.3s ease;
}
.rightBar a svg .a {
  fill: white !important;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .rightBar {
    min-height: initial;
    width: 40px;
    height: 40px;
  }
  .rightBar P {
    display: none;
  }
  .rightBar svg {
    margin-top: 5px;
  }
}
.rightBar:hover {
  background-color: #fd0608;
  border: 1px solid #fd0608;
}
.rightBar:hover a {
  color: white;
}
.rightBar:hover a svg {
  transform: translateY(3px);
}
.rightBar:hover a p {
  transform: translateY(-3px);
}
.rightBar:hover a .a {
  fill: white;
}
.rightBar.white {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.rightBar.white a {
  color: #ffffff;
}
.rightBar.white a svg {
  margin-bottom: 0.1rem;
}
.rightBar.white a svg .a {
  fill: #ffffff;
}
.rightBar.white:hover {
  background-color: #fd0608;
  border: 1px solid #fd0608;
}
.rightBar.white:hover a {
  color: white;
}
.rightBar.white:hover a .a {
  fill: white;
}
header .navbar-custom {
  padding: 0px;
  width: 100%;
  border-radius: 0px;
  z-index: 999;
  margin-bottom: 0px;
  transition: all 0.5s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
header .navbar-custom .container-flup {
  height: 80px;
  overflow: initial;
  z-index: 3;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
header .navbar-custom .container-flup .bg-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s ease;
  z-index: 1;
  background: white;
}
header .navbar-custom .container-flup .search-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease-in;
  z-index: -1;
  opacity: 0;
  padding-top: 0;
  justify-content: center;
  display: flex;
}
header .navbar-custom .container-flup .search-box.active {
  z-index: 3;
  opacity: 1;
}
header .navbar-custom .container-flup .search-box.active .container {
  top: 0;
  max-width: initial;
}
header .navbar-custom .container-flup .search-box .container {
  transition: all 0.3s ease-in;
  top: -100%;
  background-color: rgba(61, 72, 83, 0.25);
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  -webkit-backdrop-filter: blur(50px) saturate(1.5);
  backdrop-filter: blur(50px) saturate(1.5);
  position: relative;
  left: 0;
}
header .navbar-custom .container-flup .search-box .container .search-box-title {
  width: 120px;
}
header .navbar-custom .container-flup .search-box .container .search-box-title h2 {
  position: relative;
  cursor: pointer;
  color: #fff;
}
header .navbar-custom .container-flup .search-box .container .search-box-title h2:after {
  content: "";
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
header .navbar-custom .container-flup .search-box .container .search-box-title ul {
  display: block;
  opacity: 0;
  z-index: -1;
  position: absolute;
  background-color: rgba(61, 72, 83, 0.5);
  left: 0;
  width: calc(100px + 0.3rem);
  padding: 0.1rem 0.3rem;
  top: 0;
  transition: all 0.3s ease;
}
header .navbar-custom .container-flup .search-box .container .search-box-title ul.active {
  display: block;
  top: 100%;
  opacity: 1;
  background: #ffffff;
}
header .navbar-custom .container-flup .search-box .container .search-box-title ul li {
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
header .navbar-custom .container-flup .search-box .container .search-box-title ul li.active {
  color: #ffffff;
}
header .navbar-custom .container-flup .search-box .container .search-box-title ul li:hover {
  color: #ffffff;
}
header .navbar-custom .container-flup .search-box .container .flex {
  height: 100%;
  background-color: rgba(61, 72, 83, 0.5);
  opacity: 1;
  padding: 0 0.3rem;
  position: relative;
  width: 100%;
}
header .navbar-custom .container-flup .search-box .container .flex .icon {
  height: 16px;
  position: relative;
  padding-left: 0.3rem;
}
header .navbar-custom .container-flup .search-box .container .flex .icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
header .navbar-custom .container-flup .search-box .container .flex .icon .as,
header .navbar-custom .container-flup .search-box .container .flex .icon .b {
  fill: #fff;
}
header .navbar-custom .container-flup .search-box .container .flex input {
  border: none;
  padding-left: 0.3rem;
  background-color: transparent;
  width: calc(100% - 16px - 0.3rem);
  color: #fff;
}
header .navbar-custom .container-flup .search-box .container .flex input::placeholder {
  color: white;
}
header .navbar-custom .container-flup .search-box .container .flex span {
  border: none;
  background: none;
  color: white;
}
@media screen and (max-width: 992px) {
  header .navbar-custom .container-flup {
    height: 60px;
  }
}
header .navbar-custom .logo {
  width: 2.4rem;
  min-width: 1.8rem;
  z-index: 2;
  position: relative;
  padding-left: 30px;
}
header .navbar-custom .logo a {
  display: block;
  width: 100%;
  text-align: center;
}
header .navbar-custom .logo a img {
  width: 100%;
}
header .navbar-custom #mainListDiv {
  z-index: 2;
  position: relative;
  padding: 0 0.5rem;
  display: flex;
}
header .navbar-custom #mainListDiv .navlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
header .navbar-custom #mainListDiv .navlinks li {
  height: 100%;
  margin: 0 20px;
}
header .navbar-custom #mainListDiv .navlinks li p {
  display: none;
}
header .navbar-custom #mainListDiv .navlinks li a {
  width: 100px;
  text-align: center;
  color: #111111;
  height: 100%;
  line-height: 50px;
  position: relative;
  display: block;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media screen and (max-width: 1680px) {
  header .navbar-custom #mainListDiv .navlinks li {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1440px) {
  header .navbar-custom #mainListDiv .navlinks li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 1280px) {
  header .navbar-custom #mainListDiv .navlinks li a {
    width: auto;
  }
}
header .navbar-custom #mainListDiv .navlinks li span {
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 1px;
  height: 0;
  margin: 10px auto 0;
}
header .navbar-custom #mainListDiv .navlinks li:hover a {
  transform: translateY(-10px);
}
header .navbar-custom #mainListDiv .navlinks li:hover span {
  width: 1px;
  height: 10px;
  background: #111;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .navbar-custom #mainListDiv .navlinks li:hover .child {
  display: block;
}
header .navbar-custom #mainListDiv .navlinks li.active {
  transform: translateY(-10px);
}
header .navbar-custom #mainListDiv .navlinks li.active:hover a {
  transform: translateY(0);
}
header .navbar-custom #mainListDiv .navlinks li.active span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 10px;
  height: 2px;
  margin: 0 auto;
  background: #111111;
}
header .navbar-custom #mainListDiv .navlinks li .child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
header .navbar-custom #mainListDiv.active .navlinks {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  header .navbar-custom #mainListDiv {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff;
    left: 0;
    top: 0;
    z-index: 999;
    padding-top: 60px;
  }
  header .navbar-custom #mainListDiv .navlinks {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
  }
  header .navbar-custom #mainListDiv .navlinks li {
    height: auto;
    margin: 0 !important;
    width: 100%;
    padding-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header .navbar-custom #mainListDiv .navlinks li p {
    display: block;
  }
  header .navbar-custom #mainListDiv .navlinks li svg {
    display: none;
  }
  header .navbar-custom #mainListDiv .navlinks li a {
    transform: translateY(0) !important;
    width: 100%;
    text-align: left;
  }
  header .navbar-custom #mainListDiv .navlinks li span {
    display: none !important;
  }
  header .navbar-custom #mainListDiv .navlinks li.active {
    transform: translateY(0);
  }
}
header .navbar-custom .nav-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
header .navbar-custom .nav-right > a {
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  color: #111111;
}
header .navbar-custom .nav-right > a img {
  display: inline-block;
  width: 18px;
  margin-right: 10px;
}
header .navbar-custom .nav-right:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.5);
}
header .navbar-custom .navTrigger {
  display: none;
}
header .navbar-custom .mobile-common-header {
  display: none;
}
header .navbar-custom.nav-sticky .container-flup .bg-top,
header .navbar-custom.move .container-flup .bg-top {
  height: 100%;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container,
header .navbar-custom.move .container-flup .search-box .container {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .search-box-title h2,
header .navbar-custom.move .container-flup .search-box .container .search-box-title h2 {
  color: #454c5c;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .search-box-title h2:after,
header .navbar-custom.move .container-flup .search-box .container .search-box-title h2:after {
  border-top: 4px solid #454c5c;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .search-box-title ul li,
header .navbar-custom.move .container-flup .search-box .container .search-box-title ul li {
  color: #454c5c;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .search-box-title ul li.active,
header .navbar-custom.move .container-flup .search-box .container .search-box-title ul li.active {
  color: #fd0608;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .search-box-title ul li:hover,
header .navbar-custom.move .container-flup .search-box .container .search-box-title ul li:hover {
  color: #fd0608;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .flex,
header .navbar-custom.move .container-flup .search-box .container .flex {
  background-color: rgba(255, 255, 255, 0.5);
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .flex .icon:after,
header .navbar-custom.move .container-flup .search-box .container .flex .icon:after {
  background-color: #454c5c;
  opacity: 0.3;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .flex .icon .as,
header .navbar-custom.move .container-flup .search-box .container .flex .icon .as,
header .navbar-custom.nav-sticky .container-flup .search-box .container .flex .icon .b,
header .navbar-custom.move .container-flup .search-box .container .flex .icon .b {
  fill: #454c5c;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .flex input,
header .navbar-custom.move .container-flup .search-box .container .flex input {
  color: #454c5c;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .flex input::placeholder,
header .navbar-custom.move .container-flup .search-box .container .flex input::placeholder {
  color: #454c5c;
}
header .navbar-custom.nav-sticky .container-flup .search-box .container .flex span,
header .navbar-custom.move .container-flup .search-box .container .flex span {
  color: #454c5c;
}
header .navbar-custom.nav-sticky .logo a svg .a,
header .navbar-custom.move .logo a svg .a {
  fill: #2A2825 !important;
}
header .navbar-custom.nav-sticky .logo a svg .b,
header .navbar-custom.move .logo a svg .b {
  fill: #fd0608 !important;
}
header .navbar-custom.nav-sticky #mainListDiv .navlinks li svg .a,
header .navbar-custom.move #mainListDiv .navlinks li svg .a {
  fill: #454C5C;
}
header .navbar-custom.nav-sticky #mainListDiv .navlinks li svg .b,
header .navbar-custom.move #mainListDiv .navlinks li svg .b {
  fill: #454C5C !important;
}
header .navbar-custom.nav-sticky #mainListDiv .navlinks li a,
header .navbar-custom.move #mainListDiv .navlinks li a {
  color: #454C5C;
}
header .navbar-custom.nav-sticky #mainListDiv .navlinks li:hover span,
header .navbar-custom.move #mainListDiv .navlinks li:hover span {
  background: #454C5C;
}
header .navbar-custom.nav-sticky #mainListDiv .navlinks li.active span,
header .navbar-custom.move #mainListDiv .navlinks li.active span {
  background: #454C5C;
}
header .navbar-custom.nav-sticky .navTrigger i,
header .navbar-custom.move .navTrigger i {
  background-color: #2A2825;
}
header .navbar-custom.nav-sticky .nav-right,
header .navbar-custom.move .nav-right {
  display: flex;
}
header .navbar-custom.nav-sticky .nav-right .icon svg .as,
header .navbar-custom.move .nav-right .icon svg .as,
header .navbar-custom.nav-sticky .nav-right .icon svg .b,
header .navbar-custom.move .nav-right .icon svg .b {
  fill: #454C5C !important;
}
header .navbar-custom.nav-sticky .nav-right a,
header .navbar-custom.move .nav-right a {
  color: #454C5C;
}
header .navbar-custom.nav-sticky .nav-right .zh a,
header .navbar-custom.move .nav-right .zh a,
header .navbar-custom.nav-sticky .nav-right .en a,
header .navbar-custom.move .nav-right .en a {
  color: rgba(69, 76, 92, 0.5);
}
header .navbar-custom.nav-sticky .nav-right .zh a:hover,
header .navbar-custom.move .nav-right .zh a:hover,
header .navbar-custom.nav-sticky .nav-right .en a:hover,
header .navbar-custom.move .nav-right .en a:hover {
  color: #454C5C;
}
header .navbar-custom.nav-sticky .nav-right .zh a:after,
header .navbar-custom.move .nav-right .zh a:after,
header .navbar-custom.nav-sticky .nav-right .en a:after,
header .navbar-custom.move .nav-right .en a:after {
  background: #454C5C;
}
header .navbar-custom.nav-sticky .nav-right .zh:before,
header .navbar-custom.move .nav-right .zh:before {
  background: black;
}
@media screen and (max-width: 992px) {
  header .navbar-custom .toggleMenu {
    display: none !important;
  }
  header .navbar-custom .logo {
    z-index: 9999;
  }
  header .navbar-custom #mainListDiv {
    display: none;
  }
  header .navbar-custom .navTrigger {
    display: block;
  }
  header .navbar-custom .nav-right {
    padding-right: 60px;
  }
  header .navbar-custom .pc-common-header {
    display: none;
  }
  header .navbar-custom .mobile-common-header {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
  }
  header .navbar-custom .mobile-common-header .logo {
    padding: 0;
  }
  header .navbar-custom .mobile-common-header .search-box {
    position: relative;
    z-index: 1;
    opacity: 1;
  }
  header .navbar-custom .mobile-common-header .search-box .container {
    left: auto;
  }
  header .navbar-custom .mobile-common-header .search-box .container .search-box-title {
    height: 48px;
  }
  header .navbar-custom .mobile-common-header .search-box .container .search-box-title h2 {
    line-height: 48px;
  }
  header .navbar-custom .mobile-common-header .search-box .container .search-box-title ul {
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  }
  header .navbar-custom .mobile-common-header .search-box .container .flex {
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    border: 1px solid rgba(69, 76, 92, 0.1);
    padding-right: 0;
  }
  header .navbar-custom .mobile-common-header .search-box .container .flex .icon {
    padding-right: 0.3rem;
  }
  header .navbar-custom .mobile-common-header .search-box .container .flex .icon:after {
    display: none;
  }
  header .navbar-custom .mobile-common-header .search-box .container .flex button {
    background: #fd0608;
    color: #fff;
    width: 70px;
    height: 100%;
    border: none;
  }
  header .navbar-custom .mobile-common-header .menuContainer {
    display: none;
  }
  header .navbar-custom .mobile-common-header .menuBox li {
    position: relative;
    padding: 0.3rem 5%;
    cursor: pointer;
    transition: all 0.3s ease-in;
  }
  header .navbar-custom .mobile-common-header .menuBox li.active {
    background: #f7f8fa;
  }
  header .navbar-custom .mobile-common-header .menuBox li a {
    color: #454C5C;
    display: block;
    width: 70%;
  }
  header .navbar-custom .mobile-common-header .menuBox li span {
    position: absolute;
    top: 0.3rem;
    right: 5%;
    height: 21px;
    width: 30%;
    color: #fff;
  }
  header .navbar-custom .mobile-common-header .menuBox li span:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 50%;
    transform: translateY(50%);
    transition: all 0.3s ease-in;
    width: 10px;
    transition-delay: 0s, 0s, 0.3s;
    height: 2px;
    background: rgba(69, 76, 92, 0.5);
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
  }
  header .navbar-custom .mobile-common-header .menuBox li span.active:before {
    width: 20px;
    height: 2px;
    transform: rotate(90deg);
    background: #fd0608;
  }
  header .navbar-custom .mobile-common-header .menuBox li .child {
    display: none;
    margin-top: 0.3rem;
  }
}
header .navbar-custom .navTrigger {
  cursor: pointer;
  height: 23px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1001;
}
header .navbar-custom .navTrigger i {
  display: inline-block;
  background: #111111;
  width: 3px;
  margin-right: 3px;
}
header .navbar-custom .navTrigger i:nth-child(1),
header .navbar-custom .navTrigger i:nth-child(5) {
  height: 5px;
}
header .navbar-custom .navTrigger i:nth-child(2),
header .navbar-custom .navTrigger i:nth-child(4) {
  height: 15px;
}
header .navbar-custom .navTrigger i:nth-child(3) {
  height: 23px;
}
header .navbar-custom .navTrigger i:nth-child(1),
header .navbar-custom .navTrigger i:nth-child(3),
header .navbar-custom .navTrigger i:nth-child(5) {
  -webkit-animation: outsT 0.3s backwards;
  animation: outsT 0.3s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
header .navbar-custom .navTrigger i:nth-child(2),
header .navbar-custom .navTrigger i:nth-child(4) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
header .navbar-custom .navTrigger.active i:nth-child(1),
header .navbar-custom .navTrigger.active i:nth-child(3),
header .navbar-custom .navTrigger.active i:nth-child(5) {
  -webkit-animation: isnT 0.3s forwards;
  animation: isnT 0.3s forwards;
}
header .navbar-custom .navTrigger.active.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}
header .navbar-custom .navTrigger.active.active i:nth-child(4) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}
header .navbar-custom .menuContainer {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  height: 100vh;
  background: white;
  padding-top: 60px;
  overflow-y: auto;
}
header .navbar-custom .menuContainer .language {
  position: absolute;
  top: 15px;
  right: calc(5% + 45px);
  width: 60px;
  height: 30px;
  background: #0050DD;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  color: white;
  text-align: center;
  line-height: 30px;
  border: 1px solid rgba(69, 76, 92, 0.1);
}
header .navbar-custom .menuContainer .language a {
  color: #fff;
}
@keyframes isnT {
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes outsT {
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes inBtm {
  50% {
    transform: rotate(-45deg) translateX(-6px);
    height: 25px;
    margin: 0;
  }
  100% {
    transform: rotate(-45deg) translateX(-6px);
    height: 25px;
    margin: 0;
  }
}
@keyframes inM {
  50% {
    transform: rotate(45deg) translateX(6px);
    height: 25px;
    margin: 0;
  }
  100% {
    transform: rotate(45deg) translateX(6px);
    height: 25px;
    margin: 0;
  }
}
.toggleMenu {
  position: absolute;
  top: 80px;
  animation-duration: 0.6s !important;
  left: 0;
  display: none;
  min-height: 200px;
  width: 100%;
  border-top: 1px solid rgba(69, 76, 92, 0.1);
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(122, 136, 162, 0.05);
  opacity: 1;
}
.toggleMenu .container-flup {
  height: 100% !important;
  box-shadow: none;
  padding-top: 40px;
}
.toggleMenu .container-flup .row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.toggleMenu.toggleMenu1 .row > div,
.toggleMenu.display .row > div {
  width: 140px;
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item,
.toggleMenu.display .row > div .product-nav-item {
  cursor: pointer;
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item:hover h1,
.toggleMenu.display .row > div .product-nav-item:hover h1 {
  transform: translateY(-10px);
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item:hover h1::after,
.toggleMenu.display .row > div .product-nav-item:hover h1::after {
  width: 10px;
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item.active h1,
.toggleMenu.display .row > div .product-nav-item.active h1 {
  color: #454c5c;
  font-weight: bold;
  transform: translateY(-10px);
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item.active h1::after,
.toggleMenu.display .row > div .product-nav-item.active h1::after {
  width: 40px;
  height: 2px;
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item h1,
.toggleMenu.display .row > div .product-nav-item h1 {
  height: 80px;
  line-height: 80px;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: center;
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item h1::after,
.toggleMenu.display .row > div .product-nav-item h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #454C5C;
}
.toggleMenu.toggleMenu1 .row > div .product-nav-item img,
.toggleMenu.display .row > div .product-nav-item img {
  width: 100%;
}
.toggleMenu.display {
  position: fixed !important;
  z-index: 999;
}
.toggleMenu.toggleMenu2 {
  height: 240px;
}
.toggleMenu.toggleMenu2 .row {
  align-items: start;
}
.toggleMenu.toggleMenu2 .row > div.col-sm-4 {
  padding-top: 30px;
  width: 230px;
  margin: 0 40px;
}
.toggleMenu.toggleMenu2 .nav-item {
  margin: 0 auto;
}
.toggleMenu.toggleMenu2 .nav-item .card {
  margin-bottom: 20px;
  width: 100%;
}
.toggleMenu.toggleMenu2 .nav-item .card-img {
  height: 100px;
}
.toggleMenu.toggleMenu2 .nav-item .card-body {
  padding: 0;
}
.toggleMenu.toggleMenu2 .nav-item .card-body a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toggleMenu.toggleMenu2 .nav-item ul {
  display: flex;
  flex-wrap: wrap;
}
.toggleMenu.toggleMenu2 .nav-item ul li {
  width: 50%;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}
.toggleMenu.toggleMenu2 .nav-item ul li:nth-child(2n) {
  position: relative;
}
.toggleMenu.toggleMenu2 .nav-item ul li:nth-child(2n):after {
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: #454C5C;
}
.toggleMenu.toggleMenu2 .nav-item ul li a {
  color: #454C5C;
  transition: all 0.3s ease;
}
.toggleMenu.toggleMenu2 .nav-item ul li a:hover {
  color: #fd0608;
}
.toggleMenu.toggleMenu3 .row > div.col-sm-4,
.toggleMenu.toggleMenu4 .row > div.col-sm-4,
.toggleMenu.toggleMenu5 .row > div.col-sm-4 {
  width: 230px;
  margin: 0 40px;
}
.toggleMenu.toggleMenu3 .nav-item,
.toggleMenu.toggleMenu4 .nav-item,
.toggleMenu.toggleMenu5 .nav-item {
  margin: 0 auto;
}
.toggleMenu.toggleMenu3 .nav-item .card,
.toggleMenu.toggleMenu4 .nav-item .card,
.toggleMenu.toggleMenu5 .nav-item .card {
  width: 100%;
  margin-bottom: 20px;
}
.toggleMenu.toggleMenu3 .nav-item .card-img,
.toggleMenu.toggleMenu4 .nav-item .card-img,
.toggleMenu.toggleMenu5 .nav-item .card-img {
  height: 100px;
}
.toggleMenu.toggleMenu3 .nav-item .card-body,
.toggleMenu.toggleMenu4 .nav-item .card-body,
.toggleMenu.toggleMenu5 .nav-item .card-body {
  padding: 0;
}
.toggleMenu.toggleMenu3 .nav-item .card-body a,
.toggleMenu.toggleMenu4 .nav-item .card-body a,
.toggleMenu.toggleMenu5 .nav-item .card-body a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-nav {
  top: 80px;
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(69, 76, 92, 0.1);
  box-shadow: 0px 3px 6px 1px rgba(122, 136, 162, 0.05);
  opacity: 1;
  z-index: 888;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-touch-action: none;
  touch-action: none;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .product-nav {
    top: 60px;
  }
}
.product-nav .container-flup {
  height: 100% !important;
  box-shadow: none;
}
.product-nav .container-flup .container > .swiper-container {
  width: 100%;
}
.product-nav .container-flup .swiper-wrapper {
  display: flex;
  justify-content: center;
  transition: all 0.5s ease-in;
}
@media screen and (max-width: 992px) {
  .product-nav .container-flup .swiper-wrapper {
    justify-content: start;
  }
}
.product-nav .swiper-wrapper > div {
  max-width: 150px;
}
.product-nav .swiper-wrapper > div .product-nav-item {
  cursor: pointer;
}
@media (any-hover: hover) {
  .product-nav .swiper-wrapper > div .product-nav-item:hover h1 {
    transform: translateY(-10px);
  }
  .product-nav .swiper-wrapper > div .product-nav-item:hover h1::after {
    width: 10px;
  }
}
.product-nav .swiper-wrapper > div .product-nav-item.active h1 {
  color: #454c5c;
  font-weight: bold;
  transform: translateY(-10px);
}
.product-nav .swiper-wrapper > div .product-nav-item.active h1::after {
  width: 40px;
  height: 2px;
}
.product-nav .swiper-wrapper > div .product-nav-item h1 {
  height: 80px;
  line-height: 80px;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: center;
}
.product-nav .swiper-wrapper > div .product-nav-item h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 0.3s ease-in;
  background: #454C5C;
}
.product-nav .swiper-wrapper > div .product-nav-item img {
  width: 100%;
  max-width: 112px;
  margin: 0 auto;
  display: block;
}
.js-fixed-position {
  top: 80px;
  margin: 0;
  position: fixed !important;
}
@media screen and (max-width: 992px) {
  .js-fixed-position {
    top: 60px;
  }
}
.js-fixed-position .product-img {
  display: none;
}
.index-banner.banner {
  position: relative;
}
.index-banner.banner .swiper-container {
  height: 100vh;
}
.index-banner.banner .swiper-container .swiper-slide > a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
}
.index-banner.banner .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}
.index-banner.banner .bannerImg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease-out;
  left: 0;
  top: 0;
}
.index-banner.banner #videoCover {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
}
.index-banner.banner .container {
  margin: 0 auto;
  height: auto;
  position: relative;
}
.index-banner.banner .container p {
  color: #111;
}
.index-banner.banner .container p.p1 {
  line-height: 1.2;
  font-weight: bold;
}
.index-banner.banner .container p.p2 {
  line-height: 1.7;
}
.index-banner.banner .container p.p3 {
  transition: all 0.3s ease-out;
  margin-top: 0.5rem;
}
.index-banner.banner .container .p3 {
  transition: all 0.3s ease-out;
  margin-top: 0.5rem;
}
.index-banner.banner .swiper-slide-active .bannerImg {
  -webkit-animation-name: fadeInBig;
  animation-name: fadeInBig;
  animation-duration: 5s !important;
}
.index-banner.banner .swiper-slide-active .container .p3 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-name: fadeInUp;
  animation-duration: 1.2s !important;
}
.index-banner.banner .swiper-slide-active .container p.p1 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-duration: 1.2s !important;
  display: inline-block;
}
.index-banner.banner .swiper-slide-active .container p.p2 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-duration: 1.2s !important;
}
.index-banner.banner .swiper-slide-active .container p.p3 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-name: fadeInUp;
  animation-duration: 1.2s !important;
}
.bottom-right {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 3;
}
.bottom-right svg .as,
.bottom-right svg .b {
  fill: #fff;
}
@media screen and (max-width: 992px) {
  .bottom-right {
    display: none;
    visibility: hidden;
  }
}
.bottom-right span {
  width: 1px;
  height: 40px;
  margin: 20px auto 0;
  display: block;
  overflow: hidden;
  position: relative;
}
.bottom-right span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  animation: heights 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  height: 100%;
  width: 100%;
  background: #fff;
}
.hover.swiper-pagination span.swiper-pagination-bullet-active {
  background: #fd0608;
}
section.section {
  overflow: hidden;
  padding-top: 1.1rem;
  width: 100%;
  position: relative;
}
section.section .btn {
  margin: 0.6rem auto 0;
  color: #fff;
}
section.section .section-title {
  text-align: center;
  margin-bottom: 0.6rem;
}
section.section .section-title h1 {
  font-weight: 500;
  background-size: 200% 200%;
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
section.section .section-title span {
  line-height: 1;
  display: block;
  color: #797979;
}
section.section.index2 {
  padding-bottom: 1rem;
  background: url("../img/bg2.jpg") no-repeat center center / cover;
}
section.section.index2 .row .item {
  transition: all 0.3s ease-in;
  border-radius: 10px;
}
section.section.index2 .row .item:hover {
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
section.section.index2 .row .item .img {
  position: relative;
}
section.section.index2 .row .item .img img {
  border-radius: 10px;
  overflow: hidden;
}
section.section.index2 .row .item .img p {
  position: absolute;
  left: 60%;
  top: 50%;
  width: 40%;
  margin-top: -20px;
}
section.section.index3 {
  padding-bottom: 1rem;
}
section.section.index3 .row {
  display: flex;
}
section.section.index3 .row .col-md-3 .img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
section.section.index3 .row .col-md-3 .img img {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  section.section.index3 .row .col-md-3 {
    display: none;
  }
  section.section.index3 .row .col-md-9 {
    width: 100% !important;
  }
}
section.section.index3 .row .col-md-9 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px 20px;
  grid-auto-rows: 130px;
}
section.section.index3 .row .col-md-9 ul li {
  display: flex;
  padding: 0.25rem;
  background: #F3F7FA;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}
section.section.index3 .row .col-md-9 ul li:hover {
  background: #fff;
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
section.section.index3 .row .col-md-9 ul li .icon {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
}
section.section.index4 {
  padding-bottom: 1rem;
  background: #ECF1F4;
}
section.section.index5 {
  padding-bottom: 1rem;
}
section.section.index5 .item {
  background: #F2F5F8;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}
section.section.index5 .item .img {
  overflow: hidden;
  border-radius: 10px;
}
section.section.index5 .item .img img {
  transition: all 0.3s ease-in;
  width: 100%;
}
section.section.index5 .item .content {
  padding: 0.3rem;
}
section.section.index5 .item .content .date {
  color: #888888;
}
section.section.index5 .item .content .mores {
  margin-top: 0.3rem;
  color: #fd0608;
}
section.section.index5 .item:hover {
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
  transform: translateY(-10px);
}
section.section.index5 .item:hover .img img {
  transform: scale(1.1);
}
section.section .card {
  margin-bottom: 0.3rem;
}
section.section .grid {
  display: grid;
  /*  声明列的宽度  */
  grid-template-columns: repeat(5, 1fr);
  /*  声明行间距和列间距  */
  grid-gap: 25px;
}
@media screen and (max-width: 768px) {
  section.section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
section.section .grid a {
  display: flex;
  vertical-align: center;
  text-align: center;
  background: #fff;
  height: 120px;
}
section.section .grid a img {
  display: inline-block;
  margin: 0 auto;
  max-width: 200px;
  width: 80%;
}
section.section .introduction {
  display: flex;
  flex-wrap: wrap;
}
section.section .introduction .left {
  position: relative;
  padding-left: 0.4rem;
  padding-right: 0.8rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.3rem;
}
section.section .introduction .left span {
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 1rem;
  height: 1.8rem;
  display: block;
  background: #454C5C;
  z-index: -1;
}
section.section .introduction .left .bg-hover {
  max-width: 430px;
  height: 4.5rem;
}
section.section .introduction .left .bg-hover img {
  display: block;
  height: 100%;
  width: 100%;
}
section.section .introduction .left .logos {
  width: 1.5rem;
  height: 1.5rem;
  background: #003C90;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
}
section.section .introduction .left .logos svg {
  max-width: 75%;
}
section.section .introduction .left .logos svg .a {
  opacity: 1;
}
section.section .introduction .left .logos svg .b {
  fill: #fff;
}
@media screen and (max-width: 992px) {
  section.section .introduction .left {
    padding: 0;
  }
  section.section .introduction .left span,
  section.section .introduction .left .logos {
    display: none;
    visibility: hidden;
  }
  section.section .introduction .left .bg-hover {
    max-width: initial;
    height: auto;
  }
  section.section .introduction .left .bg-hover img {
    display: block;
    height: 100%;
    width: 100%;
  }
}
section.section .introduction .right {
  height: 100%;
  display: flex;
  padding-top: 0.2rem;
  justify-content: right;
  padding-left: 0.5rem;
}
@media screen and (max-width: 992px) {
  section.section .introduction .right {
    padding: 0;
  }
  section.section .introduction .right h1 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
section.section .introduction .right .content {
  max-width: 750px;
}
section.section .introduction .right .content p {
  line-height: 1.8;
  text-align: justify;
}
section.section .introduction .right .content ul {
  display: flex;
  justify-content: space-between;
}
section.section .introduction .right .content ul a {
  color: #fd0608;
  margin-right: 0;
  display: block;
}
@media screen and (max-width: 992px) {
  section.section .introduction .right .content ul a {
    font-size: 16px;
  }
}
.index6 {
  overflow: hidden;
  padding: 0.6rem 0 !important;
  background: url("../img/p15.jpg") no-repeat center center / cover;
}
.index6 p {
  text-align: center;
}
.index6 a {
  margin-top: 0.3rem !important;
}
.index1 {
  position: relative;
  background: url("../img/bg1.jpg") no-repeat center center / cover;
  padding: 2rem 0 !important;
}
@media screen and (max-width: 992px) {
  .index1 {
    background: url("../img/bg1.jpg") no-repeat right right / cover;
  }
}
.index1 .content {
  position: relative;
  width: 70%;
}
.index1 .content .fnt_48 {
  margin-bottom: 0.4rem;
}
.index1 .content p {
  line-height: 2;
  color: #797979;
}
@media screen and (max-width: 992px) {
  .index1 .content {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .index1 {
    padding-bottom: 0.85rem;
  }
  .pc {
    display: none !important;
    visibility: hidden;
  }
  .mobile {
    display: block !important;
  }
}
.bottom-right {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 3;
}
.bottom-right span {
  width: 1px;
  height: 40px;
  margin: 20px auto 0;
  display: block;
  overflow: hidden;
  position: relative;
}
.bottom-right span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  animation: heights 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  height: 100%;
  width: 100%;
  background: #fff;
}
.product-card {
  height: 3.6rem;
  background: linear-gradient(270deg, #F7F8FA 0%, #ECEDEF 100%);
  border-radius: 12px 12px 12px 12px;
  opacity: 1;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card:hover .product-card-img img {
  transform: scale(1.1);
}
.product-card:hover a {
  transform: translateX(5px);
}
.product-card .product-card-title {
  padding-left: 0.5rem;
}
.product-card .product-card-title h1 {
  margin-bottom: 10px;
}
.product-card .product-card-title p {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .product-card .product-card-title p {
    text-align: center;
  }
}
.product-card .product-card-title a {
  transition: all 0.3s ease;
}
.product-card .product-card-img {
  width: 44%;
}
.product-card .product-card-img img {
  width: 100%;
  transition: all 0.3s ease;
}
.hover-imgs {
  position: relative;
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
  padding-left: 0.4rem;
}
.hover-imgs .product-item-imgs span.center {
  width: 1.4rem;
  height: 1.4rem;
  min-width: 110px;
  min-height: 110px;
  background: linear-gradient(180deg, rgba(0, 80, 221, 0.5) 0%, #0050DD 100%);
  box-shadow: 0px 2px 0px 1px #FFFFFF;
  opacity: 1;
}
.hover-imgs .product-item-imgs span.inside {
  color: #fd0608;
}
@media screen and (max-width: 768px) {
  .hover-imgs .product-item-imgs span.inside {
    color: transparent !important;
  }
}
.hover-imgs .product-item-imgs {
  width: 1.8rem;
  height: 1.8rem;
  min-width: 150px;
  min-height: 150px;
  border-radius: 50%;
  background: #F7F8FA;
  box-shadow: -12px -12px 12px 1px rgba(255, 255, 255, 0.8), inset 1px 1px 1px 1px rgba(255, 255, 255, 0.8);
  opacity: 1;
  position: relative;
}
@media screen and (max-width: 992px) {
  .hover-imgs .product-item-imgs {
    min-width: 100px;
    min-height: 100px;
  }
}
.hover-imgs .product-item-imgs span.center {
  width: 1.2rem;
  height: 1.2rem;
  min-width: 90px;
  min-height: 90px;
  background: linear-gradient(180deg, rgba(0, 80, 221, 0.5) 0%, rgba(0, 80, 221, 0.8) 100%);
  box-shadow: 0px 2px 0px 1px #FFFFFF;
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .hover-imgs .product-item-imgs span.center {
    min-width: 70px;
    min-height: 70px;
  }
}
.hover-imgs .product-item-imgs span.inside {
  width: 0.6rem;
  height: 0.6rem;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  background: #F7F8FA;
  box-shadow: 0px 4px 12px 1px rgba(0, 80, 221, 0.1), inset 1px 1px 1px 1px #FFFFFF;
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  transition: all 0.3s ease;
  color: transparent;
  line-height: 0.6rem;
}
.toggleMenu .hover-imgs,
#product-nav .hover-imgs {
  padding: 0;
  justify-content: center;
  height: 112.5px;
}
.toggleMenu .hover-imgs .product-item-imgs,
#product-nav .hover-imgs .product-item-imgs {
  width: 80px;
  height: 80px;
  min-width: initial;
  min-height: initial;
  background: #F7F8FA;
}
.toggleMenu .hover-imgs .product-item-imgs span.center,
#product-nav .hover-imgs .product-item-imgs span.center {
  min-width: initial;
  min-height: initial;
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, rgba(0, 80, 221, 0.5) 0%, rgba(0, 80, 221, 0.8) 100%);
  box-shadow: 0px 2px 0px 1px #FFFFFF;
}
.toggleMenu .hover-imgs .product-item-imgs span.inside,
#product-nav .hover-imgs .product-item-imgs span.inside {
  width: 26px;
  line-height: 26px;
  font-size: 12px;
  height: 26px;
}
.more {
  color: #2A2825;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  line-height: 1;
}
.more svg {
  margin-left: 10px;
  display: inline-block;
}
.more span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #fd0608;
  background-size: 0 0;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.more:active,
.more.active {
  background-color: #fd0608;
}
.more svg {
  transition: all 0.4s ease-in-out;
}
.more strong {
  display: inline-block;
  transition: all 0.4s ease-in-out;
  position: relative;
  object-fit: cover;
  margin-top: -5px;
  font-weight: initial;
}
.more strong:before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 2px;
  transition: all 0.4s ease-in-out;
  left: 5px;
  display: block;
  background: #fff;
}
.more .as,
.more .a {
  fill: #2A2825 !important;
  opacity: 1;
}
.more:hover,
.more.active {
  color: #fff !important;
  z-index: 2;
}
.more:hover svg,
.more.active svg {
  transform: translateX(8px);
}
.more:hover .as,
.more.active .as,
.more:hover .a,
.more.active .a {
  fill: #fff !important;
}
.more:hover strong:before,
.more.active strong:before {
  width: 5px;
  left: 7px;
}
.more:hover span,
.more.active span {
  background-size: 225% 225%;
  height: calc(100px * 2.25);
  width: 225%;
}
.apps .product-card-title {
  margin-bottom: calc(0.5rem + 30px);
}
@media screen and (max-width: 992px) {
  .apps .product-card-title {
    margin-bottom: 0;
  }
}
.product-nav-item:hover span.center,
.apps:hover span.center {
  width: 1.4rem;
  height: 1.4rem;
  background: linear-gradient(180deg, rgba(0, 80, 221, 0.5) 0%, #0050DD 100%);
  box-shadow: 0px 2px 0px 1px #FFFFFF;
  opacity: 1;
}
.product-nav-item:hover span.inside,
.apps:hover span.inside {
  opacity: 1;
  color: #fd0608 !important;
}
@media screen and (max-width: 768px) {
  .product-nav-item:hover span.inside,
  .apps:hover span.inside {
    color: transparent !important;
  }
}
.toggleMenu .hover-imgs .product-item-imgs:hover span.center,
#product-nav .hover-imgs .product-item-imgs:hover span.center {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 80, 221, 0.5) 0%, rgba(0, 80, 221, 0.8) 100%);
  box-shadow: 0px 2px 0px 1px #FFFFFF;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 0px 30px 60px 1px rgba(111, 125, 152, 0.1);
}
.card:hover .card-img {
  transform: scale(1.1);
}
.card:hover .card-body.pra {
  background: rgba(0, 0, 0, 0.5);
}
.card .card-img {
  transition: all 0.3s ease-in-out;
}
.card .card-img img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.card .card-body {
  padding: 0.5rem;
}
.card .card-body.pra {
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  color: #fff;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.card .card-body.pra a {
  color: #fff;
}
@media screen and (max-width: 992px) {
  .partners {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.partners #myCanvasContainer canvas {
  height: 100%;
}
.partners .hzhb_top {
  position: relative;
  z-index: 5;
  width: 100vh;
  height: 100vh;
  margin: 0 auto;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.partners .hzhb_top .hzhb_cir {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%) translateX(-50%);
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.partners .hzhb_top .hzhb_cir img {
  max-width: 80%;
  z-index: 3;
}
.partners .hzhb_top .hzhb_cir.hzhb_cir2 {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(180deg, rgba(0, 80, 221, 0.5) 0%, #0050DD 100%);
  box-shadow: 0px 2px 0px 1px #FFFFFF;
  opacity: 1;
  z-index: 1;
}
.partners .hzhb_top .hzhb_cir.hzhb_cir3 {
  width: 3.2rem;
  height: 3.2rem;
  opacity: 0.4;
  border: 1px solid #A7B1C1;
  background: none;
}
.partners .hzhb_top .hzhb_cir.hzhb_cir4 {
  width: 4.8rem;
  height: 4.8rem;
  z-index: 1;
  border: 1px solid #A7B1C1;
  opacity: 0.2;
  background: none;
}
.partners .hzhb_top .hzhb_cir.hzhb_cir5 {
  width: 6.4rem;
  height: 6.4rem;
  opacity: 0.2;
  border: 1px solid #A7B1C1;
  background: none;
}
.partners .hzhb_top .hzhb_cir.hzhb_cir6 {
  width: 8rem;
  height: 8rem;
  opacity: 0.1;
  border: 1px solid #A7B1C1;
  background: none;
}
.partners .hzhb_top #myCanvasContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
}
.partners .hzhb_top #tags {
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
}
.partners .hzhb_top #tags a {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  background-color: #fff;
}
.partners .swiper-container {
  margin-bottom: 0.5rem;
}
.partners .swiper-container .swiper-slide {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  /*  声明行间距和列间距  */
  grid-gap: 20px;
  grid-template-rows: repeat(3, 3fr);
}
.partners .swiper-container .swiper-slide a {
  height: 100px  ;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  text-align: center;
}
.partners .swiper-container .swiper-slide a img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.partners .swiper-container .hover {
  bottom: 0.1rem;
}
.partners .swiper-container .hover span {
  background: white;
}
.left-icon {
  position: relative;
}
.left-icon svg {
  position: absolute;
  right: 10%;
  transform: rotate3d(0, 1, 0, 180deg);
}
.bg-themer {
  background: #fd0608 !important;
  color: #fff;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes width {
  0% {
    width: 0;
  }
  100% {
    width: 110%;
  }
}
@keyframes heights {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }
}
.logo-footer {
  width: 193px;
  margin-bottom: 48px;
}
.logo-footer img {
  width: 100%;
}
.logo-footer p {
  color: #7A88A2;
  letter-spacing: 1.5px !important;
}
#footer .pull-left ul {
  position: relative;
}
#footer .pull-left ul li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
#footer .pull-left ul li:hover {
  transform: translateY(-3px);
}
#footer .pull-left ul li:hover span {
  transform: translateX(3px);
  color: #fd0608;
}
#footer .pull-left ul li:hover span .a,
#footer .pull-left ul li:hover span .b {
  fill: #fd0608 !important;
}
#footer .pull-left ul li:hover a {
  transform: translatex(-3px);
  color: #fd0608;
}
#footer .pull-left ul li img {
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
#footer .pull-left ul li a {
  transition: all 0.3s ease-in-out;
  color: #fff;
}
#footer .pull-left ul .right {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  #footer .pull-left ul .right {
    position: relative;
    margin-top: 0.4rem;
  }
}
#footer .pull-left .weixin {
  display: flex;
  position: relative;
  align-items: center;
  color: rgba(69, 76, 92, 0.5);
  cursor: pointer;
}
#footer .pull-left .weixin:hover .weixin-img {
  opacity: 1;
}
#footer .pull-left .weixin span {
  font-size: 30px;
  margin-right: 20px;
}
#footer .pull-left .weixin .weixin-img {
  position: absolute;
  top: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  max-width: 120px;
}
#footer .pull-left .weixin .weixin-img img {
  width: 100%;
}
#footer .footer-nav {
  display: flex;
  margin-bottom: 0.6rem;
}
#footer .footer-nav .item {
  width: auto;
  margin-right: 0.5rem;
}
#footer .footer-nav .item h1 {
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
#footer .footer-nav .item ul li a {
  font-size: 12px;
  color: #454C5C;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (any-hover: hover) {
  #footer .footer-nav .item ul li a:hover {
    color: #fd0608;
    padding-left: 10px;
  }
  #footer .footer-nav .item ul li a:hover::before {
    height: 100%;
  }
}
#footer .footer-nav .item ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  transition: all 0.3s ease-in-out;
  background: #fd0608;
}
@media screen and (max-width: 992px) {
  #footer .footer-nav {
    flex-wrap: wrap;
    justify-content: start;
  }
  #footer .footer-nav .item {
    width: auto;
  }
  #footer .footer-nav .item ul {
    display: flex;
    flex-wrap: wrap;
  }
  #footer .footer-nav .item ul li {
    flex: 1 0 calc(100% / 3);
    text-align: center;
  }
}
#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .footer-bottom ul {
  line-height: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#footer .footer-bottom ul li {
  margin: 0 15px;
}
#footer .footer-bottom ul li a {
  color: rgba(69, 76, 92, 0.5);
  font-size: 14px;
  display: flex;
  align-items: center;
}
#footer .footer-bottom ul li a span {
  margin-right: 5px;
}
#footer .footer-bottom ul li a:hover {
  color: #454c5c;
}
#footer .footer-bottom .mobile {
  color: rgba(69, 76, 92, 0.5);
}
#footer .footer-bottom .copyright {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #footer .footer-bottom .copyright {
    flex-direction: column;
    justify-content: left;
  }
}
#footer .footer-bottom .copyright p {
  text-align: left;
  color: #fff;
  padding: 0.2rem 0;
}
#footer .footer-bottom .copyright p span {
  margin-right: 30px;
}
#footer .footer-bottom .copyright p a {
  color: #fff;
}
#footer .footer-bottom .copyright p a:hover {
  color: #454c5c;
}
.common-banner {
  height: 100vh;
}
@media screen and (max-width: 992px) {
  .common-banner {
    height: 8rem;
  }
}
.common-banner .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #111;
  height: 100%;
  flex-direction: column;
}
.common-banner .container p,
.common-banner .container h1 {
  letter-spacing: 3px;
}
.common-banner .container p.fnt_18 {
  text-align: center;
}
.common-banner #video {
  position: absolute;
  left: 50%;
  top: 50%;
  /*保证视频内容始终居中*/
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /*保证视频充满屏幕*/
  object-fit: cover;
  min-height: 800px;
}
.common-banner .container {
  position: relative;
  z-index: 3;
}
.common-banner.h-100 {
  margin-top: 0 !important;
  height: 100vh;
}
.card {
  box-shadow: none !important;
}
.card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  margin-top: 60px;
  min-height: 500px;
  height: auto;
  .h-100 {
    margin-top: 0 !important;
  }
  .card-body {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .product-top .card-body {
    justify-content: flex-start;
  }
}
.about .content {
  position: relative;
}
.about .about1 .content {
  border-bottom: 1px double rgba(69, 76, 92, 0.1);
}
.about .about1 .content:before {
  content: '';
  background: url("../img/about3.png") no-repeat center center;
  width: 286px;
  height: 177px;
  position: absolute;
  right: 0;
  top: 0;
}
.about .about2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about .about2 ul li {
  width: 50%;
  display: flex;
}
.about .about2 ul li p {
  display: flex;
  flex-direction: column;
}
.about .about2 ul li p a {
  color: #2A2825;
}
.solution .box {
  display: flex;
  padding: 0.25rem;
  background: #F3F7FA;
  align-items: center;
  border-radius: 10px;
  height: 150px;
  transition: all 0.3s ease-in;
  margin-bottom: 0.2rem;
}
.solution .box:hover {
  background: #fff;
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
.solution .box .icon {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
}
.skills span {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  background: #F7F8FA;
  margin-right: 10px;
}
.breadcrumb-nav {
  gap: 0.5rem;
  height: 0.6rem;
  min-height: 40px;
  border-bottom: 1px solid rgba(69, 76, 92, 0.1);
}
.breadcrumb-nav .breadcrumb {
  display: flex;
  align-items: center;
  height: 0.6rem;
  justify-content: left;
  min-height: 40px;
}
.breadcrumb-nav .breadcrumb li {
  position: relative;
}
.breadcrumb-nav .breadcrumb li a {
  color: rgba(69, 76, 92, 0.5);
}
.breadcrumb-nav .breadcrumb li.active a {
  color: #454c5c;
}
.breadcrumb-nav .breadcrumb li:last-child::after {
  content: '-';
  display: none;
}
.breadcrumb-nav .breadcrumb li::after {
  content: '-';
  color: rgba(69, 76, 92, 0.5);
  display: inline-block;
  margin: 0 3px;
}
.breadcrumb-nav p.text-gray {
  height: 0.6rem;
  min-height: 40px;
}
@media screen and (max-width: 992px) {
  .breadcrumb-nav {
    display: none;
  }
}
.join.list .item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(69, 76, 92, 0.1);
  display: flex;
  position: relative;
}
.join.list .item .base {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(69, 76, 92, 0.5);
}
.join.list .item .base p {
  font-size: 13px;
}
.join.list .item .content {
  width: calc(100% - 160px);
  padding-top: 20px;
  padding-left: 50px;
  display: flex;
  justify-content: space-between;
}
.join.list .item .content h1 {
  color: #2a2825;
  line-height: 24px;
  margin-bottom: 20px;
}
.join.list .item .content h1 span {
  display: none;
}
.join.list .item .content .fnt_12 {
  margin-top: 10px;
}
.join.list .item .content .right {
  display: flex;
  align-items: center;
}
.join.list .item .content .right .btn {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .join.list .item {
    width: 100%;
    justify-content: space-around;
  }
  .join.list .item .content {
    padding-left: 0;
    flex-wrap: wrap;
  }
  .join.list .item .content .left {
    width: 100%;
  }
  .join.list .item .content h1 {
    color: #2a2825;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .join.list .item .content .fnt_12 {
    margin-top: 10px;
  }
  .join.list .item .content .right {
    display: flex;
    align-items: center;
  }
  .join.list .item .content .right .btn {
    width: 100px;
  }
  .join.list .item a {
    opacity: 0;
    position: absolute;
    max-width: initial;
    width: 100% !important;
    height: 100%;
    left: 0;
    top: 0;
  }
}
.join.list .container > .more {
  margin: 1rem auto;
}
.campus_join {
  margin-bottom: 20px;
}
.campus_join .container {
  padding: 0.9rem 1rem;
  background: #fd0608;
  color: #fff;
  position: relative;
}
.campus_join .container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 0;
  height: 0;
  border-top: 0.8rem solid #0050dd;
  border-right: 2rem solid transparent;
  border-left: 2rem solid transparent;
}
.campus_join .container h1 {
  letter-spacing: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.campus_join .container span {
  letter-spacing: 3px;
}
.campus_join .container p {
  margin-top: 0.4rem;
  line-height: 1.8;
  position: relative;
  padding-bottom: 0.4rem;
  text-align: justify;
}
.campus_join .container p::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #fff;
}
.process {
  overflow: hidden;
}
.process ul {
  display: flex;
  flex-wrap: wrap;
}
.process ul li {
  width: calc(100% / 6);
  position: relative;
}
.process ul li::after {
  content: '';
  display: block;
  width: 0.2rem;
  height: 2px;
  background: #fd0608;
  right: 0;
  margin-left: -0.1rem;
  top: 50%;
  position: absolute;
  transform: translateY(-1px);
}
.process ul li:last-child::after {
  display: none;
}
.process ul li img {
  max-width: 50px;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 992px) {
  .process ul li {
    width: 100%;
    position: relative;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    padding-left: 0.7rem;
    align-items: center;
  }
  .process ul li .content {
    width: 40%;
    text-align: left;
    padding-left: 0.7rem;
  }
  .process ul li::after {
    top: calc(100% + 0.6rem);
    right: 50%;
    width: 15px;
    transform: rotate(90deg);
  }
  .process ul li img {
    max-width: 50px;
    margin-bottom: 0;
  }
}
h1 {
  font-family: '阿里巴巴普惠体 2.0 65 Medium', "Microsoft Yahei", "微软雅黑";
}
.title {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.title::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #2A2825;
}
.cards {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 20px 40px 1px rgba(122, 136, 162, 0.05);
  border-radius: 0.2rem;
  opacity: 1;
  height: 100%;
  min-height: 1.5rem;
  flex-direction: column;
  display: flex;
  padding: 0.2rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.cards:hover {
  transform: translateY(-10px);
}
.cards:hover a {
  color: #2A2825;
}
.cards a {
  color: #7A88A2;
}
.cards img {
  max-width: 170px;
}
.work_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
}
.work_grid > div {
  height: 5rem;
}
.work_grid > div .bg-image {
  width: 100%;
  height: 100%;
}
.work_grid > div .mask {
  left: 0;
  height: 1rem;
  bottom: 0;
  transition: height 0.3s ease-in-out;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (any-hover: hover) {
  .work_grid > div:hover .mask {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .work_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .work_grid > div {
    height: 7rem;
    margin-bottom: 0.3rem;
  }
  .work_grid > div .bg-image {
    width: 100%;
    height: 100%;
  }
  .work_grid > div .mask {
    left: 0;
    height: 100px;
    bottom: 0;
    transition: height 0.3s ease-in-out;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
  }
  .work_grid > div:hover .mask {
    height: 100%;
  }
}
.work1 .work1_grid {
  width: 100%;
  height: 100%;
  background: #003C9080;
}
.work1 .work1_grid .swiper-container {
  width: 100%;
  height: 100%;
}
.work1 .work1_grid h1 {
  left: 0;
  top: 80px;
  width: 100%;
  text-align: center;
}
.work1 .work1_grid .item {
  height: 500px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem 0;
}
.work1 .work1_grid .item p {
  text-align: center;
  min-height: 1.2rem;
}
@media screen and (max-width: 992px) {
  .work1 .work1_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .work1 .work1_grid .left-icon {
    position: absolute;
    right: 10%;
    bottom: 5%;
  }
  .work1 .work1_grid .left-icon svg {
    position: relative;
    right: auto;
  }
  .work1 .work1_grid .left-icon svg .ass {
    fill: #fff;
  }
  .work1 .work1_grid .item {
    padding: 0 0.2rem;
  }
}
.two_columns .item {
  display: flex;
}
.two_columns .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.two_columns .item > div {
  width: 50%;
  height: 5rem;
}
.two_columns .item > div.img-box {
  overflow: hidden;
}
.two_columns .item > div.img-box img {
  width: 100%;
  height: 100%;
}
.two_columns .item > div.text-box {
  padding: 0.8rem 1rem;
}
.two_columns .item > div.text-box p {
  line-height: 2;
}
@media screen and (max-width: 992px) {
  .two_columns .item {
    flex-wrap: wrap;
  }
  .two_columns .item > div {
    width: 100%;
    height: 5rem;
  }
  .two_columns .item > div.text-box {
    padding: 0.5rem 0.4rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .two_columns .item > div.text-box .mb_100 {
    margin-bottom: 0;
  }
  .two_columns .item > div a {
    display: none;
  }
}
.card-contact {
  min-height: 7rem;
  background: #FFFFFF;
  box-shadow: 0px 30px 60px 1px rgba(122, 136, 162, 0.05);
  border-radius: 0;
  opacity: 1;
  display: flex;
  padding: 0;
  width: 100%;
}
.card-contact .logo-footer {
  text-align: center;
}
.card-contact .logo-footer img {
  width: 2rem;
  margin: 0 auto;
  display: block;
}
.card-contact .mess {
  position: absolute;
  bottom: 0.6rem;
  left: 1rem;
  line-height: 1;
}
.card-contact .mess span {
  width: 1px;
  height: 0.4rem;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.card-contact .mess span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #7a88a2;
  animation: heights 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.card-contact > div {
  width: 40%;
}
.card-contact .map {
  width: 60%;
  position: relative;
}
.card-contact .map .rellax {
  width: 100%;
  height: 200px;
  background: #EBEFF4;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.card-contact .map .rellax.left {
  z-index: 4;
  background: transparent;
}
.card-contact .map .rellax.left:after {
  content: '';
  position: absolute;
  left: -20px;
  width: 40px;
  height: 100%;
  top: 0;
  background: #EBEFF4;
  z-index: 3;
}
.card-contact #container {
  z-index: 2;
  position: relative;
  margin-left: 20px;
}
.card-contact .content {
  color: #7a88a2;
}
.card-contact .content .left {
  width: 100px;
}
.card-contact .content .left.border {
  border-bottom: 1px solid #fd0608;
}
.card-contact .content h1 {
  position: relative;
  line-height: 2;
  letter-spacing: 0!important;
}
.card-contact .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  display: inline-block;
  background: #7a88a2;
}
.card-contact .content .left img {
  box-shadow: 0px 10px 60px 1px rgba(122, 136, 162, 0.1);
  max-width: 100px;
}
.card-contact .content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-weight: 400;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  .card-contact .content ul li {
    max-width: 170px;
  }
}
.card-contact .content ul li:hover span {
  color: #fd0608;
  transform: translateX(3px) translateY(-3px);
}
.card-contact .content ul li:hover a {
  color: #fd0608;
  transform: translateX(-3px) translateY(-3px);
}
.card-contact .content ul li span {
  margin-right: 0.2rem;
  transition: all 0.3s ease-in-out;
  color: #7a88a2;
}
.card-contact .content ul li a {
  transition: all 0.3s ease-in-out;
  color: #7a88a2;
}
.card-contact .content ul li a span {
  display: block;
}
.card-contact .map .bg-map {
  margin-top: -20px;
  width: calc(100% - 120px);
  position: relative;
  z-index: 2;
}
.card-contact .map .bg-map li {
  margin-right: 0.3rem;
}
.card-contact .map .bg-map img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .card-contact {
    flex-wrap: wrap;
  }
  .card-contact > div {
    width: 100%;
  }
  .card-contact .map {
    height: auto;
    width: 100% !important;
    padding: 0;
  }
  .card-contact .map #container {
    width: 100% !important;
    margin-left: 0;
    height: 6rem !important;
  }
  .card-contact .map .rellax {
    display: none;
  }
  .card-contact .map .add {
    width: 100% !important;
    height: 5rem !important;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    position: relative;
  }
  .card-contact .map .add ul {
    flex-wrap: wrap;
    width: 100%;
  }
  .card-contact .map .add ul li {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .card-contact .content {
    padding-top: 0.6rem;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .card-contact .content .flex {
    flex-direction: column;
    align-items: center;
    margin-top: 0 !important;
  }
  .card-contact .content .flex .left {
    margin-right: 0;
    border-bottom: none;
  }
  .card-contact .content .flex:nth-child(2) .left {
    display: none;
  }
  .card-contact .mess {
    display: none;
  }
}
.font-bold {
  font-weight: bold;
}
.form p {
  color: #7a88a2;
}
.form .flex {
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form .flex .form-group {
  flex: 1 0 calc(50% - 0.4rem);
}
.form .flex .form-group .nice-select {
  position: relative;
}
.form .flex .form-group ul {
  width: 100%;
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  overflow: hidden;
  background-color: #fff;
  overflow-y: auto;
  border: 1px solid #eaeaea;
  border-top: 0;
  box-shadow: 0 3px 5px #eaeaea;
  z-index: 99;
}
.form .flex .form-group ul li {
  text-align: left;
  cursor: pointer;
  padding: 0.1rem 0.2rem;
}
.form .flex .form-group ul li:hover {
  color: #fd0608;
}
.form .flex .form-group ul li.on {
  background: #fd0608;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .form .flex {
    gap: 0;
  }
  .form .flex .form-group {
    width: 100%;
    flex: 1 0 100%;
    margin-top: 0.2rem;
  }
}
.form .form-group label {
  display: block;
  margin-bottom: 0.12rem;
}
.form .form-group input {
  width: 100%;
  height: 40px;
  opacity: 1;
  padding-left: 0.3rem;
  border: 1px solid rgba(69, 76, 92, 0.3);
}
.form .form-group textarea {
  width: 100%;
  height: 2.2rem;
  opacity: 1;
  padding-left: 0.3rem;
  border: 1px solid rgba(69, 76, 92, 0.3);
  padding-top: 0.1rem;
}
.form input[type=button] {
  width: 2rem;
  height: 0.5rem;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  margin: 1.2rem auto;
  background: #003C90;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  text-align: center;
}
.form .captcha {
  width: 50%;
  flex: initial !important;
}
.new-tit {
  flex-direction: initial !important;
}
.service_list .row .item {
  transition: all 0.3s ease-in;
  border-radius: 10px;
}
.service_list .row .item:hover {
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
.service_list .row .item .img {
  position: relative;
}
.service_list .row .item .img img {
  border-radius: 10px;
  overflow: hidden;
}
.service_list .row .item .img p {
  position: absolute;
  left: 60%;
  top: 50%;
  width: 40%;
  margin-top: -20px;
}
.case_list .item {
  background: #F2F5F8;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.case_list .item .img {
  overflow: hidden;
  border-radius: 10px;
}
.case_list .item .img img {
  transition: all 0.3s ease-in;
  width: 100%;
}
.case_list .item .content {
  padding: 0.3rem;
  border-bottom: 1px solid #fd0608;
}
.case_list .item .content .date {
  color: #888888;
}
.case_list .item .content .mores {
  margin-top: 0.3rem;
  color: #fd0608;
}
.case_list .item:hover {
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
  transform: translateY(-10px);
}
.case_list .item:hover .img img {
  transform: scale(1.1);
}
.menu li {
  margin-left: 0.15rem;
  color: #A7B1C1;
  cursor: pointer;
}
.menu li.active {
  color: #2A2825;
}
.page_nav {
  background: rgba(245, 245, 245, 0.5);
  position: relative;
}
.page_nav ul {
  justify-content: center;
  display: flex;
}
.page_nav li {
  height: 40px;
  border-radius: 50px;
  width: 40px;
  border: 1px solid #D9D9D9;
  margin-right: 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  box-sizing: border-box;
}
.page_nav li > * {
  padding: 0;
}
.page_nav li.active {
  border: none;
  background: #fd0608;
}
.page_nav li.active > * {
  color: #fff;
}
.page_nav li:first-child,
.page_nav li:last-child {
  width: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.2rem;
}
.page_nav li:last-child {
  right: 0.2rem;
  left: auto;
}
.page_nav li > span {
  display: block;
  height: 100% ;
}
.page_nav li:hover {
  border: 1px solid #fd0608;
}
.page_nav li:hover a {
  color: #fd0608;
}
.page_nav li:hover span {
  color: #fd0608;
}
.page_nav li.moresP {
  border: none;
}
.product-list .row {
  display: flex;
  flex-wrap: wrap;
}
.product-list .row .product-card {
  height: calc(100% - 0.3rem);
}
.new_list p.fnt_16 {
  height: calc(24*2px);
}
@media screen and (max-width: 1366px) {
  .new_list p.fnt_16 {
    height: calc(21*2px);
  }
}
.new_list .item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px double rgba(0, 0, 0, 0.2);
}
.new_list .item:last-child {
  border-bottom: none;
}
.new_list .item .date {
  margin-right: 0.2rem;
}
.new_list .item h1 {
  line-height: 1;
}
.new_list .item .img {
  width: 4rem;
  min-width: 300px;
  margin-left: 0.2rem;
  max-height: 200px;
}
.new_list .item a {
  color: #fff;
}
.mt_nav {
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .mt_nav {
    margin-top: 60px;
  }
}
.innovation .content {
  max-width: 1000px;
  width: 90%;
  margin: 0.3rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.innovation .content .scroll-num {
  padding: 0.4rem 0;
  width: 40%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.innovation .content .scroll-num div:last-child {
  opacity: 0.5;
}
.innovation .content .scroll-num:nth-child(3),
.innovation .content .scroll-num:nth-child(4) {
  border-bottom: none;
}
.message .row > div {
  max-width: 400px;
  margin: 0 0.35rem;
}
.message .row > div .cards {
  overflow: hidden;
}
@media screen and (any-hover: hover) {
  .message .row > div .cards:hover .content img,
  .message .row > div .cards:hover .content span {
    transform: translateY(2px);
    opacity: 0;
  }
  .message .row > div .cards:hover .content a {
    transform: translateY(-2px);
    opacity: 0;
  }
  .message .row > div .cards:hover .content-hover {
    transform: translateY(0);
    z-index: 2;
    opacity: 1;
  }
}
.message .row > div span {
  color: #7A88A2;
}
.message .row > div .content {
  width: 100%;
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.message .row > div .content img,
.message .row > div .content a {
  transition: all 0.3s ease-in-out;
}
.message .row > div .content-hover {
  width: 100%;
  z-index: -1;
  opacity: 0;
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0);
}
@media screen and (max-width: 992px) {
  .message .row {
    display: flex;
    flex-direction: column;
  }
  .message .row > div {
    max-width: 280px;
    margin: 0.3rem auto;
  }
  .message .row > div .content {
    padding: 0.6rem 0 !important;
  }
}
.scenarios .content {
  bottom: 1rem;
  left: 0;
  width: 100%;
  padding: 0 5% ;
  z-index: 33;
}
.scenarios .content .swiper-container {
  width: 100%;
}
.scenarios .content .item {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
}
@media screen and (max-width: 640px) {
  .scenarios .content .item {
    min-width: 100%;
  }
}
.add ul li:last-child {
  margin-bottom: 0 !important;
}
#left_block,
#right_block {
  position: absolute;
  display: block;
  background: #EBEFF4;
  opacity: 1;
}
@media screen and (max-width: 992px) {
  #left_block,
  #right_block {
    display: none;
  }
}
#left_block {
  transition: all 0.6s ease-in-out;
}
.work-detail img {
  visibility: hidden;
}
.work-detail .plyr {
  height: 100%;
}
#left_block {
  width: 200px;
  height: 200px;
  background: #FDF9F2;
  left: -50px;
  bottom: -50px;
  z-index: -1;
}
#right_block {
  width: 100px;
  height: 300px;
  background: #FDF9F2;
  top: 70%;
  right: -50px;
  opacity: 1;
}
.scenarios1 .item {
  border-radius: 0.24rem;
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.3rem 0;
}
.scenarios1 .item .bg-image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: center  center;
  transition: transform 1.05s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  top: 0;
  z-index: 1;
}
.scenarios1 .item .mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.scenarios1 .item .content {
  z-index: 3;
  height: 100%;
}
.scenarios1 .item .content .des {
  overflow: hidden;
}
.scenarios1 .item .content .des p {
  height: 0;
  line-height: 2;
  overflow: hidden;
  transform: translateY(100%);
  transition: height 0.1s, transform 1.05s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 992px) {
  .scenarios1 .item .content .des p {
    display: none;
    visibility: hidden;
  }
}
.scenarios1 .item .content a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  min-width: 80px;
  height: 0.4rem;
  margin: 0 auto;
  transition: all 1.05s cubic-bezier(0.19, 1, 0.22, 1);
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 992px) {
  .scenarios1 .item .content a {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
}
.scenarios1 .item .content a svg {
  fill: #0050DD;
}
.scenarios1 .item .tit span {
  display: block;
  width: 0.6rem;
  height: 2px;
  background: #0050DD;
  margin: 0.1rem auto;
}
@media (hover: hover) and (min-width: 992px) {
  .scenarios1 .item:hover .bg-image,
  .scenarios1 .item:focus-within .bg-image {
    transform: translateY(-4%);
  }
  .scenarios1 .item:hover .content .des p,
  .scenarios1 .item:focus-within .content .des p {
    height: auto;
    transform: translateY(0);
  }
  .scenarios1 .item:hover a,
  .scenarios1 .item:focus-within a {
    background: white;
  }
  .scenarios1 .item:hover a svg,
  .scenarios1 .item:focus-within a svg {
    fill: #0050DD;
  }
}
@media screen and (max-width: 992px) {
  .scenarios1 .item .bg-image {
    transform: translateY(-4%);
    background-color: #000000;
  }
  .scenarios1 .item .content .des p {
    height: auto;
    transform: translateY(0);
  }
  .scenarios1 .item a {
    background: white;
  }
  .scenarios1 .item a svg {
    fill: #fd0608;
  }
}
.product-item .card .card-body.pra {
  justify-content: flex-start;
  color: #C6D0E0 !important;
}
.product-item .card .card-body.pra span {
  width: 40px;
  height: 2px;
  background: #C6D0E0;
}
.product-item .card .card-body.pra p {
  max-width: 400px;
}
.product-item .line {
  width: 20px;
  height: 2px;
  background: #C6D0E0;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  display: block;
  transition: all 0.3s ease-in-out;
}
.product-item .product-card {
  height: auto;
  padding: 0.5rem 0.3rem 0.4rem;
}
.product-item .product-card a {
  transition: all 0.3s ease-in-out;
}
.product-item .product-card a span {
  display: none;
}
.product-item .product-card:hover .line {
  width: 60px;
  background-color: #fd0608;
}
.product-item .product-card:hover a {
  color: #fff !important;
  z-index: 2;
  border: 1px solid #fd0608;
  background: #fd0608;
}
.product-item .product-card:hover a svg {
  transform: translateX(8px);
}
.product-item .product-card:hover a .as,
.product-item .product-card:hover a .a {
  fill: #fff !important;
}
.product-item .product-card:hover a strong:before {
  width: 5px;
  left: 7px;
}
.product-item .product-card:hover a span {
  background-size: 100% 100%;
  height: 100%;
  width: 100%;
  transform: none;
  border-radius: initial;
}
@media screen and (max-width: 992px) {
  .product-item .card .card-body.pra {
    justify-content: center;
    align-items: center;
  }
  .product-item .card .card-body.pra .lh2 {
    display: none;
  }
  .product-item .line {
    display: none;
  }
  .product-item .skills {
    margin-bottom: 0.4rem;
  }
  .product-item .product-card.bg-white {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 0.8rem;
  }
  .product-item .product-card.bg-white a.mobile {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .product-item .product-card.bg-white a.mobile:hover {
    background: none;
    border: none;
  }
  .product-item .product-card.bg-white .product-card-img {
    width: 70%;
  }
  .product-item .product-card.bg-white .product-card-title {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-item .product-card.bg-white .product-card-title .more {
    display: none;
  }
}
.product-item {
  position: relative;
}
.product-item:before {
  content: '';
  width: 100%;
  bottom: 0;
  height: 0.1rem;
  background: #fff;
  display: block;
  position: absolute;
}
@media screen and (max-width: 992px) {
  .product-item .card .bg-image {
    height: 8rem !important;
  }
}
.product-details .toggle {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0.3rem;
  z-index: 33;
}
.product-details .toggle .flex {
  width: 1.6rem;
  height: 0.4rem;
  min-height: 30px;
  min-width: 140px;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  margin: 0 auto;
}
.product-details .toggle .swiper-button-prev {
  transform: rotateY(-180deg);
  transform-origin: 75% -50%;
}
.product-details .toggle .swiper-button-next,
.product-details .toggle .swiper-button-prev {
  position: relative;
  background: none!important;
  left: auto;
  top: auto;
  width: auto;
  margin-top: -6px;
  height: auto;
}
.product-details .toggle .swiper-button-next svg,
.product-details .toggle .swiper-button-prev svg {
  fill: #2A2825;
}
.product-details .item {
  height: 5rem;
}
.product-details .item span {
  display: block;
  width: 60px;
  height: 2px;
  background: #2A2825;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  margin: 0.35rem 0;
}
.product-details .item:before {
  content: '';
  width: 20px;
  height: 2px;
  background: #C6D0E0;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  display: block;
  left: 0.5rem;
  bottom: 0.3rem;
  position: absolute;
}
.product-details2 .row {
  display: flex;
  flex-wrap: wrap;
}
.product-details2 .item {
  max-width: 600px;
  width: 100%;
}
.product-details2 .item .text-transform {
  color: rgba(69, 76, 92, 0.2);
}
.product-details2 .item .fnt_50 {
  color: rgba(69, 76, 92, 0.3);
}
.product-details2 .col-md-6:nth-child(2n) {
  display: flex;
  justify-content: right;
}
.product-details3 .row {
  border-top: 1px solid rgba(69, 76, 92, 0.1);
}
.product-details3 .row:last-child {
  border-bottom: 1px solid rgba(69, 76, 92, 0.1);
}
.product-details4 img {
  width: 0.3rem;
  margin-bottom: 0.1rem;
}
.product-details4 span {
  color: #7A88A2;
}
.product-detail-nav {
  position: relative;
  height: 80px;
}
.product-detail-nav .et-hero-tabs-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  z-index: 10;
}
.product-detail-nav .et-hero-tabs-container.et-hero-tabs-container--top {
  position: fixed;
  top: 80px;
  border-top: 1px solid rgba(69, 76, 92, 0.1);
  box-shadow: 0px 3px 6px 1px rgba(122, 136, 162, 0.05);
}
@media screen and (max-width: 992px) {
  .product-detail-nav .et-hero-tabs-container.et-hero-tabs-container--top {
    top: 60px;
  }
}
.product-detail-nav .et-hero-tabs-container .et-hero-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  transition: all 0.5s ease;
}
.product-detail-nav .et-hero-tabs-container .et-hero-tab:before {
  content: '';
  width: 0;
  height: 2px;
  transition: all 0.5s ease;
  background: #454C5C;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.product-detail-nav .et-hero-tabs-container .et-hero-tab.active {
  transform: translateY(-10px);
  font-weight: 600;
}
.product-detail-nav .et-hero-tabs-container .et-hero-tab.active::before {
  width: 40px;
}
.amap-info-close,
.amap-logo,
.amap-copyright {
  display: none !important;
}
.bg-map {
  background: rgba(247, 247, 247);
}
.bg-map li {
  cursor: pointer;
}
#main .page {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 1rem;
  position: relative;
}
@media (max-width: 992px) {
  #main .page {
    height: auto;
    min-height: 100vh;
  }
}
#main .page .bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-out;
}
#main .page#first .bg-image {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}
#main .page#first .first {
  width: 100%;
  height: 100%;
}
#main .page#first .container {
  height: 100%;
}
#main .page#first .content1 {
  position: absolute;
  bottom: 50%;
  left: 50%;
  border-radius: 0.2rem;
  z-index: 2;
  width: 100%;
  height: 5rem;
  transform: translateX(-50%) translateY(50%);
  opacity: 0;
}
#main .page#first .content1 .logo svg .a {
  fill: #C6D0E0;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  #main .page#first .content1 {
    flex-wrap: wrap;
    height: 8rem;
    overflow: hidden;
    padding-bottom: 0.3rem;
  }
}
#main .page#first .content1 .lh2 {
  color: #F7F8FA;
  padding-right: 0.3rem;
  height: 4rem;
  overflow-y: scroll;
}
#main .page#first .content1 .lh2::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  padding: 0;
}
#main .page#first .content1 .lh2::-webkit-scrollbar-thumb {
  background: white;
  border-radius: initial;
}
#main .page#first .content1 .lh2::-webkit-scrollbar-track {
  background-color: transparent;
}
#main .page#first .content1 .lh2::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
#main .page#first .content1 .lh2 .wrapper {
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .section2 .page {
    min-height: 8rem !important;
  }
}
.section2 .video {
  max-width: 1200px;
  height: 6rem;
  background: #2A2825;
}
.section2 .video .video-container {
  height: 100%;
}
.section3 .container {
  height: 100%;
}
.section3 .container .row {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section3 .container .row > div {
  height: 8.2rem;
}
.section3 .container .row .years {
  margin-top: 0.6rem;
  ms-overflow-style: none;
  height: calc(100% - 0.6rem - 150px);
  overflow-y: auto;
  scrollbar-width: none;
}
.section3 .container .row .years li {
  cursor: pointer;
  font-size: 0.2rem;
  line-height: 0.8rem;
  -webkit-transition: all 0.3s linear;
  color: #A7B1C1;
  transition: all 0.3s linear;
}
.section3 .container .row .years li.active {
  color: #fff;
  font-size: 0.3rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.section3 .container .row .right-box {
  height: 8.2rem;
}
.section3 .container .row .right-box ul {
  color: #A7B1C1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.section3 .container .row .right-box ul li {
  display: flex;
  flex-direction: column;
}
.section3 .container .row .right-box ul .date {
  font-size: 0.18rem;
  margin-bottom: 0.1rem;
}
.section3 .container .row .right-box ul .tit {
  font-size: 0.14rem;
}
.section3 .container .row .right-box .swiper-slide {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin: 0.3rem 0;
  padding-left: 0.6rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.section3 .container .row .right-box .swiper-slide .bg-hover {
  border-radius: 0.2rem;
  display: block;
  height: 2rem;
  margin-right: 0.4rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 3rem;
  position: relative;
}
.section3 .container .row .right-box .swiper-slide .bg-hover:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  display: block;
  transition: all 0.3s linear;
  left: 0;
  top: 0;
  background: #5C6679;
  opacity: 0.5;
}
.section3 .container .row .right-box .swiper-slide .bg-hover img {
  width: 100%;
}
.section3 .container .row .right-box .swiper-slide.swiper-slide-active .bg-hover {
  height: 2.5rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 4.5rem;
}
.section3 .container .row .right-box .swiper-slide.swiper-slide-active .bg-hover:before {
  opacity: 0;
}
.section3 .container .row .right-box .swiper-slide.swiper-slide-active ul {
  color: white;
}
.section3 .container .row .right-box .swiper-slide.swiper-slide-active ul .date {
  font-size: 0.3rem;
}
.section3 .container .row .right-box .swiper-slide.swiper-slide-active ul .tit {
  font-size: 0.18rem;
}
@media screen and (max-width: 768px) {
  .section3 .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  .section3 .container .row > div {
    height: auto;
  }
  .section3 .container .left {
    height: auto;
    margin: 0 0.3rem;
    padding: 0 0 0.8rem;
    width: 6.9rem;
  }
  .section3 .container .years {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 0.8rem;
    margin-bottom: 0.5rem;
    width: 100%;
    -ms-overflow-style: none;
    /*火狐下隐藏滚动条*/
    scrollbar-width: none;
  }
  .section3 .container .years::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    -webkit-overflow-scrolling: touch;
    -overflow-scrolling: touch;
  }
  .section3 .container .years li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px !important;
    height: 100%;
    justify-content: center;
    line-height: 0.32rem;
    margin: 0 0.35rem;
    -webkit-transition: none;
    transition: none;
  }
  .section3 .container .years li.active {
    color: #A7B1C1;
    font-size: 24px !important;
    -webkit-transition: none;
    transition: none;
  }
  .section3 .container .right-box {
    height: 500px !important;
    margin: 0 !important;
    padding: 0;
    position: relative;
    width: 100%;
  }
  .section3 .container .right-box .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 0.6rem;
    overflow: auto;
    padding-left: 0 !important;
  }
  .section3 .container .right-box .swiper-slide .bg-hover {
    height: 200px !important;
    margin: 0 !important;
    width: 90% !important;
  }
  .section3 .container .right-box .swiper-slide ul {
    width: 100%;
    margin-top: 0.8rem;
    height: auto !important;
    padding-left: 0.5rem !important;
  }
  .section3 .container .right-box .swiper-slide ul li {
    margin-bottom: 0.5rem;
  }
  .section3 .container .right-box .swiper-slide ul li .tit {
    font-size: 15px !important;
  }
  .section3 .container .right-box .swiper-slide ul li .date {
    margin-bottom: 0.2rem;
    font-size: 20px !important;
  }
  .section3 .container .right-box .content .item .detail .tit,
  .section3 .container .right-box .content .item .detail .title {
    color: #333;
    font-size: 0.36rem;
    line-height: 0.44rem;
    margin-bottom: 0;
    padding: 0.5rem 0 0.2rem;
  }
  .section3 .container .right-box .content .item .detail .desc,
  .section3 .container .right-box .content .item .detail .text {
    color: #333;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .section3 .container .right-box .content .item.swiper-slide-active {
    padding-left: 0;
  }
  .section3 .container .right-box .content .item.swiper-slide-active .img {
    height: 4.6rem;
    width: 6.9rem;
  }
}
.bg-h {
  background: #454C5C;
}
.section4 .container .team {
  padding-bottom: 0.4rem;
}
.section4 .container .team .swiper-slide {
  overflow: hidden;
}
.section4 .container .team .swiper-slide .item {
  display: flex;
  height: 2.4rem;
  min-height: 200px;
  overflow: hidden;
  align-items: center;
}
.section4 .container .team .swiper-slide .item .left-img {
  width: 1.8rem;
  height: 100%;
}
.section4 .container .team .swiper-slide .item .left-img img {
  width: 100%;
  height: 100%;
}
.section4 .container .team .swiper-slide .item .right-content {
  width: calc(100% - 1.8rem);
  height: 100%;
  background: #fd0608;
  align-items: center;
  justify-content: center;
}
.section4 .container .team .swiper-slide .item .right-content h1 {
  text-align: center;
}
.section4 .container .team .swiper-slide .item .mask {
  position: absolute;
  opacity: 0;
  background: #fd0608;
  color: white;
  padding: 0.3rem 0.3rem;
  font-size: 12px;
  height: 100%;
  width: 100%;
  left: 1.8rem;
  transition: all 0.5s ease;
}
.section4 .container .team .swiper-slide .item .mask h1 {
  font-size: 0.2rem;
}
.section4 .container .team .swiper-slide .item .mask p {
  font-size: 0.16rem;
}
@media screen and (any-hover: hover) {
  .section4 .container .team .swiper-slide:hover .item .mask {
    left: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .section4 .container .team .swiper-slide {
    width: 200px;
  }
  .section4 .container .team .swiper-slide .item {
    min-height: initial;
    height: auto;
    flex-wrap: wrap;
    padding-top: 50px;
    width: 200px;
  }
  .section4 .container .team .swiper-slide .item .left-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    max-width: 150px;
    max-height: 200px;
    z-index: 2;
  }
  .section4 .container .team .swiper-slide .item .left-img img {
    height: auto;
  }
  .section4 .container .team .swiper-slide .item .right-content {
    width: 100%;
    height: 250px;
    align-items: end !important;
    padding-bottom: 0.5rem;
  }
  .section4 .container .team .swiper-slide .item .mask {
    opacity: 1;
    position: relative;
    left: 0;
    display: none;
  }
  .section4 .container .team .swiper-slide .item .mask h1,
  .section4 .container .team .swiper-slide .item .mask p {
    display: none;
  }
}
.section4 .container .team .swiper-slide:nth-child(2n) .item .mask {
  background: #454c5c;
}
.section4 .container .team .swiper-slide:nth-child(2n) .item .right-content {
  background: #454C5C;
}
.section4 .container .team .swiper-slide:nth-child(7) .item .mask {
  background: #454c5c;
}
.section4 .container .team .swiper-slide:nth-child(7) .item .right-content {
  background: #454c5c;
}
.section4 .container .team .swiper-slide:nth-child(2n+8) .item .mask {
  background: #454c5c;
}
.section4 .container .team .swiper-slide:nth-child(2n+8) .item .right-content {
  background: #fd0608;
}
.section4 .container .team .swiper-slide:nth-child(2n+7) .item .mask {
  background: #454c5c;
}
.section4 .container .team .swiper-slide:nth-child(2n+7) .item .right-content {
  background: #454c5c;
}
.section4 .container .team .swiper-pagination {
  bottom: 0;
}
.section5 .container {
  position: relative;
  height: calc(100vh - 1rem);
}
.section5 .container .row {
  height: calc(100% - 2rem - 90px);
  display: flex;
  align-items: center;
}
.section5 .container .content {
  width: 100%;
}
.section5 .container .content p {
  text-align: center;
}
.section5 .container ul {
  display: flex;
  position: absolute;
  bottom: 1rem;
  width: 100%;
}
.section5 .container ul li {
  flex: 1 0 20%;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section5 .container ul li:before {
  display: block;
  width: 20px;
  left: 50%;
  margin-left: -10px;
  height: 2px;
  background: white;
  position: absolute;
  bottom: 0;
  content: "";
}
@media screen and (max-width: 768px) {
  .section5 .container ul li:before {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .section5 .container ul li {
    padding: 0 0.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .section5 .container ul li {
    padding: 0 0.35rem;
  }
}
@media screen and (max-width: 430px) {
  .section5 .container ul li {
    padding: 0 0.3rem;
  }
}
.section6 .container .fold_wrap {
  width: 100%;
  height: 5rem;
  margin: 0 auto ;
  overflow: hidden;
}
.section6 .container .fold_wrap li {
  float: left;
  width: 25% ;
  height: 5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section6 .container .fold_wrap li .mask_a {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  _background: #B2B2B2;
}
.section6 .container .fold_wrap li.active .mask_a {
  background: none;
}
.section6 .container .fold_wrap li.active .mask_b {
  background: rgba(0, 0, 0, 0.5);
  display: flex !important;
}
.section6 .container .fold_wrap li.active .mask_b .adv_intro {
  opacity: 1;
}
.section6 .container .fold_wrap li .mask_b {
  position: absolute;
  overflow: hidden;
  width: calc(100% - 1.6rem);
  height: 1rem;
  bottom: 0.2rem;
  left: 0.8rem;
  display: flex !important;
  justify-content: space-around;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
}
.section6 .container .fold_wrap li .mask_b h4 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.section6 .container .fold_wrap li.big {
  width: 5.4rem !important;
}
.section6 .container .fold_wrap li .adv_intro {
  width: 92%;
  text-align: center;
  color: #FFF;
  overflow: hidden;
  opacity: 0;
}
.section6 .container .adv_intro {
  transition: bottom 0.3s linear 0.3s;
  -webkit-transition: bottom 0.3s linear 0.3s;
}
.section6 .container .pic_auto {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .section6 .container .img-box img {
    width: 100%;
  }
  .section6 .container .mask {
    height: 200px;
    background: #F7F8FA;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .section6 .container .mask h1 {
    font-size: 15px;
    margin-bottom: 0.6rem;
  }
  .section6 .container .mask p {
    letter-spacing: 2px;
    max-width: 120px;
    text-align: center;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .letter3,
  .letter5 {
    letter-spacing: 0;
  }
  .contact {
    width: 90%;
    border-radius: 12px;
    margin: 0 auto;
    overflow: hidden;
  }
  .application .text-box h1 {
    width: 100% ;
  }
  .product-details .swiper-container,
  .product-details1 .swiper-container {
    height: auto !important;
  }
  .product-details .swiper-container .content,
  .product-details1 .swiper-container .content {
    background: #f7f8fa;
    color: #454c5c !important;
    min-height: 180px;
  }
  .product-details .swiper-container .pt_70,
  .product-details1 .swiper-container .pt_70 {
    padding: 0;
  }
  .rellaxs .row {
    display: flex;
    flex-direction: column-reverse;
  }
  .rellaxs .row .add {
    height: 5rem !important;
  }
  .rellaxs .row .add ul {
    display: flex;
    flex-wrap: wrap;
  }
  .rellaxs .row .add ul li {
    width: 50%;
  }
}
.plyr {
  width: 100%;
}
.searchs {
  background: url("../img/bg2.jpg") no-repeat center center / cover;
  min-height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchs .search-box-title h1 {
  text-align: center;
  margin-bottom: 0.3rem;
}
.searchs .search-box-title .tab-box {
  padding-left: 0.3rem;
  display: flex;
  justify-content: left;
  margin-bottom: 1px;
}
.searchs .search-box-title .tab-box .tab-item {
  cursor: pointer;
  width: 130px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.5);
  color: #2A2825;
}
.searchs .search-box-title .tab-box .tab-item.active {
  background: #fff;
  color: #fd0608;
}
.searchs .search-box-title .search-box {
  padding: 0 0.3rem;
  position: relative;
}
.searchs .search-box-title .search-box input {
  height: 0.7rem;
  min-height: 40px;
  width: 100%;
  border: none;
  padding-left: 20px;
}
.searchs .search-box-title .search-box .icon {
  height: 16px;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  padding-left: 0.3rem;
}
.searchs .search-box-title .search-box .icon .as {
  opacity: 0;
  fill: transparent;
}
.searchs .search-box-title .search-box .icon .b {
  fill: #fd0608 !important;
}
.searchs .flex {
  height: 38px;
  background: #FFFFFF;
  opacity: 1;
  padding: 0 0.3rem;
  position: relative;
  border-radius: 6px;
  border: 1px solid rgba(69, 76, 92, 0.5);
  z-index: 5;
}
.searchs .flex input {
  border: none;
  padding-left: 0.3rem;
  width: calc(100% - 16px - 0.3rem);
}
.searchs .flex button {
  border: none;
  background: none;
}
.searchs .resultTips {
  align-items: start;
}
.search_list .list-box {
  align-items: center;
}
.search_list .list-box .tab-box span {
  padding: 10px 0.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.search_list .list-box .tab-box span.active {
  background: #fd0608;
  border-radius: 50px;
  color: #FFFFFF;
}
.search_list .card {
  border-radius: 10px;
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px !important;
  padding: 0.3rem;
  background: #FFFFFF;
  position: relative;
}
.search_list .card .content ul {
  display: flex;
  justify-content: space-between;
}
.search_list .card .content ul li .num {
  width: 100%;
  text-align: center;
  color: #fd0608;
}
.search_list .card .content ul li p {
  width: 100%;
}
.search_list .card .authStatus {
  position: absolute;
  top: 0.3rem;
  right: 0;
  background: url("../img/type2.png") no-repeat;
  width: 124px;
  height: 34px;
  background-size: 100% 100%;
  line-height: 34px;
  padding-left: 20px;
  color: #fff;
  text-align: center;
}
.search_list .card .authStatus.active {
  background: url("../img/type1.png") no-repeat;
}
.plyr__control--overlaid {
  background-color: #fd0608 !important;
}
.plyr--full-ui input[type=range] {
  color: #fd0608 !important;
}
.dynamic a {
  transition: all 0.3s ease;
}
.dynamic a:hover {
  color: #fd0608 !important;
}
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background-color: #fd0608 !important;
}
.base .fnt_40 {
  font-family: '阿里巴巴普惠体 2.0 45 Light';
  font-weight: 300;
}
@media screen and (max-width: 992px) {
  .work-top .row {
    display: flex;
    flex-direction: column-reverse;
  }
  .common-banner .card {
    height: 5rem !important;
  }
  .common-banner .card .top {
    text-align: center;
  }
  .common-banner .bg-image.fadeInLeft {
    height: 300px !important;
  }
}
@media screen and (max-width: 768px) {
  .section5 .page {
    background-image: url(../img/p222.jpg) !important;
  }
  .dynamic h1 {
    margin-bottom: 0.6rem;
  }
  .dynamic .prev {
    margin-bottom: 0.4rem;
  }
}
#my-gallery a {
  width: 100%;
  height: 100%;
  display: block;
}
.pc_m {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .pc_m {
    display: block;
  }
}
.common-banner .bg-image.pc {
  position: absolute;
  width: 100%;
  height: 100%;
}
.common-banner .bg-image.pc_m {
  position: absolute;
  width: 100%;
  height: 100%;
}
.new-detail .common-banner .container {
  justify-content: end;
  padding-bottom: 0.4rem;
  color: #fff !important;
}
.new-detail .common-banner:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.new-detail .detail {
  font-size: 16px;
}
.new-detail .detail img {
  width: 100%;
  margin: 0.3rem 0 !important;
}
@media screen and (max-width: 768px) {
  .integration .common-banner h3 {
    font-size: 20px;
  }
}
.integration .flex {
  width: 100%;
  justify-content: space-between;
}
.integration .flex .left,
.integration .flex .right {
  width: 48%;
  display: flex;
  align-items: center;
  line-height: 3;
}
.integration .flex .right .bg {
  overflow: hidden;
  border-radius: 10px;
}
.integration .flex .right img {
  width: 100%;
  max-width: 597px;
}
@media screen and (max-width: 768px) {
  .integration .flex {
    flex-wrap: wrap;
  }
  .integration .flex .left,
  .integration .flex .right {
    margin-bottom: 0.2rem;
    width: 100%;
  }
}
.saas .common-banner .box {
  display: flex;
  margin-top: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0;
}
@media screen and (max-width: 1024px) {
  .saas .common-banner .box {
    display: none;
  }
}
.saas .text {
  max-width: 60%;
}
@media screen and (max-width: 1024px) {
  .saas .text {
    display: none;
  }
}
.saas .n1 .img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .saas .n1 .img img {
    height: 140px;
  }
}
.saas .n1 .img .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 5%;
  padding-left: 30%;
}
.saas .n2 .img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}
.saas .n2 .img .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.38rem;
}
.saas .n3 .left {
  width: 100%;
  height: 500px;
  position: relative;
}
.saas .n3 .left ul {
  display: flex;
  justify-content: space-between;
}
.saas .n3 .left ul li {
  text-align: center;
}
.saas .n3 .left ul li .bg {
  margin-bottom: 10px;
  background: url("../img/icon_n.png") no-repeat;
  width: 107px;
  height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.saas .n3 .left ul li:nth-child(1) {
  transform: translateY(100px);
}
.saas .n3 .left ul li:nth-child(2) {
  transform: translateY(47px);
}
.saas .n3 .left ul li:nth-child(4) {
  transform: translateY(40px);
}
.saas .n3 .left ul li:nth-child(5) {
  transform: translateY(100px);
}
.saas .n3 .left .con {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.saas .n3 .right {
  position: relative;
  padding-top: 200px;
}
.saas .n3 .right .center {
  position: absolute;
  left: -140px;
  text-align: center;
  top: 50%;
}
@media screen and (max-width: 1024px) {
  .saas .n3 .right .center {
    display: none;
  }
}
.saas .n3 .right .con {
  text-align: center;
}
.saas .n4 .box {
  display: flex;
  padding: 0.2rem;
  background: #F3F7FA;
  align-items: center;
  border-radius: 10px;
  height: 120px;
  transition: all 0.3s ease-in;
  margin-bottom: 0.2rem;
}
.saas .n4 .box:hover {
  background: #fff;
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
.saas .n4 .box .icon {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
}
.saas .n5 .box {
  display: flex;
  padding: 0.4rem 0.2rem 0.4rem;
  background: #F3F7FA;
  align-items: center;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  transition: all 0.3s ease-in;
  margin-bottom: 0.2rem;
  position: relative;
  text-align: center;
}
.saas .n5 .box .right {
  width: 100%;
  text-align: center;
}
.saas .n5 .box:hover {
  background: #fff;
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
.saas .n5 .box .icon {
  display: flex;
  align-items: center;
  width: 0.8rem;
  min-width: 30px;
  margin-top: -0.7rem;
  margin-bottom: 0.2rem;
}
.saas .n5 .box .icon img {
  width: 100%;
}
.saas .n6 .box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 0.2rem;
  position: relative;
  text-align: center;
}
.saas .n6 .box .right {
  top: 10%;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
}
.saas .n6 .box .icon {
  transition: all 0.3s ease-in;
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
}
.saas .n6 .box .icon:hover {
  background: #fff;
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
.saas .n6 .box .icon img {
  width: 100%;
}
.saas .n7 .box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 0.2rem;
  position: relative;
  text-align: center;
}
.saas .n7 .box .right {
  top: 10%;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
}
.saas .n7 .box .icon {
  transition: all 0.3s ease-in;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
}
.saas .n7 .box .icon:hover {
  background: #fff;
  box-shadow: rgba(137, 162, 227, 0.3) 0px 10px 60px 0px;
}
.saas .n7 .box .icon img {
  width: 100%;
}
.subJson .common-banner {
  background: url("../img/bg2.jpg") no-repeat center center / cover;
  max-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subJson .common-banner p {
  max-width: 10rem;
  letter-spacing: 0;
}
.subJson .section-title {
  text-align: center;
  margin-bottom: 0.6rem;
}
.subJson .section-title h1 {
  font-weight: 500;
  background-size: 200% 200%;
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.subJson .section-title span {
  line-height: 1;
  display: block;
  color: #797979;
}
.subJson .p-cradJson .item {
  background-color: #fff;
  padding: 0.24rem;
  box-sizing: border-box;
  width: 100%;
  transition: 0.5s ease-in-out;
  margin-right: 18px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: left;
}
.subJson .p-cradJson .item:hover {
  transform: translateY(-10px);
}
.subJson .p-cradJson .item p {
  height: 40px;
}
.subJson .p-cradJson .item .coreIcon {
  width: 48px;
  height: 48px;
  background: #F4F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 24px;
}
.subJson .p-cradJson .item .coreIcon img {
  width: 24px;
  height: 24px;
}
.subJson .p-cradJson .item a {
  margin-top: 34px;
  display: inline-block;
}
.subIndex .common-banner {
  background: url("../img/bg2.jpg") no-repeat center center / cover;
  max-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subIndex .common-banner p {
  max-width: 10rem;
  letter-spacing: 0;
}
.subIndex .section-title {
  text-align: center;
  margin-bottom: 0.6rem;
}
.subIndex .section-title h1 {
  font-weight: 500;
  background-size: 200% 200%;
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.subIndex .section-title span {
  line-height: 1;
  display: block;
  color: #797979;
}
.p-crad .item {
  background-color: #fff;
  padding: 0.24rem;
  box-sizing: border-box;
  height: 230px;
  width: 100%;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
}
@media screen and (max-width: 968px) {
  .p-crad .item {
    height: 190px;
  }
}
@media screen and (max-width: 968px) {
  .p-crad .item {
    height: 220px;
  }
}
.p-crad .item .coreIcon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-crad .item .coreIcon img {
  width: 100%;
}
.getGrey {
  filter: grayscale(100%);
}
.p-tab .left .item {
  width: 100%;
  height: 220px;
  background: #F4FBFA;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in;
}
.p-tab .left .item:last-child {
  margin-bottom: 0;
}
.p-tab .left .item:hover {
  background: linear-gradient(to right, rgba(253, 6, 8, 0.5) 0%, #fd0608 100%);
}
.p-tab .left .item:hover .numberText,
.p-tab .left .item:hover .des {
  color: #fff;
}
.p-tab .left .item .numberText {
  height: 67px;
  font-weight: 400;
  font-size: 48px;
  color: #1F2C3D;
  transition: all 0.3s ease-in;
  margin-bottom: 16px;
}
.p-tab .left .item .des {
  line-height: 30px;
  font-weight: 400;
  color: #1F2C3D;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 990px) {
  .p-tab .left {
    display: flex;
    justify-content: space-between;
  }
  .p-tab .left .item {
    width: calc(100 / 3 * 100% - 20px);
    height: 160px;
    margin-right: 10px;
  }
  .p-tab .left .item:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-tab .left .item {
    display: none;
  }
}
.p-tab .right .img {
  width: 100%;
  height: 480px;
}
.p-tab .right .img .bg-image {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 100%;
}
.p-tab .right .con {
  height: 220px;
  padding: 24px;
  background: #F4FBFA;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.p-tab .right.right1 {
  display: none;
}
@media screen and (max-width: 990px) {
  .p-tab .right .img {
    width: 100%;
    height: 280px;
  }
  .p-tab .right .img .bg-image {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
    height: 100%;
  }
  .p-tab .right .con {
    height: 150px;
    padding: 24px;
    background: #F4FBFA;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
@media screen and (max-width: 640px) {
  .p-tab .right {
    display: none;
  }
  .p-tab .right.right1 {
    display: block;
  }
  .p-tab .right .img {
    width: 100%;
    height: 180px;
  }
  .p-tab .right .con {
    height: 150px;
    padding: 14px;
  }
}
.toggleMenu3 .card-body,
.toggleMenu4 .card-body,
.toggleMenu5 .card-body {
  display: flex;
  flex-direction: initial;
  justify-content: flex-start;
  height: 36px;
  font-size: 14px;
  cursor: pointer;
  align-items: center;
  text-align: left;
}
.toggleMenu3 .card-body:hover,
.toggleMenu4 .card-body:hover,
.toggleMenu5 .card-body:hover {
  background: #ee6464;
  border-radius: 8px;
}
.toggleMenu3 .card-body:hover a,
.toggleMenu4 .card-body:hover a,
.toggleMenu5 .card-body:hover a {
  color: #fff;
}
.toggleMenu3 .card-body:hover span,
.toggleMenu4 .card-body:hover span,
.toggleMenu5 .card-body:hover span {
  opacity: 1;
}
.toggleMenu3 .card-body a,
.toggleMenu4 .card-body a,
.toggleMenu5 .card-body a {
  color: #2A2825;
  transition: 0.3s;
  line-height: 36px;
  display: inline-block !important;
}
.toggleMenu3 .card-body span,
.toggleMenu4 .card-body span,
.toggleMenu5 .card-body span {
  opacity: 0;
  transition: 0.3s;
  color: #FFFFFF;
  margin-right: 10px;
}
.toggleMenu3 .card-body .icon,
.toggleMenu4 .card-body .icon,
.toggleMenu5 .card-body .icon {
  width: 20px;
  height: 17px;
  filter: grayscale(100%) !important;
  opacity: 0.5;
  transition: 0.3s;
  margin-right: 8px;
  margin-left: 12px;
}
.toggleMenu3 .card-body .icon img,
.toggleMenu4 .card-body .icon img,
.toggleMenu5 .card-body .icon img {
  width: 100%;
  display: inline-block;
}
.messagebox-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.messagebox-container .messagebox {
  width: 680px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  color: #333;
  padding: 20px;
  min-height: 130px;
}
@media screen and (max-width: 640px) {
  .messagebox-container .messagebox {
    width: 90%;
  }
}
.messagebox-container .messagebox h2 {
  font-weight: 700;
  text-align: left;
}
.messagebox-container .messagebox input {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 10px;
  margin-top: 10px;
}
.messagebox-container .messagebox .btn-box {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.messagebox-container .messagebox .btn-box button {
  width: 120px;
  margin: 0 10px;
}
.messagebox-container .messagebox .btn-box button:nth-child(1) {
  background: #eee;
  color: #333;
}
/*# sourceMappingURL=base.css.map */