/* CSS Document */

html,
body {
    position: relative;
    height: 100%;
}

.top-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 90;
    transition: all .2s;
}

.top-nav.bg {
    background-color: rgba(0, 0, 0, 0.36);
}

.navbar-brand img {
    width: 100px;
}

.top-nav-container {
    padding-right: 250px;
}

.top-nav a {
    color: #ffffff;
}

.top-nav a:hover {
    color: #cf0005;
}

.top-nav .dropdown-toggle::after {
    display: none;
}

.top-nav .navbar-nav .nav-link {
    color: #ffffff;
    padding: 1rem;
}

.top-nav .navbar-nav .nav-item.show .nav-link {
    color: #cf0005 !important;
}

.top-nav .dropdown-menu {
    background: #0c0a0ae0;
}

.top-nav .dropdown-item:focus,
.dropdown-item:hover {
    background: #cf0005;
    color: #ffffff !important;
}

.top-right {
    display: flex;
    position: absolute;
    right: 15px;
    top: 46px;
}

.top-search i.icon-search,
.top-lang i.icon-lang {
    margin-right: 5px;
}

.top-lang {
    padding: 0 20px;
}

.top-search:before {
    content: "";
    height: 16px;
    width: 1px;
    background-color: #ffffff54;
    position: absolute;
    left: 0;
    top: 5px;
}

.top-search {
    padding: 0 20px;
    position: relative;
}

.index-swiper {
    position: relative;
    height: 100%;
}

.index-swiper-con {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.right-nav {
    position: fixed;
    top: 50%;
    right: 0;
    color: #ffffff;
    margin-top: -55px;
    z-index: 999;
}

.right-nav ul li {
    list-style: none;
    margin: 6px 0;
    text-align: right;
}

.right-nav ul li a {
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
}

.right-nav ul li a span {
    opacity: 0;
}

.right-nav ul li a:after {
    content: "";
    display: block;
    width: 0%;
    float: right;
    margin-top: 14px;
    margin-left: 10px;
    width: 40px;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: rgba(255, 255, 255, 1);
    transition: width .2s;
}

.right-nav ul li.active a:after,
.right-nav ul li a:hover:after {
    width: 64px;
}

.right-nav ul li.active a span,
.right-nav ul li a:hover span {
    opacity: 1;
}

.swiper-about {
    width: 100%;
    height: 100%;
    background: url(../images/bg-1.jpg) no-repeat;
    background-size: cover;
    position: relative;
}

.index-about-con {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.23);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.index-about-h1 {
    font-weight: normal;
    letter-spacing: 8px;
}

.video-icon-con .video-icon {
    margin-left: auto;
    margin-right: auto;
    margin-top: 88px;
    position: relative;
    cursor: pointer;
    width: 88px;
    height: 88px;
    font-size: 38px;
    padding: 25px 35px;
    color: #ffffff;
    -moz-transition: 0.5s ease;
    /* Firefox 4 */
    -webkit-transition: 0.5s ease;
    /* Safari 和 Chrome */
    -o-transition: 0.5s ease;
}

.video-icon-con .video-icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 88px;
    height: 88px;
    background: url(../images/video-icon.png) no-repeat;
    background-size: cover;
    webkit-animation: video-rotate 5s linear infinite;
    animation: video-rotate 5s linear infinite;
}

.video-icon-con .video-icon:hover {
    transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    /* IE 9 */
    -moz-transform: scale(1.1, 1.1);
    /* Firefox */
    -webkit-transform: scale(1.1, 1.1);
    /* Safari and Chrome */
    -o-transform: scale(1.1, 1.1);
    /* Opera */
}

@-webkit-keyframes video-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes video-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.videos {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    /* left: 50%; */
    /* top: 50%; */
    right: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    max-width: 300px;
    max-height: 200px;
    z-index: 10000;
}

