﻿/*公司简介*/
.indexAboutDesc{
    width:40%;float: left;
    margin:50px 2% 10px 2%;
    border: 1px solid #d0a061;
    padding:40px 4%;
}
.indexAboutDesc h2{
    width:100%;
    line-height: 50px;
    font-size: 30px;
    font-weight:bold;
    margin-bottom: 30px;
}
.indexAboutDesc h2::after{
    display: block;
    width:50px;
    height: 2px;
    background-color: #d0a061;
    content: '';
}
.indexAboutDesc h3{
    width:100%;
    line-height: 30px;
    font-size: 16px;
    color:#666;
}
.indexAboutPic{
    width:46%;float: left;
}
.indexAboutPic img{
    width:100%;
}

/*服务*/
.indexService{
    width:100%;
    height: auto;
    overflow: hidden;
    background-color: #f8f8f8;
    padding:100px 0;
}
.indexService li{
    width:44%;float: left;
    margin:20px 3% 20px 3%;
    background-color:#fff;
    text-align: center;
    transition: all 0.5s;
}
.indexService li:hover{
    box-shadow: 0 0 10px #b4b4b4;
}
.indexService li img{
    width:100%;
}
.indexService li h2{
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}
.indexService li h3{
    line-height: 40px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/*弹窗*/
.popupContent{
    width:90%;
    height: auto;overflow: hidden;
    margin:50px auto;
    line-height: 40px;
    font-size: 16px;
}

@media(max-width:720px) {
    /*公司简介*/
    .indexAboutDesc{
        width:89%;
        margin:50px 2% 10px 2%;
        border: 1px solid #d0a061;
        padding:40px 4%;
    }
    .indexAboutPic{
        width:100%;
    }
    /*服务*/
    .indexService li{
        width:94%;
    }
}