.popup_list{

}
.popup_list li{
	margin-bottom:8px;
}
.popup_list li a{
  display: inline-block;

}
.popup_list li img{
	width:auto;
	height:40px;
	max-width:unset;
}

/* popup_content */
.popup_bg{
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 80%);
  transition: 0.4s;
  z-index:101;
}
.popup_content{
  position: relative;	
}
.popup_box{		
  display: none;	
  position: fixed;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 110;
  width: calc(100% - 8rem);
	max-width:1080px;
  height: auto;
  background: #fff;				
  padding: 20px;
	box-sizing:border-box;
}
.popup_box .tit{
  text-align: center;
  margin:0 auto 20px;
}
.popup_box .tit span{
  display: inline-block;
  padding:2px 8px;
  color:#fff;
  font-size: 14px;
  line-height: 27px;
  background: #404952;
  border-radius: 3px;
}
.popup_box img{
  width: 100%;
	max-width:700px;
  border-radius: 3px;
	display:block;
	margin:0 auto 20px;
}
.popup_box p{
  font-size: 14px;
  line-height: 1.8;
	max-width:750px;
	margin:0 auto;
}
/* popup_nav */
.popup_nav .prev{
  position:absolute;
  top:50%;
  left:-40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  z-index:130;
}
.popup_nav .next{
  position:absolute;
  top:50%;
  right:-40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
}
.popup_nav .prev.disabled,
.popup_nav .next.disabled{
  display: none;
}
/*--close btn--*/
.popup_close{
  width: 30px;
  height: 30px;
  cursor: pointer;
  position:absolute;
  top:20px;
  right:20px;
  z-index:120;
}  
.popup_close span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  width: 30px;
  height: 2px;
  background: #434c55;
  position: absolute;
  left: 50%;
  top: 50%;
}	
.popup_close span:nth-child(1) {
  transform: translate(-50%, 50%) rotate(45deg);
}	
.popup_close span:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-45deg);
}


@media screen and (max-width : 1580px) {
	.popup_box > img{
		max-width:680px;
		aspect-ratio: 8 / 4;
		object-fit: cover;
	}
}

@media screen and (max-width : 768px) {		
  .popup_close{
    top:-10px;
    right:-10px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
  }
  .popup_close span {
    width: 20px;
    height: 2px;
    left: 50%;
    top: 45%;
  }	
  .popup_close span:nth-child(1) {
    transform: translate(-50%, 50%) rotate(45deg);
  }	
  .popup_close span:nth-child(2) {
    transform: translate(-50%, 50%) rotate(-45deg);
  }	
}
@media screen and (max-width : 600px) {
  .popup_box{
    width: 94%;
    height: auto;
    margin: 0 auto;
    background: #fff;
    /*display: flex;
    flex-direction: column;
    align-items: center;*/
		z-index:999;
  }
	.popup_nav .prev,
	.popup_nav .next{display:none;}
  /*.popup_nav .prev{
    left:25px;
    width:20px;
  }
  .popup_nav .next{
    right:25px;
    width: 20px;
  }*/
}

@media screen and (max-width : 580px) {
.popup_list li img{
	width:auto;
	height:35px;
	max-width:unset;
}
}
@media screen and (max-width : 580px) {
	.popup_list li img{
	width:auto;
	height:30px;
	max-width:unset;
	
}
.popup_box > img{
	aspect-ratio: 4 / 3;
	object-fit: cover;
}


}