.videos-con {
    border: 1px solid #080808;
    /*position: fixed;*/
    width: 100%;
    height: 100%;
}

.videos-con video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.vclose {
    position: absolute;
    right: 5%;
    top: 5%;
    border-radius: 100%;
    cursor: pointer;
}

.swiper-pro {
    width: 100%;
    height: 100%;
}

.index-pro-con {
    width: 100%;
    height: 100%;
}

.pro-serise-item {
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    background-position: left center;
    background-size: cover;
}

.pro-serise-item:hover {
    width: 90%;
    z-index: 1;
}

.pro-serise-item:nth-child(2) {
    right: 0;
}

.pro-serise-item .pro-serise-name {
    background-color: #00000088;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.pro-serise-item:hover .pro-serise-name {
    opacity: 0;
}

.pro-serise-item .pro-serise-name h1 {
    font-weight: normal;
    color: #ffffff;
}

.swiper-case {
    width: 100%;
    height: 100%;
    background: url(../images/bg-case.jpg) no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-case:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
}

.index-case-con {
    position: relative;
    z-index: 1;
    color: #ffffff;
    flex: 1;
}

.swiper-title {
    text-align: center;
    color: #ffffff;
}

.swiper-title h1 {
    font-weight: normal;
}

.swiper-title hr {
    width: 60px;
    border: none;
    margin: 20px auto;
    border-bottom: 3px solid #cf0005;
    opacity: 1;
}

.index-case-p {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-top: 1rem;
}

.index-case-swiper {
    padding-left: 36px;
    padding-right: 36px;
    max-width: 450px;
    margin: auto;
    position: relative;
}

.case-item {
    text-align: center;
}

.case-list-btn {
    top: 50%;
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
}

.case-list-btn .swiper-button-prev {
    border-radius: 50%;
    left: 0;
}

.case-list-btn .swiper-button-next {
    border-radius: 50%;
    right: 0;
}

.case-list-btn .swiper-button-next,
.case-list-btn .swiper-button-prev {
    width: 36px;
    height: 36px;
    border-color: #cf0005;
    background: #cf0005;
    outline: none
}

.case-list-btn .swiper-button-next:after,
.case-list-btn .swiper-button-prev:after {
    color: #ffffff;
    font-size: 16px;
    font-weight: bolder;
}

.case-list-btn .swiper-button-next:hover,
.case-list-btn .swiper-button-prev:hover {
    border-color: #cf0005;
    background: #cf0005;
}

.case-list-btn .swiper-button-next:hover:after,
.case-list-btn .swiper-button-prev:hover:after {
    color: #ffffff;
}

.case-list-btn .swiper-button-prev.swiper-button-disabled,
.case-list-btn .swiper-button-next.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.54);
}

.swiper-news {
    width: 100%;
    height: 100%;
    background: url(../images/bg-news.jpg) no-repeat;
    background-size: cover;
}

.index-case-serise {
    position: absolute;
    left: 25%;
    width: 50%;
    bottom: 0;
    min-height: 0.2rem;
    text-align: center;
    z-index: 1;
}

.index-case-serise-con {
    display: inline-block;
    position: relative;
}

.case-serise-swiper {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100px;
    height: 78px;
    z-index: 3;
    margin-left: -50px;
    margin-top: -39px;
}

.case-serise-swiper .swiper-slide{
	opacity:0 !important;
}

.case-serise-swiper .swiper-slide-active{
	opacity:1 !important;
}

.case-serise-item img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
}

.case-serise-item h5 {
    color: #ffffff;
    margin-top: 1rem;
    font-weight: normal;
}

.ui-loop {
    position: absolute;
    width: 88px;
    height: 88px;
    left: 50%;
    top: 0;
    margin-left: -44px;
    margin-top: -44px;
    z-index: 10;
}

.path-loop {
    fill: none;
    stroke: #cf0005;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.swiper-news {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-news-con {
    flex: 1;
}

