@import "base.css";
@import "swiper.min.css";
@import "animate.min.css";
@import "../font/IMPACT/IMPACT.css";
@import "../font/iconfont/iconfont.css";
@import "pictureViewer.css";

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #e2e1e1;
}

::-webkit-scrollbar-thumb {
    background-color: #199ed8;
}

::-webkit-scrollbar-track {
    background-color: #e2e1e1;
}

.main {
    position: relative;
}

header {
    background: url(../img/header_bg.jpg) center center / cover no-repeat;
}

header .logo {
    width: 210px;
    height: 33px;
    float: left;
    margin: 30px 0;
}

header .logo a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/logo.jpg) center center / cover no-repeat;
}

header .logo a h1 {
    font-size: 0;
    visibility: hidden;
    opacity: 0;
    text-indent: -9999px;
}

header .logo a p {
    font-size: 0;
    visibility: hidden;
    opacity: 0;
    text-indent: -9999px;
}

header #header-nav {
    float: right;
    margin: 30px 20px 30px 0;
    position: relative;
}

header #header-nav li {
    float: left;
    position: relative;
}

header #header-nav li a {
    display: block;
    font-size: 16px;
    color: #000;
    letter-spacing: 1px;
    line-height: 33px;
    padding: 0 20px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

header #header-nav li a:hover,
header #header-nav li a.active {
    color: #019bdf;
}

header #header-nav .underline {
    height: 2px;
    background-color: #019bdf;
    position: absolute;
    bottom: 0;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
}

header .side {
    float: right;
    width: 210px;
    height: 93px;
    background-color: #1eb9ee;
    padding: 36px 20px;
    position: relative;
    z-index: 8;
}

header .side .item {
    width: 33.333%;
    float: left;
    text-align: center;
}

header .side .iconfont {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

header .side .show-modal {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 100%;
    background-color: rgba(255, 78, 0, 0.3);
    padding: 10px;
}

header .side .show-modal form {
    position: relative;
}

header .side .show-modal .input-search {
    width: 100%;
    height: 30px;
    border: 1px solid #eee;
    padding: 0 35px 0 10px;
    font-size: 14px;
    color: #333;
}

header .side .show-modal .input-submit {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: 0;
    background-color: #019bdf;
    border: none;
    outline: none;
}

header .side .show-modal .input-submit i {
    font-size: 18px;
}

header .side .show-modal .phonenum {
    font-size: 24px;
    color: #fff;
}

footer {
    background: url(../img/footer_bg.jpg) center center / cover no-repeat;
}

footer .footer-top .main {
    padding: 50px 0;
}

footer .footer-nav {
    float: left;
}

footer .footer-nav li {
    float: left;
    margin-right: 60px;
}

footer .footer-nav li:last-child {
    margin-right: 0;
}

footer .footer-nav a {
    font-size: 18px;
    color: #fff;
    line-height: 36px;
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
}

footer .footer-nav a:hover {
    color: #019bdf;
}

footer .footer-nav .sub-nav li {
    float: none;
    margin: 0;
}

footer .footer-nav .sub-nav a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 30px;
}

footer .footer-nav .sub-nav a:hover {
    color: #019bdf;
}

footer .footer-contact {
    float: right;
}

footer .footer-contact .tel {
    float: left;
    text-align: right;
}

footer .footer-contact .tel .item {
    margin-bottom: 6px;
}

footer .footer-contact .tel p {
    font-size: 14px;
    color: #888d92;
    line-height: 28px;
}

footer .footer-contact .tel span {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
}

footer .footer-contact .wechat {
    text-align: center;
    float: left;
    margin-left: 25px;
}

footer .footer-contact .wechat img {
    display: block;
    width: 85px;
    height: 85px;
    margin-bottom: 15px;
}

footer .footer-contact .wechat p {
    font-size: 14px;
    color: #888d92;
}

