@charset "utf-8";

/* 웹폰트 */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR|Righteous');

/* 전체 폰트 */
html {
    font-size: 9px;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-family:'Noto Sans KR', sans-serif;
    line-height: 1.7;
}

/* CSS리셋 */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
    margin: 0;
    padding: 0;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
    display: block;
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
    overflow: visible;
    cursor: pointer;
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit],
textarea {
    -webkit-appearance: none;
}

input,
select,
textarea,
button {
    font-size: 100%;
    border-radius: 0;
    background: transparent;
    border: 0;
}

button {
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: none;
}

ul,
li {
    list-style: none;
}

img,
fieldset {
    border: none;
    vertical-align: top;
}

iframe,
embed {
    width: 100%;
}

table .imageblock {
    width: 100% !important;
}

table {
    border-spacing: 1px 0;
}

hr {
    display: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {font-size: 1.5em;}
h2 { font-size:1.30em; }
h3 { font-size: 1.17em;}
h4 {font-size: inherit;}
h5 { font-size:0.83em; }

.fa,
.fas {
    font-size: 0.8em;
}

/* 기본 설정 */
body {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

a {
    text-decoration: none;
    transition: color .5s;
}

a:hover {}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-left: 9px solid;
}

/* 전체 박스 */
#container {
    position: relative;
    margin: 0 auto 50px;
    animation: fadein 2000ms ease-out;
    -moz-animation: fadein 2000ms ease-out;
    -webkit-animation: fadein 2000ms ease-out;
    -o-animation: fadein 2000ms ease-out;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.in {
    margin: auto;
}

/* 헤더 */
#header {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

#header:after {
    display: block;
    height: 40%;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* 타이틀 */
#header .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0rem;
    z-index: 9;
}

#header .title img {
    max-height: 100px;
}

/* 카테고리 */
.catebox .cate,
.category_list > li,
.catebox > ul > li {
    position: relative;
}

@media screen and (min-width:769px) {
    .mobile {
        display: none;
    }

    .catebox {
        text-align: center;
        white-space: nowrap;
        cursor: default;
        position: absolute;
        width: 100%;
    }

    .catebox.sticky {
        position: fixed;
        top: 0;
        z-index: 999;
    }

    .catebox.sticky .in {
        position: static;
    }

    .catebox.sticky .in:before {
        display: none;
    }

    .catebox .scroll {
        padding: 10px 0;
        position: relative;
    }

    .catebox .scroll:before,
    .catebox .scroll:after {
        position: absolute;
        left: 0;
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0)', endColorstr='rgba(255,255,255,0)', GradientType=1);
    }

    .catebox .scroll:before {
        top: 0;
    }

    .catebox .scroll:after {
        bottom: 0;
    }

    .catebox .cate,
    .tt_category,
    .category_list > li,
    .catebox .scroll .menubox > ul,
    .catebox .scroll .menubox > ul > li {
        display: inline-block;
    }

    .catebox .cate,
    .category_list > li,
    .catebox .scroll .menubox > ul > li {
        margin: 0 40px;
    }

    .link_item,
    .cate a,
    .catebox .scroll .menubox > ul > li > a {
        display: inline-block;
        padding: 10px 0;
    }

    .category_list > li:hover .sub_category_list {
        display: block;
    }

    .sub_category_list {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        line-height: 1;
        z-index: 99;
        top: 80%;
    }

    .sub_category_list > li {
        padding: 8px 10px;
    }
}

.sub_category_list {
    display: none;
}

.sub_category_list > li {
    opacity: 0;
    transform-origin: bottom;
    animation: enter 0.2s ease forwards;
}

.sub_category_list > li:nth-child(1) {
    animation-duration: 0.2s;
    animation-delay: 0s;
}

.sub_category_list > li:nth-child(2) {
    animation-duration: 0.3s;
    animation-delay: 0.1s;
}

.sub_category_list > li:nth-child(3) {
    animation-duration: 0.4s;
    animation-delay: 0.2s;
}

.sub_category_list > li:nth-child(4) {
    animation-duration: 0.5s;
    animation-delay: 0.3s;
}

.sub_category_list > li:nth-child(5) {
    animation-duration: 0.6s;
    animation-delay: 0.4s;
}

.sub_category_list > li:nth-child(6) {
    animation-duration: 0.7s;
    animation-delay: 0.5s;
}

.sub_category_list > li:nth-child(7) {
    animation-duration: 0.8s;
    animation-delay: 0.6s;
}

.sub_category_list > li:nth-child(8) {
    animation-duration: 0.9s;
    animation-delay: 0.7s;
}

