@charset "utf-8";

@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  box-sizing: border-box;
  list-style: none;
  line-height: var(--line-height);
  font-family: 'Pretendard-Regular';
}

html {
  font-size: var(--font-size);
  letter-spacing: 0.7px;
  color: var(--font-color);
  text-decoration: none;
}

body.fade-in {
  opacity: 0;
  
}

body.loaded {
  opacity: 1;
}

input,
textarea,
button,
::placeholder {
  border-radius: 0;
  border: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  font-size: 1rem;
  color: var(--font-color);
  letter-spacing: 1;
}

a,
a:link,
a:visited,
a:active {
  color: var(--font-color);
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: var(--scroll-bg);
}

::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background: var(--scroll-th);
}

/*Icon WebFont icon*/
.fas {
  font-size: 1rem;
  line-height: var(--line-height);
}

[class*=" xi-"],
[class^=xi-] {
  font-size: 1rem;
  line-height: var(--line-height);
}





/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  margin: 120px auto 150px;
  /*크기 변경*/
  width: calc(var(--layout-content) + var(--layout-side) + 20px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  row-gap: 20px;
}

#side {
  width: var(--layout-side);
  height: var(--container-height);
}

#content {
  position: relative;
  width: var(--layout-content);
  height: var(--container-height);
  background-color: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
  overflow-y: auto;
}

#content::-webkit-scrollbar {
  width: 0;
}

#content::-webkit-scrollbar-thumb {
  width: 0;
}





/*=======================================*/
/*=============== sidebar ===============*/
/*=======================================*/

#side i {
  font-size: 0.9rem;
}

#s-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#s-title>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 45px);
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

#s-title>a>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  aspect-ratio: 1;
  text-align: center;
  border-right: var(--border);
}

#s-title>a>.real-title {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

#s-title>.menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

#profile {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--main-bg);
}

#personal {
  width: 100%;
  height: auto;
  background-color: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}

#personal>div:not(:last-child) {
  border-bottom: var(--border);
}

#personal>div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

#personal>div>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-right: var(--border);
}

#personal>div>div.psn-data {
  width: calc(100% - 35px);
  padding: 8.5px 10px;
}

.nick>.psn-data {
  font-weight: bold;
}

.like>.psn-data>.mytag {
  font-size: 0;
}

.like>.psn-data>.mytag>span {
  margin-right: 5px;
  color: var(--point-color);
  font-size: 1rem;
}

.condition>.psn-data {
  display: flex;
  align-items: center;
  gap: 10px;
}

.condition>.psn-data>.cdt-bar {
  position: relative;
  width: 100%;
  height: 5px;
  background: #eee;
}

.condition>.psn-data>.cdt-bar>.cdt-thumb {
  position: absolute;
  width: var(--condition);
  height: 5px;
  background: #ddd;
}

.link>.psn-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}

.link>.psn-data>a {
  padding: 3px 8px;
  border: var(--border);
  border-radius: 15px;
  background-color: var(--sub-bg);
  color: var(--sub-color);
  font-size: 0.8rem;
  white-space: nowrap;
}





/*========================================*/
/*=============== category ===============*/
/*========================================*/

#came {
  position: fixed;
  width: 0;
  height: calc(var(--container-height) - 2px);
  background: #fff0;
  overflow: hidden;
  border-right: 1px solid #fff0;
  border-radius: var(--radius) 0 0 var(--radius);
  z-index: 9998;
  transition: 0.2s linear;
}

#came>.cm-wrap {
  position: absolute;
  width: 200px;
  height: 100%;
  background-color: var(--main-bg);
  z-index: 9999;
  transition: 0.2s;
}

.cm-slide {
  width: 200px !important;
  border-right: var(--border) !important;
  transition: 0.2s linear;
}

.cm-title {
  border-bottom: var(--border);
  padding: 10px 15px;
}

.cm-title>.tt>span {
  font-weight: bold;
}

.cm-con {
  padding: 10px;
  width: 100%;
  height: calc(100% - 35px);
  overflow: auto;
}

.cm-con::-webkit-scrollbar {
  width: 0;
}

.cm-con::-webkit-scrollbar-thumb {
  width: 0;
}

.search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 35px;
  margin-bottom: 10px;
  background-color: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}

.search input[type="text"] {
  width: calc(100% - 35px);
  padding: 0 10px;
}

