@charset "UTF-8";

/**************** 内页banner ****************/
.inner-banner{
	width: 100%;
	margin-top: 102px;
}
.inner-banner img{
	display: block;
	width: 100%;
}
@media (max-width: 1024px){
	.inner-banner{
		margin-top: 70px;
	}
}

/**************** 面包屑导航 ****************/
.breadcrumb{
	width: 100%;
	text-align: center;
	margin-top: 80px;
}
.breadcrumb-list{
	display: inline-block;
    box-shadow: #e7e7e7 0 0 10px 2px;
}
.breadcrumb-li{
	position: relative;
	display: block;
	float: left;
	height: 48px;
	line-height: 48px;
	font-size: 16px;
	padding: 0 50px;
	z-index: 1;
    overflow: hidden;
}
.breadcrumb-li:after{
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    top: 17px;
    right: 0;
    background-color: #d9d9d9;
    z-index: 2;
}
.breadcrumb-li:last-child:after{
    display: none;
}
.breadcrumb-li-active{
    background-color: #b43300;
    color: #fff!important;
}
.breadcrumb-li-active:after{
    background-color: #b43300!important;
}
.breadcrumb-li:hover{
    background-color: #b43300;
    color: #fff;
}
.breadcrumb-li:hover:after{
    background-color: #b43300!important;
}
@media (max-width: 1024px){
	.breadcrumb{
		margin-top: 60px;
	}
    .breadcrumb-li{
        padding: 0 10px;
        font-size: 14px;
    }
}
@media (max-width: 768px){
	.breadcrumb{
		width: 94%;
		margin: 40px auto 0;
	}
	.breadcrumb-list{
		width: 100%;
	}
    .breadcrumb-li{
        width: calc(100%/3);
    }
    .breadcrumb-li:nth-child(3n+3):after{
        display: none;
    }
}
/**************** 内页框架 ****************/
.page{
	padding: 80px 0 132px;
}
@media (max-width: 1024px){
	.page{
		padding: 60px 0 96px;
	}
}
@media (max-width: 768px){
	.page{
		padding: 40px 0 58px;
	}		
}

/**************** 列表页 分页 ****************/
.list-page{
    margin-top: 72px;
    text-align: center;
}
.list-page .pagination{
    display: inline-block;
    border-left: 1px solid #e2e2e2;
}
.list-page .pagination li{
    float: left;
    padding: 0 15px;
    border: 1px solid #e2e2e2;
    border-left: 0;
}
.list-page .pagination li a{
    display: block;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #4d4d4d;
}
.list-page .pagination li:hover{
    background-color: #b43300;
}
.list-page .pagination li:hover a{
    color: #fff;
}
@media (max-width: 1024px){
    .list-page{
        margin-top: 58px;
    }
    .list-page .pagination li{
        padding: 0 12px;
    }
    .list-page .pagination li a{
        height: 32px;
        line-height: 32px;
    }
}
@media (max-width: 768px){
    .list-page{
        margin-top: 40px;
    }
    .list-page .pagination li{
        padding: 0 8px;
    }
    .list-page .pagination li a{
        height: 28px;
        line-height: 28px;
    }
}

/**************** 详情页 翻页 ****************/
.show-page{
    padding: 72px 0 48px;
    border-bottom: 1px solid #e2e2e2;
}
.show-page>p{
    float: left;
    width: 50%;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
}
.show-page>p:last-child{
    text-align: right;
}
.show-page>p a{
    color: #666;
}
.show-page>p a:hover{
    color: #b43300;
}
@media (max-width: 1024px){
    .show-page{
        padding-top: 36px 0 38px;
    }
}
@media (max-width: 768px){
    .show-page{
        padding: 28px 0 32px;
    }
    .show-page>p{
        width: 100%;
        font-size: 16px;
        height: 28px;
        line-height: 28px;
    }
    .show-page>p:last-child{
        text-align: left;
        margin-top: 6px;
    }
}

