@charset "UTF-8";

.photoList{
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
}

.photoListBox{
    position: relative;
}
.photoListBox img,.photoListBox video{
    display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
}

.photoDataBox {
    background: rgba(0,0,0,0.5); position: absolute; bottom: 0; left: 0; width: 100%; text-align: center;
}
.photoDataBox .photoData{
    margin: 5px 5px;
}

.photoDataBox .photoData .photoDate{
    font-size: 1.2rem; color: #FFF; display: block; text-align: left;
}
.photoDataBox .photoData .photoTitle{
    font-size: 1.4rem; padding: 4px 0; color: #FFF; font-weight: bold; text-align:left; display: block;
}
.photoDataBox .photoName{
    background: linear-gradient(to bottom, white 0%, #a57d18 100%); width: 100%;
}
.photoDataBox .photoName p{
    font-size: 1.4rem;padding: 5px;
}
/*
.photoContents{
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.photoContentsBox{
    width: 100%


}
.photoList{
    display: flex;
    flex-wrap: wrap;
}
.photoList li{
    width: 100%;

}
.photoList li a{
    display: block;
    padding: 10px;
    border: 2px solid #505050;
    margin: 5px;
    border-radius: 10px;
}
.photoList li a:hover{
    opacity: 1;
}
.photoList li .thumbBox{
    position: relative;
    width: 90%;
    height: 100%;
    aspect-ratio: 1 / 1.4;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}
.photoList li .thumbBox .title{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #FFF;

    margin: 0 auto;
    overflow-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.photoList li .thumbBox .title p{
    display: block;
    padding: 5px;
    width: 100%;
    color: #333 !important;
    font-size: 14px;
}

.photoList li .thumbBox img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}
.photoList li p{
    color: #FFF;
    text-align: center;
    padding: 5px;
}
.photoList li .time{
    color: #000 !important;
    text-align: center;
    background: white;
    background: -moz-linear-gradient(top, white 0%, #a57d18 100%);
    background: -webkit-linear-gradient(top, white 0%, #a57d18 100%);
    background: linear-gradient(to bottom, white 0%, #a57d18 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#a57d18',GradientType=0 );
    padding: 5px;
    box-sizing: border-box;
}
*/
.photoPager{
    padding: 30px 0 !important;
}
.photoPager ul{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.photoPager li {
    margin: .5em;
    background: #fff0c5;

}
.photoPager li .page{
    color: #000;
    background: #fff0c5;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3em;
    text-align: center;
}
.photoPager li .current{
    color: #FFF;
    background: #a67c18;
}
