/*品牌简介*/
.about {
    margin: 20px 0 0.8rem 0;
}
.about .about-box {}
.about .about-box ul {}
.about .about-box ul li {
    overflow:hidden;
}
.about .about-box ul li .word {
    width:50%;
    padding:3.5% 5%;

}

.about .about-box ul li .word .title {
}

.about .about-box ul li .word .title h3 {
    font-size: 36px;
    color: #3e3e3e;
    font-weight: bold;
}
.about .about-box ul li .word .title hr {
    width: 60px;
    height: 3px;
    background: #df2228;
    float: left;
}
.about .about-box ul li .word .info {
}
.about .about-box ul li .word .info p {
    font-size: 14px;
    color: #666;
    padding: 10px 0;
}
.about .about-box ul li .photo {
    width:50%;
	overflow:hidden;
}
.about .about-box ul li .photo img {
    width: 100%;
	transition: all 0.6s ease;
}
.about .about-box ul li:hover .photo img {
	opacity: 1;
    transform: scale(1.02);
}


@media screen and (max-width:1024px) {
.about {}

.about .about-box {}
.about .about-box ul {}
.about .about-box ul li {
    background: #f9f9f9;
    overflow:hidden;
}
.about .about-box ul li .word {
    width:100%;
    padding: 30px 5%;
}

.about .about-box ul li .word .title {
}

.about .about-box ul li .word .title h3 {
    font-size: 24px;

}
.about .about-box ul li .word .info {
}
.about .about-box ul li .word .info p {
    font-size: 14px;
    color: #342b25;
    line-height: 2.2;
    /* padding-bottom: 2%; */
}
.about .about-box ul li .photo {
    width:100%;
	overflow:hidden;
}
.about .about-box ul li .photo img {
	transition: all 0.6s ease;
}
.about .about-box ul li:hover .photo img {
	opacity: 1;
    transform: scale(1.1);
}
}