.index-news-swiper {
    padding-left: 70px;
    padding-right: 70px;
    position: relative;
    max-width: 1600px;
    margin: auto;
}

.news-item a {
    display: block;
    background: #ffffff;
    color: #333333;
    border-bottom: 5px solid #bc0208;
}

.news-item a:hover .news-text .news-name {
    color: #cf0005;
}

.news-item a .news-img img {
    width: 100%;
}

.news-item a .news-text {
    padding: 15px;
}

.news-item a .news-text .news-name {
    font-size: 1.125rem;
    margin-top: 3px;
    margin-bottom: 3px;
}

.news-item a .news-text .news-jj {
    font-size: 0.875rem;
}

.news-swiper-btn {
    top: 50%;
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
}

.news-swiper-btn .swiper-button-prev {
    border-radius: 50%;
    left: 0;
}

.news-swiper-btn .swiper-button-next {
    border-radius: 50%;
    right: 0;
}

.news-swiper-btn .swiper-button-next,
.news-swiper-btn .swiper-button-prev {
    width: 36px;
    height: 36px;
    border-color: #cf0005;
    background: #cf0005;
    outline: none
}

.news-swiper-btn .swiper-button-next:after,
.news-swiper-btn .swiper-button-prev:after {
    color: #ffffff;
    font-size: 16px;
    font-weight: bolder;
}

.news-swiper-btn .swiper-button-next:hover,
.news-swiper-btn .swiper-button-prev:hover {
    border-color: #cf0005;
    background: #cf0005;
}

.news-swiper-btn .swiper-button-next:hover:after,
.news-swiper-btn .swiper-button-prev:hover:after {
    color: #ffffff;
}

.news-swiper-btn .swiper-button-prev.swiper-button-disabled,
.news-swiper-btn .swiper-button-next.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.54);
}

.swiper-slide.foot {
    height: auto;
}

.index-news-more {
    text-align: center;
    margin-top: 4rem;
}

.index-news-more a {
    display: inline-block;
    border: 1px solid #ffffff;
    font-size: 1.25rem;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 204px;
}

.index-news-more a:hover {
    border-color: #cf0005;
    color: #ffffff;
    background: #cf0005;
}

.foot {
    background: #111111;
    padding-top: 36px;
    color: #ffffff;
}

.foot a {
    color: #ffffff;
}

.foot-con {
    width: 90%;
    margin: auto;
}

.foot-left {
    width: 50%;
    float: left;
}

.foot-right {
    width: 50%;
    float: left;
    padding-left: 36px;
}

.foot-nav-item {
    width: 33.3%;
    float: left;
    padding-right: 30px;
}

.foot-nav-title {
    font-size: 20px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    padding: 15px 0;
    margin-bottom: 15px;
}

.foot-nav-ul {
    min-height: 180px;
}

.foot-nav-ul ul {
    padding-left: 0;
}

.foot-nav-ul ul li {
    list-style: none;
}

.foot-nav-ul ul li a {
    color: #ffffff;
    opacity: 0.9;
}

.foot-nav-ul ul li a:hover {
    color: #cf0005;
    opacity: 1;
    text-decoration: none;
}

.foot-contact {
    margin-top: 10px;
}

.foot-contact ul {
    padding-left: 0;
}

.foot-contact ul li {
    list-style: none;
    display: inline-block;
    margin-right: 5%;
}

.foot-map {
    width: 100%;
    height: 288px;
    padding-top: 15px;
    position: relative;
}

.foot-map .contact-map {
    width: 100%;
    height: 100%;
    border: 3px solid #e5e5e5;
}

.foot-copyright {
    margin-top: 45px;
}

.foot-copyright-con {
    width: 90%;
    margin: auto;
    border-top: 1px solid #dddddd;
    padding-top: 18px;
    padding-bottom: 18px;
}

.foot-copyright-left {
    float: left;
    width: calc(100% - 90px);
    padding-top: 30px;
}

