/* banner */
.main-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
    background: url(../image/main/banner.png) no-repeat top;
    /* background-size: 100% 100%; */
    margin-top: 60px;
}
.main-banner .content{
    width: 1326px;
}
.main-banner .content p{
    font-weight: 400;
    font-size: 54px;
    color: #000000;
    line-height: 75px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.main-banner .content h2{
    font-weight: 600;
    font-size: 54px;
    color: #000000;
    line-height: 75px;
    letter-spacing: 1px;
}
/* 产品中心 */
.product-card{
    display: flex;
    flex-direction: column;
    width: 1326px;
    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 > .remark{
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    line-height: 16px;
    text-align: center;
    margin-bottom: 65px;
}

.product-card .lear-more{
    width: 120px;
    height: 42px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}
.product-card .lear-more a{
    text-decoration: none;
    color: #C1292F;
}
.product-card .content{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.product-card .content .card{
    position: relative;
    width: 417px;
    height: 430px;
}

.product-card .content .card img{
    width: 198px;
    width: 166px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.product-card .content .card .card-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 364px;
    background: #F9FAFC;
    padding: 139px 29px 37px 35px;
    box-sizing: border-box;
    margin-top: 66px;
}

.product-card .content .card .card-content >div h3{
    font-weight: 500;
    font-size: 24px;
    color: #333333;
    line-height: 33px;
    margin-bottom: 14px;
}

.product-card .content .card .card-content >div p{
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
}

.product-card .content .card .lear-more {
    border: 1px solid #C1272D;
    color: #C1272D;
}

.product-card .content .card:hover .card-content{
    background: #C1272D;
    color: #FFFFFF;
}
.product-card .content .card:hover .card-content >div h3,
.product-card .content .card:hover .card-content >div p
{
    color: #FFFFFF;
}
.product-card .content .card:hover .lear-more{
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}
.product-card .content .card:hover .lear-more a{
    color: #FFFFFF;
}

/* 服务中心 */
.service-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    background: url(../image/main/service-bg.png) no-repeat top;
    background-size: 100% 100%;
}
.service-card{
    display: flex;
    flex-direction: column;
    width: 1326px;
    padding: 81px 0 88px;
}

.service-card > .title{
    font-weight: 500;
    font-size: 32px;
    color: #333333;
    line-height: 45px;
    text-align: center;
    margin-bottom: 20px;
}

.service-card > .remark{
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    line-height: 16px;
    text-align: center;
    margin-bottom: 190px;
}

.service-card .content{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.service-card .content img {
    margin-top: -231px;
    width: 460px;
    height: 657px;
}

.service-card .content >div > h3{
    font-weight: 500;
    font-size: 28px;
    color: #333333;
    line-height: 40px;
    margin-bottom: 16px;
}

.service-card .content >div > p{
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    line-height: 16px;
    margin-bottom: 45px;
}

.service-card .content >div ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    margin-bottom: 18px;
}

.service-card .content >div ul li::before{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #C1272D;
    border-radius: 50%;
}

.service-card .content >div ul li span{
    padding-left: 16px;
}