main {
    position: relative;
    padding-top: 100px;
    margin-bottom: 100px;
}

.Heads {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 20%;
}

.Heads img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Heads::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
    content: '';
    background-image: url('../img/Head-Bj/z.png');
}

main {
    display: flex;
    justify-content: center;
}

.Products-Main {
    display: block;
}

.Products-Main .fl {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 45%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    margin-bottom: 50px;
}

.Products-Main .fl .imgs {
    width: 40%;
    /* background-color: yellow; */
    height: 100%;
    position: absolute;
    top: 0;
    padding: 30px 0;

}

.Products-Main .fl {
    background-color: #f3f3f369;
}


.Products-Main .fl:nth-child(odd) .imgs {
    left: 0;
    border-right: 1px solid #00000015;
}

.Products-Main .fl:nth-child(odd) .imgs::before {
    content: '';
    position: absolute;
    height: 20%;
    top: 15%;
    width: 3px;
    background-color: #FF7B42;
    right: -2px;
    border-radius: 5px;
}

.Products-Main .fl:nth-child(even) .imgs {
    right: 0;
    border-left: 1px solid #00000015;
}

.Products-Main .fl:nth-child(even) .imgs::before {
    content: '';
    position: absolute;
    height: 20%;
    top: 15%;
    width: 3px;
    background-color: #FF7B42;
    left: -2px;
    border-radius: 5px;
}

.Products-Main .fl:nth-child(odd) .xx {
    right: 0;
}

.Products-Main .fl:nth-child(even) .xx {
    left: 0;
    padding-left: 6%;
    max-width: 100%;
}

.Products-Main .fl:nth-child(even) .xx p {}

.Products-Main .fl .imgs img {
    position: absolute;
    width: 80%;
    height: 80%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.Products-Main .fl .xx {
    width: 60%;
    /* background-color: pink; */
    height: 100%;
    position: absolute;
    top: 0;
    padding: 30px;
}

.Products-Main .fl .xx h6 {
    font-weight: bold;
    font-size: 30px;
    margin-top: 3%;
}

.Products-Main .fl .xx p {
    color: #666;
    font-size: 16px;
    max-width: 90%;
    line-height: 1.7;
}

.Products-Main .fl .xx ul {
    padding: 0;
    margin-top: 3%;
}

.Products-Main .fl .xx ul li {
    margin-bottom: 15px;
}

.Products-Main .fl .xx ul li span {
    background-color: #FF7B42;
    color: white;
    border-radius: 9999px;
    font-size: 12px;
    padding: 5px;
}


.Products-Main .fl button {
    margin-top: 5%;
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #ffffff;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
}

.Products-Main .fl button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #FF7B42;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.Products-Main .fl button:hover {
    color: #ffffff;
}

.Products-Main .fl button:hover::before {
    width: 100%;
}
@media screen and (max-width:1400px) {
    .Products-Main .fl .xx{
        padding: 15px 30px;
    }
    .Products-Main .fl button{
        margin-top: 1%;
    }
}
@media screen and (max-width:1200px) {
    .Products-Main .fl .xx p{
        display: -webkit-box;
        -webkit-line-clamp: 3;  
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
   
}
@media screen and (max-width:991px) {
    .Products-Main .fl{
        padding-top: 0;
        height: auto;
        border-radius: 15px;
        overflow: hidden;
    }
    .Products-Main .fl:nth-child(odd) .imgs{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Products-Main .fl:nth-child(odd) .xx{
        position: relative;
        width: 100%;
    }
    .Products-Main .fl .imgs{
        width: 100%;
    }
    .Products-Main .fl .imgs img{
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }
    .Products-Main .fl .xx p{
        max-width: 95%;
    }
    .Products-Main .fl:nth-child(even) {
        display: flex;
        flex-direction: column;
    }
    .Products-Main .fl:nth-child(even) .xx{
        position: relative;
        order: 2;
        width: 100%;
    }
    .Products-Main .fl:nth-child(even) .imgs{
        position: relative;
        order: 1;
        display: flex;
        justify-content: center;
    }
}