@charset "UTF-8";
/* 列表 */
.dummy {    
    margin-top: 100%;
}
.block{
    position: absolute;
    display: block;
    top: 0;
    right: 0.5px;
    bottom: 1px;
    left: 0.5px;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.my-gallery{
    display: none;
}
.my-gallery.active{
    display: block;
    -webkit-animation: fadeInUp 1s 1 ease;
    -moz-animation: fadeInUp 1s 1 ease;
    -o-animation: fadeInUp 1s 1 ease;
}
.my-gallery .col-xs-6:nth-child(2n) .block{
    right: 0;
}
.my-gallery .col-xs-6:nth-child(2n+1) .block{
    left: 0;
}
.block::before{
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: none;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.product_list_title{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 10px;
    z-index: 2;
    padding: 0 0 0 38px;
    color: #ffffff;
    /*letter-spacing: 1px;*/
}
.product_list_title:before{
    position: absolute;
    content: " ";
    width: 28px;
    height: 10px;
    left: 0;
    bottom: 7px;
    background: url(../images/common_icon/product-line.png) 0 0 no-repeat;
    background-size: contain;
}
.product_list_title::after{
    /* position: relative; */
    /* float: right; */
    display: inline-block;
    content: " ";
    width: 30px;
    height: 20px;
    background: url(../images/common_icon/direction-right.png) center no-repeat;
    background-size: 10px 10px;
}
.product_list_title span{
    display: inline-block;
    max-width: calc( 100% - 30px);
    overflow: hidden;
    text-overflow: ellipsis; 
    white-space:nowrap;
}
.product_list_id{
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    font-size: 12px;
    letter-spacing: 1px;
    color: #dadada;
    border-bottom: 1px solid #dadada;
}


/* PAGE NUMBER========= */
.page_number{
    display: block;
    text-align: center;
}
.page_number div{
    display: block;
    vertical-align: middle;
}
.page_number div.page_next,.page_number div.page_prev{
    display: inline-block;
    width: 30px;
    height:30px;
    position: relative;
    cursor: pointer;
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-image: url(../images/common_icon/page_icon.png);
    vertical-align: middle;
    margin-top: 5px;
}
.page_number div.page_next{   
    float: right; 
    background-position: right top;
    margin-left:12px;
    margin-right: 15px;
}
.page_number div.page_next.disabled{
    background-position: right bottom;
}
.page_number div.page_prev{
    float: left;
    background-position: left top;
    margin-right:12px;
    margin-left: 15px;
}
.page_number div.page_prev.disabled{
    background-position: left bottom;
}
.page_number div.page_cont{
    margin: 5px 10px;
}
.page_number div.page_cont a{
    display: inline-block;
    margin: 0 11px 5px 11px;
    font-size: 12px;
    font-style: italic;
    color:#666666;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
.page_number div.page_cont a:hover{
    color:#992c2c;
}
.page_number div.page_cont a.active{
    color:#992c2c;
    border-bottom: 1px solid #992c2c;
}