/* banner 区域 */
.banner {
    padding-top: 70px;
    height: 650px;
    background-image: url(../uploads/new/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;
}

/* 新闻资讯 */
.new .nav-bj {
    height: 50px;
    background-color: #f7f7f7;
}

.new .nav-bj .nav {
    line-height: 50px;
}

.new .nav-bj .nav a:hover {
    color: #007DFF;
}

.new .content ul {
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 28px;
    justify-content: space-between;
}

.new .content ul li {
    width: 482px;
    margin-top: 42px;
    border: 1px solid #DFDFDF;
    transition: all 0.5s;
}

.new .content ul li .pto {
    overflow: hidden;
}

.new .content ul li .pto img {
    /* width: 100%; */
    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);
}