.foot-copyright-left a {
    color: #ffffff;
    opacity: 0.9;
}

.foot-copyright-left a:hover {
    color: #cf0005;
    opacity: 1;
    text-decoration: none;
}

.foot-copyright-right {
    float: right;
    width: 77px;
}

#ban-img {
    height: 100vh;
    position: relative;
    background-size: cover;
}

.ban-img-con {
    height: 100%;
    width: 90%;
}

.ban-img-title {
    position: absolute;
    bottom: 10%;
    color: #ffffff;
    z-index: 10;
}

.ban-img-title h1 {
    margin-top: 1rem;
}

.ban-img-title span {
    font-size: 6.25rem;
    font-weight: bolder;
}

#ban-img:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.ban-about {
    background-image: url(../images/bg-1.jpg);
    background-size: cover;
    background-position: center center;
}

.ban-img-con .video-icon-con {
    position: absolute;
    top: 50%;
    margin-top: 0;
    z-index: 10;
    left: 50%;
    margin-left: -44px;
    margin-top: -44px;
}

.ban-img-con .video-icon-con .video-icon {
    margin-top: 0;
}

#contian {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.contianer-serise {
	margin-bottom: 1rem;
}

.contianer-serise ul {
	padding-left: 0;
	text-align: center;
}

.contianer-serise ul li {
	list-style: none;
	display: inline-block;
	margin: 5px;
}

.contianer-serise ul li a {
	display: block;
	padding: 5px 20px;
	background: #eeeeee;
}

.contianer-serise ul li a:hover,
.contianer-serise ul li a.cur {
	background: #cf0005;
	color: #ffffff;
}
.about-txt {
    width: 90%;
}

.about-l h1 {
    font-size: 3.75rem;
    font-style: italic;
    font-weight: bolder;
}

.about-l h2 {
    font-size: 3.125rem;
    font-weight: bolder;
    margin-top: 2rem;
    line-height: 4rem;
}

.about-equip {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid #eeeeee;
}

.container-title {
    color: #111111;
}

.about-equip-p {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-top: 1rem;
}

.about-equip-swiper {
    position: relative;
    margin-top: 3rem;
    padding-left: 60px;
    padding-right: 60px;
}

.about-equip-swiper-container{
	overflow: hidden;
}

.equip-item {
    position: relative;
}

.equip-item:hover .equip-name {
    display: block;
}

.equip-item {
    overflow: hidden;
}

.equip-item img {
    width: 100%;
    transition: all .6s;
}

.equip-item:hover img {
    transform: scale(1.2);
}

.equip-name {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 10px 15px;
    color: #ffffff;
    text-align: center;
    display: none;
}

.equip-swiper-btn {
    top: 50%;
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
}

.equip-swiper-btn .swiper-button-prev {
    border-radius: 50%;
    left: 0;
}

.equip-swiper-btn .swiper-button-next {
    border-radius: 50%;
    right: 0;
}

.equip-swiper-btn .swiper-button-next,
.equip-swiper-btn .swiper-button-prev {
    width: 36px;
    height: 36px;
    border-color: #cf0005;
    background: #cf0005;
    outline: none
}

.equip-swiper-btn .swiper-button-next:after,
.equip-swiper-btn .swiper-button-prev:after {
    color: #ffffff;
    font-size: 16px;
    font-weight: bolder;
}

.equip-swiper-btn .swiper-button-next:hover,
.equip-swiper-btn .swiper-button-prev:hover {
    border-color: #cf0005;
    background: #cf0005;
}

.equip-swiper-btn .swiper-button-next:hover:after,
.equip-swiper-btn .swiper-button-prev:hover:after {
    color: #ffffff;
}

.equip-swiper-btn .swiper-button-prev.swiper-button-disabled,
.equip-swiper-btn .swiper-button-next.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.54);
}

.about-honor {
    margin-top: 6rem;
}