.sub_category_list > li:nth-child(9) {
    animation-duration: 0.10s;
    animation-delay: 0.8s;
}

.sub_category_list > li:nth-child(10) {
    animation-duration: 0.11s;
    animation-delay: 0.9s;
}

@keyframes enter {
    from {
        opacity: 0;
        transform: scaleY(0.98) translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.ac-toggle i {
    transition: transform .25s
}

.ac-menu.expanded .ac-toggle i,
.ac-menu:hover .ac-toggle i {
    transform: scaleY(-1)
}

.ac-menu .ac-toggle i {
    pointer-events: none;
    vertical-align: middle;
}

.link_tit {
    display: none !important;
}

/* 메인 영역 */
#content {
    margin: 100px auto 10px;
    padding: 3vh;
}

.myoskin:after {
    display: block;
    clear: both;
    content: '';
    overflow: auto;
}

/* 노이미지 */
.noimg {
    display: none;
}

:not(.thum) + .noimg {
    display: inline-block !important;
}

/* 목록 공통 */
.myoskin .item a {
    display: block;
}

.myoskin .thumbox,
#more_gal .more-item .thumbox {
    overflow: hidden;
}

.myoskin .item .thumbox > img,
#more_gal .more-item .thumbox > img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.myoskin .item:hover .thumbox > img,
#more_gal .more-item:hover .thumbox > img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
}

.myoskin .item .thumbox {
    position: relative;
}

.myoskin .item .hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    -ms-display: flexbox;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
    transition: opacity .5s;
    opacity: 0;
}

.myoskin .item .hover img {
    width: auto;
    max-height: 50px;
}

.myoskin .item:hover .hover {
    opacity: 1;
}

/* 갤러리형 */
#myo_gal .item,
#more_gal .more-item {
    float: left;
    width: 32%;
    margin: 0 2% 2% 0;
}

#myo_gal .item:nth-child(3n),
#more_gal .more-item:last-child {
    margin-right: 0;
}

#myo_gal .item .info,
#more_gal .more-item .info {
    text-align: center;
    margin-top: 10px;
}

#myo_gal .item .info .title,
#more_gal .more-item .info .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 39px;
    text-overflow: ellipsis;
}

#myo_gal .item .info .text,
#myo_gal .item .info .date,
#more_gal .more-item .info .date {
    display: none;
}

/* 목록형 */
#myo_bbs .item,
#more_bbs .more-item {
    margin: 30px 0;
}

#myo_bbs .item:first-child,
#more_bbs .more-item:first-child {
    margin-top: 0;
}

#myo_bbs .item:last-child,
#more_bbs .more-item:last-child {
    margin-bottom: 0;
}

#myo_bbs .item .info .title,
#myo_bbs .item .info .date,
#more_bbs .more-item .info .title,
#more_bbs .more-item .info .date {
    display: inline-block;
    vertical-align: middle;
}

#myo_bbs .item .info .title,
#more_bbs .more-item .info .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: calc(100% - 90px);
}

#myo_bbs .item .info .date,
#more_bbs .more-item .info .date {
    float: right;
    line-height: 21px;
}

#myo_bbs .item .thumbox,
#myo_bbs .item .text,
#more_bbs .more-item .thumbox {
    display: none;
}

/* 웹진형 */
#myo_web .item {
    margin-bottom: 30px;
}

#myo_web .item:last-child {
    margin-bottom: 0;
}

#myo_web .item .thumbox,
#myo_web .item .info {
    display: inline-block;
    vertical-align: top;
}

#myo_web .item .thumbox {
    width: 30%;
}

#myo_web .item .info {
    width: 69%;
    padding-left: 20px;
}

#myo_web .item .info .date {
    margin-top: 10px;
}

