/*! html5 boilerplate v7.1.0 | mit license | https://html5boilerplate.com/ */

/* main.css 1.0.0 | mit license | https://github.com/h5bp/main.css#readme */
/*
 * what follows is the result of much research on cross-browser styling.
 * credit left inline and big thanks to nicolas gallagher, jonathan neal,
 * kroc camen, and the h5bp dev community and team.
 */

 
/* ==========================================================================
   base styles: opinionated defaults
   ========================================================================== */

   html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * a better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   browser upgrade prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}




 /* ==========================================================================
   author's custom styles
   ========================================================================== */
















 /* ==========================================================================
   helper classes
   ========================================================================== */

/*
 * hide visually and from screen readers
 */

 .hidden {
  display: none !important;
}

/*
* hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. for long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

/*
* extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/*
* hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* clearfix: contain floats
*
* for modern browsers
* 1. the space content is one way to avoid an opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. the use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

 
/* ==========================================================================
   example media queries for responsive design.
   these examples override the primary ('mobile first') styles.
   modify as content requires.
   ========================================================================== */

   @media only screen and (min-width: 35em) {
    /* style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* style adjustments for high resolution devices */
}

 
/* ==========================================================================
   print styles.
   inlined to avoid the additional http request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

   @media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * printing tables:
     * http://css-discuss.incutio.com/wiki/printing_tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


/*全局样式*/
html,body{
  height: 100%;
}

body{
  font-size: 14px;
  line-height: 1.50;
  color: #333;
  background-color: #fff;
  position: relative;
}

a,a:hove{
  text-decoration: none !important;
}

section{
  background-color: #fff;
  padding: 60px 0;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px){
  .container {
    width: 750px;
  }
}

@media (min-width: 992px){
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px){
  .container {
    width: 1200px;
  }
}

/*全局样式结束*/

