.pro-title{
    width: 100%;
    height: 50px;
    background-color: #d30014;
}
.pro-content{
    width: 1200px;
    margin: 100px auto 100px;
    display: block;
}

.pro-area{
    display: flex;
}

.pro-con{
    margin-top: 30px;
}

.pro-con h3{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pro-con p{
    font-size: 16px;
    line-height: 35px;
    margin: 10px 0px;
}

.pro-img{
    width: 600px;
}

.pro-img img{
    width: 100%;
}

.pro-text{
    margin-left: 100px;
}

.pro-text h5{
    font-size: 25px;
    margin-bottom: 20px;
}

.pro-text h4{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    
}

.pro-text p{
    font-size: 16px;
    line-height: 35px;
    margin: 10px 0px;
}

.pro-list {
    width: 1200px;
    margin: 0px auto 200px;
}

.pro-list h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #d30014;
}

.pro-list-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.pro-list-item {
    width: 23%;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}

.pro-list-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.pro-list-item img:hover {
    transform: scale(1.05);
}

.pro-list-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

@media screen and (max-width: 768px) {
    .pro-content {
        width: 100%;
        display: block;
    }

    .pro-img {
        width: 95%;
        margin: auto;
    }

    .pro-text {
        width: 95%;
        margin: 50px auto;
    }

    .pro-list {
        width: 95%;
        margin: 30px auto;
    }
    .pro-list-items {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .pro-list-item {
        width: 45%;
        margin-bottom: 20px;
    }
    .pro-area{
        display: block;
    }

}