.about-honor-swiper-container{
	overflow: hidden;
}

.honor-ban {
    padding-top: 6rem;
    padding-bottom: 6rem;
    min-height: 585px;
    background: url(../images/honor-bg.jpg) #e6e6e6 no-repeat;
    background-position: 70% center;
    background-size: auto 100%;
}

.honor-ban-con {
    width: 90%;
}

.honor-title {
    text-align: left;
    color: #111111;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.honor-txt {
    margin-top: 1rem;
}

.honor-list {
    margin-top: 6rem;
}

.honor-list-con {
    width: 90%;
}

.honor-swiper {
    background: url(../images/honor-list-bg.jpg) no-repeat bottom;
    background-size: 100% 30%;
    padding-bottom: 50px;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
}

.honor-item {
    text-align: center;
}

.honor-swiper-btn {
    top: 50%;
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
}

.honor-swiper-btn .swiper-button-prev {
    border-radius: 50%;
    left: 0;
}

.honor-swiper-btn .swiper-button-next {
    border-radius: 50%;
    right: 0;
}

.honor-swiper-btn .swiper-button-next,
.honor-swiper-btn .swiper-button-prev {
    width: 36px;
    height: 36px;
    border-color: #cf0005;
    background: #cf0005;
    outline: none
}

.honor-swiper-btn .swiper-button-next:after,
.honor-swiper-btn .swiper-button-prev:after {
    color: #ffffff;
    font-size: 16px;
    font-weight: bolder;
}

.honor-swiper-btn .swiper-button-next:hover,
.honor-swiper-btn .swiper-button-prev:hover {
    border-color: #cf0005;
    background: #cf0005;
}

.honor-swiper-btn .swiper-button-next:hover:after,
.honor-swiper-btn .swiper-button-prev:hover:after {
    color: #ffffff;
}

.honor-swiper-btn .swiper-button-prev.swiper-button-disabled,
.honor-swiper-btn .swiper-button-next.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.54);
}

.ban-contact {
    background-image: url(../images/ban-contact.jpg);
}

.contact-txt {
    width: 90%;
}

.contact-maps {
    position: relative;
    width: 100%;
    height: 560px;
    margin-top: 6rem;
}

#mapContact {
    width: 100%;
    height: 560px;
}
.contact-feedback{margin-top:5rem}
.contact-title{ font-weight:bolder; color:#111111; margin-bottom:1.5rem;}
.feedback-con{margin-top:1rem;}
.feedback-form .row{margin-left:-0.75rem;margin-right:-0.75rem;}
.feedback-form .form-control{ font-size:14px;}
.feedback-form .form-control-input{position:relative; margin-top:0.5rem; margin-bottom: 1rem;}
.feedback-form .form-control-input i{position:absolute; left:15px; top:12px; color:#cf0005; font-size:16px;}
.feedback-form .form-control-input .form-control, .feedback-form .form-textarea {
    width: 100%;
    padding: 5px 15px 5px 35px;
    height: 40px;
    line-height: 26px;
    font-size: 14px;
    color: #333333;
    background-repeat: no-repeat;
    background-position: .5rem center;
    background-size: .5rem;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
	border-radius:0;
    transition: all .3s;
	
}
.feedback-form .form-textarea{
	height: auto;
	padding-left:15px;
}
.feedback-form .form-control-input .form-control:focus,.feedback-form .form-control-input .form-textarea:focus {
    color: #ffffff;
    background-color: #cf0005;
    border-color: #cf0005;
    outline: 0;
    box-shadow: none;
}

.feedback-form .form-control-input .form-control:focus::-webkit-input-placeholder, .feedback-form .form-control-input .form-textarea:focus::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #ffffff;
}
.feedback-form .form-control-input .form-control:focus:-moz-placeholder,.feedback-form .form-control-input .form-textarea:focus:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #ffffff;
}
.feedback-form .form-control-input .form-control:focus::-moz-placeholder, .feedback-form .form-control-input .form-textarea:focus::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
    color: #ffffff;
}
.feedback-form .form-control-input .form-control:focus:-ms-input-placeholder, .feedback-form .form-control-input .form-textarea:focus:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
    color: #ffffff;
}
.feedback-submit{
	background: #cf0005;
    color: #ffffff;
    border-radius: 0;
    width: 100%;
    height: 40px;
    float: right;
}
.feedback-submit:hover {
    color: #ffffff;
    background-color: #b30205;
}