.search button.sch-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-left: var(--border);
}

.menu {
  margin-bottom: 10px;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.2s linear;
}

.menu>.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s linear;
}

.menu>.menu-title>span {
  width: calc(100% - 35px);
  padding: 0 10px;
}

.menu>.menu-title>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-left: var(--border);
  transition: 0.2s linear;
}

.menu>.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: var(--border);
  padding: 10px;
}

.menu>.menu-list>li {
  width: 100%;
  margin-left: 5px;
}

.menu>.menu-list>li>a {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.menu>.menu-list>li>a::before {
  content: '-';
  margin-right: 3px;
}

.tt_category .c_cnt{
  font-size:0.9rem;
  color: var(--sub-color);
}

.tt_category>li>.link_tit {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  width: 100%;
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: 0.2s linear;
}

.category_list>li {
  border: var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: 0.2s linear;
}

.category_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  width: 100%;
  padding: 10px;
}

.tt_category .left_cname .xi-new-o{
  margin-bottom:-2px;
}

.category_list>li>.has-sub {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.category_list>li>.has-sub>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  width: calc(100% - 35px);
  padding: 0 10px;
}

.category_list>li>.has-sub>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-left: var(--border);
  transition: 0.2s linear;
}

.sub_category_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: var(--border);
  padding: 10px;
}

.sub_category_list>li {
  width: 100%;
  margin-left: 5px;
}

.sub_category_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  font-size: 0.9rem;
  color: var(--sub-color);
}

.sub_category_list>li>a::before {
  content: '-';
  margin-right: -1px;
}

.close {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: var(--border);
  border-radius: var(--radius);
  transition: 0.2s linear;
}

.close>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-left: var(--border);
  transition: 0.2s linear;
}

.close>span {
  width: calc(100% - 35px);
  padding: 0 10px;
}

.menu:hover .menu-title,
.tt_category .link_tit:hover,
.category_list>li:not(:has(.has-sub)):hover,
.category_list>li:hover .has-sub,
.close:hover {
  font-weight: bold;
  letter-spacing: 1.3px;
  background: #eee4;
  transition: 0.2s linear;
}

.menu:hover .menu-title>.icn,
.category_list>li:hover .icn,
.close:hover .icn {
  background: #eee5;
  transition: 0.2s linear;
}





/*======================================*/
/*=============== paging ===============*/
/*======================================*/

.wrapper {
  overflow-y: auto;
}

.wrapper::-webkit-scrollbar {
  width: 0;
}

.wrapper::-webkit-scrollbar-thumb {
  width: 0;
}

.paging {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border-top: var(--border);
}

.paging>.numbox>a.num {
  padding: 3px;
  margin: 0 3px;
}

.paging>.numbox>a.num>.selected {
  font-weight: bold;
}





/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.confirm {
  background: var(--main-bg);
  border-bottom: var(--border);
}

.confirm .c_title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.confirm .c_title i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-right: var(--border);
}

.confirm .c_title span {
  padding: 0 10px;
}

.confirm .c_desc {
  padding: 10px;
  border-top: var(--border);
}

.confirm .c_desc:empty {
  display: none;
}

.empty_con {
  padding: 150px 10px;
  text-align: center;
}

#list_n1> :not(.n1),
#list_n2> :not(.n2),
#list_g1> :not(.g1),
#list_g2> :not(.g2),
#list_wz> :not(.wz) {
  display: none;
}

.list_w>div:not(.wz) .sum {
  display: none;
}

.list_w .xi-lock,
.xi-new-o {
  color: var(--sub-color);
}



.n1 {
  padding: 10px;
}

.n1 .list_c {
  transition: 0.2s;
}

.n1 .list_c:not(:last-child) {
  border-bottom: var(--border);
}

.n1 .list_t {
  padding: 15px;
}

.n1 .list_t .title {
  margin-bottom: 2.5px;
  font-weight: bold;
  transition: 0.2s;
}

.n1 .list_c:hover .list_t .title {
  letter-spacing: 1px;
  color: var(--point-color);
  transition: 0.2s;
}

.n1 .list_t .dc-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--sub-color);
}

.n1 .list_t .dc-flex .catename::after {
  content: '·';
  margin-left: 5px;
}

