/*轮播*/

#bannerDiv {
    width: 100%;
    height: 600px;
    padding-top: 80px;
}

#banner img {
    min-width: 100%;
    height: 600px;
}

#banner .panel {
    width: 500px;
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -250px;
    text-align: center;
}

#banner .panel p {
    color: #fff;
    font-size: 32px;
    line-height: 80px;
    letter-spacing: 15px;
}

#banner .panel p.title {
    color: #fff;
    font-size: 54px;
    letter-spacing: 10px;
}


/*主体—产品*/

.main-product {
    padding-top: 90px;
    padding-bottom: 130px;
}

.main-product p {
    font-size: 16px;
    color: #ababab;
    line-height: 28px;
}

.main-product p.title,
.main-service p.title {
    color: #484848;
    font-size: 24px;
    text-align: center;
    line-height: 160px;
}

.main-product p.title span,
.main-service p.title span {
    color: #2db5a3;
}

.main-product .content {
    border: 1px solid #DEDEDE;
    padding: 30px 36px 0 36px;
    text-align: center;
    transition: 0.3s;
}

.main-product .content p.label {
    font-size: 18px;
    color: #939393;
    line-height: 46px;
    padding-top: 6px;
}

.main-product .content a {
    font-size: 18px;
    color: #a1d8cb;
    line-height: 68px;
}

.main-product .content:hover {
    box-shadow: 0 0 3px 3px #EEE;
    transition: 0.3s;
}

.main-product .content img {
    transition: 2s;
}

.main-product .content img:hover {
    transform: rotateY(180deg);
}


/*主体-服务*/

.main-service {
    background: #f8f8f8;
}

.main-service .content {
    position: relative;
}

.main-service .content .content-left {
    width: 50%;
}

.main-service .content .content-left img {
    width: 100%;
}

.main-service .content .content-right {
    box-sizing: border-box;
    background: #FFF;
    padding: 58px 40px 0 48px;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.3s;
    overflow: hidden;
}

.main-service .content .content-right p {
    color: #adadad;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-service .content .content-right p.label {
    font-size: 16px;
    color: #4a4a4a;
}

.main-service .content .content-right span {
    display: block;
    width: 50px;
    height: 2px;
    background: #2cb6a1;
    margin-bottom: 23px;
}

.main-service .content .content-right:hover {
    box-shadow: 2px 2px 2px #EEE;
    transition: 0.3s;
}

.main-service .service-more {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.main-service .service-more a {
    padding: 10px 62px;
    font-size: 23px;
    line-height: 46px;
    color: #FFF;
    background: #7fd3c6;
    border-radius: 3px;
}