/* 보호글 */
.pass {
    width: 220px;
    height: 40vh;
    -ms-display: flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.pass input,
.pass button {
    margin: 5px 0;
    padding: 5px 0;
}

.pass input {
    width: 100%;
    border: 0;
    background: transparent;
}

.pass button {
    width: 100%;
    border: 0;
    letter-spacing: 3px;
    padding: 10px;
}

.pass input[required] + label {
    display: block;
    height: 48px;
    margin-top: -48px;
    margin-bottom: 0;
    pointer-events: none;
    line-height: 1;
}

.pass input[required] + label:before {
    content: attr(placeholder);
    display: inline-block;
    height: 48px;
    line-height: 48px;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    letter-spacing: 2px;
}

.pass input[required]:focus + label:before,
.pass input[required]:valid + label:before {
    -webkit-transform: translate(0, -24px) scale(1, 1);
    transform: translate(0, -24px) scale(1, 1);
    font-style: italic;
}

/* 본문 타이틀 영역 */
.titlebox {
    text-align: center;
    margin-bottom: 3vh;
}

.titlebox .cate {
    border-radius: 10px;
    display: inline-block;
    padding: 2px 10px;
}

.titlebox h1 {
    margin: 10px 0;
}

.titlebox .admin a {
    margin-left: 15px;
}

/* 본문 영역 */
.article {
    font-size: 1.15rem
}

/* 인용구 */
.tx-quote-tistory:before {
    content: "\e67f";
    font-family: 'themify';
}

.tx-quote-tistory {
    position: relative;
    height: auto;
    padding: 10px;
}

.tx-quote-tistory p {
    padding: 0 !important;
}

/* 더보기 */
.moreless_fold:before,
.moreless_top:before,
.moreless_bottom:before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
    font-weight: bold;
    font-size: .9em;
}

.moreless_bottom:before {
    content: "\f106";
}

.moreless_content {
    position: relative;
    height: auto;
    margin: 10px auto;
    padding: 10px;
}

.moreless_content p {
    padding: 0 !important;
}

/* 링크 */
.article .tx-link:before {
    content: "\f0c1";
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
    font-weight: bold;
    font-size: .9em;
}

.article .tx-link.imgblock:before {
    display: none;
}

/* 파일 첨부 */
.article .imageblock > a > img {
    display: none;
}

.article .imageblock > a:before {
    content: "\f019";
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
    font-weight: bold;
    font-size: .9em;
}

/* 신고 버튼 */
.container_postbtn {
    padding: 10px 0 !important;
    display: none;
}

.container_postbtn .postbtn_like {
    border: 0 !important;
}

.container_postbtn .postbtn_like label:first-child {
    padding-left: 0 !important;
}

/* 댓글 오픈 */
.opencmt {
    width: 25%;
}

.opencmt a {
    border-radius: 15px;
    padding: 2px 10px;
    text-align: center;
    display: inline-block;
}

.opencmt a .num {
    font-weight: bold;
}

.other {
    margin: 20px 0;
}

.opencmt,
.tags {
    display: inline-block;
    vertical-align: middle;
}

/* 본문 하단 태그 */
.tags {
    color: transparent;
    float: right;
    width: 70%;
    text-align: right;
}

.tags a {
    display: inline-block;
    padding: 2px 10px;
    margin-bottom: 3%;
    border-radius: 15px;
}

/* 카테고리 글 더보기 */
#more_off {
    display: none;
}

.morebox {
    margin: 20px 0 3vh;
    overflow: hidden;
    clear: both;
}

.morebox:after {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}

.morebox > .title {
    padding: 10px 0;
    border-bottom: 1px solid;
    margin-bottom: 10px;
}

.morebox a {
    display: block;
}

/* 카테고리 글 더보기 갤러리형 */
#more_gal .more-item {
    width: 23.5%
}

#more_gal .more-item .info .title {
    height: auto;
    max-height: 36px;
}

/* 카테고리 글 더보기 목록형 */
#more_bbs .more-item:first-child {
    margin-top: 0;
}

#more_bbs .more-item:last-child {
    margin-bottom: 0;
}

/* 댓글, 방명록 작성 */
#tt-body-page .cmt {
    margin-top: 3vh;
}

.cmt .writebox {
    margin-bottom: 3vh;
}

.cmt .write h2 {
    margin-bottom: 10px;
}

.cmt .write textarea {
    width: 100%;
    height: 80px;
    transition: height .5s;
    padding: 10px;
}

.cmt .write textarea:focus {
    height: 130px;
}

.cmt .write input,
.cmt .write button {
    padding: 2px 0;
}

.cmt .write button {
    float: right;
    font-weight: bold;
    letter-spacing: 2px;
}

.cmt .write #secret {
    display: none;
}

.cmt .write input + label:after {
    content: "\f09c";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 0.9em;
}

.cmt .write input:checked + label:after {
    content: "\f023";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}

/* 댓글, 방명록 목록 */
.lst li {
    position: relative;
}

.lst > ul {
    padding: 3vh 0;
    border-bottom: 1px solid;
}

.lst > ul:last-child {
    border: 0;
    padding-bottom: 0;
}

.lst .text {
    margin-bottom: 10px;
}

.lst .name {
    display: inline-block !important;
    margin-right: 15px;
}


.lst .admin a, .lst .date a {
    margin-left: 15px;
}

.lst .admin {
    display: inline-block;
    float: right;
}