.n1 .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.n1 .arrow-r {
  display: none;
  margin-right: 15px;
}



.n2 {
  padding: 10px;
}

.n2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.n2 .list_c {
  width: calc((100% - 10px) / 2);
  height: auto;
  background: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}

.n2 .list_t {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  border-bottom: var(--border);
}

.n2 .list_t .title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.n2 .list_t .title .icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
}

.n2 .list_t .title span {
  width: calc(100% - 35px);
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-left: var(--border);
}

.n2 .dc-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.n2 .dc-flex .icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
}

.n2 .dc-flex .text {
  width: calc(100% - 35px);
  font-size: 0.9rem;
  color: var(--sub-color);
  border-left: var(--border);
}

.n2 .dc-flex .text>div {
  padding: 5px 10px;
}

.n2 .dc-flex .text .catename {
  border-bottom: var(--border);
}



.g1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap: 10px;
  padding: 10px;
}

.g1 .list_c {
  position: relative;
  width: calc((100% - 20px) / 3);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  overflow: hidden;
}

.g1 .list_c .thumb_i {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.g1 .list_c .thumb_i img {
  width: 100%;
}

.g1 .list_c .thumb_i img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g1 .list_c .list_t {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff77;
}

.g1 .list_c .list_t .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.g1 .list_c .list_t .fa-lock {
  display: none;
}

.g1 .xi-new-o {
  display: none;
}



.g2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.g2 .list_c {
  position: relative;
  width: 100%;
  background: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.g2 .list_c .thumb_i {
  position: relative;
  width: 100%;
}

.g2 .list_c .thumb_i img {
  width: 100%;
}

.g2 .list_c .thumb_i img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g2 .list_t .tt_abs {
  width: 100%;
  height: auto;
  padding: 10px;
  background: var(--main-bg);
  border-top: var(--border);
}

.g2 .list_t .title {
  font-weight: bold;
}

.g2 .list_t .dc-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  color: var(--sub-color);
  font-size: 0.9rem;
}

.g2 .list_t .dc-flex .catename::after {
  content: '·';
  margin-left: 5px;
}



.wz {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.wz .list_c {
  width: calc((100% - 10px) / 2);
  border: var(--border);
  background: var(--main-bg);
  border-radius: var(--radius);
  padding: 10px;
}

.wz .list_c .thumb_i {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  border: var(--border);
  border-radius: var(--radius);
}

.wz .list_c .thumb_i img {
  width: 100%;
  border-radius: var(--radius);
}

.wz .list_c .thumb_i img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wz .list_c .list_t {
  position: relative;
  width: 100%;
  aspect-ratio: 5/2.3;
}

.wz .list_c .list_t .tt_top {
  margin-bottom: 5px;
}

.wz .list_c .list_t .title {
  font-weight: bold;
}

.wz .list_c .list_t .dc-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.9rem;
  color: var(--sub-color);
}

.wz .list_c .list_t .sum {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  color: var(--sub-color);
}

.wz .list_c .list_t .dc-flex .catename:after {
  content: '·';
  margin: 0 5px;
}





/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.entry .article .title_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: var(--border);
}

.entry .article .title_wrap .title {
  font-weight: bold;
}

.entry .article .title_wrap .date {
  color: var(--sub-color);
}

.entry .article .ny {
  padding: 10px;
  border-bottom: var(--border);
}

.entry .tt-box-total {
  display: none;
}

.entry .tt-comment-cont {
  display: none;
}

.entry .tt-comment-cont.dp_flex {
  display: flex;
}

.article .detail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6.5px 10px;
  border-bottom: var(--border);
}

.article .detail .tag_trail,
.article .detail .untagged {
  padding: 3.5px 0;
  text-transform: lowercase
}

.article .detail .admin {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.article .detail .admin>a {
  background: var(--sub-bg);
  border: var(--border);
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 0.85rem;
}

.article .detail .tag_trail a:before {
  content: '#';
}

.article .atc_bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
  padding: 10px;
}

.article .action_trail {
  display: inline-block;
  padding: 10px;
  padding-bottom: 9px;
  background: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
  font-weight: bold;
}

.article .postbtn {
  display: inline-block;
  vertical-align: middle;
}





/*=======================================*/
/*=============== postbtn ===============*/
/*=======================================*/

.entry .container_postbtn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
  padding: 0 !important;
}

