@font-face {
  font-family: "cjwl";
  src: url("/static/v1/css/cjwl.otf");
}
@font-face {
  font-family: "cjwlbold";
  src: url("/static/v1/css/cjwl-bold.otf");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'cjwl', serif;
}
a {
    color: inherit;
    outline: none;
    text-decoration: none;
}
body {
    overflow: visible;
}
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}
footer, .footer {
    height: 80px;
    color: #666;
    font-size: 12px;
    text-align: center;
    background-color: #181818;
}
/*.pick-en {*/
/*    position: fixed;*/
/*    z-index: 1000;*/
/*    top: 30px;*/
/*    right: 50px;*/
/*}*/
/*.pick-en:hover .pick-list {*/
/*    display: flex;*/
/*}*/
/*.pick-list {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 50%;*/
/*    transform: translate(-50%, 100%);*/
/*    border: 1px solid #eee;*/
/*    padding: 2px 0;*/
/*    display: none;*/
/*    align-items: center;*/
/*    flex-direction: column;*/
/*    justify-content: space-evenly;*/
/*    border-radius: 10px;*/
/*    background-color: #fff;*/
/*    z-index: 9999;*/
/*}*/
/*.pick-item {*/
/*    padding: 0 20px;*/
/*    line-height: 44px;*/
/*    border-bottom: 1px solid #eee;*/
/*}*/
/*.pick-item:hover {*/
/*    color: #1e50ae;*/
/*}*/
/*.pick-item:nth-last-of-type(1) {*/
/*    border-bottom: none;*/
/*}*/

/*@media (max-width: 750px) {*/
/*    .pick-en {*/
/*        top: 15px;*/
/*        right: 15px;*/
/*    }*/
/*    .pick-list {*/
/*        transform: translate(-100%, 100%);*/
/*    }*/
/*}*/
@media (max-width: 750px) {
    header, .header {
        height: 50px;
        display: flex;
        justify-content: space-between;
    }
}
@media (min-width: 750px) {
    header, .header {
        height: 80px;
    }
}
.ellipsis-two-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}