/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2021/4/17, 下午 05:25:34
    Author     : bochi
*/

.product-detail-form{
    position: relative;
    margin-left: 15px; 
    margin-right: 15px; 
    display: none;
}

.product-detail-form .product-picture-frame{
    position: relative;
    width: 35%;
    height: 100%;
    float: left;
}
.product-detail-form .product-picture-frame .btn-like{
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 24px;
    color: #ff0000;
    background-color: rgba(238,238,238,0.8);
    border-radius: 35px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.25s ease 0s;
}
.product-detail-form .product-picture-frame .btn-like:hover{
    box-shadow: 0 1rem 3rem rgba(0,0,0,.25)!important;
    top: 4px;
}
.product-detail-form .product-picture-frame .btn-lookup{
    position: absolute;
    top: 5px;
    left: 60px;
    font-size: 24px;
    color: #343a40;
    background-color: rgba(238,238,238,0.8);
    border-radius: 35px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.25s ease 0s;
}
.product-detail-form .product-picture-frame .btn-lookup:hover{
    box-shadow: 0 1rem 3rem rgba(0,0,0,.25)!important;
    top: 4px;
}
.product-detail-form .product-picture-frame img.major-image{
    width: 100%; 
}

.product-detail-form .product-picture-frame .album{
    width: 100%;
    margin-top: 15px;
}
.product-detail-form .product-picture-frame .album img{
    width: calc(25% - 10px);
    margin: 5px;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.125)!important;
    transition: all 0.25s ease 0s;
}
.product-detail-form .product-picture-frame .album img:hover{
    transform: scale(1.1);
}
.product-detail-form .product-picture-frame .album .embed-responsive{
    width: calc(25% - 10px);
    margin: 5px;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.125)!important;
    transition: all 0.25s ease 0s;
    display: inline-table;
}
.product-detail-form .product-picture-frame .album .embed-responsive:hover{
    transform: scale(1.1);
}

.product-detail-form .product-information-frame{
    width: 59%; 
    margin-left: 3%; 
    margin-right: 3%; 
    float: left; 
    color: white;
    cursor: default;
}