.lst .rp_secret .name:after,
.lst .guest_secret .name:after {
    content: "\f023";
    font-family: "Font Awesome 5 Free";
    font-size: 0.9em;
    vertical-align: top;
}

.lst .rp_admin,
.lst .guest_admin {
    padding: 10px;
}


}

.lst .reply {
    margin-top: 3vh;
}

/* 프로필 사진 */
.profile .name img,
.profile .nopro {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    border-radius: 100%;
}

.profile .cmt .guest,
.profile .reply {
    padding-left: 60px;
}

.profile .nopro {
    display: inline-block;
}

.profile .rp_admin,
.profile .guest_admin {
    padding: 10px 10px 10px 70px !important;
}

.profile .rp_admin .name img,
.profile .guest_admin .name img {
    top: 10px;
    left: 10px;
}

/* 공지 */
.noti {
    margin-bottom: 4vh;
    border: 0px solid;
}

.noti:last-child {
    margin-bottom: 0;
}

.noti .title {
    padding: 5px 10px;
}

.noti .text {
    padding: 10px;
}

/* 페이지네이션 */
.pagination {
    text-align: center;
    margin-top: 1.5vh;
    cursor: default;
    position: relative;
}

.pagination a {
    margin: 0 5px;
}

.pagination .num {
    position: relative;
    display: inline-block;
}

