/* banner 区域 */
.banner {
    padding-top: 70px;
    height: 650px;
    background-image: url(../uploads/home/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .wrapper h1 {
    margin-left: 100px;
    padding-top: 165px;
    width: 695px;
    font-weight: 700;
    font-size: 42px;
    color: #232A65;
    line-height: 56px;
}

.banner .wrapper p {
    margin-left: 100px;
    padding-top: 48px;
    width: 746px;
    font-size: 20px;
    color: #4B5B76;
    line-height: 36px;
}

/* 主要产品区域 */
.product-bj {
    height: 708px;
    background-color: #F2F5FA;
}

.product-bj .wrapper h2 {
    padding-top: 100px;
    padding-bottom: 80px;
    font-size: 40px;
    color: #000000;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}



.product-bj .wrapper .bd {
    /* width: 1520px; */
    background: #FFFFFF;
    border-radius: 10px;
}

.product-bj .wrapper .bd ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 397px;
}

.product-bj .wrapper .bd ul li {
    width: 260px;
}

.product-bj .wrapper .bd ul li img {
    vertical-align: middle;
}

.product-bj .wrapper .bd ul li h3 {
    margin: 30px 0px 20px 0px;
    font-weight: 600;
    font-size: 22px;
    color: #000000;
    line-height: 22px;
}

.product-bj .wrapper .bd ul li p {
    height: 63px;
    font-size: 16px;
    color: #999;
    line-height: 24px;
}

.product-bj .wrapper .bd ul li a {
    margin-top: 76px;
    display: block;
    width: 60px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #007DFF;
    font-size: 16px;
    color: #007DFF;
    line-height: 28px;
    text-align: center;
}

.product-bj .wrapper .bd ul li a:hover {
    background: #007DFF;
    color: #fff;
}

/* 新闻资讯 */
.new h2 {
    padding-top: 100px;
    padding-bottom: 80px;
    font-size: 40px;
    color: #000000;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}

.new .content ul {
    display: flex;
    justify-content: space-between;
}

.new .content ul li {
    width: 482px;
    border: 1px solid #DFDFDF;
    transition: all 0.5s;
}

.new .content ul li .pto {
    overflow: hidden;
    width: 100%;
    height: 240px;
}

.new .content ul li .pto img {
    vertical-align: middle;
    transition: all 0.5s;
}

.new .content ul li span {
    display: block;
    margin: 25px 0px 20px 30px;
    font-size: 16px;
    color: #999999;
    line-height: 16px;
}

.new .content ul li h4 {
    margin: 0 30px;
    height: 49px;
    font-size: 20px;
    color: #000000;
    line-height: 30px;
}

.new .content ul li p {
    margin: 20px 30px 0px 30px;
    font-size: 16px;
    color: #999999;
    line-height: 26px;
}

.new .content ul li .iconfont {
    display: block;
    margin: 20px 0px 20px 30px;
    font-size: 30px;
    color: #007DFF;
    transition: all 0.5s;
}

.new .content ul li a:hover .iconfont {
    transform: translate(20px);
}

.new .content ul li a:hover img {
    transform: scale(1.1);
}

.new .content ul li a:hover h4 {
    color: #007DFF;
}

.new .content ul li:hover {
    box-shadow: 0px 10px 25px 0px rgba(141, 141, 141, 0.20);
    transform: translateY(-10px);
}

.new .content .btn a {
    display: block;
    margin: 55px auto;
    width: 140px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #165DFF;
    color: #165DFF;
    line-height: 40px;
    text-align: center;
}

.new .content .btn a:hover {
    border: none;
    background: #165DFF;
    color: #fff;
}

/* 合作伙伴 */
.partner {
    height: 706px;
    background-color: #F2F5Fa
}

.partner .giz h2 {
    padding-top: 100px;
    padding-bottom: 80px;
    font-size: 40px;
    color: #000000;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}

.partner .giz .giz-logo ul {
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.partner .giz .giz-logo li {
    width: 284px;
    height: 110px;
    background: #FFFFFF;
    box-shadow: 3px 4px 20px 0px rgba(234, 234, 234, 0.65);
    border-radius: 5px;
    overflow: hidden;
}

.partner .giz .giz-logo li img {
    display: block;
    /* margin: 30px auto; */
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.partner .giz .giz-logo li:hover img {
    transform: scale(1.1);
}