header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar-nav{
  float: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.navbar-collapse{
  padding: 0;
}

.container-fluid{
  padding: 0;
}

header .col-md-12{
  padding: 0;
}

.navbar-default{
  background: none;
  border:none;
}

.navbar-nav li{
  width: 16.6667%;
  text-align: center;
  padding: 12px 0 20px;
  z-index: 1;
}

.navbar-default .nav>li>a{
  display: block;
  padding: 0;
  font-size: 16px;
  color: #fff;
  line-height: 18px;
  border-right: 1px rgba(255,255,255,0.2) solid;
  box-sizing: border-box;
}

.navbar-default .nav>li:first-child a{
  border-left: 1px rgba(255,255,255,0.2) solid;
}

.navbar-default .nav>li>a:hover{
  color: #0094dc;
  font-weight: bold;
}

.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{
  color: #0094dc;
  font-weight: bold;
  background: none;
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover{
  color: #0094dc;
  font-weight: bold;
  background: none;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover{
  color: #0094dc;
  font-weight: bold;
  background: none;
}

.nav>li{
  position: static;
}

.dropdown-menu{
  top: 94%;
}

.navbar-nav>li>.dropdown-menu{
  display: none;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background: none;
}

.navbar-nav>li>.dropdown-menu li{
  width: auto;
}

.open>.dropdown-menu{
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background: none;
}

.dropdown-menu>li>a:hover{
  background: none;
  letter-spacing: 1px;
  color: #0193dc;
}

.navbg{
  position: absolute;
    width: 100%;
    height: 48px;
    background: rgba(255,255,255,0.95);
    z-index: -1;
    top: 0;
    left: -29.3%;
    box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.1);
}

.navbar{
  margin-bottom: 0;
}

.navbar-default .nav>.leenavhide{
  display: none;
}

header .col-md-12:first-child{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.dropdown-menu{
  font-size: 16px;
  box-shadow: none;
  border: none;
}

.top_tel{
  font-size: 14px;
  color: #fff;
  margin-top: 35px;
}

.top_tel em{
  font-size: 20px;
  color: #0893d6;
}


.logo{
  margin: 13px 0 25px;
}

.navbar-fixed-top{
  transition: all 0.5s;
  background: rgba(0,0,0,0.85);
}

.banner {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.banner .swiper-button-prev{
  background:url(/uploads/image/tpcimg/banner_left.png) no-repeat;
    left: 160px;
    right: auto;
    width: 53px;
    height: 53px;
}

.banner .swiper-button-next{
  background:url(/uploads/image/tpcimg/banner_right.png) no-repeat;
    right: 160px;
    width: 53px;
    height: 53px;
}

.banner .swiper-pagination-bullet{
  width: 21px;
  height: 21px;
  background: none;
  opacity: 1;
  background: url(/uploads/image/tpcimg/banner_btn.png) no-repeat center center;
  margin: 0 8px;
}

.banner .swiper-pagination-bullet-active{
  background:url(/uploads/image/tpcimg/banner_btn_active.png) no-repeat;
  width: 21px;
  height: 21px;
}

#index{
  position: relative;
  padding: 0;
}

.index::after{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.2);
  content: "";
}

.index .wap{
    display: none;
}

.index .pc{
    display: block;
}

.index_xl .col-md-12{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
}

.index_xl .xl{
  width: 33.33%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-right: 1px #d9d9d9 solid;
  cursor: default;
  position: relative;
}

.index_xl .xl:first-child{
  border-left: 1px #d9d9d9 solid;
}

.index_xl .xl h1{
  font-weight: bold;
  font-size: 24px;
  color: #333;
  padding: 0;
  margin: 0;
  text-align: left;
}

.index_xl .xl p{
  font-size: 14px;
  color: #999;
  letter-spacing: 1px;
  margin-top: 10px;
}

.index_xl .xl .xl_img{
  margin-right: 30px;
}

.index_xl .xl .xl_text{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index_xl{
  border-bottom: 2px #d9d9d9 solid;
  background: #f7f7f7;
  padding: 40px 0;
}

.index_xl .xl span{
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #0282bf;
  bottom: -42px;
  display: none;
}

.index_xl .xl:hover span{
  display: block;
}

.lee01_swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.index_4 .col-md-12{
  padding: 0;
  position: relative;
}

.index_4 .swiper-pagination{
  left:50%;
  margin-left: -60px;
  bottom: -50px;
}

.index_4 .swiper-pagination-bullet{
  width: 44px;
  height: 4px;
  border-radius: 0;
  margin: 0 8px;
}

.index_4_text{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  transition: all 0.5s;
}

.index_4_text div{
  font-size: 18px;
  color: #fff;
  line-height: 27px;
}

.index_4_text .bt01{
  text-align: center;
  line-height: 40px;
}

.index_4_text span{
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
  display: block;
}

.index_4_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4687af;
  opacity: 0;
  transition: all 0.5s;
}

.index_4_text img{
  opacity: 0;
  transition: all 0.5s;
}
/**
.lee01_swiper-container .swiper-slide:hover .index_4_bg{
  opacity: 0.6;
}

.lee01_swiper-container .swiper-slide:hover .index_4_text img{
  opacity: 1;
}

.lee01_swiper-container .swiper-slide:hover .index_4_text{
  height: 100%;
  padding-top: 30px;
  padding-left: 16px;
}
*/
.lee01_swiper-container .swiper-slide:hover .index_4_text .bt01{
 /** text-align: left;
  line-height: unset;
  */
  background-color:#0094dc
}

.index_4{
  background: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 100px;
}

.index_case table{
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.index_case table tr{
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
}

.index_case table td{
  border:1px #cecece solid;
  padding: 40px;
  width: 33.33%;
  float: left;
}

.index_case .bt{
  font-size: 18px;
  color: #333;
  margin: 20px 0 15px;
  overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index_case a{
  text-decoration: none;
}

.index_case .time,.index_case .add{
  font-size: 14px;
  color: #999;
  line-height: 22px;
}

.index_case .time{
  display: none;
}

.index_case .index_case_img{
  overflow: hidden;
  max-height: 155px;
}

.index_case table td img{
  transition: all 0.6s
}

.index_case table td:hover img{
  transform: scale(1.2);
}

.index_case table td:hover{
  border:1px #0193dc solid;
}

section h1{
  font-size: 30px;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  padding: 0;
  margin:0;
  margin-bottom: 56px;
}

section h1 span{
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0193dc;
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -30px;
}

.index_case{
  padding: 60px 0;
}

.index_about h1{
  font-size: 30px;
  font-weight: bold;
  color: #000;
  position: relative;
  padding: 0;
  margin:0;
  margin-bottom: 68px;
  text-align: left;
}

.index_about h1 span{
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0193dc;
  position: absolute;
  bottom: -18px;
  left: 0;
  margin-left: 0;
}

.index_about .col-md-7,.index_about .col-md-5{
  padding: 0;
}

.index_about p{
  font-size: 14px;
  color: #999;
  padding-right: 50px;
  line-height: 24px;
}

.index_about a{
  display:block;
  text-decoration: none;
  width: 173px;
  height: 48px;
  border: solid 1px #007fde;
  font-size: 14px;
  color: #007fde;
  line-height: 48px;
  text-align: center;
  margin-top: 40px;
}

.index_about .index_img{
  text-align: right;
}

.index_about .index_img img{
  display: inline;
}

.index_about{
  background: url(/uploads/image/tpcimg/index_about_bg.png) no-repeat;
  padding: 80px 0 100px;
}

.index_news .col-md-12{
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  float: none;
}

.index_news .index_nwes_box{
  width: 31.667%;
  padding-bottom: 40px;
  border-bottom: 2px #ebebeb solid;
  transition: all 0.5s;
  cursor: default;
}

.index_news .index_news_img{
  width: 100%;
  height: 195px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.index_news .index_news_img span{
  display: block;
  width: 85px;
  height: 27px;
  background: url(/uploads/image/tpcimg/index_news_bg.png) no-repeat;
  position: absolute;
  right: 20px;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s;
}

/*.index_news .index_news_text{
  display: flex;
  flex-direction: row;
}*/

.index_news .time{
  border: solid 1px #d0d0d0;
  text-align: center;
  padding: 10px 15px;
  float: left;
  margin-right: 26px;
}

.index_news .time .time1{
  font-size: 24px;
  font-weight: bold;
  color: #666;
}

.index_news .time .time2{
  font-size: 14px;
  color: #999;
}

.index_news h5{
  font-size: 16px;
  color: #333;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.index_news p{
  font-size: 14px;
  color: #999;
  line-height: 23px;
}

.index_news .index_nwes_box:hover{
  border-bottom: 2px #0193dc solid;
}

.index_news .index_nwes_box:hover .index_news_img span{
  opacity: 1;
}

.index_news{
  padding: 60px 0;
}

.index_news a{
  text-decoration: none;
}

.index_news .index_news_btn a{
  display: block;
  width: 208px;
  height: 48px;
  border: solid 1px #007fde;
  font-size: 14px;
  color: #007fde;
  line-height: 48px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
}

footer{
  background: #21242b;
  padding-top: 40px;
}

footer .row{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .row::after,footer .container::after{
  display: none;
}

footer .row::before,footer .container::before{
  display: none;
}

footer dt{
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

footer dd,footer dd a{
  font-size: 13px;
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  line-height: 30px;
}

footer dd a:hover{
  text-decoration: none;
  opacity: 1;
  color: #fff;
}

.foot_link{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 30px;
}

.foot_wx p{
  font-size: 14px;
  letter-spacing: 1px;
  color: #e6e6e6;
  text-align: center;
  margin-top: 18px;
}

.lee_foot_2{
  width: 16%;
}

footer .container-fluid{
  border-top: 1px #3b3d42 solid;
}

footer .container-fluid .row{
  max-width: 1200px;
  margin: 0 auto;
}

footer .container-fluid .row .col-md-6,footer .container-fluid .row .col-md-6 a{
  font-size: 12px;
  letter-spacing: 1px;
  color: #fafeff;
  text-decoration: none;
  padding: 0;
  line-height: 66px;
}

footer .container-fluid .row .col-md-6:last-child{
  text-align: right;
}

footer .container-fluid .row .col-md-6 a{
  margin: 0 20px;
}

footer .container-fluid .row .col-md-6 a:last-child{
  margin-right: 0;
}

.leebanner{
  padding: 0;
}

.leebanner img{
  width: 100%;
}

.pro{
  padding-top: 60px;
}

.pro .col-md-12,.pro .col-md-7,.pro .col-md-5{
  padding: 0;
}

.pro .col-md-12{
  background-size: 100% 100%;
  display: flex;
  margin-bottom: 40px;
}

.probg .col-md-12:nth-child(2){
  background: url(/uploads/image/tpcimg/uwbbg.png) no-repeat center center;
}

.probg .col-md-12:nth-child(3){
  background: url(/uploads/image/tpcimg/lorabg.png) no-repeat center center;
}

.probg .col-md-12:nth-child(4){
  background: url(/uploads/image/tpcimg/rfidbg.png) no-repeat center center;
}

.pro .col-md-5{
  background: rgba(41,152,208,0.85);
  padding: 70px 55px;
}

.pro .col-md-5 h2{
  padding: 0;
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 15px;
}

.pro .col-md-5 span{
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 30px;
}

.pro .col-md-5 p{
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 40px;
}

.pro .col-md-5 a{
  display: block;
  width: 150px;
  height: 34px;
  border: solid 1px #ffffff;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 34px;
  text-decoration: none;
}

.pro .col-md-7{
  align-self: center;
}

.pro .col-md-7 img{
  margin: 0 auto;
}

.pos{
  padding: 0;
}

.leenav{
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 30px;
  background: url(/uploads/image/tpcimg/home.png) no-repeat 5px center;
  font-size: 14px;
  color: #666;
  border-bottom: 1px #cbcbcb dashed;
}

.leenav a{
  color: #666;
  text-decoration: none;
  margin: 0 5px;
}

.proxl .col-md-12{
  background: none;
  display: flex;
  justify-content: space-between;
}

.proxl .col-md-12 .lee4{
  position: relative;
}

.proxl .col-md-12 .lee4 .bt{
  position: absolute;
  width: 300px;
  background-color: #ffffff;
  box-shadow: 0px 4px 32px 0px rgba(0, 47, 95, 0.13);
  top: -45px;
  left: 50%;
  margin-left: -150px;
  padding: 20px 0;
}

.proxl .col-md-12 .lee4 .bt h2{
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 22px;
  letter-spacing: 1px;
  color: #333333;
  margin-bottom: 5px;
}

.proxl .col-md-12 .lee4 .bt span{
  font-size: 12px;
  letter-spacing: 1px;
  color: #999999;
  text-align: center;
  display: block;
}

.proxl h1{
  margin-bottom: 100px;
}

.xlcpbtn{
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.xlcpbtn a{
  display: block;
  width: 130px;
  height: 40px;
  border: solid 1px #0193dc;
  font-size: 16px;
  letter-spacing: 1px;
  color: #0193dc;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  margin: 0 10px;
}

.xlcpbtn a.active,.xlcpbtn a:hover{
  background-color: #0193dc;
  color: #fafafa; 
}

.prolist .col-md-12{
  background: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prolist .col-md-12 .lee3{
  width: 23.75%;
  border: solid 1px #d9d9d9;
  margin-bottom: 30px;
  cursor: default;
  transition: all 0.5s;
}

.prolist .col-md-12 .lee3 .proimg{
  width: 100%;
  height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.prolist .col-md-12 .lee3 .proimg img{
  margin: 0 auto;
  max-width: 100%;
  transition: all 0.5s;
}

.prolist .col-md-12 .lee3 .probt{
  width: 100%;
  line-height: 58px;
  font-size: 14px;
  color: #333;
  text-align: center;
  background: #e5e5e5;
  transition: all 0.5s;
}

.prolist .col-md-12 .lee3 a{
  text-decoration: none;
}

.prolist .col-md-12 .lee3:hover{
  border: solid 1px #0193dc;
}

.prolist .col-md-12 .lee3:hover .probt{
  background: #0193dc;
  color: #fff;
}

.prolist .col-md-12 .lee3:hover .proimg img{
  transform: scale(1.2)
}

.hezuo .col-md-12{
  background: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hezuo .col-md-12 .lee2{
  width: 19%;
  height: 120px;
  border: solid 1px #e3e3e3;
  align-self: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hezuo .col-md-12 .lee2 img{
  width: auto;
  margin: 0 auto;
}

.jiejue .col-md-12{
  background: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.jiejue .col-md-12 .lee4{
  width: 32.5%;
  position: relative;
  margin-bottom: 30px;
  max-height: 350px;
  overflow: hidden;
}
.jiejue .col-md-12 .lee4_last{
  width: 32.5%;
  margin:0;
  padding:0;
  height:0;
}
.jiejue .col-md-12 .lee4 .leetext{
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  overflow: hidden;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s;
}

.jiejue .col-md-12 .lee4 .leetext h5{
  font-size: 16px;
  color: #fff;
  padding: 0;
  margin: 0;
  text-align: center;
}

.jiejue .col-md-12 .lee4 .leetext p{
  font-size: 12px;
  padding: 0;
  margin: 0;
  line-height: 24px;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0;
  text-align: center;
  display: none;
}

.jiejue .col-md-12 .lee4:hover .leetext{
  height: 100%;
}

.jiejue .col-md-12 .lee4:hover .leetext h5{
  margin-bottom: 30px;
}

.jiejue .col-md-12 .lee4:hover .leetext p{
  display: block;
  opacity: 0.8;
}

.newslist ul,.newslist li{
  padding: 0;
  margin: 0;
  list-style: none;
}

.newslist li{
  display: flex;
  padding: 28px;
  cursor: default;
  transition: all 0.5s;
}

.newslist .newsimg{
  width: 25%;
  max-height: 140px;
  overflow: hidden;
}

.newslist .newstext{
  width: 60%;
  padding-left: 28px;
}

.newslist .newstime{
  width: 15%;
}

.newslist .newstext h5{
  font-size: 16px;
  letter-spacing: 1px;
  color: #202020;
  margin-bottom: 28px;
  transition: all 0.5s;
}

.newslist .newstext p{
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #838383;
}

.newslist .newstime{
  font-size: 22px;
  letter-spacing: 1px;
  color: #949393;
  text-align: right;
  background: url(/uploads/image/tpcimg/newsbg.png) no-repeat 85% 75%;
  transition: all 0.5s;
}

.newslist .newstime span{
  display: block;
  margin-top: 12px;
}

.newslist li:hover{
  box-shadow: 0px 3px 16px 0px rgba(192, 192, 192, 0.2);
}

.newslist li:hover .newstext h5{
  letter-spacing: 1px;
  color: #0193dc;
}

.newslist li:hover .newstime{
  letter-spacing: 1px;
  color: #0193dc;
}

.newslist a{
  text-decoration: none;
}

.people ul,.people li{
  padding: 0;
  margin: 0;
  width: 100%;
}

.people li div{
  width: 20%;
  font-size: 14px;
  color: #666;
}

.people li div:first-child{
  font-size: 16px;
  color: #333;
  padding-left: 20px;
  position: relative;
}

.people li div:nth-child(5){
  text-align: right;
  padding-right: 18px;
  color: #0193dc; 
  background: url(/uploads/image/tpcimg/people.png) no-repeat right 5px;
}

.people li div:first-child span{
  display: block;
  width: 3px;
  height: 100%;
  background-color: #0193dc;
  position: absolute;
  left: 0;
  top: 0;
}

.people li{
  padding-top: 30px;
  padding-bottom: 15px;
  border-bottom: dashed 1px #d0d0d0;
  display: flex;
  flex-wrap: wrap;
} 

.people dl{
  width: 100%;
  background: #f6f6f6;
  padding: 30px 50px;
  margin-top: 10px;
  overflow: hidden;
  transition: all 0.5s;
  display: none;
}

.people dl dt{
  font-size: 14px;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 10px;
}

.people dl dd{
  font-size: 14px;
  letter-spacing: 1px;
  color: #666;
  line-height: 24px;
}

.people dl .meail{
  width: 100%;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.people dl .meail .leeclose{
  padding: 0;
  color: #0193dc;
  cursor: default;
}

.newcontent h2{
  padding: 0;
  margin: 0;
  font-size: 20px;
  letter-spacing: 1px;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
}

.newcontent span{
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #999999;
  text-align: center;
}

.newcontent .content{
  margin-top: 40px;
  padding-bottom: 50px;
  border-bottom: solid 1px #f4f4f4;
  margin-bottom: 20px;
}

.newcontent .content img{
  margin: 0 auto;
  max-width: 100%;
}

.newcontent .content p{
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #666666;
  text-indent: 2em
}

.newcontent .leepre a,.newcontent .leenex a{
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 1px;
  color: #333333;
  text-decoration: none;
}

.newcontent .leepre a:hover,.newcontent .leenex a:hover{
  color: #0193dc;
}

.newcontent .leenex span{
  display: block;
  width: 100px;
  height: 40px;
  background-color: #0193dc;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fafafa;
  text-align: center;
  line-height: 40px;
  float: right;
  cursor: default;
}

.newcontent .content span{
  text-align: left;
  color: #373737;
  font-weight: bold;
}

.about .col-md-12{
  background: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}

.about .imgbox{
  width: 32%;
}

.wenhua{
  background: #f7f7f7 url(/uploads/image/tpcimg/wenhuabg.png) no-repeat center center;
}

.wenhua .leeleewenhua::after{
  content: "";
  display: block;
  clear: both;
}

.wenhua .leeleewenhua{
  background: url(/uploads/image/tpcimg/wenhua1.png) no-repeat center center;
}

.wenhua h1{
  text-align: left;
}

.wenhua h1 span{
  left: 0;
  margin-left: 0;
}

.wenhua .col-md-12,.wenhua .col-md-3{
  padding: 0;
}

.wenhua .col-md-12{
  display: flex;
  justify-content: space-between;
}

.wenhua .col-md-12 .col-md-3:first-child{
  text-align: right;
  padding-left: 60px;
}

.wenhua .col-md-12 .col-md-3:last-child{
  padding-right: 60px;
}

.wenhua .col-md-12 .col-md-3 h5{
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}

.wenhua .col-md-12 .col-md-3 p{
  font-size: 14px;
  color: #666;
  line-height: 22px;
}

.wenhua .col-md-12{
  margin-bottom: 230px;
}

.wenhua .col-md-12:last-child{
  margin-bottom: 0px;
}

.linian .col-md-12{
  padding:0;
  display: flex;
  justify-content: space-between;
}

.linian .col-md-12 .lee3{
  width: 23.75%;
  overflow: hidden;
  position: relative;
}

.linian .col-md-12 .lee3 h2{
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  width: 100%;
  text-align: center;
  line-height: 56px;
  position: absolute;
  bottom: 0;
}

.zu{
  background: #fafafa url(/uploads/image/tpcimg/zu.png) no-repeat center center;
}

.procontent .col-md-8,.procontent .col-md-4{
  padding:0;
}

.leeprocontent{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.leeprocontent .leeproimg{
  width: 300px;
  height: 265px;
  border: solid 1px #d9d9d9;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.leeprocontent .leeproimg img{
  margin: 0 auto;
}

.leeprocontent .leeprotext{
  width: 455px;
}

.leeprocontent .leeprotext h2,.leeprocontent .leeprotext h3,.leeprocontent .leeprotext p{
  padding: 0;
  margin: 0;
}

.leeprocontent .leeprotext h2{
  font-size: 22px;
  letter-spacing: 1px;
  color: #333333;
  padding: 8px 0 14px;
  border-bottom:1px #dadada solid;
  position: relative;
}

.leeprocontent .leeprotext h2 span{
  display: block;
  width: 46px;
  height: 2px;
  background-color: #0193dc;
  position: absolute;
  bottom: -1px;
}

.leeprocontent .leeprotext h3{
  font-size: 16px;
  letter-spacing: 1px;
  color: #0193dc;
  margin-top: 30px;
  margin-bottom: 15px
}

.leeprocontent .leeprotext p{
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 1px;
  color: #666666;
}

.zixbtn{
  display: flex;
  font-size: 16px;
  color: #666;
  line-height: 40px;
  margin-top: 30px;
}

.zixbtn a{
  display: block;
  font-size: 18px;
  color: #fff;
  width: 138px;
  height: 40px;
  background: url(/uploads/image/tpcimg/zix.png) no-repeat;
  background-size: 100% 100%;
  text-decoration: none;
  line-height: 40px;
  padding-left: 45px;
  margin-right: 10px;
}

.zixbtn em{
  font-size: 22px;
  color: #ff1416;
  font-style: normal;
}

.order{
  width: 330px;
  padding: 20px;
  background:#f8f8f8;
  float: right;
}

.order h2{
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #333;
  padding-bottom: 15px;
  border-bottom: 1px #e7e7e7 solid;
  position: relative;
}

.order h2 span{
  font-size: 16px;
  color: #666;
  float: right;
}

.order h2 em{
  display: block;
  width: 80px;
  height: 2px;
  background-color: #0076db;
  position: absolute;
  bottom: -1px;
}

.order .lee3{
  border: solid 1px #d9d9d9;
  margin-top: 20px;
}

.order .lee3 .proimg{
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order .lee3 .proimg img{
  margin: 0 auto;
}

.order .lee3 .probt{
  font-size: 14px;
  color: #333;
  text-align: center;
  line-height: 60px;
  background: #e5e5e5;
}

.contact .col-md-12{
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.contact .maphide{
  display: none;
}

.contact .col-md-12 .lee3{
  width: 23.75%;
  background-color: #f5f5f5;
  border-top: 2px #0193dc solid;
}

.contact .col-md-12 .lee3 dl{
  margin-bottom: 0;
  padding: 30px;
}

.contact .col-md-12 .lee3 dt,.contact .col-md-12 .lee3 dd{
  font-size: 14px;
  color: #666;
  line-height: 30px;
}

.contact .col-md-12 .lee3 dt{
  color: #333;
}

.leebanner .wap{
  display: none;
}

@media (max-width:1920px) {
}

@media (max-width:1600px) {
  .logo {
      margin: 10px 0;
      width: 350px;
  }

  .top_tel{
    margin-top: 15px;
  }

  .navbg{
    top: 9.5%;
  }

  .dropdown-menu{
    top: 80%;
  }

  .navbar-nav li{
    padding: 5px 0;
  }

  .navbar{
    min-height: 30px;
  }
}

@media (max-width:1477px) {}

@media (max-width:1365px) {}

@media(max-width: 768px){
  .top_tel{
    display: none;
  }

  .navbar-nav{
    display: block;
    margin: 0;
    background: rgba(0,0,0,0.5);
  }

  .navbar-nav li{
    width: 100%;
  }

  .container-fluid>.navbar-collapse{
    margin: 0;
  }

  .navbg{
    background: none;
    display: none;
  }

  .open>.dropdown-menu{
    display: none;
  }

  .navbar-nav>li>.dropdown-menu{
    display: none;
    box-shadow:none;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a{
    color: rgba(0,0,0,0);
    border:none;
  }

  .dropdown-menu>li>a{
    color: rgba(0,0,0,0);
  }

  .navbar-default .nav>li:first-child a,.navbar-default .nav>li>a{
    border:none;
  }

  header .col-md-12:first-child{
    float: left;
    width: 75%;
  }

  header .row{
    padding: 0 4vw;
  }

  .logo{
    margin: 4vw 0;
  }

  .navbar-default .navbar-toggle{
    margin-top: 5vw;
  }

  .navbar-fixed-top .navbar-collapse{
    max-height: unset;
  }

  .index .wap{
    display: block;
  }

  .index .pc{
    display: none;
  }

  .banner .swiper-button-next,.banner .swiper-button-prev{
    display: none;
  }

  .index_xl .xl{
    flex-direction: column;
    text-align: center;
  }

  .index_xl .xl .xl_img{
    margin: 0;
    margin-bottom: 2vw;
  }

  .index_xl .xl .xl_img img{
    margin:  0 auto;
  }

  .leepadding{
    padding: 0 4vw;
  }

  .index_4 .swiper-pagination{
    display: none;
  }

  section{
    padding: 4vw 0;
  }

  .index_4,.index_case,.index_about,.index_news{
    padding: 4vw 0;
  }

  .index_xl .xl h1{
    font-size: 18px;
    text-align: center;
  }

  .index_xl .xl p{
    font-size: 12px;
  }

  section h1{
    margin-bottom: 4vw;
    font-size: 24px;
  }

  section h1 span{
    display: none;
  }

  .index_4_text span{
    font-size: 12px;
  }

  .index_4_text div{
    font-size: 12px;
  }

  .index_case table td{
    padding: 0;
    display: block;
    width: 100%;
  }

  .index_case table td img{
    width: 100%;
  }

  .index_case .bt{
    font-size: 16px;
    margin: 2vw 0 0;
  }

  .index_case .time, .index_case .add{
    font-size: 12px;
  }

  .index_about h1{
    text-align: center;
    margin-bottom: 4vw;
  }

  .index_about h1 span{
    display: none;
  }

  .index_about p{
    padding: 0 2vw;
  }

  .index_about a{
    margin: 0 auto;
    margin-top: 4vw;
  }

  .index_about .col-md-5{
    display: none;
  }

  .index_news .index_nwes_box{
    width: 100%;
    padding-bottom: 1vw;
    margin-bottom: 2vw;
  }

  .index_news .index_news_img{
    margin-bottom: 2vw;
  }

  .index_news .time{
    display: none;
  }

  .index_news .index_news_btn a{
    margin-top: 4vw;
  }

  .lee_foot_box{
    width: 100%;
  }

  .footerhide{
    display: none;
  }

  footer img{
    margin: 0 auto;
  }

  .foot_link{
    justify-content: center;
    margin: 4vw 0;
  }

  footer .container-fluid .col-md-6:first-child{
    display: none;
  }

  .pro{
    padding: 4vw 0;
  }

  .pro .col-md-12{
    display: block;
  }

  .pro .col-md-5{
    padding: 4vw;
  }

  .pro .col-md-5 h2,.pro .col-md-5 span,.pro .col-md-5 p{
    margin-bottom: 2vw;
  }

  .proxl h1{
    margin-bottom: 4vw;
  }

  .proxl .col-md-12 .lee4 .bt{
    padding: 2vw 0;
    top: 0;
  }

  .proxl .col-md-12 .lee4{
    margin-bottom: 4vw;
  }

  .xlcpbtn{
    margin-bottom: 4vw;
  }

  .prolist .col-md-12 .lee3{
    width: 100%;
    margin-bottom: 4vw;
  }

  .leenav{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .leeprocontent{
    flex-wrap: wrap;
  }

  .leeprocontent .leeproimg{
    width: 100%;
  }

  .leeprocontent .leeprotext{
    width: 100%;
  }

  .leeprocontent .leeprotext h3{
    margin: 2vw 0;
  }

  .zixbtn{
    margin-top: 4vw;
    font-size: 12px;
  }

  .leeprocontent .leeprotext h2{
    font-size: 18px;
  }

  .zixbtn em{
    font-size: 18px;
  }

  .procontent .col-md-4{
    display: none;
  }

  .people li .number,.people li .city,.people li .time{
    display: none;
  }

  .people li div{
    width: 50%;
  }

  .people dl{
    padding: 4vw;
  }

  .people dl .meail .leeclose{
    width: auto;
  }

  .about .col-md-12{
    display: flex;
  }

  .wenhua h1{
    text-align: center;
  }

  .wenhua .col-md-12{
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .wenhua .col-md-12 .col-md-3:first-child,.wenhua .col-md-12 .col-md-3:last-child{
    padding: 0;
    text-align: center;
  }

  .wenhua .leeleewenhua{
    background: none;
  }

  .wenhua .col-md-12 .col-md-3{
    width: 100%;
    margin-bottom: 3vw;
  }

  .linian .col-md-12{
    flex-wrap: wrap;
  }

  .linian .col-md-12 .lee3{
    width: 48%;
    margin-bottom: 4vw;
  }

  .hezuo .col-md-12{
    display: flex;
  }

  .hezuo .col-md-12 .lee2{
    width: 32%;
  }

  .newcontent .leenex span{
    float: none;
  }

  .newcontent .content{
    margin-top: 4vw;
  }

  .newslist li{
    padding: 0;
  }

  .newslist .newstime{
    display: none;
  }

  .newslist .newsimg{
    width: 40%;
  }

  .newslist .newstext{
    padding-left: 2vw;
  }

  .newslist .newstext h5{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 1vw;
    margin-top: 0;
  }

  .newcontent .content{
    padding-bottom: 4vw;
  }

  .contact .col-md-12{
    flex-wrap: wrap;
  }

  .contact .col-md-12 .lee3{
    width: 48%;
    margin-bottom: 4vw;
  }

  .jiejue .col-md-12 .lee4{
    width: 100%;
    margin-bottom: 4vw;
  }

  .contact .maphide{
    display: block;
  }

  .contact .mapshow{
    display: none;
  }

  .leebanner .wap{
    display: block;
  }

  .leebanner .pc{
    display: none;
  }

  .navbar-default .nav>.leenavhide{
    display: block;
  }

  .newcontent .content img{
    max-width: 100%;
  }
}
