#Wrapper{
    clear: all;
    width: 100%;
    padding-top: 90px;
}

/*-------------首圖-------------*/

#Page_Cover{
    background-image: url(../images/product/product-cover.jpg);
}


/*-------------產品列表-------------*/

#Product_list{
    width: 1200px;
    margin: 0 auto;
    margin-top: 120px;
}

.ODY_Products{
    width: 100%;
}

.Product_box{
    float: left;
    width: 29.6%;
    margin-right: 5%;
    margin-bottom: 50px;
    border-radius: 10px;
    border: solid 2px rgba(30, 30, 31, 0.07);
}

.Product_box a{
    text-decoration: none;
    color: #1E1E1F;
    
}

.Product_box:nth-child(3){margin-right: 0%;}
.Product_box:nth-child(6){margin-right: 0%;}
.Product_box:nth-child(9){margin-right: 0%;}
.Product_box:nth-child(12){margin-right: 0%;}
.Product_box:nth-child(15){margin-right: 0%;}
.Product_box:nth-child(18){margin-right: 0%;}
.Product_box:nth-child(21){margin-right: 0%;}
.Product_box:nth-child(24){margin-right: 0%;}
.Product_box:nth-child(27){margin-right: 0%;}
.Product_box:nth-child(30){margin-right: 0%;}

.Product_logo{
    width: 70%;
    margin-left: 5%;
    margin-top: 50px;
}

.Product_info{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 80%;
    margin-left: 5%;
    background-color: rgba(30,30,31,0.05);
    padding: 5%; 
    border-radius: 5%;
    position: relative;
}

.Product_info .Box_text{
    text-align: justify;
    margin-bottom: 15px;
}

.Product_arrow{
    background-image: url(../images/Btn/Arrow/right-arrow.svg);
    width: 80px;
    height: 33px;
}

.Product_arrow:hover{
    background-image: url(../images/Btn/Arrow/right-arrow-hover.svg);
}

.Product_box:hover{
    box-shadow: 0 10px 20px rgba(30,30,31,0.1);
    cursor: pointer;
}


.Blank{
    clear: both;
    display: block;
    width: 100%;
    height: 110px;
}


/* =========手機、平板區========= */

@media screen and (max-width: 1200px){
    
    #Wrapper{
        padding-top: 70px;
    }
    

    /*-------------產品列表-------------*/

    #Product_list{
        width: 90%;
        margin-top: 50px;
    }

    .ODY_Products{
        width: 100%;
    }

    .Product_box{
        float: none;
        width: 100%;
    }

    .Product_logo{
        width: 75%;
        margin-top: 10px;
    }
    
    .Product_info{
        margin-bottom: 0;
        width: 90%;
        margin-left: 0;
        padding: 5%; 
        border-radius: 3%;
    }

    .Product_arrow{
        background-image: url(../images/Btn/Arrow/right-arrow-hover.svg);
        width: 28.5%;
        height: 0;
        padding-bottom: 11.45%;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .Blank{
        height: 100px;
    }
    
    
    
    
    
}