:root {
  --main-color:#023d77;
  --sub-color:#ca0003 ;
}

ul, li {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
}

.thumb {
  position: relative;
  overflow: hidden;
}

.thumb img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
}

.title {
  color: var(--main-color);
  margin-bottom: 35px;
}

.content {
  padding: 45px 0 60px;
}

header {
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 999;
  background-color: #ffffff;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 90px;
}
header nav .menu li {
    padding: 0 10px;
    margin: 0 5px;
    position: relative;
}
header nav .menu li:nth-child(7)
{
    margin: 0 0 0 5px;
    padding: 0 0 0 10px;
}
header nav .menu li a {
  color: var(--main-color);
  font-size: 18px;
}
header nav .menu li .drop-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding-left: 0;
  z-index: 55;
  background: #fff;
  -webkit-box-shadow: 1px 1px 8px #ccc;
          box-shadow: 1px 1px 8px #ccc;
  display: none;
  line-height: 40px;
}
header nav .menu li .drop-menu li {
  margin: 0;
  background: #fff;
}
header nav .menu li .drop-menu li a {
  color: var(--main-color) !important;
}
header nav .menu li .drop-menu li:hover a {
  color: var(--sub-color) !important;
}
header nav .menu li:hover a {
  color: var(--sub-color);
}
header nav .menu i {
  display: none;
}
header nav span i {
  font-size: 30px;
}

.breadmenu {
  border-bottom: 1px solid #e5e5e5;
}
.breadmenu .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0;
}
.breadmenu .content .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadmenu .content .left ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
}
.breadmenu .content .left ul a {
  padding: 0 10px;
  color: #2a2a2a;
}
.breadmenu .content .left ul a:hover {
  color: var(--main-color);
  text-decoration: underline;
}
.breadmenu .content .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 60px;
}
.breadmenu .content .right ul li {
  position: relative;
  margin-left: 20px;
}
.breadmenu .content .right ul li a {
  color: #2a2a2a;
}
.breadmenu .content .right ul li.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -9px;
  background-color: #023d77;
}
.breadmenu .content .right ul li.active a {
  color: var(--main-color);
}

footer {
  background-color: #2a2a2a;
}
footer .bottom_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding: 8px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .bottom_pc p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  float: left;
}
footer .bottom_pc span {
  color: #fff;
  font-size: 16px;
}
footer .bottom_pc a {
  color: #fff;
  font-size: 16px;
}


.col-lt{ width:60%; text-align:justify;}
.col-lt-title{ font-size:36px;}
.col-lt-entitle{ font-size:18px; line-height:36px; margin-bottom:25px; padding-bottom:10px; border-bottom:#d3d3d3 dashed 1px;}
.col-rl{ width:40%;}

@media (max-width: 1230px) {
    header nav .menu li a {
        color: var(--main-color);
        font-size: 16px;
    }
}
@media (max-width: 1200px) {
    .col-lt {
        width: 100%;
        text-align: justify;
    }
    .col-lt-title {
        font-size: 30px;
    }
    .col-lt-entitle {
        font-size: 16px;
    }
    .col-rl {
        width: 100%;
        margin-top: 10px;
    }
    .mob
    {
        display:block !important;
    }
    .mob ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      line-height: 60px;
    }
    .mob ul li {
      position: relative;
      margin-left: 6px;
    }
    .mob ul li a {
      color: #2a2a2a;
      font-size: 16px;
    }
    .mob ul li.active::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      left: 0;
      bottom: 0;
      background-color: #023d77;
    }
    .mob ul li.active a {
      color: var(--main-color);
    }
    .col-md-3 {
        width: 50% !important;
        margin: 0px;
        float: left;
    }
    .col-xs-12 {
        padding-right: 7px !important;
        padding-left: 5px !important;
        padding-bottom: 0px !important;
        padding-top: 10px !important;
    }
    .techno_flipbox .techno_flipbox_font, .techno_flipbox .techno_flipbox_back {
        min-height: 242px !important;
    }
    .techno_flipbox .flipbox_title h3 {
        font-size: 20px !important;
    }
    .anliquanping li {
        width: 48% !important;
    }
    .anliquanping li img {
        height: auto !important;
    }
    .anliquanping .c_box a.c_pic p.name {
        font-size: 16px !important;
    }
    .casess ul li .img {
        width: 100% !important;
    }
    .casess ul li .text {
        width: 100% !important;
        padding: 20px 0px 0px 0px !important;
    }
    .casess ul li .img {
        height: auto !important;
    }
    .case-detail-left {
        padding: 40px 10px !important;
    }
    .case-detail-right {
        padding-left: 0px !important;
    }
    .case-detail-prev h4 {
        font-size: 16px !important;
        line-height: 25px !important;
    }
    .case-detail-prev h4 a {
        font-size: 16px !important;
    }
    .case-detail-left-title h5 span {
        padding: 0 5px !important;
    }
    .anliquanpings li {
        width: 47% !important;
        margin-top: 1.5% !important;
        margin-right: 1.5% !important;
        margin-left: 1.5% !important;
    }
    .anliquanpings li img {
        height: 217px !important;
    }
    footer .bottom p {
        font-size: 14px !important;
    }
    .index-case {
        height: auto !important;
    }
        .h5, h5 {
        font-size: 1rem !important;
    }
    .tit-box .tit {
        font-size: 34px !important;
        line-height: 45px !important;
    }
    header nav .menu {
        line-height: 60px !important;
    }
    footer .bottom span {
        color: #fff;
        font-size: 14px !important;
    }
    footer .bottom a {
        color: #fff;
        font-size: 14px !important;
    }
    header nav img
    {
        max-width: 80%;
    }
    header nav .menu li {
        padding: 0 7px !important;
    }
    footer .bottom_pc 
    {
        display:none;
    }
    footer
    {
        background-color: #2a2a2a;
        width:100%;
        float:left;
        display:block;
    }
    footer .bottom_mob
    {
        padding:20px 0px;
        float: left;
        display:block !important;
    }
    footer .bottom_mob p {
      color: #fff;
      font-size: 16px;
      text-align:center;
      width:100%;
      float:left;
      line-height: 1.8;
    }
    footer .bottom_mob span {
      color: #fff;
      font-size: 16px;
    }
    footer .bottom_mob a {
      color: #fff;
      font-size: 16px;
    }
    .product-details .details-box1 .details-box1-des img
    {
        width:100% !important;
        height:auto !important;
    }
    .anliquanping li {
        height: 137px !important;
    }
    .anliquanping .c_box a.c_pic p.pic {
        height: 135px !important;
    }
    .screen img
    {
        width:100% !important;
        height:auto !important;
    }
}

