/* 
*banner
*/
.box{
    width: 100%;
    height: 200px;
    background: #f333;
}
.slider {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}
/*盒子带容器*/
.slides {
	height: auto;
	/* Simple clear fix */
	overflow: hidden;
	/**	
		 * Prevent blinking issue
		 * Not tested. Experimental.
		 */
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	/**
		 * Here is CSS transitions 
		 * responsible for slider animation in modern broswers
		 */
	-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.slide {
	height: auto;
	float: left;
	clear: none;
}
.banner-box{
    width: 100%;
}
.banner-box img{
    display: block;
    width: 100% !important;
}
/*左右按钮样式及放置位置*/
.slider-arrows {
}
.slider-arrow {
	position: absolute;
	display: block;
	margin-bottom: -20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-decoration: none;
	text-align: center;
	color: #fff;
	font-size: 2em;
	background-color: #333;
	background-color: rgba(50,50,50,.3);
	border-radius: 50%;
}

.slider-arrow--right {
	bottom: 50%;
	right: 30px;
}
.slider-arrow--left {
	bottom: 50%;
	left: 30px;
}
/*nva样式*/
.slider-nav {
	position: absolute;
	bottom: 30px;
}
.slider-nav__item {  
	width: 12px;
	height: 12px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	background: black;
	border-radius: 100%;
}
.slider-nav__item:hover {
	background: #ccc;
}
.slider-nav__item--current {
	background: #ccc;
} /*被选中后的样式*/
.w1700{width: 1700px;}
.album{
    position: relative;
    margin: 40px 0;
}
.album-box{
    margin: 0 auto;
}
.album-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.album-box ul li {
    width: 32.333%;
    background: #f5f5f5;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.album-title{
    width: 50%; 
    text-align: center;
    position: relative;
}
.album-title-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
}
.album-title h4 {
    display: block;
    width: 150px;
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
.album-title i {
    display: block;
    padding: 5px;
    border: 1px solid #333;
    border-radius: 50%;
    transform: rotate(90deg);
    position: absolute;
    top: 50%;
    right: 2%;
    transform:translateY(-50%);
}
.album-img{
    width: 50%;
    overflow: hidden;
}
.album-img img{
    display: block;
    width: 100%;
    border-radius: 0 5px 5px 0;
}
/* case */
.case {
    position: relative;
    margin: 40px 0;
}
.case-title {
    text-align: center;
    margin-bottom: 20px;
}
.case-title h4 {
    font-size: 24px;
}
.case-nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.case-nav ul li{
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 5px;
}
.case-nav ul li:hover{
    background-color: #f5f5f5;
    cursor: pointer
}
.case-nav ul li.active{
    background: #f5f5f5;
}
.case-list ul:nth-child(2),.case-list ul:nth-child(3),.case-list ul:nth-child(4),.case-list ul:nth-child(5){
    display: none;
}
.case-list ul li {
    float: left;
    width: 31.333%;
    margin: 1% 1%;
    background: #f5f5f5;
    border-radius: 10px;
}
.case-list ul li i{
    overflow: hidden;
}
.case-list ul li i a img{
    width: 100% ;
    display: block;
    border-radius: 10px 10px 0 0;
    /* -webkit-transition: all 1.2s; */
}
.case-list ul li i a img:hover{
    /* transform: scale(1.1); */
}
.case-list ul li h3 {
    font-size: 18px;
    margin: 10px 0;
    margin-left: 10px;
}
.case-list ul li h2 {
    font-size: 14px;
    margin-left: 10px;
    padding-bottom: 10px;
}
.case-but{
    display: block;
    width: 150px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    background: #f5f5f5;
}
/* strength*/
.strength{
    margin: 0 auto;
    background: #f5f5f5;
}
.strength ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.strength ul li {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.strength ul li i{
    font-size: 38px;
    margin-right: 20px;
}
.strength .strbox h4{
    margin-bottom: 10px;
}
/* index-about */
.index-about{
    position: relative;
    margin-top: 40px;
}
.index-about-box{
    padding: 40px;
    background: #f5f5f5;
    position: relative;
}
.index-about-box:after{
    content: '';
    display: block;
    width: 28%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/index-abot-bg.jpg) -27px no-repeat;
    opacity: 0.35;
    z-index: 0;
}
.about-l{
    width: 28%;
    position: relative;
    z-index: 1;
}
.about-r{
    width: 70%;
}
.about-l h5{
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
}
.about-l i::before{
    content: "";
    width: 35px;
    height: 2px;
    background: #ff6700;
    position: absolute;
    left: 0;
    bottom: 0;
}
.about-l .text{
    margin: 45px 0;
}
.about-l .brand{
    font-size: 16px;
    margin-bottom: 20px;
}
.about-l .cat{
    font-size: 24px;
}
.about-l p .more{
    color: #f33;
    padding-bottom: 2px;
    border-bottom: 1px solid #222222;
}
.about-r  p{
    margin-bottom: 10px;
    line-height: 30px;
}
.about-r .years{
    font-size: 18px;
}
.about-r .con{
    font-size: 20px;
    color: #ff6700;
    font-weight:600;
    margin-bottom: 20px;
}
.about-r .about-s{
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}
.about-r .about-s li{
    margin-right: 10px;
    padding-right: 20px;
    border-right: 1px solid #333;
    
}
.about-r .about-s li:last-child{
    border-right: 0;
}
.about-r .about-s li span{
    font-style: normal; 
    font-size: 32px;
}
/* index-service */
.index-service{
    position: relative;
    margin-top: 40px;
}
.index-service-box{
    padding: 20px;
    background: #f5f5f5;
}
.con-box{
    width: 49%;
}
.service-info img{
    display: block;
    width: 100%;
}
.service-info h5{
    font-size: 20px;
    margin-bottom: 20px;
}
.service-info ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service-info ul li{
    width: 35%;
    padding-left: 50px;
    margin: 10px 0;
    position: relative;
}
.service-info ul li:hover h4{
    color: #ff6700;
}
.service-info ul li h4{
   font-size: 14px;
}
.service-info ul li i{
    font-size: 32px;
    color: #ff6700;
    position: absolute;
    left: 0;
    top: 50%;
    transform:translateY(-50%);
}
.service-info p{
    line-height: 25px;
}
.service-text{
    margin-top: 20px;
}
.service-text h4{
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}
.service-text h4 i::before{
    content: "";
    width: 50px;
    height: 2px;
    background: #ff6700;
    position: absolute;
    left: 0;
    bottom: 0;
}
.service-text p{
    line-height: 30px;
}
/* urge */
.urge{margin:40px auto 0 auto;}
.urge-contact{
    margin-top: 20px;
	padding: 20px 0;
	background: url(../images/contact-bg.jpg) center;
	background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
    position: relative;
    border-radius: 10px;
}
.urge .urge-contact .urge-contact-s{
    position: relative;
    padding: 0 40px;
    z-index: 2;
}
.urge .urge-contact .urge-contact-s h6{
    font-size: 24px;
}
.urge .urge-contact .urge-contact-s p{
    font-size: 18px;
    color: #666;
    line-height: 50px;
}
.urge .urge-contact .urge-contact-s .btn {
	position: absolute;
	top: 50%;
	right: 120px;
	display: block;
	width: 200px;
	margin-top: -25px;
	border: 1px solid #666;
	text-align: center;
	border-radius: 3px;
}
.urge .urge-contact .urge-contact-s .btn a {
	display: block;
	height: 48px;
	line-height: 48px;
	font-size: 18px;
	color: #666;
}
.urge .urge-contact .urge-contact-s .btn-a {
	transition: 0.5s;
	position: relative;
}
.urge .urge-contact .urge-contact-s .btn-a span {
	color: #666;
	position: relative;
	z-spek: 2;
}
.urge .urge-contact .urge-contact-s .btn-a em {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	background: #fff;
	transition: 0.5s;
}
.urge .urge-contact .btn-a:hover span {
	color: #333;
}
.urge .urge-contact .btn-a:hover em {
	width: 100%;
}
.urge .urge-contact .cover{
    position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(245, 245, 245,0.1);
	z-index:1;
}
/* index-news */
.index-news{
    position: relative;
    margin-top: 40px;
}
.news-title{
    border-bottom: 1px solid #222222;
    position: relative;
}
.news-title h2{
    line-height: 45px;
    font-size: 20px;
}
.news-title a{
    display: block;
    color: #ff6700;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 45px;
    font-size: 14px;
}
.news-content {
    margin-top: 20px;
}
.news-content .n-l{
    width: 49%;
}
.news-content .n-l li{
    margin-bottom: 20px;
}
.news-cont{
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px #666;

}
.news-content .n-l li .news-cont i{
    display: block;
    width: 29%;
    float: left;
}
.news-content .n-l li .news-cont .news-text{
    float: right;
    width: 70%;
}
.news-content .n-l li .news-cont i img{
    width: 100%;
}
.news-content .n-l li .news-cont .news-text h2{
    font-weight:normal;
    line-height: 35px;
    font-size: 18px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-content .n-l li .news-cont .news-text p{
    line-height: 24px;
    font-size: 12px;
}
.news-content .n-l li .news-cont .news-text p span{
    margin: 0 10px;
    font-size: 12px;
    color: #666666;
}
.news-content .n-ll li .news-cont .news-text p span em{
    font-size: 12px;
    margin-right: 5px;
}
.news-content .n-r{
    width: 49%;
}
.news-content .n-r {
}
.news-content .n-r .news-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}
.news-content .n-r .news-list li{
    width: 49%;
    margin-bottom: 10px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-content .n-r .news-list li i{
}
.news-content .n-r .news-list li a {
    margin-left: 5px;
}
.news-content .n-r .news-list li span{
    text-align: right;
}
.news-content .n-r .news-bg{
   margin-top: 10px;
}
.news-content .n-r .news-bg img{
    width: 100%;
    display: block;
}
/* tab news */
.tab-block .tab-buttons {
	width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.tab-block .tab-buttons .tab-button {
    margin-right: 1%;
	text-align: center;
	font-size: 16px;
	color: #555;
    padding: 5px 10px;
	position: relative;
	cursor: pointer;
	background-color: #f5f5f5;
    border-radius: 5px;
}
.tab-block .tab-buttons .tab-button.cur {
	background-color: #ff6700;
	color: #fff
}
.tab-block .tabs {
    margin-top: 20px;
}
.tab-block .tabs .tab-item{
    display: none;
}
.tab-block .tabs .tab-item.active {
	display: block
}

/* links */
.links {
    width: 100%;
    background: #f5f5f5;
    padding-bottom: 20px;
}
.links a {
    margin-right: 20px;
}