.ban-service {
    background-image: url(../images/ban-service.jpg);
}

.service-txt {
    width: 90%;
    overflow: hidden;
}

.service-p-con {
    max-width: 620px;
}

.partner-list {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 1rem;
}

.partner-items {
    float: left;
    width: 20%;
    padding: 10px 10px;
}

.partner-item {
    border: 1px solid #cccccc;
	text-align: center;
}

.ban-news {
    background-image: url(../images/ban-news.jpg);
}

.news-list {
    margin-left: -30px;
    margin-right: -30px;
}

.news-items {
    float: left;
    width: 33.3%;
    padding: 30px;
}

.news-txt {
    width: 90%;
    overflow: hidden;
}

.news-con-title {
    text-align: center;
    color: #111111;
    font-size: 30px;
    margin-bottom: 15px;
}

.news-share {
    border: #c5c5c5 1px dashed;
    margin: 0 auto;
    margin-top: 15px;
}

.news-conner {
    margin-top: 15px;
}

.ban-pro {
    height: 100vh !important;
}

.swiper-prolist {
    width: 100%;
    height: 100%;
    background: url(../images/bg-prolist.jpg) no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-prolist:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
}

.prolist-con {
    width: 90%;
    position: relative;
}

.prolist-name-item {
    text-align: center;
    font-size: 1.125rem;
    font-weight: bolder;
    color: #333333;
}

.prolist-name-item h1 {
    color: #cf0005;
    font-weight: bold;
}

.prolist-swipers {
    position: relative;
    width: 90%;
    margin: auto;
    margin-top: 2rem;
    max-width: 1140px;
}

.prolist-swiper.current-swiper {
    width: 60%;
    margin: auto;
    position: relative;
    z-index: 10;
}

.prolist-img-item img {
    width: 100%;
}

.nocurrent-swiper {
    position: absolute;
    width: 40%;
    top: 15%;
    opacity: 0.8;
}

.prolist-btn {
    top: 60%;
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
}

.prolist-btn .swiper-button-prev {
    border-radius: 50%;
    left: 15px;
}

.prolist-btn .swiper-button-next {
    border-radius: 50%;
    right: 15px;
}

.prolist-btn .swiper-button-next,
.prolist-btn .swiper-button-prev {
    width: 36px;
    height: 36px;
    border-color: #cf0005;
    background: #cf0005;
    outline: none
}

.prolist-btn .swiper-button-next:after,
.prolist-btn .swiper-button-prev:after {
    color: #ffffff;
    font-size: 16px;
    font-weight: bolder;
}

.prolist-btn .swiper-button-next:hover,
.prolist-btn .swiper-button-prev:hover {
    border-color: #cf0005;
    background: #cf0005;
}

.prolist-btn .swiper-button-next:hover:after,
.prolist-btn .swiper-button-prev:hover:after {
    color: #ffffff;
}

.prolist-btn .swiper-button-prev.swiper-button-disabled,
.prolist-btn .swiper-button-next.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.54);
}

.left-swiper {
    left: 0;
}

.right-swiper {
    right: 0;
}

