html{
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.gallery_wrap{
  background-color: #242629;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gallery_wrap>.pic_item{
  width: 33.33333333333333333%;
  height: 340px;
  position: relative;
}
.gallery_wrap>.pic_item>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_wrap>.pic_item>span{
  position: absolute;
  left: 16px;
  font-size: 13px;
  color: #fff;
  line-height: 1;
}
.gallery_wrap>.pic_item>span.type{
  top: 16px;
  padding: 7px 8px;
  background-color: rgba(0, 0, 0, .3);
  border-radius: 5px;
}
.gallery_wrap>.pic_item>span.title{
  bottom: 26px;
}


.full_wrap{
  background-color: #060607;
  padding: 50px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: none;
}
.full_wrap>.wrap{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full_wrap>.wrap>.content_box{
  display: inline-block;
  width: auto;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full_wrap>.wrap>.content_box::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, rgba(31, 34, 36, 0.35), rgba(31, 34, 36, 0) 10em, rgba(31, 34, 36, 0)), linear-gradient(to right, rgba(31, 34, 36, 0.35), rgba(31, 34, 36, 0) 10em, rgba(31, 34, 36, 0));
}
.full_wrap>.wrap>.content_box>.pic{
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
}
.full_wrap>.wrap>.content_box>.info{
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 30px;
  padding-bottom: 50px;
}
.full_wrap>.wrap>.content_box>.info>h2{
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
  color: #fff;
}
.full_wrap>.wrap>.content_box>.info>span.type{
  font-size: 16px;
  color: #fff;
  line-height: 1;
}
.full_wrap>.wrap>.content_box>.close{
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1;
  width: 40px;
}
.full_wrap>.wrap>.content_box>.control{
  height: 60%;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.full_wrap>.wrap>.content_box>.control>.icon{
  width: 40px;
}
.full_wrap>.wrap>.content_box>.control.prev{
  left: 0;
}
.full_wrap>.wrap>.content_box>.control.prev>.icon{
  transform: rotate(180deg);
}
.full_wrap>.wrap>.content_box>.control.next{
  right: 0;
}

.pageFooter{
  width: 100%;
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  padding: 25px 20px;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
}
.pageFooter>.left_info{
  width: 100px;
  flex: 1;
  display: flex;
  align-items: center;
}
.pageFooter>.left_info>img{
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.pageFooter>.left_info>.title{
  width: 100px;
  flex: 1;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  margin-left: 15px;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}
.pageFooter>.right_control{
  margin-left: 20px;
}
.pageFooter>.right_control>.select_wrap{
  position: relative;
}
.pageFooter>.right_control>.select_wrap>.name{
  font-size: 16px;
  line-height: 1;
  color: #fff;
  padding: 15px 25px;
  user-select: none;
  cursor: pointer;
}
.pageFooter>.right_control>.select_wrap>.options{
  position: absolute;
  bottom: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .6);
  border-radius: 8px;
  padding: 8px 0;
  display: none;
}
.pageFooter>.right_control>.select_wrap>.options>li{

}
.pageFooter>.right_control>.select_wrap>.options>li>a{
  display: block;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 720px) {
  .gallery_wrap>.pic_item{
    width: 50%;
  }

  .full_wrap>.wrap>.content_box{
    width: 100%;
    height: 100%;
  }
  .full_wrap>.wrap>.content_box::after{
    display: none;
  }
  .full_wrap>.wrap>.content_box>.pic{
    border-radius: 0;
  }
  .full_wrap>.wrap>.content_box>.info{
    padding-left: 15px;
    font-size: 0;
  }
  .full_wrap>.wrap>.content_box>.control{
    display: none;
  }
  .full_wrap>.wrap>.content_box>.close{
    display: none;
  }

  .pageFooter{
    font-size: 0;
    padding: 20px;
    bottom: unset;
    left: 0;
    top: 0;
    display: flex;
  }
  .pageFooter>.right_control>.select_wrap>.options{
    bottom: unset;
    top: 150%;
  }
}

@media screen and (max-width: 480px) {
  .gallery_wrap>.pic_item{
    width: 100%;
  }
  .full_wrap{
    padding: 40px 0;
  }
  .full_wrap>.wrap>.content_box>.pic{
    max-width: 100%!important;
    max-height: 100%!important;
  }
  .full_wrap>.wrap>.content_box>.info{
    padding: 0 15px;
  }
  .full_wrap>.wrap>.content_box>.info>h2{

  }
}