/* banner */
.main-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
    margin-top: 60px;
}
.main-banner .content{
    width: 100%;
    height: 100%;
}
.main-banner .content img{
    width: 100%;
    height: 100%;
}

/* 产品中心 */
.product-card{
    display: flex;
    flex-direction: column;
    width: 1250px;
    padding: 82px 0 92px;
}

.product-card > .title{
    font-weight: 500;
    font-size: 32px;
    color: #333333;
    line-height: 45px;
    text-align: center;
    margin-bottom: 20px;
}

.product-card .content{
    width: 100%;
}

.product-card .content p{
    font-size: 14px;
    line-height: 2;
    text-indent: 2em;
}

.product-card .content .remark{
    margin: 12px 0 20px 0;
}

.product-card .content ul{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-card .content ul li{
    width: 20%;
    background: #F9FAFC;
    border-radius: 6px;
    padding: 10px;
}

.product-card .content ul li h3{
   color: #962E45;
}

.product-card .content ul li p{
    margin-top: 5px;
}

.product-card .content .abstract h3{
    margin: 12px 0;
}
.product-card .content .abstract img{
    width: 100%;
}