.entry .container_postbtn .postbtn_like {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
  height: 35px;
  padding: 10px !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--main-bg);
}

.entry .container_postbtn .postbtn_like .wrap_btn{
  float: none !important;
}

.entry .container_postbtn .postbtn_like .wrap_btn .uoc-icon{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:5px;

}

.entry .container_postbtn .wrap_btn_share .layer_post {
  /*share icon click*/
  left: -7px !important;
}

.entry .container_postbtn .wrap_btn_etc .layer_post {
  /*etc icon click*/
  left: -4px !important;
}

.entry .container_postbtn .btn_post {
  height: auto !important;
  padding: 0 !important;
}

.entry .container_postbtn .btn_post .txt_like {
  margin: 0 !important;
}

.entry .container_postbtn .btn_post span.uoc-count {
  /*like text*/
  font-size: 1rem !important;
  font-family: "Pretendard-Regular" !important;
  line-height: var(--line-height);
  color: var(--font-color) !important;
}

.entry .container_postbtn .btn_post .ico_like {
  margin: 1px 0 0 0 !important;
  width:14px !important;
}

.entry .container_postbtn .btn_etc1 /*login*/,
.entry .container_postbtn .btn_etc2 /*logout*/{
  height: 15px !important;
  padding: 0 !important;
  margin-right: 0 !important;
}

.entry .container_postbtn .btn_post .ico_etc {
  margin: 0 !important;
  padding: 0;
}

.entry .container_postbtn button:focus,
.layer_post button:focus,
.layer_tooltip button:focus {
  /*item click → delete outline*/
  outline: unset !important;
}


.entry .container_postbtn .btn_menu_toolbar {
  height: 35px !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 10px !important;
  line-height: var(--line-height);
  color: var(--font-color) !important;
  background: var(--main-bg);
}

.container_postbtn .postbtn_like + .btn_menu_toolbar{
  margin:0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.entry .container_postbtn .btn_menu_toolbar>em.txt_state {
  font-size: 1rem !important;
  margin: 0 !important;
}

.entry .container_postbtn .btn_menu_toolbar .ico_check_type1 {
  margin: 5px 0 5px 5px !important;
}





/*========================================*/
/*=============== namecard ===============*/
/*========================================*/

.tt_box_namecard {
  min-height: unset !important;
  background: var(--main-bg) !important;
  margin: 0 !important;
  padding: 20px 10px;
  border-bottom: var(--border);
}

.tt_box_namecard .tt_cont {
  padding: 0 10px 0 0 !important;
}

.tt_box_namecard .tt_cont .tt_tit_cont {
  font-size: inherit !important;
  font-weight: bold !important;
  line-height: inherit !important;
  color: var(--font-color) !important;
}

.tt_box_namecard .tt_desc {
  font-size: 1rem !important;
  line-height: var(--line-height);
  letter-spacing: 0.5px !important;
}

.tt_box_namecard .tt_wrap_thumb {
  margin: 0 !important;
  border: var(--border);
}

.tt_box_namecard .tt_btn_subscribe {
  height: auto !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  padding: 5px 8px !important;
  background: var(--sub-bg) !important;
  border-radius: var(--radius) !important;
  border: var(--border) !important;
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g {
  font-size: 0.9rem !important;
  line-height: var(--line-height);
  color: var(--font-color) !important;
  padding-top: 1px;
  font-family: 'Pretendard-Regular';
}

.tt_ico_cross,
.tt_ico_check {
  transform: scale(0.8);
}





/*==========================================*/
/*========== article / font style ==========*/
/*==========================================*/

.ny p>a {
  font-weight: normal;
  color: var(--point-color);
}

/*hyperlink*/

h2, 
h2[data-ke-size]{
  line-height:calc(var(--line-height) + 0.25);
}

h3, 
h3[data-ke-size]{
  line-height: calc(var(--line-height) + 0.2);
}

h4, 
h4[data-ke-size]{
  line-height: calc(var(--line-height) + 0.15);
}

p[data-ke-size='size18']{
  line-height:calc(var(--line-height) + 0.05);
}

p[data-ke-size='size16']{
  line-height: var(--line-height);
}

p[data-ke-size='size14']{
  line-height: calc(var(--line-height) - 0.05);
}




/*==========================================*/
/*=============== imageblock ===============*/
/*==========================================*/

figure.imageblock.alignCenter {
  margin: 0 auto !important;
} /*image, 1*/

figure.imagegridblock,
#tt-body-page figure.imagegridblock {
  margin: 0 auto !important;
} /*image, more than 1 */

figure.imagegridblock .image-container>span {
  margin-top: 0 !important;
} /*image, more than 1, margin zero*/





/*==========================================*/
/*=============== blockquote ===============*/
/*==========================================*/

.ny blockquote {
  font-size: 1rem;
  line-height:var(--line-height);
  color: #777;
  letter-spacing: 0.5px;
}

blockquote[data-ke-style='style1'] {
  text-align: center;
  margin: 10px 0;
}

blockquote[data-ke-style='style1']:before {
  content: '\f10d';
  font-size: 1.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}

blockquote[data-ke-style='style2'] {
  padding: 5px 10px;
  padding-right: 0;
  border-left: 5px solid #777;
  margin: 10px 0;
}

blockquote[data-ke-style='style3'] {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--sub-bg);
  margin: 10px 0;
}





