/* bannerå›*/
.banner {
    width: 100%;
    position: relative;
}

.banner .point {
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .point li {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #edd0aa;
    float: left;
    color: transparent;
    cursor: pointer;
}

.banner .point li.on {
    background-color: #ab6633;
}

.banner .slides li img {
    width: 100%;
}

.home-captial {
    text-align: center;
    margin: 60px 0 40px;
}
.home-captial1{
	margin-bottom: 20px;
}

.home-captial h2 {
    font-size: 3.2rem;
    color: #ab6633;
    text-transform: uppercase;
}

.home-captial p {
    width: 80%;
    font-size: 1.6rem;
    color: #999999;
    margin: 20px auto 0;
}

.home-captial:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: #ab6633;
    margin: 20px auto 0;
}

/* solution */
.section-solution-content ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-solution-content ul li {
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.section-solution-content ul li:nth-of-type(1),
.section-solution-content ul li:nth-of-type(4) {
    width: 66%;
}

.section-solution-content ul li:nth-of-type(2),
.section-solution-content ul li:nth-of-type(3) {
    width: 32%;
}

.section-solution-content ul li img {
    width: 100%;
}

.section-solution-content ul li .li-text {
    padding: 20px;
    color: #fff;
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 100%;
    height: 110px;
}

.section-solution-content ul li .li-text h3 {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.4;
    overflow: hidden;
}

.section-solution-content ul li .li-text p {
    line-height: 1.6;
    max-height: 40px;
    overflow: hidden;
}

/* about */
.section-about {
    background-color: #f5f5f5;
    padding: 50px 0;
    overflow: hidden;
}

/* cooperative */
.section-cooperative ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-cooperative ul li {
    width: 16%;
    margin-bottom: 10px;
}

.section-cooperative ul li img {
    width: 100%;
}

/* customer feedback */
.section-feedback {
    background: url(../images/bg.gif) no-repeat left center #fafafa;
    padding: 10px 0 40px;
    overflow: hidden;
}

.section-feedback-content {
    position: relative;
}

.section-feedback-content .slides-nav {
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 9999;
}

.section-feedback-content .slides-nav span {
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
}

.section-feedback-content .slides-nav span.prev {
    background-image: url(../images/icon.png);
    background-repeat: no-repeat;
    background-position: 0 -120px;
}

.section-feedback-content .slides-nav span.next {
    background-image: url(../images/icon.png);
    background-repeat: no-repeat;
    background-position: -60px -120px;
    float: right;
}

.section-feedback-content .slides {
    width: 85%;
    margin: auto;
    overflow: hidden;
}

.section-feedback-content .slides ul li {
    width: 500px;
    background: url(../images/li-bg.gif) no-repeat right center #fff;
    padding: 40px;
    box-sizing: content-box;
    margin: 0 10px;
}

.section-feedback-content .slides ul li .toper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-feedback-content .slides ul li .toper .img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ab6633;
}

.section-feedback-content .slides ul li .toper .img img {
    width: 92px;
    border-radius: 50%;
}

.section-feedback-content .slides ul li .toper i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icon.png);
    background-position: -120px -120px;
}

.section-feedback-content .slides ul li .toper i.not {
    background-position: -120px -150px;
}

.section-feedback-content .slides ul li p {
    line-height: 1.6;
    color: #5a5a5a;
    font-size: 1.4rem;
    margin: 20px 0;
    height: 140px;
    overflow: hidden;
}

.section-feedback-content .slides ul li .company-name {
    position: relative;
}

.section-feedback-content .slides ul li .company-name h4 {
    font-size: 2rem;
	color: #333;
}

.section-feedback-content .slides ul li .company-name span {
    font-size: 1.4rem;
    color: #5a5a5a;
    line-height: 2;
}

.section-feedback-content .slides ul li .company-name:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 60px;
    background-color: #ab6633;
    border-radius: 3px;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: -40px;
}

.section-feedback-content .point {
    width: 100%;
    height: 20px;
    margin: 40px auto 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-feedback-content .point li {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 5px;
    border: 2px solid #a5a5a5;
    float: left;
    color: transparent;
    cursor: pointer;
}

.section-feedback-content .point li.on {
    border: 2px solid #ab6633;
}

.section-feedback-content .slides li img {
    width: 100%;
}

/* news */
.section-news {
    padding: 0 0 40px;
    overflow: hidden;
}

.section-news-text {
    width: 27%;
    background-color: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
}

.section-news-text img {
    width: 100%;
}

.section-news-text .text-box {
    padding: 30px 20px;
}

.section-news h3,
.section-news p {
    color: #333;
}

.section-news h3 {
    font-size: 2rem;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 10px 0;
}

.section-news p {
    font-size: 1.4rem;
    line-height: 1.6;
    height: 48px;
    overflow: hidden;
}

.section-news-text time {
    color: #a0a0a0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.section-news-text time::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icon.png) no-repeat -280px 0;
}

.section-news-text:hover {
    background-color: #fff;
    box-shadow: 0 0 9px 5px #f9f9f9;
}

.section-news-list {
    width: 70%;
    overflow: hidden;
}

.section-news-list ul li {
    margin-bottom: 3.4%;
}

.section-news-list ul li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.section-news-list ul li .date {
    width: 9%;
    border: 2px solid #dcdcdc;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.section-news-list ul li span {
    font-size: 1.8rem;
    color: #666;
    display: block;
    width: 100%;
    text-align: center;
}

.section-news-list ul li .day {
    font-size: 3.8rem;
    color: #333;
    font-weight: bold;
}

.section-news-list ul li .text {
    width: 89%;
}

.section-news-list ul li .text h3 {
    padding: 0 0 15px;
}

.section-news-list ul li:hover .date {
    background-color: #ab6633;
    border: 0;
}

.section-news-list ul li:hover span {
    color: #fff;
}
.contactfix{
	position: fixed;
	top: 40%;
	right: 0;
	z-index: 22;
}
.contactfix ul li{
	height: 40px;
	line-height: 40px;
	border-bottom-left-radius: 40px;
	border-top-left-radius: 40px;
	padding-right: 10px;
	margin-bottom: 10px;
	transition: all .5s;
	transform: translateX(166px);
	cursor: pointer;
}
.contactfix ul li:hover{
	transform: translateX(0);
}
.contactfix ul li:last-child:hover{
	transform: translateX(166px);
}
.contactfix ul li span{
	color: #fff;
	display: inline-block;
	width: 130px;
	padding-left: 20px;
}
.contactfix ul li span img{
	margin-right: 10px;
	display: initial;
}
.contactfix ul li a{
	color: #fff;
}
.swt{
	padding-left: 180px;
}
.swt img{
	width: 80px;
}
#LRdiv0{
		display: none !important;
	}
	.sharebox .sharethis-inline-share-buttons{
		text-align: left;
	}
	.sharebox p{
		margin-top: 20px;
	}

