@font-face {
    font-family: 'jf-openhuninn';
    src: url(jf-openhuninn-1.1.ttf);
}

iframe{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
}
.swiper-button-disabled{
    color: #ddd;
}
.news-page-edit-img-box,
.news-page-edit-img2-box{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
}
.news-page-edit-img{
    width: 100%;
    position: relative;
    padding-bottom: calc((780/520)*100%);
}
.news-page-edit-img2{
    width: 100%;
    position: relative;
    padding-bottom: calc((360/520)*100%);
}

@media (min-width: 768px){
    .news-page-edit-img-box{
        column-gap: 20px;
    }
    .news-page-edit-img2-box{
        column-gap: 20px;
    }
}
@media (min-width: 1024px){
    .news-page-edit-img-box{
        column-gap: 40px;
    }
    .news-page-edit-img2-box{
        column-gap: 35px;
    }
}
@media (min-width: 1280px){
    .news-page-edit-img-box{
        column-gap: 60px;
    }
}


.loadingForm-mask-box{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    z-index: 9999;
}
.loadingForm-mask-box.active{
    display: flex;
}
.loadingForm-mask-box svg{
    animation: loadingForm 1s linear 0s infinite;
}
@keyframes loadingForm{
    from {
      transform: rotate(0deg) 
    }
  
    to {
        transform: rotate(360deg)
    }
  }