/**************** 产品 详情页 下列产品 ****************/
.product-detail-list{
    margin-top: 72px;
}
.product-detail-li{
    float: left;
    width: 18.4%;
    margin-right: 2%;
}
.product-detail-li:nth-child(5n+5){
    margin-right: 0;
}
.product-detail-li-img{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: calc(700/900*100%);
    border: 1px solid #e2e2e2;
    overflow: hidden;
}
.product-detail-li-img img{
    display: block;
    width: 100%;
    transition: all 0.5s;
}
.product-detail-li:hover .product-detail-li-img img{
    transform: scale(1.2);
}
.product-detail-li-title{
    text-align: center;
    height: 38px;
    line-height: 38px;
}
@media (max-width: 1024px){
    .product-detail-list{
        margin-top: 48px;
    }
    .product-detail-li{
        width: 32%;
        margin-right: 2%;
        margin-top: 20px;
    }
    .product-detail-li:nth-child(5n+5){
        margin-right: 2%;
    }
    .product-detail-li:nth-child(3n+3){
        margin-right: 0;
    }
    .product-detail-li:nth-child(-n+3){
        margin-top: 0;
    }
}
@media (max-width: 768px){
    .product-detail-list{
        margin-top: 36px;
    }
    .product-detail-li{
        width: 49%;
        margin-right: 2%;
    }
    .product-detail-li:nth-child(3n+3){
        margin-right: 2%;
    }
    .product-detail-li:nth-child(2n+2){
        margin-right: 0%;
    }
    .product-detail-li:nth-child(-n+3){
        margin-top: 20px;
    }
    .product-detail-li:nth-child(-n+2){
        margin-top: 0;
    }
    .product-detail-li-title{
        height: 28px;
        line-height: 28px;
    }
}

/**************** 新闻 详情页 下列新闻 ****************/
.news-detail-list{
    margin-top: 72px;
}
.news-detail-li{
    position: relative;
    float: left;
    display: block;
    width: 49%;
    height: 32px;
    line-height: 32px;
    margin-right: 2%;
    overflow: hidden;
    padding-left: 15px;
}
.news-detail-li::after{
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    top: calc(50% - 2px);
    left: 0;
    background-color: #b43300;
}
.news-detail-li:nth-child(2n+2){
    margin-right: 0;
}
.news-detail-li:hover{
    color: #b43300;
}
@media (max-width: 1024px){
    .news-detail-list{
        margin-top: 48px;
    }
    .news-detail-li{
        height: 28px;
        line-height: 28px;
        padding-left: 10px;
    }
}
@media (max-width: 768px){
    .news-detail-list{
        margin-top: 36px;
    }
}