@media screen and (max-width:1199px) {

    .section-news-text,
    .section-news-list {
        width: 100%;
    }

    .section-news {
        margin: 0;
    }

    .section-news-list {
        width: 100%;
        margin-top: 30px;
    }

    .section-feedback-content .slides ul li p {
        height: 240px;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .section-product-content ul .product-sort-li .li-text {
        font-size: 2rem;
    }

    .section-feedback-content .slides ul li {
        width: 320px;
    }

}

@media screen and (min-width:1200px) and (max-width:1400px) {
    .section-feedback-content .slides ul li {
        width: 400px;
    }

    .section-news-list ul li {
        margin-bottom: 2.3%;
    }

}
.bannerm{
	display: none;
}
.pro-more{
	width: 120px;
	height: 40px;
	line-height: 40px;
	border: 2px solid #ab6633;
	margin: auto;
}



@media screen and (max-width:768px) {
	.bannerm .point {
	    width: 100%;
	    height: 20px;
	    position: absolute;
	    bottom: 20px;
	    left: 0;
	    right: 0;
	    margin: auto;
	    z-index: 9;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	
	.bannerm .point li {
	    width: 18px;
	    height: 18px;
	    border-radius: 50%;
	    margin: 0 5px;
	    background-color: #edd0aa;
	    float: left;
	    color: transparent;
	    cursor: pointer;
	}
	
	.bannerm .point li.on {
	    background-color: #ab6633;
	}
	.bannerm{
		display: block;
		margin-top: 85px;
		position: relative;
	}
	.bannerm img{
		width: 100%;
	}
	.banner{
		display: none;
	}
	.contactfix ul{
		display: none;
	}
    .banner {
        margin-top: 80px;
    }

    .home-captial {
        margin: 30px 0 20px;
    }

    .section-solution-content ul li:nth-of-type(1),
    .section-solution-content ul li:nth-of-type(4) {
        width: 100%;
    }

    .section-solution-content ul li:nth-of-type(2),
    .section-solution-content ul li:nth-of-type(3) {
        width: 48%;
    }

    .section-feedback-content .slides ul li {
        width: 83%;
    }


    .section-news-list ul li .date {
        width: 12%;
    }

    .section-news-list ul li .text {
        width: 86%;
    }

    .section-feedback-content .slides ul li p {
        height: 150px;
    }
}

@media screen and (max-width:640px) {
    .home-captial h2 {
        font-size: 2.4rem;
    }

    .section-solution-content ul li .li-text h3 {
        font-size: 1.5rem;
    }

    .section-about-content h3 {
        font-size: 3rem;
    }

    .section-cooperative ul li {
        width: 25%;
    }

    .section-feedback-content .slides {
        width: 100%;
    }

    .section-feedback-content .slides-nav {
        display: none;
    }

}

@media screen and (max-width:480px) {
    .section-product-content ul .product-sort-li .li-text {
        font-size: 2rem;
        line-height: 1.8;
    }

    .section-product-content ul .product-sort-li .li-text::after {
        -webkit-transform: scale(0.8);
        -o-transform: scale(0.8);
        -moz-transform: scale(0.8);
        transform: scale(0.8);
    }

    .section-feedback-content .slides ul li {
        width: 76%;
    }

    .section-news h3 {
        font-size: 1.8rem;
    }

    .section-news-list ul li .day {
        font-size: 3rem;
    }

    .section-news-list ul li span {
        font-size: 1.4rem;
    }

    .section-news-list ul li .text h3 {
        padding: 0 0 10px;
    }

    .section-feedback-content .slides ul li p {
        height: 230px;
    }
}

@media screen and (max-width:414px) {
    .section-about-content h3 {
        line-height: 1;
    }

    .slide-point {
        margin: 10px 0;
    }

    .section-product-content ul .product-sort-li .li-text {
        line-height: 1;
    }

    .section-about-content h3 {
        font-size: 2.6rem;
    }

    .section-about-img .text {
        width: 100%;
    }

    .section-news-list ul li .date {
        width: 15%;
    }

    .section-news-list ul li .text {
        width: 83%;
    }

    .section-news-list ul li span {
        font-size: 1.4rem;
    }

    .section-news-list ul li .day {
        font-size: 2.8rem;
    }
}

@media screen and (max-width:375px) {

    .section-news-list ul li .date {
        width: 18%;
    }

    .section-news-list ul li .text {
        width: 80%;
    }

    .section-feedback-content .slides ul li p {
        height: 260px;
    }

}