/*==========================================*/
/*=========== video Optimization ===========*/
/*==========================================*/

.ny iframe {
  max-width: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}





/*=========================================*/
/*========== article / list-type ==========*/
/*=========================================*/

ul[data-ke-list-type='disc'],
ul[data-ke-list-type='circle'],
ol[data-ke-list-type='decimal'] {
  padding-left: 15px;
}





/*=========================================*/
/*============ image Slideshow ============*/
/*=========================================*/

figure.imageslideblock.alignCenter {
  margin: 0 auto 10px;
}

figure.imageslideblock div.image-container {
  position: relative;
  width: 100% !important;
  height: unset !important;
  padding-bottom: 100%;
  min-width: unset;
  max-width: unset;
  min-height: unset;
  max-height: unset;
  align-items: unset;
}

figure.imageslideblock div.image-container span.image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}

figure.imageslideblock div.image-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

figure.imageslideblock figcaption {
  color: var(--font-color);
  font-size: 1rem;
  padding-top: 0;
  min-height: unset;
}





/*========================================*/
/*=============== moreless ===============*/
/*========================================*/

div[data-ke-type="moreLess"] {
  margin: 10px 0;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  display: inline-block;
  color: var(--font-color);
  font-size: 1rem;
  line-height: 1.4rem;
  padding: 5px 10px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--sub-bg);
}

div[data-ke-type='moreLess']:not(.open)>.btn-toggle-moreless::before {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 3px;
}

div[data-ke-type='moreLess'].open>.btn-toggle-moreless::before {
  content: '\f106';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 3px;
}

div[data-ke-type='moreLess'].open .moreless-content {
  padding: 10px;
  margin-top: 10px;
  background: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}





/*=========================================*/
/*=============== fileblock ===============*/
/*=========================================*/

figure.fileblock {
  margin: 10px 0;
  width: 200px;
  height: unset;
  border: var(--border);
  border-radius: var(--radius);
}

figure.fileblock a {
  position: relative;
  height: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}


figure.fileblock .image {
  position: relative;
  background: none;
  margin: 0;
  width: auto;
  height: auto;
}

figure.fileblock .image:after {
  content: "\f07b";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 28px;
  padding: 15px 10px;
}

figure.fileblock .desc {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  width: calc(100% - 50.5px);
  padding: 15px 10px;
  padding-left: 0;
}

figure.fileblock .filename {
  color: var(--font-color);
  font-size: 1rem;
  height: auto;
  margin: 0;
}

figure.fileblock .name {
  max-width: 95%;
  height: auto;
  font-weight: bold;
}

figure.fileblock .size {
  font-size: 0.85rem;
  color: var(--sub-color);
  height: auto;
  margin: 0;

}

figure.fileblock a::after {
  display: none;
}

figure.fileblock a>.down {
  display: block;
  width: 100%;
  border-top: var(--border);
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px;
  background: var(--sub-bg);
}

figure.fileblock a>.down>span:after {
  content: '\f358';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  margin-left: 3px;
}

figure.fileblock a:hover .down {
  letter-spacing: 2px;
  color: var(--point-color);
  transition: 0.2s;
}





/*=========================================*/
/*=============== codeblock ===============*/
/*========================================*/