footer .copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyright p {
    font-size: 14px;
    color: #fff;
    line-height: 72px;
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    75% {
        ransform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    75% {
        ransform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes scales {
    0% {
        opacity: 0.2;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    33% {
        opacity: 0.5;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    66% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
}

@keyframes scales {
    0% {
        opacity: 0.2;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    33% {
        opacity: 0.5;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    66% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
}

.banner .swiper-pagination {
    bottom: 50px;
}

.banner .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 40px;
    height: 3px;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff4e00;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-size: 32%;
    outline: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.banner .swiper-button-prev {
    left: 15%;
}

.banner .swiper-button-next {
    right: 15%;
}

.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
    visibility: visible;
    opacity: 1;
}

.curmb {
    width: 100%;
    position: relative;
    z-index: 2;
}

.curmb .curmb-wrap {
    position: absolute;
    width: 100%;
    top: -80px;
    background-color: rgba(0, 0, 0, 0.5);
}

.curmb .main {
    margin: 0 auto;
}

.curmb .curmb-tit {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 160px;
    background-color: #02a2d9;
    color: #fff;
    padding-left: 30px;
    padding-top: 30px;
}

.curmb .curmb-tit p {
    font-size: 40px;
    font-weight: bold;
    line-height: 58px;
}

.curmb .curmb-tit span {
    font-size: 26px;
    line-height: 43px;
}

.curmb ul {
    float: right;
}

.curmb li {
    float: left;
    position: relative;
}

.curmb li>a {
    display: block;
    font-size: 18px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #fff;
    padding: 0 35px;
}
.curmb li .hide {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 100%;
    display: none;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.curmb li .hide a {
    display: block;
    height: 50px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    background: #fff;
    color: #333;
    font-size: 15px;
}
.curmb li .hide a:hover {
    background-color: #02a2d9;
    color: #fff;
}

.curmb span {
    display: block;
    font-size: 18px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #fff;
    padding: 0 25px;
}

/* .curmb a.active, */
.curmb li.active>a,
.curmb li:hover>a{
    background-color: rgba(2, 162, 217, 0.7);
}

.curmb span.active {
    background-color: rgba(2, 162, 217, 0.7);
}

.subcurmb .main {
    padding: 30px 0;
    border-bottom: 1px solid #dcdcdc;
}

.subcurmb a {
    display: block;
    font-size: 14px;
    color: #282828;
    position: relative;
    /* float: left; */
    display: inline-block;
    letter-spacing: 1px;
    padding: 0 3px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.subcurmb a:first-child {
    padding-left: 32px;
}

.subcurmb a:first-child:before {
    content: '';
    display: block;
    width: 18px;
    height: 14px;
    background: url(../img/subcurmbicon.png) center center / cover no-repeat;
    position: absolute;
    left: 0;
}

.subcurmb a:hover,
.subcurmb a:last-child {
    color: #019bdf;
}

.plate-title {
    text-align: center;
}

.plate-title h2 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
}

.plate-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #019bdf;
    margin: 30px auto 40px;
}

.plate-title b {
    color: #019bdf;
}

.plate-title.nounder h2 {
    margin-bottom: 30px;
}

.plate-title.nounder h2:after {
    display: none;
}

.desc {
    text-align: center;
}

.desc p {
    font-size: 14px;
    color: #333;
    line-height: 26px;
}

.recommond .main {
    padding: 80px 0;
}

.recommond .list li {
    width: 280px;
    height: 280px;
    border-radius: 5px;
    border: solid 1px #dcdcdc;
    float: left;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    padding: 35px 0;
    text-align: center;
}

.recommond .list li:nth-child(5n) {
    margin-right: 0;
}

.recommond .list li:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #02a2d9;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    left: 0;
    top: 0;
}

.recommond .list li:hover {
    border-color: #02a2d9;
}

.recommond .list li:hover:before {
    width: 100%;
}

.recommond .list li:hover p,
.recommond .list li:hover a {
    color: #fff;
}

.recommond .list li .wrap {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.recommond .list li .pic {
    width: 80%;
    margin: 26px 30px;
}


.recommond .list li p {
    font-size: 22px;
    color: #333;
    line-height: 48px;
}

.recommond .list li a {
    display: block;
    width: 120px;
    height: 30px;
    border-radius: 15px;
    border: solid 1px #dcdcdc;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0 auto;
}

.hotcar {
    background: url(../img/hotcar_bg.jpg) center center / cover no-repeat;
}

.hotcar .main {
    padding: 80px 0 80px;
}

.hotcar .swiper-slide {
    height: 490px;
    position: relative;
}

.hotcar .params {
    height: 100%;
    position: relative;
    margin-top: 20px;
}

.hotcar .params .name {
    font-size: 30px;
    color: #019bdf;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 48px;
}

.hotcar .params .desc dl:after {
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}

.hotcar .params .desc dl {
    font-size: 16px;
    line-height: 40px;
    color: #000;
}

.hotcar .params .desc dt,
.hotcar .params .desc dd {
    float: left;
}

.hotcar .params .desc dd {
    color: #555;
}

.hotcar .params .desc dt {
    font-weight: bold;
    width: 86px;
    text-align-last: justify;
}

.hotcar .params .btn {
    font-size: 0;
    margin-top: 20px;
}

.hotcar .params .btn a {
    display: inline-block;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    width: 180px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-right: 17px;
    border-radius: 50px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.hotcar .params .btn a.xxcs {
    margin-right: 0;
}

.hotcar .params .btn a:hover {
    color: #fff;
    background-color: rgba(1, 149, 218, 0.8);
}

.hotcar .pic {
    height: 100%;
    max-width: 860px;
}

.hotcar .swiper-pagination {
    width: auto;
    top: 66%;
}

.hotcar .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #c9c9c9;
    opacity: 1;
    margin: 0 10px;
}

.hotcar .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #019bdf;
}

.hotcar .more {
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: 2;
}

.hotcar .more a {
    font-size: 18px;
    color: #fff;
    line-height: 36px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.hotcar .more a:hover {
    color: #019bdf;
}

.hotcar .more a:after {
    content: '';
    display: inline-block;
    width: 67px;
    height: 12px;
    background: url(../img/more.png) center center / cover no-repeat;
    margin-left: 15px;
}

.news .main {
    padding: 80px 0;
}

.news .list {
    margin-top: 40px;
}

.news .fl li {
    width: 280px;
    float: left;
    margin-right: 20px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.news .fl li:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.news .fl li .pic {
    height: 200px;
    overflow: hidden;
}

.news .fl li .pic:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news .fl li .pic img {
    display: block;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
}

.news .fl li .con {
    height: 170px;
    background-color: #f7f7f7;
    padding: 20px;
    position: relative;
}

.news .fl li .con a {
    font-size: 16px;
    line-height: 26px;
    color: #333;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.news .fl li .con a:hover {
    color: #019bdf;
}

.news .fl li .con span {
    font-size: 14px;
    color: #666;
    position: absolute;
    left: 20px;
    bottom: 38px;
}

.news .fr li {
    width: 600px;
    height: 110px;
    background-color: #f7f7f7;
    margin-bottom: 20px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 20px 40px 20px 0;
}

.news .fr li:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.news .fr li:last-child {
    margin-bottom: 0;
}

.news .fr li .time {
    width: 120px;
    height: 100%;
    float: left;
    margin-right: 40px;
    text-align: right;
}

.news .fr li .time span {
    display: block;
    color: #666;
}

.news .fr li .time .year {
    font-size: 18px;
}

.news .fr li .time .date {
    font-size: 30px;
    line-height: 50px;
    margin-top: 12px;
}

.news .fr li .con {
    width: 400px;
    float: right;
}

.news .fr li .con a {
    display: block;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.news .fr li .con a:hover {
    color: #019bdf;
}

.news .fr li .con p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.ambient {
    background: url(../img/ambient_bg.jpg) center center / cover no-repeat;
}

.ambient .main {
    padding: 80px 0;
}

.ambient .list {
    margin-top: 30px;
}

.ambient li {
    width: 360px;
    height: 192px;
    background-color: rgba(255, 255, 255, 0.7);
    float: left;
    margin-right: 50px;
    position: relative;
    padding: 30px 10px;
    text-align: center;
}

.ambient li:after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: #019bdf;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.ambient li:hover:after {
    width: 100%;
}

.ambient li:nth-child(3n) {
    margin-right: 0;
}

.ambient li .count-title {
    font-family: IMPACT, sans-serif;
    font-size: 72px;
    color: #019bdf;
    display: block;
    text-align: center;
}

.ambient li .count-title:after {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    background-color: #a0a0a0;
    margin: 10px auto;
}

.ambient li p {
    font-size: 14px;
    line-height: 26px;
    color: #666;
}

.ambient.ambient-2 li .count-title {
    color: #019bdf;
}

.ambient.ambient-2 li .count-title:after {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    background-color: #a0a0a0;
    margin: 10px auto;
}

.adv .main {
    padding: 80px 0;
}

.adv .list {
    border-top: 5px solid #019bdf;
}

.adv .list li {
    width: 25%;
    height: 250px;
    float: left;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
}

.adv .list li:hover .icon {
    background-color: #ff4e00;
}

.adv .list li a {
    display: block;
    color: #fff;
    padding-top: 32px;
    cursor: default;
    pointer-events: none;
}

.adv .list li p {
    font-size: 24px;
    line-height: 48px;
}

.adv .list li span {
    font-size: 10px;
}

.adv .list .icon {
    width: 106px;
    height: 106px;
    overflow: hidden;
    background-color: #019bdf;
    border-radius: 50%;
    text-align: center;
    line-height: 106px;
    color: #fff;
    margin: 20px auto 0;
    position: relative;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.adv .list .icon img {
    display: block;
    height: 100%;
}

.context p {
    font-size: 16px;
    line-height: 40px;
    text-indent: 2em;
}

.ljzbhj .main {
    padding: 80px 0;
}

.ljzbhj .context {
    width: 565px;
}

.common-list .plate-title {
    text-align: left;
    margin-top: 20px;
}

.common-list .plate-title h2 {
    font-size: 30px;
}

.common-list .desc {
    text-align: left;
}

.common-list .desc p {
    font-size: 18px;
    line-height: 36px;
    color: #333;
}

.common-list .main {
    padding-top: 20px;
}

.common-list li {
    width: 100%;
    height: 400px;
    background-color: #eee;
    margin-top: 60px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.common-list li:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.common-list li .pic {
    width: 50%;
    height: 100%;
    overflow: hidden;
    float: left;
}

.common-list li .pic img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.common-list li .con {
    width: 50%;
    height: 100%;
    float: left;
    padding: 50px;
}

.common-list li .more a {
    display: block;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    border: solid 1px #a0a0a0;
    text-align: center;
    line-height: 48px;
    color: #666;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.common-list li .more a span {
    position: relative;
    z-index: 1;
}

.common-list li .more a:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #019bdf;
    left: 0;
    top: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.common-list li .more a:hover {
    color: #fff;
    border-color: #019bdf;
}

.common-list li .more a:hover:after {
    width: 100%;
}

.common-list.common-list-2 .desc p {
    font-size: 14px;
    line-height: 30px;
}

.common-list.common-list-2 li {
    margin-top: 30px;
}

.view-img .main {
    padding: 80px 0 0;
}

#honour li {
    width: 380px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
}

#honour li:nth-child(3n) {
    margin-right: 0;
}

#honour li span {
    display: block;
    line-height: 50px;
    text-align: center;
    color: #454545;
    background-color: #eee;
    margin-top: 6px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

#honour li .pic {
    height: 260px;
    position: relative;
}

#honour li .pic img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#honour li .pic:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/hover_bg.png) center center / cover no-repeat;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

#honour li:hover .pic:before {
    visibility: visible;
    opacity: 1;
}

#honour li:hover .con span {
    background-color: #019bdf;
    color: #fff;
}

.shzr .main {
    padding-top: 80px;
}

.adv-mini {
    text-align: center;
    font-size: 0;
    padding: 30px 0;
}

.adv-mini ul {
    display: inline-block;
}

.adv-mini li {
    float: left;
    text-align: center;
    padding: 0 60px;
}

.adv-mini li img {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.adv-mini li p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}

.adv-mini li span {
    font-size: 16px;
    color: #666;
    line-height: 26px;
}

.adv-mini li:hover img {
    -webkit-animation: jump 2s infinite linear;
    animation: jump 2s infinite linear;
}

.adv-mini.adv-mini-2 {
    padding: 80px 0;
}

.adv-mini.adv-mini-3 {
    padding-bottom: 0;
}

.adv-mini.adv-mini-3 li {
    padding: 0 25px;
}

.qywh .main {
    padding-top: 80px;
}

.qywn-film .box {
    height: 600px;
    background-color: #000;
}

.fzlc .main {
    padding: 80px 0;
}

.time-tab li {
    width: 20%;
    float: left;
    text-align: center;
    line-height: 80px;
    font-size: 18px;
    color: #666;
    border-bottom: 3px solid #c9cacb;
    cursor: pointer;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.time-tab li i {
    font-size: 18px;
    color: #666;
    visibility: hidden;
}

.time-tab li.active {
    background-color: #eee;
    border-color: #eee;
}

.time-tab li.active i {
    visibility: visible;
}

.time-box {
    width: 920px;
    margin: 0 auto;
}

.time-box .swiper-container {
    padding-bottom: 60px;
}

.time-box .swiper-slide {
    position: relative;
}

.time-box .tit {
    font-size: 60px;
    color: #e0e0e0;
    font-weight: bold;
    text-align: center;
    padding: 40px 0 24px;
}

.time-box .separator {
    width: 1px;
    height: 100%;
    background-color: #eee;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.time-box .separator .wrap {
    position: relative;
}

.time-box .separator .wrap:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-color: #02a2d9;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.time-box .item {
    margin: 20px 0;
    position: relative;
}

.time-box .item:hover:before {
    border-color: #019bdf;
}

.time-box .item:hover .imgs img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.time-box .item:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: solid 6px #d2d2d2;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.time-box .item:after {
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}

.time-box .item:last-child {
    margin: 0;
}

.time-box .item .imgs {
    width: 400px;
    height: 250px;
    float: left;
    overflow: hidden;
}

.time-box .item .imgs img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.time-box .item .content {
    width: 400px;
    float: left;
}

.time-box .item .content .year {
    font-size: 30px;
    color: #02a2d9;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 46px;
}

.time-box .item .content p {
    font-size: 16px;
    line-height: 30px;
}

.time-box .item:nth-child(odd) .imgs {
    margin-left: 60px;
    float: right;
}

.time-box .item:nth-child(odd) .content {
    margin-right: 60px;
    text-align: right;
}

.time-box .item:nth-child(even) .imgs {
    margin-right: 60px;
    float: left;
}

.time-box .item:nth-child(even) .content {
    float: right;
    margin-left: 60px;
}

.banner-map {
    height: 800px;
    position: relative;
}

.banner-map .map-info {
    position: absolute;
    left: 50%;
    top: 30%;
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    text-align: center;
}

.banner-map .map-info p {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.banner-map .map-info span {
    color: #666;
}

.banner-map .contact-list {
    width: 1200px;
    position: absolute;
    left: 50%;
    bottom: 100px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.banner-map .contact-list li {
    width: 400px;
    height: 250px;
    float: left;
    text-align: center;
    padding-top: 53px;
}

.banner-map .contact-list li.item1 {
    background-color: #6cd7fb;
}

.banner-map .contact-list li.item1 p,
.banner-map .contact-list li.item1 a {
    color: #fff;
}

.banner-map .contact-list li.item1 a {
    font-weight: bold;
}

.banner-map .contact-list li.item2 {
    background-color: #1eb9ee;
}

.banner-map .contact-list li.item2 p,
.banner-map .contact-list li.item2 a {
    color: #fff;
}

.banner-map .contact-list li.item2 a {
    font-weight: bold;
}

.banner-map .contact-list li.item3 {
    background-color: #02a2d9;
}

.banner-map .contact-list li.item3 p,
.banner-map .contact-list li.item3 a {
    color: #fff;
}

.banner-map .contact-list li.item3 a {
    font-weight: bold;
}

.banner-map .contact-list li:hover .pic {
    -webkit-animation: jump 1.5s infinite linear;
    animation: jump 1.5s infinite linear;
}

.banner-map .contact-list li .pic {
    height: 60px;
    margin-bottom: 20px;
    position: relative;
}

.banner-map .contact-list li .pic img {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.banner-map .contact-list li p {
    color: #454545;
    line-height: 30px;
}

#map {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.BMap_Marker div > img {
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scales;
    animation-name: scales;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.letters .main {
    padding: 80px 0 0;
}

.letters .title {
    text-align: center;
}

.letters .title p {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.letters .title span {
    color: #666;
}

.letters .wrap {
    width: 1050px;
    margin: 40px auto 0;
}

.letters input[type=text] {
    display: block;
    width: 500px;
    height: 40px;
    float: left;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    margin-right: 50px;
    margin-bottom: 30px;
    padding: 0 20px;
    font-size: 16px;
    color: #333;
}

.letters input[type=text]:nth-child(2n) {
    margin-right: 0;
}

.letters input::-webkit-input-placeholder,
.letters textarea::-webkit-input-placeholder {
    color: #999;
}

.letters input:-ms-input-placeholder,
.letters textarea:-ms-input-placeholder {
    color: #999;
}

.letters input::-ms-input-placeholder,
.letters textarea::-ms-input-placeholder {
    color: #999;
}

.letters input::placeholder,
.letters textarea::placeholder {
    color: #999;
}

.letters textarea {
    display: block;
    width: 100%;
    height: 140px;
    overflow: auto;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    outline: none;
    resize: none;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    padding: 10px 20px;
}

.letters input[type=submit] {
    width: 100%;
    height: 50px;
    background-color: #222;
    border-radius: 5px;
    border-color: #222;
    cursor: pointer;
    color: #fff;
}

.fenye {
    text-align: center;
    font-size: 0;
    margin-top: 40px;
}

.fenye .wrap {
    display: inline-block;
}

.fenye a {
    width: 30px;
    height: 30px;
    display: inline-block;
    font-size: 12px;
    line-height: 28px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    text-align: center;
    margin: 0 3px;
}

.fenye a:hover,
.fenye a.active {
    background-color: #1890ff;
    border-color: #1890ff;
    color: #fff;
}

.fenye a.disable {
    background-color: #d9d9d9;
    color: #fff;
    pointer-events: none;
    cursor: not-allowed;
}

.fenye a.ellipsis {
    border: 0;
    pointer-events: none;
    cursor: not-allowed;
}

.fenye a i {
    font-size: 10px;
}

.news-list-tw .main {
    padding: 80px 0 0;
}

.news-list-tw li {
    width: 370px;
    float: left;
    margin-right: 45px;
    margin-bottom: 45px;
}

.news-list-tw li:nth-child(3n) {
    margin-right: 0;
}

.news-list-tw li .pic {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.news-list-tw li .pic img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.news-list-tw li .pic:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news-list-tw li .con h6 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0 10px;
}

.news-list-tw li .con h6 a {
    font-size: 20px;
    color: #333;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.news-list-tw li .con h6 a:hover {
    color: #019bdf;
}

.news-list-tw li .con p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    color: #999;
    line-height: 24px;
}

.news-list-text .main {
    padding-top: 80px;
}

.news-list-text li {
    width: 580px;
    height: 200px;
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
    overflow: hidden;
    border: solid 1px #bfbfbf;
    padding: 30px 35px 0 30px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.news-list-text li:nth-child(2n) {
    margin-right: 0;
}

.news-list-text li:hover {
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    background-color: #019bdf;
    border-color: #019bdf;
}

.news-list-text li:hover .title i,
.news-list-text li:hover .title a {
    color: #ffffff;
}

.news-list-text li:hover .desc {
    color: rgba(255, 255, 255, 0.8);
}

.news-list-text li:hover .simple {
    color: rgba(255, 255, 255, 0.6);
}

.news-list-text li .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.news-list-text li .title a {
    padding-left: 20px;
    color: #333;
    font-size: 18px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.news-list-text li .title i {
    font-size: 20px;
    color: #666;
}

.news-list-text li .desc {
    font-size: 14px;
    padding-left: 42px;
    color: #666;
    text-align: left;
    line-height: 30px;
    margin-bottom: 15px;
}

.news-list-text li .simple {
    font-size: 14px;
    color: #999;
    padding-left: 42px;
    line-height: 30px;
}

.news-list-film .main {
    padding-top: 80px;
}

.news-list-film li {
    width: 370px;
    height: 380px;
    background-color: #f9f9f9;
    float: left;
    margin-right: 45px;
    margin-bottom: 40px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.news-list-film li:nth-child(3n) {
    margin-right: 0;
}

.news-list-film li:nth-child(3n) ~ li {
    margin-bottom: 0;
}

.news-list-film li:hover {
    background-color: #019bdf;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.news-list-film li:hover .con .title {
    color: #fff;
}

.news-list-film li:hover .con .title a {
    color: #fff;
}

.news-list-film li:hover .con .simple .time,
.news-list-film li:hover .con .simple .viewer {
    color: #fff;
}

.news-list-film li:hover .con .simple .viewer i,
.news-list-film li:hover .con .simple .viewer em {
    color: #fff;
}

.news-list-film li .pic {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.news-list-film li .pic a:hover:before {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
}

.news-list-film li .pic a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news-list-film li .pic a:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: url(../img/play_white.png) center center / cover no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    z-index: 1;
}

.news-list-film li .pic img {
    height: 100%;
    display: block;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: relative;
    z-index: 0;
}

.news-list-film li .con {
    height: 100px;
    padding: 25px;
}

.news-list-film li .con .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.news-list-film li .con .title a {
    font-size: 18px;
    color: #333;
}

.news-list-film li .con .simple .time {
    font-size: 14px;
    color: #999;
}

.news-list-film li .con .simple .viewer i {
    color: #666;
    font-size: 18px;
    margin-right: 5px;
    vertical-align: text-bottom;
}

.news-list-film li .con .simple .viewer em {
    font-size: 14px;
    color: #999;
    font-style: normal;
}

.product-list .main {
    padding-top: 80px;
}

.product-list li {
    width: 580px;
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
}

.product-list li:nth-child(2n) {
    margin-right: 0;
}

.product-list li .pic {
    height: 400px;
    overflow: hidden;
}

.product-list li .pic:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product-list li .pic img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.product-list li .title {
    border-bottom: 1px solid #d2d2d2;
}

.product-list li .title a {
    display: block;
    text-align: center;
    font-size: 24px;
    color: #333;
    padding: 25px 0;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.product-list li .title a:hover {
    color: #019bdf;
}

.product-list li .desc {
    padding: 25px 20px;
}

.product-list li .desc .item {
    width: 50%;
    float: left;
    text-align: left;
    color: #8e8e8e;
    font-size: 16px;
    line-height: 30px;
    padding: 0 10px;
}

.hyyy-list .main {
    padding-top: 80px;
}

.hyyy-list li {
    width: 580px;
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
}

.hyyy-list li:hover .con {
    background-color: #019bdf;
}

.hyyy-list li:hover .title a {
    color: #fff;
}

.hyyy-list li:hover .desc {
    color: #fff;
}

.hyyy-list li:nth-child(2n) {
    margin-right: 0;
}

.hyyy-list li .pic {
    height: 400px;
    overflow: hidden;
}

.hyyy-list li .pic:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.hyyy-list li .pic img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.hyyy-list li .con {
    background-color: #f5f5f5;
    height: 200px;
    padding: 40px 50px 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.hyyy-list li .title {
    margin-bottom: 20px;
}

.hyyy-list li .title a {
    display: block;
    text-align: center;
    font-size: 36px;
    color: #333;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.hyyy-list li .desc {
    font-size: 18px;
    color: #333;
    line-height: 30px;
    text-align: left;
}

.pruduce-top {
    padding: 60px 0;
}

.pruduce-top .fl {
    width: 600px;
}

.pruduce-top .fl .top-pic {
    width: 600px;
    height: 400px;
    margin-bottom: 10px;
}

.pruduce-top .fl .top-pic .swiper-container {
    height: 100%;
}

.pruduce-top .fl .top-pic .swiper-slide img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.pruduce-top .fl .thumbs-pic {
    position: relative;
    height: 80px;
    padding: 0 20px;
}

.pruduce-top .fl .thumbs-pic .swiper-container {
    height: 100%;
}

.pruduce-top .fl .thumbs-pic .swiper-slide {
    position: relative;
    cursor: pointer;
}

.pruduce-top .fl .thumbs-pic .swiper-slide img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.pruduce-top .fl .thumbs-pic .swiper-slide.swiper-slide-thumb-active:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.pruduce-top .fl .thumbs-pic .swiper-button-prev,
.pruduce-top .fl .thumbs-pic .swiper-button-next {
    width: 17px;
    height: 100%;
    top: 0;
    margin: 0;
    outline: none;
    background-color: #ddd;
    background-size: 40%;
    opacity: 1;
}

.pruduce-top .fl .thumbs-pic .swiper-button-prev {
    left: 0;
}

.pruduce-top .fl .thumbs-pic .swiper-button-next {
    right: 0;
}

.pruduce-top .fr {
    width: 540px;
}

.pruduce-top .fr .name {
    font-size: 28px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.pruduce-top .fr .desc {
    font-size: 16px;
    color: #666;
    line-height: 28px;
    padding: 20px 0;
    text-align: left;
}

.pruduce-top .fr .params {
    width: 100%;
    font-size: 14px;
    color: #666;
    background-color: #f5f5f5;
    padding: 32px 20px;
    margin-top: 10px;
}

.pruduce-top .fr .params dl {
    width: 50%;
    float: left;
    padding: 5px 0 5px 20px;
}

.pruduce-top .fr .params dl dt {
    font-weight: bold;
    float: left;
}

.pruduce-top .fr .params dl dd {
    float: left;
}

.pruduce-top .fr .zixun {
    margin-top: 40px;
    font-size: 0;
    text-align: center;
    padding: 0 15px;
}

.pruduce-top .fr .zixun a {
    display: inline-block;
    width: 280px;
    float: left;
    font-size: 28px;
    color: #fff;
    line-height: 50px;
    border-radius: 50px;
    background-color: #333;
    position: relative;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.pruduce-top .fr .zixun a:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

.pruduce-top .fr .zixun a.qjzs {
    width: 200px;
    margin-right: 30px;
    font-size: 24px;
}

.pruduce-top .fr .zixun span {
    display: block;
    width: 280px;
    border-radius: 50px;
    background-color: #019bdf;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}

.pruduce-top .fr .zixun i {
    font-size: 28px;
    margin-right: 5px;
}

.plate-title-art {
    text-align: center;
    position: relative;
}

.plate-title-art:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #bbb;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.plate-title-art span {
    display: inline-block;
    font-size: 30px;
    color: #333;
    font-weight: bold;
    padding: 0 30px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.params-s .main {
    padding-bottom: 40px;
}

.params-s .params-s-box {
    margin: 40px 0 80px;
}

.params-s .params-s-box .fl {
    width: 50%;
}

.params-s .params-s-box .fl dl {
    width: 100%;
}

.params-s .params-s-box .fl dl:after {
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}

.params-s .params-s-box .fl dt {
    width: 100px;
    text-align: center;
    text-align-last: justify;
}

.params-s .params-s-box .fl dt,
.params-s .params-s-box .fl dd {
    float: left;
    font-size: 16px;
    color: #333;
    line-height: 36px;
}

.params-s .params-s-box .fr {
    width: 50%;
}

.params-s .pic-list li {
    width: 580px;
    height: 400px;
    position: relative;
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.params-s .pic-list li:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.params-s .pic-list li img {
    display: block;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    cursor: pointer;
}

.params-s .pic-list li span {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    bottom: 0;
    line-height: 30px;
    background-color: rgba(2, 162, 217, 0.6);
    text-align: center;
    color: #fff;
}

.params-s .pic-list li:nth-child(2n) {
    margin-right: 0;
}

.pruduce-ys .clearfix {
    padding-top: 40px;
    padding-bottom: 80px;
}

.pruduce-ys .clearfix:hover .fr img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pruduce-ys .fl {
    width: 50%;
}

.pruduce-ys li {
    width: 100%;
    height: 130px;
    background-color: #f3f3f3;
    float: left;
    padding: 17px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.pruduce-ys li:hover i {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pruduce-ys li:nth-child(odd):hover {
    background-color: #e5e5e5;
}

.pruduce-ys li:nth-child(odd) i {
    background-color: #fff;
}

.pruduce-ys li:nth-child(even) {
    background-color: #02a2d9;
    color: #fff;
}

.pruduce-ys li:nth-child(even):hover {
    background-color: #0094ff;
}

.pruduce-ys li:nth-child(even) i {
    background-color: #fff;
    color: #02a2d9;
}

.pruduce-ys li:nth-child(2n) {
    margin-right: 0;
}

.pruduce-ys li i {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #e3e3e3;
    border-radius: 50%;
    float: left;
    margin-top: 5px;
    line-height: 80px;
    text-align: center;
    font-size: 40px;
    color: #666;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.pruduce-ys li span {
    display: block;
    width: 450px;
    font-size: 16px;
    line-height: 36px;
    float: left;
    margin-left: 20px;
    margin-top: 10px;
}

.pruduce-ys .fr {
    width: 50%;
    height: 520px;
    overflow: hidden;
}

.pruduce-ys .fr img {
    display: block;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.accordion .main > p {
    text-align: center;
    margin-top: 30px;
}

.accordion-container {
    width: 100%;
    height: 500px;
    margin-top: 60px;
}

.accordion-container .accordion-wrapper {
    height: 100%;
}

.accordion-container .accordion-item {
    width: 150px;
    height: 100%;
    float: left;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.accordion-container .accordion-item:last-child {
    margin-right: 0;
}

.accordion-container .accordion-item.active {
    width: 720px;
}

.accordion-container .accordion-item.active .layer {
    height: 80px;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(2, 162, 217, 0.9)));
    background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(2, 162, 217, 0.9) 70%);
    background-blend-mode: normal, normal;
    padding: 0 50px;
}

.accordion-container .accordion-item.active .layer img {
    float: left;
    margin-top: 10px;
    margin-right: 20px;
}

.accordion-container .accordion-item.active .layer p {
    line-height: 80px;
    text-align: left;
}

.accordion-container .accordion-item.active:before {
    visibility: hidden;
    opacity: 0;
}

.accordion-container .accordion-item .layer {
    width: 100%;
    height: 150px;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.6)), color-stop(70%, rgba(0, 0, 0, 0.6)));
    background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 70%);
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    padding: 20px 10px;
    text-align: center;
}

.accordion-container .accordion-item .layer .wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.accordion-container .accordion-item .layer img {
    width: auto;
    display: block;
    margin: 0 auto;
}

.accordion-container .accordion-item .layer p {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 24px;
    display: block;
    color: #fff;
    line-height: 36px;
}

.accordion-container .accordion-item .layer span {
    font-size: 24px;
    display: block;
    color: #fff;
}

.accordion-container .accordion-item .layer .sun {
    float: left;
    display: none;
    line-height: 57px;
    padding-left: 30px;
}

.sem {
    padding-bottom: 80px;
}

.sem .item {
    position: relative;
}

.sem .item:nth-child(odd) .content {
    float: right;
}

.sem .item:nth-child(odd) .main .wrap {
    right: 0;
    left: auto;
}

.sem .main {
    position: absolute;
    width: 1200px;
    height: 100%;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sem .content {
    width: 400px;
    height: 300px;
    position: relative;
    background-color: rgba(2, 162, 217, 0.8);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sem img {
    display: block;
}

.sem .main .wrap {
    position: absolute;
    padding: 0 30px;
    z-index: 1;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}

.sem .main .wrap p {
    font-size: 34px;
    text-align: center;
    line-height: 48px;
    margin-bottom: 20px;
}

.sem .main .wrap span {
    font-size: 16px;
    line-height: 36px;
}

.hyyy-detail .main {
    padding-top: 80px;
}

.hyyy-detail .title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.hyyy-detail .desc {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.hyyy-detail .list li {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.hyyy-detail .list li img {
    display: block;
}

.hyyy-detail .list li:nth-child(2),
.hyyy-detail .list li:nth-child(3),
.hyyy-detail .list li:last-child {
    margin-right: 0;
}

.hyyy-film {
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 80px;
    padding-top: 160px;
}

.hyyy-film .name {
    text-align: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px;
}

.hyyy-film .play-btn {
    width: 68px;
    height: 68px;
    background: url(../img/play_white.png) center center / cover no-repeat;
    cursor: pointer;
    margin: 0 auto;
}

.hyyy-film .film-mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 9;
}

.hyyy-film .film-mask .wrap {
    max-width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hyyy-film .film-mask .wrap video {
    width: 100%;
    height: auto;
}

.fwln .main {
    padding: 80px 0;
}

.fwln .list {
    margin-top: 40px;
}

.fwln li {
    width: 380px;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    float: left;
    margin-right: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 40px 30px;
    color: #fff;
}

.fwln li:last-child {
    margin-right: 0;
}

.fwln li .tit {
    font-size: 20px;
    margin-bottom: 20px;
}

.fwln li .tit img {
    width: auto;
    margin-right: 10px;
}

.fwln li .desc {
    text-align: left;
}

.fwln li .desc p {
    color: #fff;
    line-height: 36px;
}

.fwbz .content {
    height: 480px;
    background: url(../img/fwbz_img.jpg) center center / cover no-repeat;
    margin-top: 40px;
    position: relative;
}

.fwbz .content .wrap {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    background-color: rgba(2, 162, 217, 0.8);
    padding-left: 30px;
    padding-top: 60px;
}

.fwbz .content .wrap .item {
    color: #fff;
    margin-bottom: 40px;
}

.fwbz .content .wrap .item .tit {
    margin-bottom: 15px;
}

.fwbz .content .wrap .item .tit img {
    width: 20px;
    margin-right: 5px;
}

.fwbz .content .wrap .item .tit span {
    font-size: 20px;
    font-weight: bold;
    vertical-align: text-bottom;
}

.fwbz .content .wrap .item .desc {
    text-align: left;
    padding-left: 30px;
}

.fwbz .content .wrap .item .desc p {
    font-size: 16px;
    color: #fff;
}

.fwlc .main {
    padding: 80px 0;
}

.fwlc .list {
    padding: 110px 0 150px;
    margin-top: 40px;
}

.fwlc .item {
    width: 25%;
    height: 20px;
    background-color: #65daae;
    position: relative;
    float: left;
}

.fwlc .item:hover .pic img {
    -webkit-animation: jump 1s infinite linear;
    animation: jump 1s infinite linear;
}

.fwlc .item .pic {
    height: 65px;
    position: absolute;
    width: 100%;
    left: 0;
}

.fwlc .item .pic img {
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
}

.fwlc .item .con {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 10px;
}

.fwlc .item .con p {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.fwlc .item .con span {
    font-size: 16px;
    color: #666;
    line-height: 30px;
}

.fwlc .item:nth-child(odd) .pic {
    top: -110px;
}

.fwlc .item:nth-child(odd) .con {
    top: 55px;
}

.fwlc .item:nth-child(even) .pic {
    top: 55px;
}

.fwlc .item:nth-child(even) .con {
    top: -110px;
}

.fwlc .item:nth-child(1) {
    background-color: #65daae;
    border-radius: 10px 0 0 10px;
}

.fwlc .item:nth-child(1):before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 10px 10px 20px 10px;
    border-color: transparent transparent #65daae transparent;
    position: absolute;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.fwlc .item:nth-child(2) {
    background-color: #64d0da;
}

.fwlc .item:nth-child(2):before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 20px 10px 10px 10px;
    border-color: #64d0da transparent transparent transparent;
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.fwlc .item:nth-child(3) {
    background-color: #34b2e4;
}

.fwlc .item:nth-child(3):before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 10px 10px 20px 10px;
    border-color: transparent transparent #34b2e4 transparent;
    position: absolute;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.fwlc .item:nth-child(4) {
    background-color: #075482;
    border-radius: 0 10px 10px 0;
}

.fwlc .item:nth-child(4):before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 20px 10px 10px 10px;
    border-color: #075482 transparent transparent transparent;
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.fwtk {
    background: url(../img/fwtk_bg.jpg) center center / cover no-repeat;
}

.fwtk .plate-title h2 {
    color: #fff;
    margin-bottom: 30px;
}

.fwtk .plate-title h2:after {
    display: none;
}

.fwtk .desc p {
    color: #fff;
}

.fwtk .main {
    padding: 80px 0;
}

.fwtk .content {
    margin-top: 40px;
}

.fwtk .content .fl {
    width: 580px;
}

.fwtk .content .fl p {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
}

.fwtk .content .fr {
    width: 600px;
    padding-top: 8px;
}

.product-film .film-wrap {
    height: 500px;
    position: relative;
    margin: 40px 0;
    padding-top: 190px;
}

.product-film .play-btn {
    width: 68px;
    height: 68px;
    background: url(../img/play_white.png) center center / cover no-repeat;
    cursor: pointer;
    margin: 0 auto;
}

.product-film .film-mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 99;
}

.product-film .film-mask .wrap {
    max-width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product-film .film-mask .wrap video {
    width: 100%;
    height: auto;
}

.ljzbhj .film-wrap {
    width: 600px;
    height: 350px;
    position: relative;
    padding-top: 140px;
}

.ljzbhj .play-btn {
    width: 68px;
    height: 68px;
    background: url(../img/play_white.png) center center / cover no-repeat;
    cursor: pointer;
    margin: 0 auto;
}

.ljzbhj .film-mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 99;
}

.ljzbhj .film-mask .wrap {
    max-width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ljzbhj .film-mask .wrap video {
    width: 100%;
    height: auto;
}

.qywn-film .film-wrap {
    width: 100%;
    height: 600px;
    position: relative;
    padding-top: 240px;
}

.qywn-film .play-btn {
    width: 68px;
    height: 68px;
    background: url(../img/play_white.png) center center / cover no-repeat;
    cursor: pointer;
    margin: 0 auto;
}

.qywn-film .film-mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 99;
}

.qywn-film .film-mask .wrap {
    max-width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.qywn-film .film-mask .wrap video {
    width: 100%;
}

.play-btn {
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
}

.play-btn:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.news-show .main {
    padding: 80px 0;
}

.news-show .news-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.news-show .news-title h1 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.news-show .news-publish {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.news-show .news-info {
    font-size: 16px;
    color: #666;
    line-height: 34px;
    margin-bottom: 40px;
}

.news-show .news-info p {
    text-indent: 2em;
}

.news-show .news-info img {
    display: block;
    width: auto;
    margin: 0 auto;
}

.news-show .news-info video {
    display: block;
    width: 1000px;
    height: auto;
    margin: 30px auto;
}

.fanye a {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.fanye a:hover {
    color: #019bdf;
}

.suspension {
    position: fixed;
    top: 70%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 99;
    background-color: #fff;
}

.suspension li {
    width: 70px;
    height: 75px;
    background-color: #333;
    text-align: center;
    position: relative;
}

.suspension li img {
    display: block;
    width: auto;
    margin: auto;
    height: 25px;
}

.suspension li a {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    padding-top: 15px;
}

.suspension li:last-child {
    margin-bottom: 0;
    background-color: #a5a5a5;
}

.suspension li:hover .sub-content {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
}

.suspension li .sub-content {
    width: 215px;
    background-color: #fff;
    border: 1px solid #e2e0e0;
    position: absolute;
    right: calc(120%);
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(20px);
    transform: translateY(-50%) translateX(20px);
    visibility: hidden;
    opacity: 0;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.suspension li .sub-content .sub-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px;
}

.suspension li .sub-content .sub-wrap:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid #e2e0e0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    right: -7px;
    border-left: 0;
    border-bottom: 0;
}

.suspension li .sub-content .sub-wrap .weixin {
    width: 100%;
    height: 100%;
}

.suspension li .sub-content img {
    height: auto;
}

.suspension li .sub-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.suspension li .sub-content span {
    font-size: 24px;
    color: #019bdf;
    font-weight: 700;
}

.product-list .btn {
    font-size: 0;
    margin-top: 20px;
    text-align: center;
}

.product-list .btn a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    line-height: 45px;
    width: 180px;
    height: 45px;
    background-color: rgba(1, 149, 218, .8);
    text-align: center;
    margin-right: 17px;
    border-radius: 50px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.product-list .btn a.xxcs {
    margin-right: 0;
    background-color: rgba(69, 69, 69, .8);
}

.product-list .btn a:hover {
    color: #fff;
    background-color: rgba(1, 149, 218, 0.8);
}

.friendlink {
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 14px;
    border-bottom: 1px solid #fff;
}
.friendlink a{
    color: #fff;
    padding: 0 5px;
}

.product-nav {
    text-align: center;
    margin-top: 40px;
}
.product-nav ul {
    display: inline-block;
}
.product-nav ul li {
    width: 180px;
    height: 45px;
    line-height: 45px;
    border-radius: 25px;
    border: solid 1px #dcdcdc;
    float: left;
    margin: 0 15px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}
.product-nav ul li a {
    display: block;
    color: #666;
    position: relative;
}
.product-nav ul li:hover,
.product-nav ul li.active{
    border: solid 1px transparent;
}
.product-nav ul li:hover a,
.product-nav ul li.active a{
    color: #fff;
}
.product-nav ul li:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #02a2d9;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    left: 0;
    top: 0;
}
.product-nav ul li:hover:before,
.product-nav ul li.active:before{
    width: 100%;
}
.product-list .main {
    padding-top: 50px;
}
header #header-nav li .second {
    position: absolute;
    left: 50%;
    top: 90%;
    transform: translateX(-50%);
    width: 120%;
    z-index: 66;
    padding-top: 15px;
    text-align: center;
    display: none;
}
header #header-nav li .second div {
    padding: 10px 5px;
    background-color: rgba(2, 162, 217, 0.7);
    box-shadow: 0 3px 5px rgb(102 102 102 / 60%);
}
header #header-nav li .second a {

    color: #fff;
}
header #header-nav li:hover .second {
    display: block;
}
header #header-nav li:hover>a, header #header-nav li.active>a {
    color: #019bdf;
}