.product {
    background-color: #2a2a2a;
}

.product .w {
    max-width: 1920px !important;
}

.product_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #2a2a2a;
}

.product_list_2 .product_list_img {
    order: 2; /* 将.product_list_img排在第二个位置 */
}

.product_list_2 .product_content {
    order: 1; /* 将.product_content排在第一个位置 */
}

.product_list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_content {
    align-self: center;
    padding: 30px 50px;
}

.product_content p {
    color: #ffffff;
    font-size: 16px;
    margin: 10px 0px;
}

.product_content_box_1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_content_box_1 p:nth-child(1) {
    font-size: 54px;
    color: #008aff;
    font-family: Poppins;
    font-weight: 700;
    font-style: italic;
}

.product_content_box_1_p {
    margin-bottom: 30px !important;
    line-height: 1.5;
}


.product_content_box_1 a {
    color: #ffffff;
    background-image: linear-gradient(to right, #ebd197, #bb9b49);
    padding: 20px 30px;
    font-size: 14px;
}

.product_content_box_1 p:nth-child(1) span {
    color: #ffffff;
}

.product_content_box_2_bd {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 20px;
}

.product_content_box_2_content_img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product_content_box_2_content img {
    width: 30px;
}

.product_content_box_2_content p {
    text-align: center;
    font-size: 12px;
}

.line {
    border-left: 3px solid #404040;
    height: 100px;
    width: 2px;
}

@media (max-width: 1440px) {

    .product_content_box_1 p:nth-child(1) {
        font-size: 48px;
        color: #008aff;
        font-family: Poppins;
        font-weight: 700;
        font-style: italic;
    }

}

@media (max-width: 1025px) {

    .product_content_box_1 p:nth-child(1) {
        font-size: 32px;
        color: #008aff;
        font-family: Poppins;
        font-weight: 700;
        font-style: italic;
    }

}


@media (max-width: 821px) {

    
.product .w {
    max-width: 1920px !important;
    width: 100% !important;
}

    .product_list {
        display: grid;
        grid-template-columns:1fr;
        background-color: #2a2a2a;
    }
    

    .product_content_box_1 p:nth-child(1) {
        font-size: 48px;
        color: #008aff;
        font-family: Poppins;
        font-weight: 700;
        font-style: italic;
    }

    .product_list_2 .product_list_img {
        order: 1; /* 将.product_list_img排在第二个位置 */
    }
    
    .product_list_2 .product_content {
        order: 2; /* 将.product_content排在第一个位置 */
    }

}



@media (max-width: 576px) {

    .product_list {
        display: grid;
        grid-template-columns:1fr;
        background-color: #2a2a2a;
    }
    

    .product_content_box_1 p:nth-child(1) {
        font-size: 24px;
        color: #008aff;
        font-family: Poppins;
        font-weight: 700;
        font-style: italic;
    }

    .product_content {
        align-self: center;
        padding: 10px 20px;
    }

    .product_content_box_1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .product_content_box_1 a{
        font-size: 12px;
    }

    .product_content_box_2_bd {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 20px;
        row-gap: 20px;
        flex-wrap: wrap;
    }

    .product_content_box_2 {
        width: 45%;
    }

    .line {
        display: none;
    }

    .product_content_box_1 a {
        display: inline-block;
        background-color: #008aff;
        color: #ffffff;
        padding: 15px 20px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .product_list_img img {
        width: 100%;
        height: 100%;
        height: 300px;
        object-fit: cover;
    }
}