pre[data-ke-type="codeblock"] {
  padding: 10px;
  margin: 10px 0;
  background: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}

pre[data-ke-type="codeblock"]>code {
  font-family: 'Pretendard-Regular';
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: var(--scroll-bg);
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background: var(--scroll-th);
  border: 0;
}





/*=========================================*/
/*=========== protected article ===========*/
/*=========================================*/

.protect .title_wrap {
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: var(--border);
  background: var(--main-bg);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.protect .title_wrap .title {
  font-weight: bold;
}

.protect .title_wrap .date {
  color: var(--sub-color);
}

.article_p {
  padding: 150px 10px;
  margin-bottom: 10px;
  text-align: center;
}

.article_p .text {
  margin-bottom: 10px;
}

.article_p .form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.article_p .form input {
  width: 120px;
  line-height: 35px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  text-align: center;
}

.article_p .form input::placeholder {
  font-size: 1rem;
  color: var(--sub-color);
  letter-spacing: 0.5px;
}

.article_p .form button {
  width: 37px;
  height: 37px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.article_p .form button>i {
  color: var(--sub-color);
}





/*======================================*/
/*=============== taglog ===============*/
/*======================================*/

.taglog .tag_title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: var(--border);
}

.taglog .tag_title i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-right: var(--border);
}

.taglog .tag_title span {
  padding: 0 10px;
  font-weight: bold;
}

.taglog .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  text-transform: lowercase
}

.taglog .tags a {
  width: calc((100% - 40px) / 5);
  padding: 10px 5px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: var(--sub-bg);
  border: var(--border);
  border-radius: var(--radius);
  transition: 0.2s;
}

.taglog a:before {
  content: '#';
}

.taglog a:hover {
  font-weight: bold;
  letter-spacing: 1.5px;
  color: var(--point-color);
  transition: 0.2s;
}





/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.notice_wrap .notice_title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: var(--border);
  margin-bottom: 10px;
}

.notice_wrap .notice_title i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-right: var(--border);
}

.notice_wrap .notice_title span {
  padding: 0 10px;
  font-weight: bold;
}

.n_entry {
  margin: 0 10px 10px 10px;
  background: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}

.n_entry .title_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: var(--border);
}

.n_entry .title_wrap .title {
  font-weight: bold;
}

.n_entry .title_wrap .date {
  color: var(--sub-color);
}

.n_entry .article {
  padding: 10px;
  text-align: justify;
}

.n_entry .postbtn {
  display: none !important;
}





/*======================================*/
/*=============== comment ===============*/
/*======================================*/

/*----- setting -----*/
.tt-comment-cont * {
  font-family: 'Pretendard-Regular';
  font-size: 1rem !important;
  line-height: var(--line-height);
  color: var(--font-color) !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt_ico_lock,
.tt-button-modify,
.tt-box-write .tt-xe-label-text {
  font-size: 0 !important;
}

.tt-box-total {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  order: 1;
  padding: 0 !important;
  margin-bottom: 10px;
  border-bottom: var(--border) !important;
}

.tt-box-total .tt_txt_g {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 0 !important;
  line-height: 0 !important;
}

.tt-box-total .tt_txt_g:before {
  content: "\ea12";
  font-family: xeicon !important;
  font-size: 0.9rem !important;
  margin-right: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-right: var(--border);
}

.tt-box-total .tt_txt_g:after {
  content: 'Message';
  font-family: 'Pretendard-Regular' !important;
  font-size: 1rem !important;
  font-weight: bold;
  padding-left: 5px;
}

.tt-box-total .tt_num_g:before {
  content: '+';
  font-size: 1rem !important;
  margin: 0 2px;
}

.tt-box-total .tt_num_g {
  padding-left: 0 !important;
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
  padding: 0 10px;
}



/*----- write form -----*/
.tt-comment-cont>form {
  order: 2;
  padding: 0 10px;
}

.tt-list-reply-comment .tt-area-write {
  /*답글 입력폼*/
  padding: 10px 10px 0;
}

.tt-btn-cancel {
  height: 30px !important;
  width: 60px !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--main-bg);
}

.tt-area-write {
  display: block !important;
  margin-bottom: 10px;
}

.tt-area-write .tt-box-account {
  margin-bottom: 10px !important;
}

.tt-area-write .tt-box-account input {
  padding: 10px !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--main-bg);
}

