/* 1.header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  box-sizing: border-box;
  background-color: #ffffff;
  /* box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08); */
}

.header-shadow {
  border-bottom: 0;
  background-color: #ffffff;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  animation: skell-header-top 1s ease-out 0s backwards;
}

header .header-cons {
  height: 100%;
  position: relative;
}

header .inside {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .hd-rg,
header .hd-lf {
  height: 100%;
  display: flex;
  align-items: center;
}

header .logo {
  display: block;
  width: auto;
  height: 60px;
}

header .logo img {
  width: auto;
  height: 100%;
}

header .hd-name {
  display: block;
  font-size: 20px;
  margin-left: 14px;
  font-weight: bold;
  color: #0000c8;
}

header .gatopen {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

header .gatopen img {
  width: 100%;
  height: 100%;
}

header .gation-box {
  height: 100%;
}

header .gation {
  font-size: 17px;
  display: flex;
}

header .gation li {
  display: block;
  height: 100%;
  position: relative;
}

header .gation li:not(:last-child) {
  margin-right: 50px;
}

header .gation .pull {
  position: relative;
  line-height: 100px;
  display: flex;
  justify-content: space-between;
}

header .gation .pull::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  visibility: hidden;
  background-color: #1f73f9;
  transform: scaleX(0);
}

header .gation li.active .pull::after,
header .gation li:hover .pull::after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

header .gation .pull a {
  flex: 1;
  display: block;
  color: #000000;
}

header .gation .pull a:not(:first-child) {
  display: none;
}

header .gation li.active .pull a,
header .gation li:hover .pull a {
  color: #1f73f9;
}

header .gation .pull i {
  display: none;
}

header .gation .drop {
  overflow: hidden;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 101;
  width: calc(100% + 100px);
  height: auto;
  padding: 15px 10px;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

header .gation .drop-cell a:not(:last-child) {
  margin-right: 50px;
}

header .gation .drop a {
  display: block;
  font-size: 14px;
  color: #000000;
  opacity: 0.7;
  text-align: center;
  line-height: 24px;
}

header .gation .drop a:not(:first-child) {
  margin-top: 10px;
}

header .gation .drop a:hover,
header .gation .drop a.active {
  opacity: 1;
  color: #1f73f9;
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

header .lang {
  width: auto;
  height: 100%;
  line-height: 100px;
  text-align: center;
  position: relative;
  color: #000000;
  font-size: 16px;
  margin-left: 40px;
  padding-left: 40px;
}

header .lang::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background-color: #707070;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

header .lang .lan-ico {
  width: 23px;
  height: auto;
  margin-left: 6px;
  margin-bottom: 3px;
}

header .lang .lan-row {
  width: 13px;
  height: auto;
  margin-left: 6px;
  margin-bottom: 4px;
}

header .lang .lan-pull {
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-weight: bold;
}

header .lang .lan-drop {
  display: none;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  z-index: 101;
}

header .lang .lan-drop a {
  display: block;
  color: #666666;
  line-height: 32px;
  font-size: 14px;
}

header .lang .lan-drop a img {
  width: 13px;
  margin-right: 7px;
  vertical-align: middle;
  margin-bottom: 4px;
}

header .lang .lan-drop a:hover {
  color: #1f73f9;
}

@media (max-width: 1400px) {
  header {
    height: 75px;
  }
  header .logo {
    height: 50px;
  }
  header .hd-name {
    font-size: 15px;
    margin-left: 10px;
    margin-bottom: -7px;
  }
  header .gation li:not(:last-child) {
    margin-right: 15px;
  }
  header .gation .pull {
    line-height: 75px;
  }
  header .gation {
    font-size: 15px;
  }
  header .gation .pull::after {
    height: 3px;
  }
  header .gation .drop {
    padding: 13px 7px;
  }
  header .gation .drop a {
    font-size: 12px;
  }
  header .gation .drop a:not(:first-child) {
    margin-top: 5px;
  }
  header .lang {
    margin-left: 15px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 75px;
  }
  header .lang .lan-drop {
    top: 55px;
    width: 120%;
  }
}

@media (max-width: 1000px) {
  header {
    background-color: #ffffff;
    border-bottom: 0;
    height: 47px;
    top: 0;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .gatopen {
    display: block;
  }
  header .logo {
    height: 30px;
  }
  header .hd-name {
    display: none;
  }
  header .lang {
    font-size: 13px;
    margin-left: 0;
    margin-right: 20px;
    padding-left: 0;
    line-height: 47px;
  }
  header .lang::after {
    display: none;
  }
  header .lang .lan-pull {
    line-height: 47px;
  }
  header .lang .lan-drop {
    top: 38px;
    width: 90px;
  }
  header .lang .lan-drop a {
    font-size: 12px;
    line-height: 28px;
  }
  header .lang .lan-drop a img {
    width: 12px;
    margin-bottom: 3px;
    margin-right: 3px;
  }
  header .lang .lan-ico {
    width: 18px;
    margin-right: 2px;
    margin-bottom: 3px;
  }
  header .lang .lan-row {
    width: 10px;
    margin-left: 1px;
    margin-bottom: 2px;
  }
  header .gation-box {
    position: absolute;
    top: 100%;
    left: -3%;
    display: none;
    width: 106%;
    height: auto;
    box-sizing: border-box;
    padding: 0 3%;
    font-size: 13px;
    border-top: 1px solid rgba(0, 0, 0, 1);
    background-color: #ffffff;
    overflow: hidden;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .gation {
    flex-direction: column;
  }
  header .gation li:not(:last-child) {
    margin-right: 0;
  }
  header .gation li .pull::after {
    display: none;
  }
  header .gation li .pull {
    height: 40px;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d9e1e6;
    box-sizing: border-box;
  }
  header .gation li:last-child .pull {
    border-bottom: 0;
  }
  header .gation li .pull i {
    width: 60px;
    border-left: 1px solid #d9e1e6;
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #d9e1e6;
  }
  header .gation li .pull a {
    flex: 1;
    font-size: 13px;
    box-sizing: border-box;
    padding-left: 15px;
  }
  header .gation li .drop {
    width: 100%;
    position: relative;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 0 0 0;
    border-bottom: 1px solid #d9e1e6;
    padding: 10px 15px 7px;
    text-align: left;
  }
  header .gation li .drop a {
    display: inline-block;
    color: #999999;
    font-size: 12px;
    margin-bottom: 3px;
    opacity: 1;
    line-height: 23px;
  }
  header .gation .drop a:not(:first-child) {
    margin-top: 0;
    margin-left: 7px;
  }
  header .gation .drop-cell a:not(:last-child) {
    margin-right: 7px;
  }
  header .gation li:hover .pull a,
  header .gation li.active .pull a {
    color: #1f73f9;
    font-weight: bold;
  }
}

/* 2.index-swiper */
.index-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.index-swiper .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-swiper .swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.index-swiper .img {
  width: 100%;
  height: 100%;
}

.index-swiper .img img {
  height: 100%;
  object-fit: cover;
}

.index-swiper .img img {
  animation: asd 7s linear infinite alternate;
}

@keyframes asd {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

/* 默认样式修改 */
.index-swiper .swiper-pagination {
  width: 95%;
  max-width: 1600px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}
.index-swiper .swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  border-radius: 0;
  background-color: #ffffff;
  opacity: 0.3;
}
.index-swiper .swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}
.index-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}
.index-swiper .swiper-button-next,
.index-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
}
.index-swiper .swiper-button-prev,
.index-swiper .swiper-container-rtl .swiper-button-next {
  background-image: url(/images/index-lf.png);
  background-size: 100% 100%;
  left: 20px;
}
.index-swiper .swiper-button-next,
.index-swiper .swiper-container-rtl .swiper-button-prev {
  background-image: url(/images/index-rg.png);
  background-size: 100% 100%;
  right: 20px;
}
@media (max-width: 1600px) {
    .index-swiper .img {
        width: 100%;
        height: 550px;
    }
}
    @media (max-width: 1400px) {
        .index-swiper {
            margin-top: 75px;
        }

            .index-swiper .swiper-button-next,
            .index-swiper .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .index-swiper .swiper-pagination {
                bottom: 15px;
            }

            .index-swiper .swiper-pagination-bullet {
                height: 4px;
            }

    }

    @media (max-width: 1000px) {
        .index-swiper {
            margin-top: 47px;
        }

            .index-swiper .swiper-button-next,
            .index-swiper .swiper-button-prev {
                width: 30px;
                height: 30px;
            }

            .index-swiper .swiper-pagination {
                bottom: 7px;
            }

            .index-swiper .swiper-pagination-bullet {
                width: 32px;
                height: 3px;
            }

            .index-swiper .swiper-button-prev,
            .index-swiper .swiper-container-rtl .swiper-button-next {
                left: 5px;
            }

            .index-swiper .swiper-button-next,
            .index-swiper .swiper-container-rtl .swiper-button-prev {
                right: 5px;
            }

            .index-swiper .img {
                width: 100%;
                height: auto;
            }
    }

    @media (max-width: 540px) {
        .index-swiper {
            height: 240px;
        }
    }

    /* 3.banner */
    .banner {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        margin-top: 100px;
    }

        .banner .inside {
            height: 100%;
            position: relative;
        }

        .banner .img {
            width: 100%;
            height: 100%;
        }

            .banner .img img {
                height: 100%;
            }

        .banner .sub {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            left: 0;
            box-sizing: border-box;
            /* background-color: rgba(0, 0, 0, 0.1); */
            color: #ffffff;
            /* font-size: 48px; */
            /* padding-top: 90px; */
            text-align: center;
        }

            .banner .sub .inside-sm {
                height: 100%;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                position: relative;
            }

            .banner .sub .inside,
            .banner .sub .lex-db {
                height: 100%;
            }

            .banner .sub i {
                display: block;
                font-size: 60px;
                line-height: 60px;
            }

            .banner .sub s {
                display: block;
                text-transform: uppercase;
                font-size: 20px;
                line-height: 32px;
                margin-top: 20px;
                letter-spacing: 6px;
            }

            .banner .sub b {
                display: block;
                font-size: 17px;
                line-height: 30px;
                margin-top: 20px;
                font-weight: normal;
            }

            .banner .sub p {
                margin-top: 15px;
                font-size: 17px;
                line-height: 30px;
            }

            .banner .sub a {
                display: block;
                width: 165px;
                height: 47px;
                line-height: 45px;
                color: #ffffff;
                border: 1px solid #ffffff;
                margin: 30px 0 0;
                text-align: center;
                border-radius: 34px;
            }

                .banner .sub a:hover {
                    border: 1px solid #98bfff;
                    color: #98bfff;
                }

        .banner .txt {
            width: 60%;
            text-align: left;
        }

        .banner .pic {
            width: 25%;
        }

    @media (max-width: 1400px) {
        .banner {
            margin-top: 75px;
        }

            .banner .sub i {
                font-size: 45px;
                line-height: 45px;
            }

            .banner .sub s {
                font-size: 17px;
                line-height: 30px;
                letter-spacing: 3px;
            }

            .banner .sub b {
                font-size: 15px;
                line-height: 27px;
            }

            .banner .sub p {
                margin-top: 15px;
                font-size: 15px;
                line-height: 27px;
            }

            .banner .txt {
                width: 75%;
                text-align: left;
            }

            .banner .pic {
                width: 20%;
            }

            .banner .sub a {
                width: 125px;
                height: 37px;
                line-height: 35px;
                margin: 20px 0 0;
                font-size: 12px;
            }

            .banner .pic {
                display: none;
            }

            .banner .txt {
                width: 100%;
            }
    }

    @media (max-width: 1000px) {
        .banner {
            margin-top: 47px;
        }

            .banner .sub i {
                font-size: 23px;
                line-height: 28px;
            }

            .banner .sub s {
                font-size: 13px;
                line-height: 23px;
                margin-top: 5px;
                letter-spacing: 2px;
            }

            .banner .sub b {
                font-size: 13px;
                line-height: 23px;
                margin-top: 10px;
            }

            .banner .sub p {
                margin-top: 7px;
                font-size: 12px;
                line-height: 23px;
            }

                .banner .sub p.txtrow {
                    -webkit-line-clamp: 2; /* 显示的行数 */
                }

            .banner .sub a {
                width: 95px;
                height: 32px;
                line-height: 30px;
                margin: 10px 0 0;
            }
    }

    @media (max-width: 570px) {
        .banner {
            height: 154px;
        }
    }

    /* 4.footer */
    footer {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
 /*       background-color: #26345e;*/
       background:#333;
        padding: 50px 0 30px;
        color: #ffffff;
        box-sizing: border-box;
    }

        footer a {
            color: #ffffff;
        }

            footer a:hover,
            footer a:focus {
                color: #ffffff;
            }

        footer .ft-top {
            padding-bottom: 50px;
            border-bottom: 2px solid #d9d9d9;
            margin-bottom: 20px;
        }

        footer .copy {
            text-align: center;
        }

            footer .copy a {
                font-size: 14px;
                line-height: 27px;
            }

                footer .copy a:not(:last-child) {
                    margin-right: 10px;
                }

        footer .logo {
            display: block;
            width: auto;
            height: 60px;
        }

            footer .logo img {
                width: auto;
                height: 100%;
            }

        footer .code li {
            display: inline-block;
            text-align: center;
        }

            footer .code li:first-child {
                margin-right: 20px;
            }

            footer .code li img {
                max-width:110px
              /*  width: 110px;
                height: 110px;*/
            }

        footer .link {
            margin: 0 30px;
            display: flex;
        }

            footer .link li:not(:last-child) {
                margin-right: 80px;
            }

            footer .link li h3 {
                font-size: 17px;
                margin-bottom: 20px;
            }

            footer .link li a,
            footer .link li i {
                display: block;
                font-size: 14px;
                line-height: 32px;
            }

            footer .link li a {
                opacity: 0.7;
            }

                footer .link li a:hover {
                    opacity: 1;
                    text-decoration: underline;
                }

    @media (max-width: 1400px) {
        footer .logo {
            height: 50px;
        }

        footer .link li:not(:last-child) {
            margin-right: 20px;
        }

        footer .code li img {
            width: 90px;
            height: 90px;
        }

        footer .link li h3 {
            font-size: 15px;
            margin-bottom: 15px;
        }

        footer .link li a,
        footer .link li i {
            font-size: 13px;
            line-height: 30px;
        }
    }

    @media (max-width: 1000px) {
        footer {
            padding: 30px 0 15px;
        }

            footer .ft-top {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding-bottom: 20px;
                margin-bottom: 10px;
            }

            footer .link li:not(:last-child) {
                display: none;
            }

            footer .logo {
                height: 40px;
                margin-bottom: 20px;
            }

            footer .link {
                margin: 0;
            }

                footer .link li {
                    text-align: center;
                }

                    footer .link li h3 {
                        font-size: 14px;
                        margin-bottom: 5px;
                    }

                    footer .link li a,
                    footer .link li i {
                        font-size: 12px;
                        line-height: 28px;
                    }

                    footer .link li:not(:last-child) {
                        margin-right: 0;
                    }

            footer .code {
                margin-top: 20px;
            }

                footer .code li img {
                    width: 85px;
                    height: 85px;
                }

            footer .copy a {
                display: block;
                font-size: 12px;
                line-height: 23px;
            }

                footer .copy a:not(:last-child) {
                    margin-right: 0;
                }
    }

    /* 5.title */
    .title {
        text-align: center;
        overflow: hidden;
    }

    .title-lf {
        text-align: left;
    }

    .title p {
        font-family: "Arial";
        display: block;
        color: #f6f8fb;
        font-size: 75px;
        line-height: 75px;
        font-weight: bold;
        white-space: nowrap;
        text-transform: uppercase;
    }

    .title h2 {
        font-size: 40px;
        line-height: 53px;
        position: relative;
        margin-top: -65px;
        font-weight: bold;
    }

    .title-nodis h2 {
        margin-top: 0;
        font-weight: normal;
    }

    .title-pw p {
        color: #ffffff;
    }

    .title-pw-oc p {
        opacity: 0.15;
    }

    .title-hw h2 {
        color: #ffffff;
    }

    .title em {
        display: block;
        color: #5c5c5c;
        margin-top: 20px;
        font-size: 17px;
        line-height: 30px;
    }

    @media (max-width: 1400px) {
        .title p {
            font-size: 60px;
            line-height: 60px;
        }

        .title h2 {
            font-size: 34px;
            line-height: 43px;
            margin-top: -53px;
        }

        .title-nodis h2 {
            margin-top: 0;
        }

        .title em {
            margin-top: 15px;
            font-size: 15px;
            line-height: 28px;
        }
    }

    @media (max-width: 1000px) {
        .title p {
            font-size: 36px;
            line-height: 36px;
        }

        .title h2 {
            font-size: 23px;
            line-height: 37px;
            margin-top: -32px;
        }

        .title-nodis h2 {
            margin-top: 0;
        }

        .title em {
            margin-top: 10px;
            font-size: 13px;
            line-height: 25px;
        }
    }

    /* 6.inner-tabs */
    .inner-tabs {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        text-align: center;
        border-bottom: 2px solid #e9e9e9;
    }

        .inner-tabs .inside.lex {
            justify-content: center;
        }

        .inner-tabs a {
            display: block;
            padding: 20px 40px;
            color: #626262;
            font-size: 17px;
        }

            .inner-tabs a:hover,
            .inner-tabs a.active {
                background-color: #1b5fcc;
                color: #ffffff;
                /* 过渡 */
                -webkit-transition: all 0.5s;
                -moz-transition: all 0.5s;
                -o-transition: all 0.5s;
                -ms-transition: all 0.5s;
                transition: all 0.5s;
            }

    @media (max-width: 1400px) {
        .inner-tabs a {
            padding: 15px 30px;
        }
    }

    @media (max-width: 1000px) {
        .inner-tabs {
            padding: 9px 0 0;
        }

            .inner-tabs a {
                padding: 0;
                font-size: 13px;
                margin-bottom: 5px;
            }

                .inner-tabs a:not(:last-child) {
                    margin-right: 20px;
                }

                .inner-tabs a:hover,
                .inner-tabs a.active {
                    background-color: transparent;
                    color: #1f73f9;
                }
    }

    /* 7.dark-anchor */
    .dark-anchor {
        width: 100%;
        height: 80px;
        margin-top: -80px;
    }

.case-zxtw{
    padding:40px 0
}
.case-zxtw h3 {
    font-size: 36px;
    color: #333;
    text-align: center
}
.case-zxtw a {
    display: inline-block;
    color: #1f73f9;
    background: url(/images/sjwt.png) no-repeat left center;
    background-size:40px;
    padding-left:40px;
    margin-left:10px
}


.more-wt a{
    display: block;
    margin: 40px auto 0;
    width: 165px;
    height: 47px;
    line-height: 45px;
    color: #1f73f9;
    border: 1px solid #1f73f9;
    text-align: center;
    border-radius: 34px;
    font-size: 14px;
}

.more-wt a:hover {
    color: #ffffff;
    border: 1px solid #1f73f9;
    background-color: #1f73f9;
}





.product-one{
    padding: 40px 0;
}
.product-list{
    overflow: hidden;
}
.product-list .product-fl{
    float: left;
    width: 320px;
}
.product-list .product-fl .tltie{
    background: #1f73f9;
    height: 80px;
}
.product-list .product-fl .tltie h3{
    font-size: 24px;
    color: #fff;
    text-align: center;
    line-height: 80px;
}
.product-list .product-fl ul{
    padding-top: 10px;
}
.product-list .product-fl ul li a{
    display: block;
    line-height: 60px;
    font-size: 16px;
    color: #707070;
    padding: 0 20px;
    background: rgba(13, 108, 174, 0.03);
    margin-top: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product-list .product-fl ul li .li-a{
     position: relative;
 }
.product-list .product-fl ul li .li-a a{
    position: relative;
    padding: 0 50px 0 20px;
}
.product-list .product-fl ul li .li-a i{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: #0D6CAE url(../imges/you.png) no-repeat center;
    background-size: 15px 15px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-style: normal;
}
.product-list .product-fl ul li .div-li{
    display: none;
}
.product-list .product-fl ul li .div-li a{
    padding: 0 20px 0 52px;
}
.product-list .product-fl ul li .div-li a:hover,
.product-list .product-fl ul li .div-li a.cur-a{
    color: #0D6CAE;
}


.product-list .product-fl ul li.active  a {
    background: rgba(13, 108, 174, 0.1);
    color: #0D6CAE;
}

.product-list .product-fl ul li .cur i{
   transform:rotateZ(90deg);
}

.product-list .product-fr{
    float: right;
    width: calc(100% - 380px);
    padding-bottom:40px
}
.product-list .product-fr .title{
    border-bottom: solid 1px #E5E5E5;
    padding-bottom: 20px;
    text-align:left
}
.product-list .product-fr .title h3{
    font-size: 24px;
    color: #1f73f9
}
.product-list .product-fr .title .fl-show{
    display: none;
}

.join-sous{
    padding:20px 0 0;
    overflow:hidden
}
.join-sous .join-sous-f{
    width:300px;
    height:40px;
    border:solid 1px #eee;
    border-radius:20px;
    float:right;
    display:flex;
    align-items:center;
    overflow:hidden
}
.join-sous .join-sous-f input{
    height:40px;
    padding-left:15px;
    font-size:14px;
    flex:1
}
.join-sous .join-sous-f a{
    display:block;
    background:#1f73f9 url(/images/sous.png) no-repeat center;
    background-size:20px;
    width:60px;
    height:40px;
    
}



@media (max-width: 1400px) {
    .dark-anchor {
            height: 60px;
            margin-top: -60px;
        }
    }

    @media (max-width: 1000px) {
        .dark-anchor {
            height: 30px;
            margin-top: -30px;
        }
        .case-zxtw h3 {
            font-size: 20px;
            color: #333;
            text-align: center
        }

        .case-zxtw a {
            display: inline-block;
            color: #1f73f9;
            background: url(/images/sjwt.png) no-repeat left center;
            background-size: 20px;
            padding-left: 30px;
            margin-left: 10px
        }
          .product-one {
        padding: 40px 0;
    }
    .product-list .product-fl {
        position: fixed;
        background-color: #fff;
        top: 50px;
        left: -260px;
        float: none;
        display: block;
        width: 260px;
        z-index: 10;
        height: 100%;
        transition: all 0.5s;
    }
    .product-list .product-fl .tltie{
        height: 60px;
    }
    .product-list .product-fl .tltie h3 {
        font-size: 20px;
        color: #fff;
        text-align: center;
        line-height: 60px;
    }
    .product-list .product-fl ul li a {
        display: block;
        line-height: 50px;
        font-size: 14px;
    }
    .product-list .product-fl ul li .li-a i {
        top: 15px;
    }
    .product-list .product-fl ul li .div-li a {
        padding: 0 20px 0 48px;
    }
    .product-list .product-fl ul{
        height: calc(100% - 100px);
        overflow: auto;
    }
    .product-list  .product-fl-bj{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.59);
        z-index: 1;
        display: none;
    }
    .product-list .product-fr {
        float: none;
        width: 100%;
    }
    .product-list .product-fr .title h3 {
        font-size: 20px;
        width: 80%;
        line-height: 35px;
    }

    .product-list .product-fr .title{
        display: flex;
        justify-content: space-between;
        padding-bottom: 10px;
    }
    .product-list .product-fr .title .fl-show{
        display: block;
        width: 35px;
    }
        .join-sous .join-sous-f {
            width: 100%;
        }
    }