.products-view-ban {
    min-height: 100vh;
    height: auto !important;
    background: linear-gradient(#e8ecef 57%, #ffffff 74%, #dde0e3 78%);
}

.products-view-con {
    width: 90%;
    padding-top: 18rem;
    overflow: hidden;
}

.pro-view-container {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.pro-view-img {
    padding-right: 5vw;
}

.pro-view-img img {
    width: 100%;
    -webkit-box-reflect: below 1px -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(.8, transparent), to(rgba(3, 3, 3, .2)));
    background: -webkit-linear-gradient(top, rgba(174, 188, 191, 1) 0%, rgba(110, 119, 116, 1) 50%, rgba(10, 14, 10, 1) 51%, rgba(10, 8, 9, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pro-view-container .pro-title span {
    color: #cf0005;
    font-weight: bold;
}

.pro-view-container .pro-title h2 {
    margin-top: 5px;
    font-weight: bold;
}

.pro-view-container .pro-title {
    font-size: 1.125rem;
    position: relative;
    padding-right: 66px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
}

.pro-view-back {
    position: absolute;
    right: 0;
    color: #333333;
    font-size: 14px;
    top: 36px;
}

.pro-view-back a {
    color: #333333;
}

.pro-view-back a:hover {
    color: #cf0005;
    text-decoration: none;
}

.pro-view-container .pro-view-jj {
    min-height: 200px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.product-view-detail {
    width: 90%;
}

.ban-search{
	background-image:url(../images/ban-search.jpg);
}

.clear1 {
    display: block;
}

.clear2 {
    display: none;
}

.clear3 {
    display: none;
}

@media screen and (max-width:1200px) {
    .foot-copyright-left {
        padding-top: 20px;
    }
}

@media screen and (max-width: 992px) {
    .top-nav-container {
        padding-right: 0px;
        padding-left: 0px;
    }
    .top-nav .navbar-toggler {
        margin-right: 230px;
    }
    .top-nav .navbar-collapse {
        background: #000000;
    }
    .right-nav {
        display: none;
    }
    .pro-serise-item {
        width: 100%;
        height: 50%;
        position: relative;
    }
    .pro-serise-item:hover {
        width: 100%;
    }
    .index-case-serise {
        left: 20%;
        width: 60%;
    }
    .foot-left {
        width: 100%;
        float: none;
    }
    .foot-right {
        width: 100%;
        float: none;
        margin-top: 1rem;
        padding-left: 0;
    }
    .foot-nav-ul {
        min-height: 100px;
    }
    .foot-nav-item {
        float: none;
        width: 100%;
    }
    .ban-img-title span {
        font-size: 4.25rem;
    }
    .about-r {
        margin-top: 1rem;
    }
    .honor-ban {
        background-position: 75% bottom;
        background-size: auto 60%;
        background-repeat: no-repeat;
    }
	.partner-items {
        width: 25%;
    }
    .news-items {
        float: left;
        width: 50%;
    }
    .products-view-con {
        padding-top: 10rem;
    }
    .pro-view-img {
        padding-right: 0;
        padding-left: 0;
    }
    .pro-view-jj {
        padding-right: 0;
        padding-left: 0;
        margin-top: 3rem;
    }
	.clear1 {
        display: none;
    }
    .clear2 {
        display: block;
    }
    .clear3 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #ban-img {
        height: 50vh;
    }
    .ban-img-title span {
        font-size: 3.25rem;
    }
    
    .prolist-swiper.current-swiper {
        width: 100%;
    }
    .nocurrent-swiper {
        display: none;
    }
    .prolist-btn {
        top: 60%;
    }
    
}

@media screen and (max-width: 680px) {
	.top-lang span,.top-search span{
		display:none;
	}
	.top-nav .navbar-toggler {
		margin-right: 135px;
	}
    .index-case-serise {
        left: 0;
        width: 100%;
    }
    .foot-copyright-left {
        padding-top: 0px;
    }
    .partner-items {
        width: 50%;
    }
    .news-items {
        float: none;
        width: 100%;
    }
    .clear1 {
        display: none;
    }
    .clear2 {
        display: none;
    }
    .clear3 {
        display: block;
    }
}