﻿/* 应用行业 */
.industryList ul{
    text-align: center;
}
.industryList li{
    display: inline-block;
    width: 168px;
    background-color: #e9e9e9;
    border-radius: 5px;
    text-align: center;
    margin: 0 10px 20px;
    padding: 25px 5px;
    box-sizing: border-box;
}
.industryList li span{
    display: block;
    color: #333;
    font-size: 20px;
}
.industryList li small{
    display: block;
    color: #636363;
    font-size: 15px;
    margin-top: 20px;
}
.industryList li:hover{
    background-color: #ff7f00;
}
.industryList li:hover span,
.industryList li:hover small{
    color: #fff;
}
@media (max-width: 768px) {
    .industryList li {
        display: block;
        float: left;
        width: 48%;
        margin: 0 1% 2%;
    }
}
/* 应用行业end */



/* 优势 */
.advantages{
    background-color: #e9e9e9;
    overflow: hidden;
    padding-bottom: 15px;
}
.advantagesList li{
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding: 0 35px 30px;
}
.advantagesList li:nth-child(2n-1){
    clear: left;
}
.advantagesList li .img{
    float: left;
    width: 138px;
    margin-right: 25px;
}
.advantagesList li .img img{
    width: 100%;
}
.advantagesList li .text{
    overflow: hidden;
    color: #333;
}
.advantagesList li .text span{
    display: block;
    font-size: 20px;
    font-weight: bold;
}
.advantagesList li .text p{
    font-size: 15px;
    margin-top: 19px;
}
@media (max-width: 768px) {
    .advantagesList li{
        float: none;
        width: 100%;
        padding: 0 15px 25px;
    }
    .advantagesList li .img{
        width: 25%;
    }
    .advantagesList li .text span{
        font-size: 18px;
        font-weight: bold;
    }
    .advantagesList li .text p{
        font-size: 13px;
        margin-top: 10px;
    }
}
/* 优势end */

/* 关于我们 */
.about{
    background: url("../Images/aboutBg.jpg") no-repeat center center / cover;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 45px;
}
.about .aboutContent .img{
    float: right;
    width: 50%;
    padding-left: 20px;
    box-sizing: border-box;
}
.about .aboutContent .img img{
    border: 4px solid #fff;
    border-radius: 5px;
    max-width: 100%;
    box-sizing: border-box;
}
.about .aboutContent .info{
    overflow: hidden;
    padding: 0 15px;
    color: #000;
    
}
.about .aboutContent .info .infoText{
    font-size: 15px;
    line-height: 1.8em;
    height: 14.4em;
    overflow: hidden;
}
.about .aboutContent .info .infoText p{
    padding-bottom: 0;
    text-indent: 2em;
}
.about .aboutContent .more{
    display: block;
    width: 8em;
    height: 2.5em;
    background-color: #fff;
    text-align: center;
    line-height: 2.5em;
    margin-top: 40px;
}
.about .aboutContent .more:hover{
    background-color: #fcc700;
    color: #fff;
}
@media (max-width: 768px) {
    .about{
        padding-bottom: 25px;
    }
    .about .aboutContent .img{
        float: none;
        width: 100%;
        padding-left: 0;
    }
    .about .aboutContent .info{
        padding: 0;
        margin-top: 15px;
    }
    .about .aboutContent .more{
        margin: 20px auto 0;
    }
}
/* 关于我们end */

/*新闻中心*/
.news{
    padding-bottom: 20px;
}
.newsList ul{
text-align: center;
}
.newsList li{
   display: inline-block;
    width: 30%;
    box-sizing: border-box;
    padding: 25px 13px 20px;
    background-color: #f1f1f1;
margin: 0 1%;
   vertical-align: top;
}
.newsList li .itemTitle span{
    display: block;
    font-size: 15px;
font-weight: bold;
color: #333333;
}
.newsList li .itemTitle small{
    display: block;
    font-size: 16px;
    margin-top: 15px;
color: #999;
}
.newsList li .itemText{
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
    text-indent: 2em;
    line-height: 1.6em;
    height: 12.8em;
    overflow: hidden;
color: #8c8c8c;
}
.newsList li .more{
    font-size: 13px;
    color: #fff;
    background-color: #ff7f00;
    width: 8em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    margin: 30px auto 0;
}
.newsList li:hover .more{
    background-color: #fdab5b;
}
.newsList li:hover a{
    color: inherit;
}
.newsMore{
    display: none;
    font-size: 13px;
    color: #fff;
    background-color: #ff7f00;
    width: 8em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    margin: 10px auto 0;
}
@media (max-width: 768px) {
    .newsList li{
        display: block;
        width: 98%;
        margin: 0 1% 2%;
    }
    .newsList li .itemTitle{
        display: flex;
        align-items: center;
    }
    .newsList li .itemTitle span{
        flex: 1;
        text-align: left;
        font-size: 16px;
    }
    .newsList li .itemTitle small{
        padding-left: 1em;
        margin-top: 0;
        font-size: 13px;
    }
    .newsList li .itemText{
        height: 4.8em;
        text-indent: 0;
    }
    .newsList li .more{
        display: none;
    }
    .newsMore{
        display: block;
    }
}
/*新闻中心end*/

/* 产品中心 */
.productList li{
    width: 23%;
    margin: 0 1%;
    float: left;
}
.productList li .imgBox{
    padding-bottom: 80%;
    border: 1px solid #e9e9e9;
}
.productList li span{
    display: block;
    padding: 0 5px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    background-color: #e9e9e9;
    color: #333333;
    font-size: 16px;
}
@media (max-width: 768px) {
    .productList li{
        width: 48%;
        margin: 0 1% 2%;
    }
    .productList li span{
        font-size: 13px;
        height: 30px;
        line-height: 30px;
    }
}
/* 产品中心end */

/* 友链 */
.friendShipBox{
    padding-bottom: 20px;
}
.friendShipList{
    padding: 0 30px;
}
.friendShipList li
{
    float: left;
    margin: 5px 12px;
}
/* 友链end */


/* 底部 */
.bottomInfo {
    padding: 40px 30px;
    background-color: #505050;
    color: #fff;
}
.bottomNav{
    float: left;
}
.bottomContact{
    float: right;
}
.bottomNav .liBox{
    float: left;
    margin-right: 54px;
}
.bottomNav .columnBox {
    margin-bottom: 10px;
}
.bottomNav .columnBox .columnTitle{
    font-size: 14px;
    line-height: 2em;
}
.bottomNav .columnBox li{
    font-size: 14px;
    color: #a6a6a6;
    padding: 3px 0;
}
.bottomNav .columnBox li:last-child{
    margin-right: 0;
}



.bottomContact .hotline img,
.bottomContact .hotline .hotlineInfo {
    display: inline-block;
    vertical-align: middle;
}

.bottomContact .hotline img {
    margin-right: 10px;
}

.bottomContact .hotline .hotlineInfo .text {
    font-size: 16px;
}

.bottomContact .hotline .hotlineInfo .tel {
    font-size: 26px;
}
.bottomContact .contactInfo{
    font-size: 14px;
    line-height: 2em;
    margin-top: 10px;
}
.bottomContact .contactCode{
    text-align: center;
    margin-top: 50px;
}
.bottomContact .contactCode img{
    margin: 0 auto;
}

.bottomContact .contactCode span
{
    padding-top: 6px;
    display: inline-block;
}
/* 底部end */