/**************** 单页面 详情 ****************/
.page-detail-title{
    position: relative;
    padding-bottom: 18px;
}
.page-detail-title::after{
    position: absolute;
    content: '';
    width: 144px;
    height: 2px;
    background-color: #e2e2e2;
    bottom: 0;
    left: calc(50% - 72px);
    z-index: 1;
}
.page-detail-title::before{
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: #b43300;
    bottom: 0;
    left: calc(50% - 15px);
    z-index: 2;
}
.page-detail-title h2{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 22px;
    color: #626262;
    text-align: center;
}
.page-detail-title h3{
    font-size: 28px;
    line-height: 28px;
    color: #dcdcdc;
    text-align: center;
}
.page-detail-content{
    margin-top: 68px;
}
.page-detail-content p{
    font-size: 16px;
    line-height: 32px;
    text-indent: 2em;
    margin-bottom: 28px;
}
@media (max-width: 1024px){
    .page-detail-title{
        padding-bottom: 12px;
    }
    .page-detail-title h2{
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    .page-detail-title h3{
        font-size: 18px;
        line-height: 18px;
    }
    .page-detail-content{
        margin-top: 48px;
    }
}
@media (max-width: 768px){
    .page-detail-title{
        padding-bottom: 8px;
    }
    .page-detail-title::after{
        width: 120px;
        left: calc(50% - 60px);
    }
    .page-detail-title::before{
        width: 16px;
        left: calc(50% - 8px);
    }
    .page-detail-title h2{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 8px;
    }
    .page-detail-title h3{
        font-size: 14px;
        line-height: 14px;
    }
    .page-detail-content{
        margin-top: 26px;
    }
    .page-detail-content p{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 14px;
    }
}

/**************** 单页面 联系我们 ****************/
.page-detail-contact{
    background-color: #b43300;
    position: relative;
}
.page-detail-contact-text{
    float: left;
    width: 40%;
    padding: 60px 30px;
}
.page-detail-contact-text h4{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    color: #fff;
}
.page-detail-contact-text p{
    margin-bottom: 20px;
    color: #fff;
}
.page-detail-contact-map{
    right: 0;
    position: absolute;
    display: block;
    width: 60%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
@media (max-width: 1024px){
    .page-detail-contact-text{
        padding: 40px 20px;
    }
    .page-detail-contact-text h4{
        font-size: 18px;
        margin-bottom: 32px;
        padding-bottom: 15px;
    }
    .page-detail-contact-text p{
        margin-bottom: 10px;
    }
}
@media (max-width: 768px){
    .page-detail-contact-text{
        float: none;
        width: 100%;
        padding: 20px 15px;
    }
    .page-detail-contact-text h4{
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .page-detail-contact-map{
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: calc(500/550*100%);
    }
}

/**************** 产品 列表页 ****************/
.product-li{
    float: left;
    display: block;
    width: 22.75%;
    margin-right: 3%;
    margin-top: 30px;
}
.product-li:nth-child(4n+4){
    margin-right: 0;
}
.product-li:nth-child(-n+4){
    margin-top: 0;
}
.product-li-img{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: calc(700/900*100%);
    overflow: hidden;
    border: 1px solid #e2e2e2;
}
.product-li-img img{
    display: block;
    width: 100%;
    transition: all 0.5s;
}
.product-li:hover .product-li-img img{
    transform: scale(1.2);
}
.product-li-title{
    text-align: center;
    width: 100%;
    height: 52px;
    line-height: 52px;
    overflow: hidden;
    font-size: 16px;
    color: #4d4d4d;
    background-color: #e2e2e2;
}
.product-li:hover .product-li-title{
    background-color: #b43300;
    color: #fff;
}
@media (max-width: 1024px){
    .product-li{
        width: 32%;
        margin-right: 2%;
        margin-top: 20px;
    }
    .product-li:nth-child(4n+4){
        margin-right: 2%;
    }
    .product-li:nth-child(-n+4){
        margin-top: 20px;
    }
    .product-li:nth-child(3n+3){
        margin-right: 0;
    }
    .product-li:nth-child(-n+3){
        margin-top: 0;
    }
    .product-li-title{
        height: 46px;
        line-height: 46px;
        font-size: 14px;
    }
}
@media (max-width: 768px){
    .product-li{
        width: 49%;
    }
    .product-li:nth-child(3n+3){
        margin-right: 2%;
    }
    .product-li:nth-child(-n+3){
        margin-top: 20px;
    }
    .product-li:nth-child(2n+2){
        margin-right: 0;
    }
    .product-li:nth-child(-n+2){
        margin-top: 0;
    }
    .product-li-title{
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }
}

/**************** 产品 详情页 ****************/
.product-detail-title{
    font-size: 40px;
    font-weight: bold;
    color: #b43300;
    margin-bottom: 40px;
}
.product-detail-img{
    float: left;
    width: 40%;
    height: 0;
    padding-bottom: calc(700/900*40%);
    border: 1px solid #e2e2e2;
    overflow: hidden;
}
.product-detail-img img{
    display: block;
    width: 100%;
    transition: all 0.5s;
}
.product-detail-img:hover img{
    transform: scale(1.2);
}
.product-detail-text{
    float: right;
    width: 55%;
}
.product-detail-text h3{
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-weight: 600;
    padding: 0 36px;
    color: #fff;
    background-color: #b43300;
}
.product-detail-text>div{
    padding: 26px 42px;
    background-color: #fbfbfb;
}
.product-detail-text>div p{
    text-indent: 2em;
    font-size: 16px;
    line-height: 36px;
    margin: 10px 0;
    color: #797979;
}
.product-detail-text>div img{
    display: block;
    max-width: 100%;
    margin: auto;
}
.product-detail-text>div table tr td{
    padding: 5px 4px;
}
@media (max-width: 1024px){
    .product-detail-title{
        font-size: 32px;
        text-align: center;
    }
    .product-detail-img{
        width: 100%;
        padding-bottom: calc(700/900*100%);
    }
    .product-detail-text{
        width: 100%;
        margin-top: 20px;
    }
    .product-detail-text h3{
        height: 36px;
        line-height: 36px;
        padding: 0 24px;
    }
    .product-detail-text>div{
        padding: 18px 20px;
    }
}
@media (max-width: 768px){
    .product-detail-title{
        font-size: 28px;
        margin-bottom: 32px;
    }
    .product-detail-text h3{
        font-size: 16px;
        height: 32px;
        line-height: 32px;
        padding: 0 15px;
    }
    .product-detail-text>div{
        padding: 15px 20px;
    }
    .product-detail-text>div p{
        font-size: 14px;
        line-height: 28px;
        margin: 6px 0;
    }
}

/**************** 新闻 列表页 ****************/
.news-li{
    float: left;
    display: block;
    padding: 40px;
    margin: 30px 3% 0 0;
    width: calc(94%/3);
    border: 1px solid #e2e2e2;
}
.news-li:nth-child(3n+3){
    margin-right: 0;
}
.news-li:nth-child(-n+3){
    margin-top: 0;
}
.news-li:hover{
    box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.1);
}
.news-li-title{
    position: relative;
}
.news-li-title::after{
    position: absolute;
    content: '';
    width: 4px;
    height: 36px;
    top: calc(50% - 18px);
    background-color: #d4d4d4;
}
.news-li-title h3{
    color: #111c38;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0 5px 20px;
}
.news-li-title p{
    color: #a6a6a6;
    padding: 5px 0 5px 20px;
}
.news-li:hover .news-li-title h3{
    color: #b43300;
}
.news-li-description{
    color: #4d4d4d;
    line-height: 26px;
    height: 52px;
    margin-top: 20px;
    text-indent: 2em;
    overflow: hidden;
}
.news-li-more{
    color: #4d4d4d;
    margin-top: 40px;
}
.news-li:hover .news-li-more{
    color: #b43300;
}
@media (max-width: 1024px){
    .news-li{
        padding: 32px;
        margin: 20px 2% 0 0;
        width: 49%;
    }
    .news-li:nth-child(3n+3){
        margin-right: 2%;
    }
    .news-li:nth-child(2n+2){
        margin-right: 0;
    }
    .news-li:nth-child(-n+3){
        margin-top: 20px;
    }
    .news-li:nth-child(-n+2){
        margin-top: 0;
    }
    .news-li-title h3{
        font-size: 14px;
        padding: 3px 0 3px 15px;
    }
    .news-li-title p{
        padding: 3px 0 3px 15px;
    }
    .news-li-description{
        margin-top: 15px;
    }
    .news-li-more{
        margin-top: 28px;
    }
}
@media (max-width: 768px){
    .news-li{
        width: 100%;
        margin-right: 0;
        padding: 24px 20px;
    }
    .news-li:nth-child(-n+2){
        margin-top: 20px;
    }
    .news-li:nth-child(-n+1){
        margin-top: 0;
    }
    .news-li-description{
        margin-top: 10px;
        line-height: 22px;
        height: 44px;
    }
    .news-li-more{
        margin-top: 16px;
    }
}

/**************** 新闻 详情页 ****************/
.news-detail-title{
    border-bottom: 1px dashed #e2e2e2;
}
.news-detail-title h2{
    padding: 10px 0;
    font-size: 26px;
    line-height: 36px;
    font-weight: bold;
    text-align: center;
}
.news-detail-time{
    text-align: center;
    color: #a6a6a6;
    padding: 14px 0;
}
.news-detail{
    padding-top: 20px;
}
.news-detail p{
    text-indent: 2em;
    line-height: 28px;
}
.news-detail img{
    display: block;
    max-width: 100%;
    margin: auto;
}
@media (max-width: 1024px){
    .news-detail-title h2{
        padding: 8px 0;
        font-size: 22px;
        line-height: 32px;
    }
    .news-detail-time{
        padding: 10px 0;
    }
    .news-detail{
        padding-top: 15px;
    }
    .news-detail p{
        line-height: 24px;
    }
}
@media (max-width: 768px){
    .news-detail-title h2{
        padding: 8px 0;
        font-size: 18px;
        line-height: 28px;
    }
    .news-detail-time{
        padding: 8px 0;
    }
}

/**************** 案例 列表页 ****************/
.cases-li{
    float: left;
    display: block;
    width: 22.75%;
    margin-right: 3%;
    margin-top: 30px;
}
.cases-li:nth-child(4n+4){
    margin-right: 0;
}
.cases-li:nth-child(-n+4){
    margin-top: 0;
}
.cases-li-img{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: calc(700/900*100%);
    overflow: hidden;
    border: 1px solid #e2e2e2;
}
.cases-li-img img{
    display: block;
    width: 100%;
    transition: all 0.5s;
}
.cases-li:hover .cases-li-img img{
    transform: scale(1.2);
}
.cases-li-title{
    text-align: center;
    width: 100%;
    height: 52px;
    line-height: 52px;
    overflow: hidden;
    font-size: 16px;
    color: #4d4d4d;
    background-color: #e2e2e2;
}
.cases-li:hover .cases-li-title{
    background-color: #b43300;
    color: #fff;
}
@media (max-width: 1024px){
    .cases-li{
        width: 32%;
        margin-right: 2%;
        margin-top: 20px;
    }
    .cases-li:nth-child(4n+4){
        margin-right: 2%;
    }
    .cases-li:nth-child(-n+4){
        margin-top: 20px;
    }
    .cases-li:nth-child(3n+3){
        margin-right: 0;
    }
    .cases-li:nth-child(-n+3){
        margin-top: 0;
    }
    .cases-li-title{
        height: 46px;
        line-height: 46px;
        font-size: 14px;
    }
}
@media (max-width: 768px){
    .cases-li{
        width: 49%;
    }
    .cases-li:nth-child(3n+3){
        margin-right: 2%;
    }
    .cases-li:nth-child(-n+3){
        margin-top: 20px;
    }
    .cases-li:nth-child(2n+2){
        margin-right: 0;
    }
    .cases-li:nth-child(-n+2){
        margin-top: 0;
    }
    .cases-li-title{
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }
}

/**************** 案例 详情页 ****************/
.cases-detail-title{
    border-bottom: 1px dashed #e2e2e2;
    padding: 10px 0;
    font-size: 26px;
    line-height: 36px;
    font-weight: bold;
    text-align: center;
}
.cases-detail{
    padding-top: 20px;
}
.cases-detail-img{
    width:60%;
    margin:auto;
}
.cases-detail-img img{
    display:block;
    width:100%;
}
.cases-detail-content p{
    text-indent: 2em;
    line-height: 28px;
}
.cases-detail-content img{
    display: block;
    max-width: 100%;
    margin: auto;
}
@media (max-width: 1024px){
    .cases-detail-title{
        padding: 8px 0;
        font-size: 22px;
        line-height: 32px;
    }
    .cases-detail{
        padding-top: 15px;
    }
    .cases-detail-img{
        width:80%;
    }
    .cases-detail p{
        line-height: 24px;
    }
}
@media (max-width: 768px){
    .cases-detail-title{
        padding: 8px 0;
        font-size: 18px;
        line-height: 28px;
    }
    .cases-detail-img{
        width:100%;
    }
}
