@charset "utf-8";
/*~~~~框架布局~~~*/
html {
  verflow: -Scroll;
  overflow-x: hidden;
  zoom: 1;
  overflow-y: scroll;
  overflow: -moz-scrollbars-vertical;
}

/*==版心定义↓==*/
.container {
  width: 1600px;
}
a:hover {
  color: #da251c
}


/*==字符串↓==*/
i,.iof {
  font-style: normal;
  font-family: "iconfont";
  line-height: 1;
  transition: all .4s ease-in-out
}

@font-face {
  font-family: 'iconfont';
  /* project id 1963410 */
  src: url('../fonts/font_1963410_j38myoynffl.eot');
  src: url('../fonts/font_1963410_j38myoynffl.eot') format('embedded-opentype'),
    url('../fonts/font_1963410_j38myoynffl.woff2') format('woff2'),
    url('../fonts/font_1963410_j38myoynffl.woff') format('woff'),
    url('../fonts/font_1963410_j38myoynffl.ttf') format('truetype'),
    url('../fonts/font_1963410_j38myoynffl.svg#iconfont') format('svg');
}

/*==顶部↓==*/
.fixed-top.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  padding: 10px 0;
  height: 80px;
  box-shadow: 0 0 10px #ddd;
}

.fixed-top.header:before {
  opacity: 1;
  height: 100%;
}

.fixed-top.header .logo img {
  height: 60px;
}

.fixed-top.header .nav {
  margin-top: 20px;
}

.fixed-top.header .nav>li>a {
  padding-bottom: 26px;
}

/*.fixed-top.header .tel{margin-top: 15px;}*/

/*--*/

.header {
  z-index: 99;
  padding: 20px 0;
  height: 100px;
}

.header:before {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 80%;
  background: #fff;
  transition: all .4s ease-in-out;
}

.header .logo {
  float: left
}

.header .logo a {
  width: 100%;
  height: 100%;
  display: block;
}

.header .logo img {
  /* max-height: 100%; */
  height: 60px;
  display: block;
}

.header .tel {
  position: relative;
  float: right;
  margin: 0px 0 0 20px;
  font-weight: bold;
  font-size: 22px;
  color: #da251c;
}

.header .tel:before {
  content: "\e611";
  font-family: "iconfont";
  position: absolute;
  left: 0;
  margin-right: 10px;
  font-weight: 400;
  color: #666;
  top: 18px;
}

.header .tel p {
  padding-left: 33px;
  line-height: 68px;
}

.header .nav {
  display: flex;
  float: right;
  margin-top: 20px;
}

.header .nav>li {
  /* flex: 1; */
  float: left;
  margin-left: 20px;
  position: relative;
}

.header .nav>li>a {
  position: relative;
  display: block;
  color: #222222;
  font-size: 18px;
  text-align: center;
  padding-bottom: 36px;
}

.header .nav>li>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #da251c;
  transition: transform .5s;
  transform: scale(0, 1);
  transform-origin: right;
}

.header .nav>li:hover>a,
.header .nav>li.active>a {
  color: #da251c;
}

.header .nav>li:hover>a:after,
.header .nav>li.active>a:after {
  transform: scale(1);
  transform-origin: left;
}

.header .nav .sub {
  display: none;
  width: 200%;
  left: -50%;
  top: 100%;
  position: absolute;
  border: 1px #ddd solid;
  background: rgba(255, 255, 255, 1);
  padding: 10px 0;
  z-index: 999;
  text-align: center;
  /* box-shadow: 0 0 10px #ddd; */
}

.header .nav .sub a {
  display: block;
  color: #5e5e5e;
  font-size: 14px;
  padding: 8px 10px
}

.header .nav .sub a:hover {
  color: #fff;
  background: #da251c;
}

.header .nav li:last-child .sub {
  display: none !important;
}





/*==次级导航↓==*/

.menu {
  width: 100%;
  margin-top: 60px;
  margin-bottom: -10px;
}

.menu ul {
  display: table;
  text-align: center;
  /*! background:#f2f3f4; */
  /*! width: 100%; */
  margin: auto;
}

.menu li {
  /*! flex: 1; */
  display: inline-block;
}

.menu li a {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 10px 10px 10px;
  color: #191919;
  font-size: 18px;
  border: 1px #e9e9e9 solid;
  overflow: hidden;
  padding: 10px 40px;
  border-radius: 6px;
  background: #f7f7f7;
}

.menu li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #da251c;
  transition: transform .5s;
  transform: scale(0, 1);
  transform-origin: right;
}

.menu li:hover a,
.menu li.active a {
  color: #fff;
  border-color: #da251c
}

.menu li:hover a:after,
.menu li.active a:after {
  transform: scale(1);
  transform-origin: left;
}





/*==面包屑↓==*/

.site {}

.site .container {
  padding: 20px 0;
  border-bottom: 1px #ddd solid;
}

.site .home i {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
}

.site a {
  color: #666;
  font-size: 12px;
}

.site a:hover {
  color: #2e3093
}

.site .more {
  float: right;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  margin-top: -5px;
  background: #666;
}

.site .more:hover {
  color: #fff;
  background: #da251c;
}





/*==标题↓==*/

.titleAx {
  color: #191919;
  font-size: 40px;
  font-weight: bold;
}

.titleAx span {
  margin-top: 0px;
  display: block;
  color: #525252;
  font-size: 18px;
  font-weight: 400;
  text-transform: Uppercase;
}

.titleAx font {
  color: #da251c
}

.titleAx hr {
  display: block;
  margin: 10px auto 0;
  width: 40px;
  height: 3px;
  border: none;
  background: #da251c;
}

.titleAx.cen {
  text-align: center;
  margin-bottom: 30px;
}

.titleAx.m30 {
  margin-bottom: 30px;
}

.titleAx.m40 {
  margin-bottom: 40px;
}

.titleAx.white,
.titleAx.white b,
.titleAx.white span {
  color: #fff
}

.titleAx.white hr {
  background: #fff
}

/*--*/