@media (max-width: 960px) {
    footer .bottom {
            display: block !important;
        }
}
.mob
{
    display:none;
}


.bottom-left {
    width: 82%;
    float: left;
    text-align: left;
}
.bottom-right {
    float: left;
    text-align: right;
}
footer .bottom_mob
{
    display:none;
}
.nodata
{
    width:100%;
    float:left;
    text-align:center;
    font-size:16px;
    line-height:26px;
    margin-top:100px;
    margin-bottom:50px;
}
@media (max-width: 1350px) {
 .breadmenu .content .right ul li {
    margin-left: 20px !important;
   }
}
@media (max-width: 1300px) {
    .bottom-left {
        width: 83%;
    }
}



.zcfdcd {
  position:fixed;
  right: 25px;
  margin-right:0px;
  top:40%;
  z-index:9999;
}
.zcfdcd .btn{
  width:48px;
  height:48px;
  display: block;
  margin-bottom: 4px;
  cursor:pointer;
  position:relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 80px;
  padding: 0px;
  line-height: 48px;
  border: none;
  align-items: center;
  display: flex;
}


.zcfdcd .btn .yctb{display: flex;
    width: 2pc;
    height: 2pc;
    line-height: 2pc;
    border: none;
    padding: 2px 2px;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
    fill: rgb(255, 255, 255);
    align-items: center;
    justify-content: center;}

.zcfdcd .btn .yctb .icon_tb {
    width:100%;
   height:auto;
  display: inline-block;
  }

.zcfdcd .btn-wx .yctb{
  width:2pc;
   height: 1.6pc;
    line-height:1.6pc;}





.zcfdcd .btn-ly{background-color: #0e6cb5;}

.zcfdcd .btn-ly .yctb{
  width:1.6pc;
   height: 1.6pc;
    line-height:1.6pc;}


.zcfdcd .btn-ly:hover{
    background-color: #333333;
}



.zcfdcd a.btn-ly,.izl-rmenu a.btn-ly:visited{
  text-decoration:none;

}
.zcfdcd .btn-qq{background-color: #0e6cb5;}
.zcfdcd .btn-qq:hover{
    background-color: #333333;
}

.zcfdcd .btn-qq .yctb{
  width:1.6pc;
   height: 1.6pc;
    line-height:1.6pc;}



.zcfdcd a.btn-qq,.izl-rmenu a.btn-qq:visited{background-color: #0e6cb5;}
.zcfdcd .btn-wx{background-color: #0e6cb5;}
.zcfdcd .btn-wx:hover{
    background-color: #0e6cb5;
}
.zcfdcd .btn-wx .pic{
  position:absolute;
  left:-130px;
  top:-65px;
  display:none;
  width:130px;
  height:130px;
}
.zcfdcd .btn-phone{background-color: #0e6cb5;}


.zcfdcd .btn-phone .yctb{
  width:1.6pc;
   height: 1.6pc;
    line-height:1.6pc;}
.zcfdcd .btn-phone:hover{
    background-color: #333333;
}
.zcfdcd .btn-phone .phone{
background-color: #0e6cb5;
  position:absolute;
  width:auto;
  left:-100%;
  top:0px;
  line-height:48px;
  color:#FFF;
  font-size:18px;
  text-align:center;
  display:none;
}
.zcfdcd .btn-phone .phone.dh {background-color: #333333;position: absolute;  width:200px;
  left:-200px;top: 4px;line-height: 40px;color: #FFF;padding: 0px 0px;font-size: 15px;text-align: center;border-radius: 100px;}

.zcfdcd .btn-phone .phone a{

  color:#FFF;
}
.zcfdcd .btn-top{
background-color: #333333;
  display:none;
  padding-top: 6px;
}
.zcfdcd .btn-top:hover{
     background-color: #0e6cb5;
}


.s_title {
    line-height: normal;
    font_radio: 2;
    display-radio: 1;
    text-align: center;
    position: absolute;
    width: 300px;
    top: 42%;
    left: 50%;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    font-size: 60px;
    color: rgba(255,255,255,1);
    font-weight: bold;
    transform: translate(-55%,-50%);
    text-shadow: 6px 6px 6px #000;
}