.pagination .num:after {
    content: '';
    display: inline-block;
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    animation: out 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

.pagination .num:hover:after {
    animation: in 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

@keyframes in {
    0% {
        width: 0;
        left: 0;
        right: auto;
    }

    100% {
        left: 0;
        right: auto;
        width: 100%;
    }
}

@keyframes out {
    0% {
        width: 100%;
        left: auto;
        right: 0;
    }

    100% {
        width: 0;
        left: auto;
        right: 0;
    }
}

.pagination .current {
    display: none !important;
}

.page-more .pagination .p-more {
    margin-top: 10px;
    padding: 0.6vh 4vh;
    border: 1px solid;
    display: inline-block;
}

.page-more .pagination {
    margin-top: 0;
}

/* 푸터 */
/* sns */
.sns a {
    margin-right: 5px;
}

.sns,
.copy {
    display: inline-block;
}

/* 카피라이트 삭제 금지 */
.copy {
    float: right;
    font-size: 8px;
    font-family: 'Righteous', cursive;
}

@media screen and (min-width: 970px) {
    /* 우측 버튼 모음 */

    /* 홈 */
    .home {
        display: inline-block;
        transform: translateY(-35px);
        text-align: center;
    }

    .home a {
        display: block;
    }

    .home,
    .top {
        position: fixed;
        top: 50%;
        right: 10px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 100%;
        font-size: .9em;
        transition: background .5s;
        animation: fadein 2000ms ease-out;
        -moz-animation: fadein 2000ms ease-out;
        -webkit-animation: fadein 2000ms ease-out;
        -o-animation: fadein 2000ms ease-out;
        z-index: 999;
    }

    /* 검색 */
    .search {
        position: fixed;
        top: 50%;
        right: 10px;
        border-radius: 30px;
        width: 30px;
        overflow: hidden;
        white-space: nowrap;
        transition: width .5s, background .5s, padding .5s;
        animation: fadein 2000ms ease-out;
        -moz-animation: fadein 2000ms ease-out;
        -webkit-animation: fadein 2000ms ease-out;
        -o-animation: fadein 2000ms ease-out;
        z-index: 999;
    }

    .search input {
        max-width: 0;
        padding: 0;
        transition: max-width .5s;
    }

    .search button {
        display: inline-block;
        text-align: center;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 100%;
        font-size: .9em;
    }

    .search:hover {
        width: 150px;
        padding-left: 15px;
    }

    .search:hover input {
        max-width: 105px;
    }

    /* 탑버튼 */
    .top {
        transform: translateY(35px);
        text-align: center;
        display: none;
    }
	
	  .post {
        position: fixed;
        top: 0%;
        right: -10px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 100%;
        font-size: .7em;
        transition: background .5s;
        animation: fadein 2000ms ease-out;
        -moz-animation: fadein 2000ms ease-out;
        -webkit-animation: fadein 2000ms ease-out;
        -o-animation: fadein 2000ms ease-out;
        z-index: 999;
    }
}

@media screen and (max-width: 969px) {
    .home {
        position: static;
        margin-top: 15px;
        display: inline-block;
        background: transparent !important;
        vertical-align: top;
    }

    .top {
        position: fixed;
        bottom: 15px;
        right: 10px;
        text-align: center;
        width: 35px;
        height: 35px;
        border-radius: 100%;
        font-size: 1.5rem;
        transition: background .5s;
        border: 1px solid;
    }
}

@media screen and (max-width: 970px) and (min-width: 769px) {
    .search {
        display: none;
    }

    .fas {
        vertical-align: middle;
    }
}

/* 모바일 영역 */
@media screen and (max-width: 768px) {
    .in {
        margin: auto 15px;
    }

    #content {
        margin: 10px 15px 10px !important;
    }

    #myo_gal .item {
        width: 48.5%;
        margin: 0 3% 3% 0 !important;
    }

    #myo_gal .item:nth-child(2n) {
        margin-right: 0 !important;
    }

    #myo_web .item .thumbox,
    #myo_web .item .info {
        display: block;
        width: 100%;
    }

    #myo_web .item .info {
        padding: 10px 0 0 0;
    }

    .tags {
        text-align: left;
    }

    .opencmt,
    .tags {
        display: block;
        width: 100%;
    }

    .lst .admin {
        float:none;
        display:block;
        margin-top: 10px;
    }
    .lst .admin a {
    margin: 0 15px 0 0;
}
    .lst .admin .re {float:left}
    

    .ham {
        width: 20px;
        height: 15px;
        position: fixed;
        right: 15px;
        top: 15px;
        display: inline-block;
        z-index: 999;
    }

    .ham span {
        background-color: #FFF;
        position: absolute;
        border-radius: 2px;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
        width: 100%;
        height: 2px;
        display: block;
        box-shadow: 0 3px 3px 0 #00000057;
    }

    .ham span:nth-child(1) {
        top: 0px;
        left: 0px;
    }

    .ham span:nth-child(2) {
        top: 6.4px;
        left: 0px;
    }

    .ham span:nth-child(3) {
        bottom: 0px;
        left: 0px;
    }

    .ham:not(.ham.open):hover span:nth-child(1) {
        top: -2px;
        left: 0px;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    }

    .ham:not(.ham.open):hover span:nth-child(2) {
        top: 13px;
        left: 0px;
        transition: .4s cubic-bezier(.8, .5, .2, 1.4);
    }

    .ham:not(.ham.open):hover span:nth-child(3) {
        bottom: -2px;
        left: 0px;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    }

    .ham.open {
        transform: rotate(90deg);
    }

    .ham.open span:nth-child(1) {
        left: 1px;
        top: 4px;
        width: 20px;
        transform: rotate(90deg);
        transition-delay: 150ms;
    }

    .ham.open span:nth-child(2) {
        left: 2px;
        top: 10px;
        width: 10px;
        transform: rotate(45deg);
        transition-delay: 50ms;
    }

    .ham.open span:nth-child(3) {
        left: 10px;
        top: 10px;
        width: 10px;
        transform: rotate(-45deg);
        transition-delay: 100ms;
    }

    html.open {
        width: 100%;
        overflow: hidden;
    }

    .page_cover.open {
        display: block;
    }

    .page_cover {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 999;
        display: none;
    }

    .catebox {
        width: 70%;
        overflow: hidden;
        height: 100%;
        position: fixed;
        top: 0px;
        left: -71%;
        z-index: 9999999999;
        transition: All 0.2s ease;
        -webkit-transition: All 0.5s ease;
        -moz-transition: All 0.5s ease;
        -o-transition: All 0.5s ease;
        line-height: 3;
    }

    .catebox.open {
        left: 0;
    }

    .catebox .scroll {
        width: 102.5%;
        height: 100%;
        overflow-y: scroll;
        margin: 0;
        padding: 10% 0;
    }

    .catebox .title {
        font-size: 1.5rem;
    }

    .catebox .title img {
        max-width: 100px;
    }

    .catebox .title,
    .catebox .cate,
    .category_list > li,
    .menubox > ul > li {
        border-bottom: 1px solid;
    }

    .catebox .title,
    .link_item,
    .link_sub_item,
    .cate a,
    .menubox > ul > li > a,
    .search {
        display: block;
        padding: 3% 10%;
    }

    .ac-menu {
        display: block;
    }

    .ac-menu .ac-toggle i {
        float: right;
        line-height: 33px;
    }

    .search {
        position: static;
        vertical-align: middle;
        background: transparent !important;
    }

    .search input {
        text-align: left;
        padding: 2px 0;
        max-width: none;
        width: 80%;
    }

    .search button {
        float: right;
        vertical-align: middle;
        padding: 2px 0;
        line-height: 22px;
    }

}