.titleBx {
  color: #000123;
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.titleBx span {
  display: block;
  margin: 0px auto 0;
  color: #bdbdbd;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.titleBx hr {
  display: block;
  margin: 10px auto 0;
  width: 40px;
  height: 2px;
  border: none;
  background: #da251c;
}

.titleBx.cen {
  text-align: center;
}

.titleBx.white,
.titleBx.white span {
  color: #fff
}

.titleBx.tTop {
  margin: 50px 0 -10px 0;
}





/*==边距↓==*/

.ptm60 {
  padding: 60px 0
}

.ptm80 {
  padding: 70px 0
}

.ptm100 {
  padding: 100px 0
}

.pt60 {
  padding-top: 60px
}

.pt80 {
  padding-top: 80px
}

.pt100 {
  padding-top: 100px
}

.pm60 {
  padding-bottom: 60px
}

.pm80 {
  padding-bottom: 80px
}

.pm100 {
  padding-bottom: 100px
}

/*--*/

.mtm60 {
  margin: 60px 0
}

.mtm80 {
  margin: 80px 0
}

.mtm100 {
  margin: 100px 0
}

.mt60 {
  margin-top: 60px
}

.mt80 {
  margin-top: 80px
}

.mt100 {
  margin-top: 100px
}

.mm60 {
  margin-bottom: 60px
}

.mm80 {
  margin-bottom: 80px
}

.mm100 {
  margin-bottom: 100px
}



/*句段限制*/

.abbr {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lcp {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}





/*===内页框↓==*/

.rack {
  float: left;
  width: 100%;
  padding: 70px 0 80px 0;
}

.rackWor {}

.rack .lefter {
  width: 20%
}

.rack .righter {
  width: 80%;
  padding-left: 50px;
}





/*==左侧↓==*/

.leftNav .title {
  position: relative;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  padding: 20px 30px;
  background: #da251c;
}

.leftNav .title span {
  display: table-footer-group;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.leftNav .title em {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  float: right;
  font-size: 16px;
}

.leftNav .title em i {
  margin-left: 5px
}

.leftNav ul {
  border: 1px #ddd solid;
  background: #fff;
}

.leftNav ul>li {
  border-bottom: 1px #ddd solid
}

.leftNav ul>li>a {
  display: block;
  color: #2e2e2e;
  font-size: 18px;
  padding: 18px 30px;
}

.leftNav ul>li>a i {
  font-size: 12px;
  font-weight: bold;
  margin-right: 5px;
  color: #2e2e2e;
}

.leftNav ul>li:hover>a {
  color: #da251c;
  transform: translateX(5px);
}

.leftNav ul>li:hover>a i {
  color: #da251c
}

/*--*/

.conBox {
  padding: 36px 60px;
  overflow: hidden;
  background: url(../images/conbg.jpg) no-repeat center;
  background-size: cover;
}

.conBox .tel {
  color: #FFFFFF;
  font-size: 15px;
}

.conBox .tel b {
  margin-top: 5px;
  display: block;
  color: #f00;
  font-size: 20px;
  line-height: initial;
  font-weight: bold
}

.conBox .ewm {}

.conBox .ewm i {
  display: block;
  float: right;
  /* color:#fff; */
  font-size: 24px;
  margin-left: 5px;
}

.conBox .ewm {
  display: table;
  margin-top: 20px;
  border: 1px #fff solid;
  padding: 8px 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.conBox .ewm:hover {
  color: #666;
  background: #fff;
}

.conBox .ewm:hover i {
  color: #666
}





/*==首页产品↓==*/

.ProductHome {
  background: #f6f6f6;
}

.ProductHome .left {
  width: 20%;
}

.ProductHome .right {
  width: 80%;
  padding-left: 50px;
}

.idxpros .product-list li {
  width: 33%;
}





/*==首页服务保障↓==*/

.EnsureHome {}

.EnsureHome ul {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.EnsureHome ul li {
  flex-grow: 1;
  display: inline-block;
  width: 20%;
  text-align: center;
}

.EnsureHome ul li a {
  display: block;
}

.EnsureHome ul em {
  display: table;
  margin: 0 auto 15px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #4a4a4a;
}

.EnsureHome ul span {
  color: #2d2d2d;
  font-size: 18px;
  margin-bottom: 10px;
}

.EnsureHome ul span font {
  color: #da251c
}

.EnsureHome ul li:hover {}

.EnsureHome ul li:hover a {
  transform: translateY(-5px);
}

.EnsureHome ul li:hover em {
  background-color: #da251c;
}

.EnsureHome ul .x1 em {
  background-image: url(../images/ensureico01.png);
}

.EnsureHome ul .x2 em {
  background-image: url(../images/ensureico02.png);
}

.EnsureHome ul .x3 em {
  background-image: url(../images/ensureico03.png);
}

.EnsureHome ul .x4 em {
  background-image: url(../images/ensureico04.png);
}

.EnsureHome ul .x5 em {
  background-image: url(../images/ensureico05.png);
}





/*==首页广告栏↓==*/

.GdHome {
  padding: 50px 0;
  background: url(../images/gdbg.jpg) no-repeat no-repeat;
  background-size: cover;
}

.GdHome .left h3 {
  color: #fff;
  font-size: 40px;
  font-weight: bold
}

.GdHome .left span {
  color: #da251c;
  font-size: 40px;
  font-weight: bold
}

.GdHome .left p {
  color: #fff;
  font-size: 18px;
}

.GdHome .right {
  display: table;
  margin: 50px 200px 0 0;
}

.GdHome .right a,
.GdHome .right span {
  display: table-cell;
  padding: 8px 30px;
  vertical-align: middle;
}

.GdHome .right a {
  color: #fff;
  font-size: 18px;
  background: #da251c;
}

.GdHome .right span {
  color: #da251c;
  font-size: 28px;
  font-weight: bold;
  background: #fff;
}

/* .GdHome .right a:hover {
  color: #fff;
  background: #333
} */





/*==首页流程↓==*/

.ProcessHome {}

.ProcessHome ul {
  margin-right: -50px;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.ProcessHome ul li {
  float: left;
  flex-grow: 1;
  display: inline-block;
  width: 14.2%;
}

.ProcessHome ul a {
  position: relative;
  display: block;
  text-align: center;
  margin-right: 50px;
}

.ProcessHome ul a:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 35%;
  width: 19px;
  height: 31px;
  background: url(../images/arrow01.png) no-repeat center;
}

.ProcessHome ul .pic {
  position: relative;
  display: table;
  margin: auto;
  z-index: 2;
  /* padding: 5px; */
}

.ProcessHome ul .pic:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  /* width:100%; */
  /* height:100%; */
  margin: -2px;
  background-image: url(../images/processbg.jpg), linear-gradient(#3d3d3d, #3d3d3d);
  background-blend-mode: lighten;
  background-size: cover;
}

.ProcessHome ul h4 {
  color: #3d3d3d;
  font-size: 20px;
  margin-top: 20px
}

/*.ProcessHome ul li:last-child a{padding-right:0px;}*/

.ProcessHome ul li:last-child a:after {
  display: none;
}

.ProcessHome ul li:hover {}

.ProcessHome ul li:hover .pic {
  transform: translateY(-3px);
}

.ProcessHome ul li:hover .pic:before {
  background-image: url(../images/processbg.jpg), linear-gradient(#da251c, #da251c);
}

.ProcessHome ul li:hover h4 {
  color: #da251c;
}





/*==首页应用↓==*/

.ApplysHome {
  background: #f6f6f6;
}

.ApplysHome .long {
  height: 365px;
  border: 1px #ddd solid;
  overflow: hidden;
  background: #fff;
}

.ApplysHome .left {
  width: 40%;
  background: #fff;
}

.ApplysHome .left ul {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.ApplysHome .left li {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: inline-block;
  width: 50%;
  padding: 30px 100px 30px 30px;
  border-right: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
  cursor: pointer;
}

.ApplysHome .left li:before {
  opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translateY(-5px);
  background: #da251c;
}

.ApplysHome .left em {
  position: absolute;
  right: 20px;
  top: 31px;
  display: block;
  width: 67px;
  height: 63px;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.ApplysHome .left h4 {
  color: #191919;
  font-size: 20px;
  margin-bottom: 0px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ApplysHome .left span {
  display: block;
  color: #999;
  font-size: 20px;
  text-transform: capitalize;
}

.ApplysHome .left li.active em {
  background-position: 0 -67px;
}

.ApplysHome .left li.active h4 {
  color: #fff
}

.ApplysHome .left li.active span {
  color: #eee
}

.ApplysHome .left li.active:before {
  transform: translateY(0px);
  opacity: 1
}

.ApplysHome .left .x1 em {
  background-image: url(../images/applysico01.png);
}

.ApplysHome .left .x2 em {
  background-image: url(../images/applysico02.png);
}

.ApplysHome .left .x3 em {
  background-image: url(../images/applysico03.png);
}

.ApplysHome .left .x4 em {
  background-image: url(../images/applysico04.png);
}

.ApplysHome .left .x5 em {
  background-image: url(../images/applysico05.png);
}

.ApplysHome .left .x6 em {
  background-image: url(../images/applysico06.png);
}

.ApplysHome .right {
  width: 60%;
  background: #fff;
}

.ApplysHome .right li {
  padding: 60px;
}

.ApplysHome .right a {
  display: block;
}

.ApplysHome .right .pic {
  width: 50%;
}

.ApplysHome .right .box {
  width: 50%;
  padding-left: 50px;
}

.ApplysHome .right h4 {
  color: #191919;
  font-size: 36px;
  margin-bottom: 20px;
}

.ApplysHome .right p {
  -webkit-line-clamp: 4;
  color: #999;
  font-size: 14px;
}

.ApplysHome .right .more {
  color: #da251c;
  font-size: 14px;
  margin-top: 20px;
  display: table;
}

.ApplysHome .right li:hover h4 {
  color: #da251c
}

.ApplysHome .right li:hover .more {}

/*.ApplysHome .left,.ApplysHome .right{float:none;display: table-cell;}*/





/*==首页优势↓==*/

.AdvantageHome {
  overflow: hidden;
  background: url(../images/advantagebg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.AdvantageHome .container {
  position: relative;
}

.AdvantageHome .titleAx {
  margin-bottom: 120px;
  line-height: 1.3;
  text-transform: uppercase;
}

.AdvantageHome .long {
  float: left;
  width: 100%;
  position: relative;
}

.AdvantageHome .left {
  width: 40%;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.AdvantageHome .left li {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: inline-block;
  width: 33.3%;
  cursor: pointer;
  /* background:rgba(255,255,255,0.8); */
}

.AdvantageHome .left .lattice {
  cursor: initial;
}

.AdvantageHome .left li a:before {
  opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translateY(-10px);
  overflow: hidden;
  background: #da251c;
}

.AdvantageHome .left li a {
  position: relative;
  z-index: 2;
  display: block;
  height: 99.3%;
  margin: 0 0 1px 1px;
  padding: 30px 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.AdvantageHome .left i {
  color: #999;
  font-size: 26px;
  display: table;
  margin-bottom: 10px;
  font-weight: bold;
}

.AdvantageHome .left h4 {
  color: #191919;
  font-size: 20px;
  margin-bottom: 0px;
}

.AdvantageHome .left span {
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
}

.AdvantageHome .left li.active i {
  color: #fff
}

.AdvantageHome .left li.active h4 {
  color: #fff
}

.AdvantageHome .left li.active span {
  color: #eee
}

.AdvantageHome .left li.active a:before {
  transform: translateY(0px);
  opacity: 1
}

.AdvantageHome .right {
  position: absolute;
  right: 0;
  bottom: -80px;
  z-index: 1;
  width: 50%;
  height: 400px;
  padding: 50px 60px 100px 50px;
  background: #da251c;
}

.AdvantageHome .right:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 1000px;
  height: 100%;
  background: #da251c;
}

.AdvantageHome .right li {}

.AdvantageHome .right i {
  position: absolute;
  right: -170px;
  bottom: -90px;
  z-index: -1;
  font-weight: bold;
  color: #e26763;
  font-size: 250px;
}

.AdvantageHome .right h3 {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.AdvantageHome .right hr {
  width: 50px;
  height: 2px;
  border: none;
  margin: 0 0 20px 0;
  background: #fff;
}

.AdvantageHome .right .wx {
  -webkit-line-clamp: 6;
  color: #fff;
  font-size: 16px;
}





/*==首页关于↓==*/

.AboutHome {
  background: #f6f6f6
}

.AboutHome .left {
  width: 46%;
  padding-right: 80px;
}

.AboutHome .left h4 {
  color: #da251c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px
}

.AboutHome .left .wx {
  -webkit-line-clamp: 7;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}

.AboutHome .left .more {
  display: table;
  margin-top: 50px;
  color: #666;
  font-size: 14px;
}

.AboutHome .left .more i {
  float: right;
  font-size: 18px;
  margin: 2px 0 0 20px;
}

.AboutHome .left .more:hover {
  color: #da251c
}

.AboutHome .left .more:hover i {
  transform: translateX(-5px);
}

.AboutHome .digital {
  position: relative;
  z-index: 2;
  /* margin-top:80px; */
  padding: 30px 0;
}

.AboutHome .digital:before {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  z-index: -1;
  width: 2000px;
  height: 100%;
  background: #da251c;
}

.AboutHome .digital * {
  color: #fff
}

.AboutHome .digital li {
  float: left;
  width: 25%;
}

.AboutHome .digital li a {
  display: block;
}

.AboutHome .digital span {
  font-size: 45px;
  font-weight: bold;
}

.AboutHome .digital font {
  font-size: 16px;
  margin-left: 5px;
}

.AboutHome .digital h5 {
  font-size: 14px
}

.AboutHome .right {
  width: 54%;
}

.AboutHome .right .up {
  /* display: table-cell; */
  vertical-align: bottom;
}

.AboutHome .right .up img {
  display: block;
  width: 100%;
  height: 490px;
  vertical-align: bottom;
}

.AboutHome .right .list {}

.AboutHome .right .list li {
  position: relative;
  float: left;
  width: 25%;
  /* height: 77px; */
}

.AboutHome .right .list li .pic {
  height: 148px;
  padding-top: initial;
}

.AboutHome .right .list li a {
  display: block;
}

.AboutHome .right .list li .pic img {
  position: initial;
  height: 100%;
  object-fit: cover;
}

.AboutHome .right .list .more:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.AboutHome .right .list .more span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: min-content;
  z-index: 3;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.AboutHome .right .list .more span i {
  color: #fff;
  font-size: 30px;
  display: block;
}

.AboutHome .right .list .more .pic:before,
.AboutHome .right .list .more .pic:after {
  display: none;
}

.AboutHome .left .box,
.AboutHome .right .up {
  height: 491px;
}





/*==首页新闻↓==*/

.NewsHome {}

.NewsHome .tone {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.NewsHome .tone:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}

.NewsHome .tone li {
  display: inline-block;
  margin: 0 25px;
  cursor: pointer;
}

.NewsHome .tone a {
  position: relative;
  display: block;
  color: #373737;
  font-size: 20px;
  padding-bottom: 15px;
}

.NewsHome .tone a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #da251c;
  transition: transform .5s;
  transform: scale(0, 1);
  transform-origin: right;
}

.NewsHome .tone .active a {
  color: #da251c
}

.NewsHome .tone .active a:before {
  transform: scale(1);
  transform-origin: left;
}

.NewsHome .list {
  margin: 0 0 0 -35px
}

.NewsHome .list .one {
  float: left;
  width: 30%;
}

.NewsHome .list .one a {
  display: block;
  margin-left: 35px;
  border-bottom: 1px #ddd solid;
  padding-bottom: 20px;
}

.NewsHome .list .one .pic {
  height: 330px;
  margin-bottom: 30px;
}

.NewsHome .list .one .pic img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.NewsHome .list .one h4 {
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.NewsHome .list .one .time {
  color: #999;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.NewsHome .list .one p {
  -webkit-line-clamp: 2;
  color: #999;
  font-size: 14px;
  line-height: 24px;
}

.NewsHome .list .two {
  float: right;
  width: 40%;
}

.NewsHome .list .two a {
  display: block;
  margin-left: 70px;
  border-bottom: 1px #ddd solid;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.NewsHome .list .two h4 {
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.NewsHome .list .two .time {
  float: left;
  color: #666666;
  font-size: 12px;
  display: block;
  margin-right: 20px;
  text-align: center;
}

.NewsHome .list .two .time font {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #333
}

.NewsHome .list .two p {
  -webkit-line-clamp: 2;
  color: #666666;
  font-size: 13px;
  line-height: 24px;
}

.NewsHome .list .one:hover h4 {
  color: #da251c
}

.NewsHome .list .one:hover a {
  border-color: #da251c;
  transform: translateY(-5px)
}

.NewsHome .list .two:hover a {
  border-color: #da251c;
  transform: translateY(-3px)
}

.NewsHome .list .two:hover h4 {
  color: #da251c
}

.NewsHome .list .two:hover .time font {
  color: #da251c
}





/*==首页伙伴↓==*/

.PartnerCont {}

.PartnerCont {
  background: #f9f9f9;
}





/*==合作伙伴列表↓==*/

.partner-list {
  border-left: 1px #ddd solid;
  border-top: 1px #ddd solid;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.partner-list li {
  float: left;
  width: 14.28%;
  border-right: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
}

.partner-list a {
  position: relative;
  display: block;
}

.partner-list a:after {
  opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #da251c;
}

.partner-list img {
  display: block;
  width: 100%;
}

.partner-list h4 {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  height: fit-content;
  text-align: center;
  color: #fff;
  font-size: 18px;
  transform: translateY(-10px);
}

.partner-list li:hover h4 {
  opacity: 1;
  transform: translateY(0px);
}

.partner-list li:hover a:after {
  opacity: 0.8
}

.PartnerHome .txt {
  position: relative;
  width: 42.88%;
  display: block;
  text-align: center;
  background: #da251c;
}

.PartnerHome .txt span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: min-content;
  display: block;
  color: #fff;
  font-size: 24px;
}





/*==关于↓==*/

.AboutInner {
  padding-bottom: 0px !important
}

.AboutInner .cooperate {
  background: url(../images/cooperatebg.jpg) no-repeat center;
  background-size: cover;
}

.AboutInner .cooperate h4 {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #d10709;
}

.AboutInner .cooperate .pic img {
  width: 100%
}

.AboutInner .cooperate li:hover h4 {
  opacity: 1;
}

.AboutInner .cooperate .spot {
  position: initial;
  margin-top: 40px
}

.AboutInner .cooperate .spot span {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
}

.AboutInner .cooperate .spot span.swiper-pagination-bullet-active {
  background: #d10709;
}

/* .AboutInner .introduce {
  padding-bottom: 160px;
  background: url(../images/introducebg.jpg) no-repeat center bottom;
} */

.AboutInner .introduce .long {
  padding: 50px;
  box-shadow: 0 0 10px #eee;
  background: #fff;
}

.AboutInner .introduce .wx {
  color: #757575;
  font-size: 15px;
  line-height: 28px;
  /* text-align: center; */
}

.AboutInner .introduce .list {
  margin: 70px 0 -20px -20px
}

.AboutInner .introduce .list li {
  float: left;
  width: 20%;
}

.AboutInner .introduce .list img {
  max-width: 100%;
  width: 100%;
}

.AboutInner .introduce .list a {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 0 20px 20px
}

.AboutInner .introduce .list .pic {
  border: 1px #eee solid;
  background: #f9f9f9;
}

.AboutInner .introduce .list li:hover .pic {
  border: 1px #0054b4 solid;
}

.AboutInner .introduce .list h4 {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.3);
}

.AboutInner .introduce .list li:hover h4 {
  bottom: 0
}

.AboutInner .advantage {
  background: #f3f3f3;
}

.AboutInner .advantage ul {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.AboutInner .advantage ul li {
  position: relative;
  z-index: 2;
  float: left;
  width: 25%;
  overflow: hidden;
}

.AboutInner .advantage ul .box {
  padding: 20px;
  background: #fff;
  height: 100%;
}

.AboutInner .advantage ul .pic {}

.AboutInner .advantage ul h4 {
  color: #212121;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.AboutInner .advantage ul p {
  color: #333;
  font-size: 14px;
  line-height: 22px;
}

.AboutInner .advantage ul li:nth-of-type(even) .box {
  background: #f9f9f9;
  /* height: 100%; */
}

.AboutInner .advantage li:hover h4 {
  color: #da251c
}

/*.AboutInner .advantage li:hover{transform:translateY(-10px)}*/
.AboutInner .culture {
  padding: 60px 0 80px;
}

.AboutInner .culture .titleBx.cen{
  margin-bottom: 36px;
}

.AboutInner .culture ul {
  margin: 0 0 -2% -2%;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start
}

.AboutInner .culture ul li {
  float: left;
  width: 48%;
  height: 100%;
  margin: 0 0 2% 2%;
  display: table;
  background: #f5f5f5;
}

.AboutInner .culture ul .pic {
  max-width: 54%;
  display: block;
  overflow: hidden;
}

.AboutInner .culture ul img {
  display: block;
  width: 380px;
  max-width: 100%;
  height: 228px;
}

.AboutInner .culture ul h4 {
  max-width: 46%;
  height: 100%;
  color: #212121;
  font-size: 24px;
  padding: 40px 0 0 50px;
  background: #f5f5f5;
}

.AboutInner .culture ul h4 span {
  color: #212121;
  font-size: 16px;
  display: block;
  margin-top: 16px;
}

.AboutInner .culture ul hr {
  display: block;
  margin: 15px 0 0 0;
  border: none;
  width: 40px;
  height: 1px;
  background: #da251c;
}

.AboutInner .culture ul .pic,
.AboutInner .culture ul h4 {
  /* display: table-cell; */
  float: left;
}

.AboutInner .culture ul li:hover .pic img {
  transform: scale(1.1);
}

.AboutInner .culture ul li:hover h4 {
  color: #da251c
}





/*==荣誉资质↓==*/

.HonorCont {
  background: url(../images/honorbg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.HonorCont .list {}

.HonorCont .list li {
  text-align: center;
}

.HonorCont .list .pic {}

.HonorCont .list h4 {
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
}

.HonorCont .list .box {
  position: relative;
  padding: 40px;
  background: rgba(238, 238, 238, 0.1);
}

.HonorCont .list .box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 20px;
  /* width:100%; */
  /* height:100%; */
  border: 1px #5a5754 dashed;
}





/*==滚动切换效果↓==*/

.Cuter {
  margin: 60px auto 0;
  position: relative;
  padding: 0 30px;
  display: table;
}

.Cuter .spot {
  position: initial;
  bottom: 25px;
  /* float: right; */
  text-align: right;
}

.Cuter .spot span {
  opacity: 1;
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  font-family: "iconfont";
  background: #fff;
}

.Cuter .spot .swiper-pagination-bullet-active {
  background: #da251c;
}

.Cuter .btn {
  top: 0px;
  color: #da251c;
  font-size: 20px;
  font-weight: bold;
  width: auto;
  height: auto;
  margin: 0px;
  background: none;
}

.Cuter .pv {
  left: 0
}

.Cuter .nt {
  right: 0
}

.Cuter .btn:hover {
  color: #ddd
}





/*==伙伴列表↓==*/

.PartnerCont .list li {}

.PartnerCont .list li a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.PartnerHome .list a:after {
  opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-10px);
  background: #da251c;
}

.PartnerCont .list h4 {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  height: fit-content;
  text-align: center;
  color: #fff;
  font-size: 18px;
  transform: translateY(10px);
}

.PartnerCont .list .pic img {
  width: 100%;
  min-height: 150px
}

.PartnerCont .list li:hover h4 {
  opacity: 1;
  transform: translateY(0px);
}

.PartnerCont .list li:hover a:after {
  opacity: 0.8;
  transform: translateY(0px);
}

.PartnerCont .spot {
  position: initial;
  margin-top: 40px
}

.PartnerCont .spot span {
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 8px !important;
  background: #808080;
}

.PartnerCont .spot span.swiper-pagination-bullet-active {
  background: #da251c;
}





/*==产品列表↓==*/

.product-list {
  margin: 0 0 -20px -20px;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.product-list li {
  /*flex-grow: 1;*/
  display: inline-block;
  width: 25%;
  margin-bottom: 20px;
  text-align: center;
}

.product-list a {
  display: block;
  margin-left: 20px;
  overflow: hidden;
  border: 1px #ddd solid;
  background: #fff;
}

.product-list .pic {
  padding-top: 100%;
}

.product-list h4 {
  color: #333333;
  font-size: 16px;
  margin: 15px 0 20px 0;
}

.product-list li:hover {}

.product-list li:hover a {
  transform: translateY(-5px);
}

.product-list li:hover h4 {
  color: #da251c
}





/*==产品详情↓==*/

.DetailCont .top {
  /*padding:60px 0 120px 0; ;border-bottom:1px #ddd solid;background: #f5f5f5;*/
}

.DetailCont .top .left {
  width: 55%;
}

.DetailCont .top .right {
  width: 40%
}

.DetailCont .top .right .title {
  color: #191919;
  font-size: 30px;
  padding-bottom: 20px;
  /* margin-bottom: 30px;
  border-bottom: 1px #ddd solid; */
}

.DetailCont .top .right .wx {
  padding: 20px;
  color: #666666;
  font-size: 14px;
  margin-bottom: 80px;
  line-height: 24px;
  -webkit-line-clamp: 7;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background: #f2f2f2;
}

.DetailCont .top .right .parts {
  margin: -50px 0 35px 0;
  overflow: hidden;
}

.DetailCont .top .right .parts h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 15px;
}

.DetailCont .top .right .parts img {
  display: block;
  float: left;
  width: 17%;
  height: 80px;
  margin-right: 2%;
  border: 2px #ddd solid;
}

.DetailCont .top .right .parts img:hover {
  border-color: #666
}

.DetailCont .top .right .tel {
  display: block;
  color: #191919;
  font-size: 22px;
  margin-bottom: 50px;
  padding: 20px 0 20px 0px;
  border-top: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
}

.DetailCont .top .right .tel i {
  float: left;
  color: #666;
  font-size: 25px;
  margin-right: 15px;
}

.DetailCont .top .right .btn {
  float: left;
  padding: 8px 40px;
  color: #fff;
  font-size: 18px;
  margin-right: 20px;
  border-radius: 40px;
  background-color: #da251c;
}

.DetailCont .top .right .btn i {
  float: left;
  margin: 3px 10px 0 0px;
  color: #fff;
  font-size: 20px;
}

.DetailCont .top .right .online {
  /* padding-left:70px; */
}

.DetailCont .top .right .download {
  color: #4c4c4c;
  background: #fff;
}

.DetailCont .top .right .btn:hover {
  color: #fff;
  background-color: #333;
}

.DetailCont .con {
  margin-top: 70px
}

.DetailCont .con .tone {
  overflow: hidden;
  margin-bottom: 50px;
  border-bottom: 1px #ddd solid;
  text-align: center;
}

.DetailCont .con .tone li {
  position: relative;
  display: inline-block;
  margin: 0 20px 0 20px;
  /*! border-left:1px #ddd solid; */
  cursor: pointer;
}

.DetailCont .con .tone li a {
  display: block;
  color: #444444;
  font-size: 20px;
  padding: 0px 0px 20px 0;
}

.DetailCont .con .tone li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: transform .5s;
  transform: scale(0, 1);
  transform-origin: right;
  background: #da251c
}

.DetailCont .con .tone li.active a,
.DetailCont .con .tone li:hover a {
  color: #da251c
}

.DetailCont .con .tone li.active a:after,
.DetailCont .con .tone li:hover a:after {
  transform: scale(1);
  transform-origin: left;
}

.DetailCont .con .long {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px #ddd solid
}

.DetailCont .con .title {
  position: relative;
  color: #333;
  font-size: 22px;
  margin-bottom: 30px;
  padding-left: 20px
}

.DetailCont .con .title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 2px;
  height: 60%;
  background: #da251c;
}

.DetailCont .con .long:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px
}

.DetailCont .con .wx {}

.DetailCont .con .wor {
  color: #393939;
  line-height: 24px;
  font-size: 15px;
}

.detailCont p {
  line-height: 2;
}

.pagecontent p {
  line-height: 2;
  font-size: 16px;
}



/*==左右图片切换↓==*/

.srllOrso {}

.srllOrso .leftPic {
  width: 80%;
  float: left;
  border: 2px #efefef solid;
  background: #fff;
}

.srllOrso .leftPic img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.srllOrso .rightPic {
  width: 20%;
  float: right;
  padding-left: 15px;
}

.srllOrso .rightPic li {
  height: 20%;
  margin-bottom: 20px;
  border: 2px #efefef solid;
  cursor: pointer;
  background: #fff;
}

.srllOrso .rightPic li img {
  display: block;
  max-width: 100%;
  height: 100%;
  margin: auto
}

.srllOrso .rightPic li.swiper-slide-thumb-active {
  border-color: #da251c;
}

.srllOrso .leftPic,
.srllOrso .rightPic {
  height: 520px;
}

.srllOrso .leftPic .look {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  height: 40px;
  text-align: center;
  transform: translateY(40px);
  background: rgba(0, 0, 0, 0.5);
}

.srllOrso .leftPic .look i {
  margin-right: 10px;
  display: inline-block;
  font-size: 20px;
}

.srllOrso .leftPic:hover .look {
  opacity: 1;
  transform: translateY(0px);
}

.srllOrso .rightPic:hover .btn {
  opacity: 1 !important;
}

.srllOrso .btn {
  opacity: 0 !important;
  left: 15px;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  margin: 0px;
  color: #fff;
  font-size: 32px;
  padding: 5px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}

.srllOrso .btn.swiper-button-disabled {
  opacity: .9
}

.srllOrso .btn.nt {
  top: auto;
  bottom: 0;
}

.srllOrso .btn:hover {
  background: rgba(0, 0, 0, 0.7)
}





/*==应用详情↓==*/

.ApplyShow .top .container {
  background: #f5f5f5
}

.ApplyShow .top .left {
  width: 45%;
  border: 1px #ddd solid;
  text-align: center;
  padding: 20px;
  background: #fff
}

.ApplyShow .top .right {
  width: 55%;
  padding: 50px;
}

.ApplyShow .top .right .title {
  color: #191919;
  font-size: 30px;
  margin-bottom: 20px;
}

.ApplyShow .top .right hr {
  width: 30px;
  height: 2px;
  margin: 0 0 0px;
  border: none;
  background: #da251c;
}

.ApplyShow .top .right .wx {
  margin-top: 20px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}

.ApplyShow .con {
  margin-top: 70px
}

.ApplyShow .con .long {
  margin-bottom: 50px;
}

.ApplyShow .con .title {
  position: relative;
  color: #333;
  font-size: 28px;
  margin-bottom: 30px;
}

.ApplyShow .con .long:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px
}

.ApplyShow .con .wx {
  color: #393939;
  line-height: 24px;
  font-size: 15px;
}

.ApplyShow .con .product {
  position: relative;
  padding: 50px 0;
}

.ApplyShow .con .product::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  width: 120%;
  height: 100%;
  background: #f5f5f5
}





/*==新闻↓==*/

.NewsListBox {
  padding-bottom: 0 !important
}

.NewsListBox .up {
  margin-bottom: 90px;
}

.NewsListBox .up .more {}

.NewsListBox .up .more {
  color: #fff;
  font-size: 12px;
  padding: 10px 30px;
  display: table;
  margin-top: 40px;
  background: #666;
}

.NewsListBox .up .more:before {
  content: "\e61f";
  font-family: "iconfont";
  line-height: 1;
  float: right;
  /* width:10px; */
  height: 10px;
  font-size: 21px;
  margin: -1px 0 0 10px;
  transition: all .4s ease-in-out;
}

.NewsListBox .up .more:hover {
  background: #da251c;
}

.NewsListBox .up .more:hover:before {
  transform: translateX(3px);
}

.NewsListBox .up .swiper-container:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: #009fe8;
}

.NewsListBox .up .spot {
  bottom: 0;
  display: table;
  width: 100%;
  left: 700px;
  /*! margin-left: 52px; */
  text-align: left;
  padding: 30px 35px 30px 50px;
  background: #da251c;
}

.NewsListBox .up .spot span {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  margin-right: 12px;
}

.NewsListBox .up .spot .swiper-pagination-bullet-active {
  background: #fff
}

.NewsListBox .up li {
  position: relative;
}

.NewsListBox .up li a {
  position: relative;
  display: block;
  height: 450px;
  padding: 50px 50px 50px 750px;
  background: #f2f2f2;
}

.NewsListBox .up li .pic {
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  width: 700px;
  height: 100%;
}

.NewsListBox .up li .pic img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.NewsListBox .up li .box {
  /*! text-align: center; */
  float: left;
  width: 100%;
  height: 100%;
}

.NewsListBox .up li .box h4 {
  width: 100%;
  font-size: 24px;
  color: #191919;
  /*! font-weight: bold; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.NewsListBox .up li .box .time {
  position: relative;
  display: block;
  color: #999;
  font-size: 12px;
  margin-top: 20px;
}

.NewsListBox .up li .box .time:before {
  content: "";
  float: left;
  margin: 10px 20px 0 0;
  width: 40px;
  height: 1px;
  background: #ccc
}

.NewsListBox .up li .box p {
  -webkit-line-clamp: 4;
  font-size: 14px;
  color: #464646;
  margin-top: 30px;
  line-height: 24px;
}

.NewsListBox .up li:hover h4 {
  color: #da251c
}

.NewsListBox .shell {
  padding: 70px 0 50px 0;
  background-color: #f3f3f3;
  overflow: hidden;
}

.NewsListBox .shell ul {
  margin: 0 0 -30px -30px;
}

.NewsListBox .shell li {
  float: left;
  width: 33.3%;
}

.NewsListBox .shell li a {
  position: relative;
  display: block;
  margin: 0 0 30px 30px;
  padding: 30px;
  overflow: hidden;
  background-color: #fff;
}

.NewsListBox .shell li a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  transition: all .5s;
  background-color: #da251c;
}

.NewsListBox .shell li a h4 {
  width: 100%;
  font-size: 16px;
  color: #191919;
  margin-top: 30px;
  ;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .4s;
}

.NewsListBox .shell li a .txt {
  -webkit-line-clamp: 2;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  margin-top: 15px;
  /*! overflow: hidden; */
  margin-bottom: 15px;
  height: 48px;
}

.NewsListBox .shell li a .pic {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
}

.NewsListBox .shell li a .pic img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all .4s;
  top: 0;
  left: 0
}

.NewsListBox .shell li a .time {
  float: left;
  margin-right: 20px;
  display: block;
  font-size: 12px;
  color: #999999;
}

.NewsListBox .shell .more {
  float: left;
  color: #999;
  font-size: 12px;
  padding: 0 0px;
  display: block;
}

.NewsListBox .shell .more:before {
  content: "";
  float: right;
  width: 10px;
  height: 7px;
  margin: 6px 0 0 10px;
  background: url(../images/line02.png) no-repeat -10px 0px;
  transition: all .4s ease-in-out;
}

.NewsListBox .shell li:hover a {
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.08);
}

.NewsListBox .shell li:hover a {
  transform: scale(1.02);
}

.NewsListBox .shell li:hover a:after {
  width: 100%;
}

.NewsListBox .shell li:hover a h4 {
  color: #da251c
}

.NewsListBox .shell li:hover .more {
  color: #da251c
}

.NewsListBox .shell li:hover .more:before {
  background-position: 0 0
}





/*==新闻详细页↓==*/

.NewsDetailBox {}

.NewsDetailBox .titleTop {
  text-align: center;
  padding: 0 0 50px 0;
  margin: 0 0 60px 0;
  border-bottom: 1px #ddd solid
}

.NewsDetailBox .tit {
  color: #000000;
  font-size: 23px;
}

.NewsDetailBox .msg {
  margin-top: 10px;
  color: #a7a7a7;
  font-size: 14px;
}

.NewsDetailBox .msg *,
.NewsDetailBox .msg span,
.NewsDetailBox .msg a {
  color: #a7a7a7;
  font-size: 14px;
}

.NewsDetailBox .msg span {
  margin: 0 5px;
}

.NewsDetailBox .msg a:hover,
.NewsDetailBox .msg .active {
  color: #da251c
}

.NewsDetailBox .msg .active {
  font-weight: bold;
}

.NewsDetailBox .share {
  height: 60px;
  border-top: 1px #aaa dotted;
  padding: 20px 0;
  margin-top: 60px;
  overflow: hidden;
}

.NewsDetailBox .share .bshare-custom {
  float: left;
}

.NewsDetailBox .share .time {
  float: left;
  margin-left: 50px;
  color: #a7a7a7;
  font-size: 14px;
  display: block;
}

.NewsDetailBox .share .return {
  float: right;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px 10px 38px;
  margin-top: -10px;
  background-color: #d2d2d2;
  background-image: url(../images/line202.png);
  background-position: 12px 15px;
  background-repeat: no-repeat;
}

.NewsDetailBox .share .return:hover {
  background-color: #da251c
}

.NewsDetailBox .pagIng {
  border-top: 1px #aaa dotted;
  border-bottom: 1px #aaa dotted;
  padding: 15px 0;
  overflow: hidden;
}

.NewsDetailBox .pagIng span {
  display: inline-block;
  color: #888888;
  font-size: 14px;
}

.NewsDetailBox .pagIng span a {
  color: #888888;
  font-size: 14px;
}

.NewsDetailBox .pagIng span a:hover {
  color: #da251c
}

.NewsDetailBox .pagIng .prev {
  float: left
}

.NewsDetailBox .pagIng .next {
  float: right
}

.NewsDetailBox .relevant {
  margin-top: 60px
}

.NewsDetailBox .relevant .tit {
  color: #333;
  font-size: 22px;
}

.NewsDetailBox .relevant .list {
  margin-top: 20px;
}

.NewsDetailBox .relevant .list li {
  float: left;
  width: 45%;
  margin: 8px 0% 8px 0;
}

.NewsDetailBox .relevant .list li:nth-of-type(even) {
  float: right;
}

.NewsDetailBox .relevant .list li .time {
  float: right;
  color: #858585;
  font-size: 14px;
}

.NewsDetailBox .relevant .list li a {
  display: block;
  color: #858585;
  font-size: 14px;
  padding-left: 15px;
  background: url(../images/arrow_02.png) no-repeat left;
  transition: all .4s ease-in-out;
}

.NewsDetailBox .relevant .list li:hover a {
  color: #da251c
}





/*==联系我们↓==*/

.ContactInner {
  padding-bottom: 0 !important;
}

/* .ContactInner .long .container{background:url(../images/contactimg.png) no-repeat bottom right;} */

.ContactInner .long {
  position: relative;
  /* width: 50%; */
  /* border:1px #ddd solid; */
  /* padding: 60px 240px 40px 50px; */
}

.ContactInner .long .titleBx {
  font-size: 30px;
}


.ContactInner .long .title {
  color: #333333;
  font-size: 26px;
}

.ContactInner .long .left {
  background: rgba(255, 255, 255, 0.5);
  width: 45%;
}

.ContactInner .long .tel {
  position: relative;
  margin-top: 25px;
  color: #333333;
  font-size: 14px;
  display: block;
}

.ContactInner .long .tel:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 32px;
  width: 10px;
  height: 3px;
  background: #da251c;
}

.ContactInner .long .tel:after {
  content: "";
  position: absolute;
  left: 13px;
  top: 32px;
  width: 25px;
  height: 3px;
  background: #da251c;
}

.ContactInner .long .tel font {
  margin-top: 30px;
  font-size: 30px;
  color: #da251c;
  display: block;
  font-weight: bold;
}

.ContactInner .long .wx {
  min-height: 156px;
  margin-top: 20px;
  color: #333333;
  font-size: 14px;
  display: block;
  line-height: 26px;
}

.contact_t table,
.contact_t table td {
  border-color: #ffffff;
  vertical-align: middle;
  height: auto;
}

.contact_t table tr {
  padding-top: 20px;
}

.contact_t table td:nth-child(2) {
  padding-left: 15px;
}

.contact_t table img {
  width: 150px;
}

.ContactInner .long .mapright {
  width: 55%;
}

.ContactInner .long .mapright .map iframe {
  max-width: 100%;
}

.ContactInner .long .consult {
  position: absolute;
  top: 100px;
  right: 60px;
}

.ContactInner .long .ewm {
  position: relative;
  color: #737373;
  font-size: 12px;
  text-align: center;
  display: block;
  line-height: 15px;
}

.ContactInner .long .ewm img {
  display: block;
  margin: 0 auto 5px;
}

.ContactInner .long .online {
  /* float:left; */
  color: #fff;
  margin-top: 15px;
  font-size: 14px;
  padding: 8px 40px;
  background: #da251c;
  display: table;
  border-radius: 20px;
  text-align: center;
}

.ContactInner .long .online:hover {
  background: #666;
}

.ContactInner .map {}

.ContactInner .map #dituContent {
  height: 500px;
  opacity: 0.8;
  /*filter: grayscale(100%);-moz-filter: grayscale(100%);-o-filter: grayscale(100%);-webkit-filter: grayscale(1);*/

}

.ContactInner .other {}

/*==联系留言↓==*/

.ContactInner .message {
  background: url(../images/messagebg02.jpg) no-repeat center;
  background-size: cover;
}

.ContactInner .message .long {
  padding: 80px;
  background: #fff;
}

.ContactInner .message .title {
  margin-bottom: 40px;
  overflow: hidden;
}

.ContactInner .message .title h2 {
  float: left;
  color: #191919;
  font-size: 24px;
}

.ContactInner .message .title .tel {
  float: right;
  margin-top: 25px;
  color: #333333;
  font-size: 26px;
  /*font-weight: bold;*/
}

.ContactInner .message .title .tel em {
  display: block;
  float: left;
  margin-right: 10px;
  margin-top: 5px;
  color: #333;
  font-size: 25px;
  font-weight: 400;
  font-family: "iconfont";
  line-height: 1
}

.ContactInner .message input {
  position: relative;
  float: left;
  width: 49.5%;
  margin-bottom: 1%
}

.ContactInner .message .block:nth-child(2n+1) {
  margin-left: 1%;
}

.ContactInner .message input,
.ContactInner .message textarea {
  padding: 15px 20px 15px 45px;
  border: 1px #ddd solid;
  background-repeat: no-repeat;
  background-position: 15px 17px;
}

.ContactInner .message textarea {
  width: 100%;
  height: 120px;
}

.ContactInner .message button {
  width: 25%;
  margin-top: 20px;
  padding: 16px 0;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  background: #666;
}

.ContactInner .message button:hover {
  background: #da251c
}

.ContactInner .message .x1 {
  background-image: url(../images/ico201.png);
}

.ContactInner .message .x2 {
  background-image: url(../images/ico202.png);
}

.ContactInner .message .x3 {
  background-image: url(../images/ico203.png);
}

.ContactInner .message .x4 {
  background-image: url(../images/ico204.png);
}

.ContactInner .message .x5 {
  background-image: url(../images/ico205.png);
}





/*==留言通用↓==*/

.MessageCon {
  background: url(../images/messagebg.jpg) no-repeat center;
  background-size: cover;
}

.MessageCon .long {
  padding: 80px;
  background: #fff;
}

.MessageCon .title {
  margin-bottom: 40px;
  overflow: hidden;
}

.MessageCon .title h2 {
  float: left;
  color: #191919;
  font-size: 24px;
}

.MessageCon .title .tel {
  float: right;
  margin-top: 25px;
  color: #333333;
  font-size: 26px;
  /*font-weight: bold;*/
}

.MessageCon .title .tel em {
  display: block;
  float: left;
  margin-right: 10px;
  margin-top: 5px;
  color: #333;
  font-size: 25px;
  font-weight: 400;
  font-family: "iconfont";
}

.MessageCon input {
  position: relative;
  float: left;
  width: 49.5%;
  margin-bottom: 1%
}

.MessageCon .block:nth-child(2n+1) {
  margin-left: 1%;
}

.MessageCon input,
.MessageCon textarea {
  padding: 15px 20px 15px 45px;
  border: 1px #ddd solid;
  background-repeat: no-repeat;
  background-position: 15px 17px;
}

.MessageCon textarea {
  width: 100%;
  height: 120px;
}

.MessageCon button {
  width: 25%;
  margin-top: 20px;
  padding: 16px 0;
  border: none;
  color: #fff;
  font-size: 14px;
  background: #666;
}

.MessageCon button:hover {
  background: #da251c
}

.MessageCon .x1 {
  background-image: url(../images/ico201.png);
}

.MessageCon .x2 {
  background-image: url(../images/ico202.png);
}

.MessageCon .x3 {
  background-image: url(../images/ico203.png);
}

.MessageCon .x4 {
  background-image: url(../images/ico204.png);
}

.MessageCon .x5 {
  background-image: url(../images/ico205.png);
}





/*==list-box 图片款 久↓==*/

.list-box {
  margin: 0 0 -10px -10px;
}

.list-box li {
  float: left;
  width: 20%;
}

.list-box li img {
  max-width: 100%;
  width: 100%;
}

.list-box li a {
  display: block;
  margin: 0 0 10px 10px;
}

.list-box li .pic {
  border: 1px #eee solid;
  background: #f9f9f9;
}

.list-box li:hover .pic {
  border: 1px #0054b4 solid;
}

.list-box li h4 {
  color: #666;
  font-size: 15px;
  text-align: center;
  padding: 12px 0;
}

.list-box li:hover h4 {
  color: #0054b4;
}

.list-box.lx5 li {
  width: 20%;
}



/*==底部==*/
.footer {
  padding: 50px 0 70px 0;
  background: url(../images/footbg.jpg) no-repeat center;
  background-size: cover;
}

.footer .left {
  width: 55%;
}

.footer .nav {
  margin-bottom: 50px;
}

.footer .nav li {
  float: left;
}

.footer .nav li a {
  color: #e9e9e9;
  font-size: 16px;
  margin-right: 50px;
}

.footer .nav li a:hover {
  color: #ddd;
}

.footer .logo {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  display: inline-block;
  /* float:left; */
  margin-right: 50px;
}

.footer .logo img {
  width: 150px;
}

.footer .wx {
  position: relative;
  display: inline-block;
  padding-left: 200px;
  color: #e9e9e9;
  font-size: 13px;
  line-height: 30px;
}

.footer .wx a {
  color: #e9e9e9;
}

.footer .wx a:hover {
  color: #fff;
}

.footer .right {
  color: #f9f9f9;
  font-size: 13px;
  text-align: right;
}

.footer .right .tel {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-top: 5px;
}

.footer .right .tel b {
  font-size: 28px;
  font-weight: bold;
  display: block;
}

.footer .right .tel font {
  display: block;
  font-size: 20px;
}

.footer .right .online i {
  display: block;
  float: left;
  /* color:#fff; */
  font-size: 24px;
  margin-right: 5px;
}

.footer .right .online {
  display: table;
  float: right;
  margin-top: 20px;
  border: 1px #fff solid;
  padding: 8px 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.footer .right .online:hover {
  color: #666;
  background: #fff;
}

.footer .right .online:hover i {
  color: #666;
}

.footer .ewm {
  margin-left: 60px;
  color: #666;
  font-size: 14px;
  text-align: center;
  padding: 5px;
  background: #fff;
}

.footer .ewm img {
  display: block;
  margin-bottom: 2px;
  width: 150px;
}

.footer .link {
  margin-top: 40px;
  padding-top: 35px;
  border-top: 1px #555 solid;
}

.footer .link h3 {
  color: #ffff;
  font-size: 14px;
  float: left;
}

.footer .link h3 font {
  color: #b00700;
  margin-left: 5px;
}

.footer .link a {
  color: #dfdfdf;
  font-size: 14px;
  display: inline-block;
  color: #999;
  padding: 0 15px;
  line-height: 9px;
  border-right: 1px #999 dotted;
}

.footer .link a:last-child {
  border: none;
}

.footer a:hover {
  color: #fff;
}