.swiper img {
    width: 100%;
}
.products {
    background-color: #fff;
    padding-top: 50px;
}
.pro {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}
.pro_l {
    width: 45%;
    position: relative;
}
.pro_img img {
    width: 100%;
}
.pro_txt {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
}
.title h2 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 3px;
}
.more {
    margin: 10px 0px;
}
.more a {
    background-color: #fff;
    padding: 10px 40px;
    font-size: 13px;
    color: #000;
    font-weight: 700;
}
.more a:hover {
    background-color: #000;
    color: #fff;
}
.pro_r {
    width: 45%;
    position: relative;
}
.animated {
    animation-duration: 1.25s;
}
.pic {
    padding-top: 50px;
}
.pic img {
    width: 100%;
}
.pic .swiper-pagination-bullet {
    display: inline-block;
    width: 50px;
    height: 2px;
    margin: 0 5px;
    cursor: pointer;
    background: rgba(128,128,128,0.2);
    border-radius: 0;
    opacity: 1;
    transform:scaleX(0);
	transform-origin: 0;
}
.pic .swiper-pagination-bullet-active {
    background: gray;
    transition:transform 3s linear;
	transform:scaleX(1);
}
.content {
    display: flex;
    padding-top: 50px;
}
.content-list {
    cursor: pointer;
    background-color: #000;
    position: relative;
    transform: translate(0px, 0px);
    overflow: hidden;
}
.content-list img {
    opacity: .85;
    transition: all 1s ease;
    width: 100%;
}
.content-list:hover img {
    transform: scale(1.08);
    opacity: 1;
}
.content-txt {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
}
.content-txt h4 {
    font-size: 32px;
    margin: 20px 0px;
}
.content-txt a{
    font-size: 16px;
    color: #fff;
    padding: 10px 40px;
    border: 1px solid #fff;
    margin: 10px 0px;
}
.content-txt a:hover {
    background: #fff;
    border: 1px solid #48260a;
    color: #48260a;
}
.content-txt i {
    margin-left: 10px;
}