.tt-area-write .tt-box-thumb {
  display: none;
}

.tt-box-textarea {
  margin-bottom: 10px !important;
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
}

.tt-box-textarea .tt_txt_user {
  display: none !important;
}

.tt-box-textarea .tt-inner-g {
  overflow: auto !important;
  min-height: unset !important;
  max-height: 110px !important;
  padding: 0 5px 0 0 !important;
  border: unset !important;
  border-radius: unset !important;
  text-align: justify;
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar {
  background: var(--main-bg);
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar-thumb {
  background: var(--scroll-th);
}

.tt-box-textarea textarea,
.tt-box-textarea div {
  height: unset !important;
}

.tt-box-write .tt-xe-input-helper {
  margin-right: 10px !important;
}

.tt-btn_register {
  width: 60px !important;
  border-radius: var(--radius) !important;
  font-weight: bold;
  background-color: var(--sub-bg) !important;
  border: var(--border) !important;
}

.tt-btn_register:disabled,
.tt-btn_register:hover,
.tt-btn_register:focus {
  background: var(--main-bg) !important;
  border: var(--border) !important;
}



/*----- comment list -----*/
.tt-list-reply {
  display: flex;
  flex-direction: column-reverse;
  border-bottom: 0 !important;
}

.tt-list-reply>.tt-item-reply:not(.rp_general) {
  order: 1;
  background: var(--main-bg);
  /*pinned comment bg color*/
}

.tt-item-reply {
  padding: unset !important;
}

.tt-wrap-cmt {
  padding: 10px;
}

.tt-wrap-cmt .tt-box-meta {
  margin-bottom: 2.5px !important;
}

.tt-wrap-cmt .tt-link-user {
  font-weight: bold;
}

.tt_ico_lock {
  transform: scale(0.7);
}

.tt-wrap-cmt .tt_desc {
  margin-bottom: 10px !important;
}

.tt-wrap-cmt .tt_date {
  padding: unset !important;
  color: var(--sub-color) !important;
}

.tt-link-comment span {
  padding: unset !important;
  color: var(--sub-color) !important;
}

.tt-link-comment span.tt_txt_g {
  margin-right: 2px;
  font-family: 'Pretendard-Regular';
}

.tt-wrap-cmt .tt-box-modify {
  top: 6px !important;
  right: 3px !important;
}

.tt-wrap-cmt .tt-button-modify {
  transform: scale(0.8);
}

.tt-wrap-cmt .tt-list-modify {
  width: 80px !important;
  padding: 10px !important;
  box-shadow: none !important;
  border-radius: var(--radius) !important;
  border: var(--border);
}

.tt-wrap-cmt .tt-list-modify a {
  padding: 0 !important;
  letter-spacing: 1px !important;
  text-align: center !important;
}

.tt-box-thumb {
  margin-right: 10px !important;
}

.tt-thumbnail {
  width: 40px !important;
  height: 40px !important;
  border-radius: var(--radius) !important;
  border: var(--border);
}

.tt-thumbnail:after {
  border: none !important;
  border-radius: unset !important;
  box-shadow: unset !important;
}

.tt-wrap-cmt .tt-box-content {
  width: calc(100% - 50px) !important;
}

.tt-item-reply .tt-list-reply-comment {
  border-top: unset !important;
  margin: unset !important;
}

.tt-item-reply .tt-list-reply-comment .tt-box-thumb {
  display: none;
}

.tt-item-reply .tt-list-reply-comment .tt-item-reply::before {
  position: unset !important;
  border: unset !important;
}

.rp_general {
  margin-bottom: 20px;
  border: var(--border) !important;
  border-radius: var(--radius);
  background: var(--main-bg);
  /*comment item bg color*/
}

.rp_general .tt-list-reply-comment .tt-item-reply {
  border-top: var(--border);
}

.tt-list-reply-comment .tt-box-content {
  width: 100% !important;
}



/*----- pinned comment -----*/
.tt-item-reply .tt_cmt_info {
  border-bottom: var(--border);
  margin: unset !important;
  padding: 7px 10px;
}

.tt-item-reply:has(.tt_cmt_info) {
  border: var(--border) !important;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.tt-item-reply:has(.tt_cmt_info) .tt-wrap-cmt .tt-box-modify {
  top: 4px !important;
  right: 3px !important;
}

.tt_ico_fixed {
  transform: scale(0.8);
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed {
  margin-bottom: 0 !important;
}



/*----- prev more comment -----*/
.tt_btn_prev_more {
  padding: 10px !important;
  margin-bottom: 10px !important;
  border: var(--border) !important;
  border-radius: var(--radius);
}





/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/
.cover_wrap {
  padding: 10px;
}

.cn1,
.cg1,
.cl,
.cwz {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  margin-bottom: 10px;
}

.cg2 {
  margin-bottom: 10px;
}

.c_item .title_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: var(--border);
}

.c_item .title_wrap i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-right: var(--border);
}

.c_item .title_wrap span {
  padding: 0 10px;
  font-weight: bold;
}

.cn1 .cn_content_wrap {
  padding: 10px;
}



.cn1 .cn_content {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
}

.cn1 .cn_content:not(:last-child) {
  margin-bottom: 10px;
}

.cn1 .cn_content .cn_tt {
  margin-bottom: 10px;
  font-weight: bold;
}

.cn1 .cn_content .cn_sum {
  text-align: justify;
}

.cn1 .cn_content .cn_img {
  width: 100%;
  margin-bottom: 10px;
}

.cn1 .cn_content .cn_img img {
  max-width: 100%;
}



.cn2 .cn_content .cn_img {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
}

.cn2 .cn_content .cn_img img {
  max-width: 100%;
}

.cn2 .cn_content .cn_text_wrap {
  padding: 10px;
  margin-bottom: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
}

.cn2 .cn_content .cn_text_wrap .cn_tt {
  font-weight: bold;
  margin-bottom: 10px;
}

.cn2 .cn_content .cn_sum {
  text-align: justify;
}



.cg1 .cg_content {
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.cg1 .list_c {
  position: relative;
  width: calc((100% - 20px) / 3);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  overflow: hidden;
}

.c_item .list_c .thumb_i {
  position: relative;
  width: 100%;
}

.c_item .list_c .thumb_i img {
  width: 100%;
}

.c_item .list_c .thumb_i .th {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cg1 .list_c .list_t {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff77;
}

.cg1 .list_c .list_t .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}



.cg2 .cg_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.cg2 .list_c {
  width: calc((100% - 10px) / 2);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  overflow: hidden;
}

.cg2 .list_c .thumb_i {
  border-bottom: var(--border);
}

.cg2 .list_c .list_t {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px;
  font-weight: bold;
}



.cl .cl_content {
  padding: 10px;
}

.cl .cl_text_wrap a.thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.cl .cl_text_wrap:not(:last-child) {
  border-bottom: var(--border);
}

.cl .cl_text_wrap .cl_tt {
  max-width: calc(100% - 85px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cl .cl_text_wrap .date {
  color: var(--sub-color);
}



.cwz .list_c a.thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
  padding: 10px;
}

.cwz .list_c:not(:last-child) {
  border-bottom: var(--border);
}

.cwz .list_c .thumb_i {
  width: 100px;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cwz .cwz_text_wrap {
  width: calc(100% - 110px);
}

.cwz .cwz_text_wrap .cwz_tt {
  font-weight: bold;
}

.cwz .cwz_text_wrap .cwz_sum {
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}




/*=========================================*/
/*================== RWD ==================*/
/*=========================================*/

@media (max-width:767px) {

  #container {
    width: calc(100% - 40px);
    margin: 20px auto;
    flex-wrap: wrap;
    row-gap: unset;
  }

  #side {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  #side #profile {
    height: 150px;
  }

  #content {
    width: 100%;
    height: auto;
  }

  #came {
    position: fixed;
    top: 0;
    left: -56%;
    width: 55%;
    height: 100%;
    border-right: var(--border);
    transition: 0.2s;
  }

  .mb_slide {
    left: 0 !important;
    transition: 0.2s;
  }

  #came>.cm-wrap {
    width: 100%;
  }

  .g1 .list_c {
    width: calc((100% - 10px) / 2);
  }

  .wz .list_c .list_t {
    aspect-ratio: 5/3;
  }

  .wz .list_c .list_t .title {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .n2 .list_c {
    width: 100%;
  }

  .taglog .tags a {
    width: calc((100% - 20px) / 3);
  }
}