.board__page {
  padding-top: 4rem;
}

.board__info {
  color: var(--color_desc);
  padding-bottom: 1rem;
}

.b__list__header,
.b__list__inline li a {
  display: grid;
  grid-template-columns: 8rem 2fr 1fr 1fr 1fr 7rem;
  align-items: center;
}

.b__list__header {
  position: relative;
  padding: 0 1.5rem 1.5rem;
  /* background: #f9f9f9; */
  color: #999;
  font-family: var(--font_family_bold);
}

.b__list__header > span {
  text-align: center;
}

.b__list__header > span:nth-child(2),
.b__list__header > span:nth-child(3) {
  text-align: left;
}

.b__list__header > span:last-child {
  text-align: right;
}

.b__list__header > div {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.3rem;
}

.b__list__box {
  position: relative;
}

.b__list__inline li {
  margin-bottom: 1rem;
}

.b__list__inline li a {
  padding: 1rem 1.5rem;
  color: var(--color_title);
  transition: .4s;
  box-shadow: 0 0 20px rgb(227 230 236 / 60%);
  border-radius: 1rem;
  background: var(--box_bg);
}


.b__list__inline li a:hover {
  color: var(--color_pmy);
  box-shadow: 0 20px 16px rgb(227 230 236 / 60%)
}

.b__list__inline li:last-child {
  margin: 0;
}


.row__seq {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color_desc)
}


.sort__img {
  position: relative;
  width: 4.5rem;
}

.sort__img > img {
  width: 100%;
}

.sort__img > .new {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  background: #ff6681;
  border-radius: 50%;
  opacity: 0;
  animation: new 2s linear infinite;
}
@keyframes new {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.title img {
  height: 1.3rem;
}

.title > div {
  font-size: 1.1rem;
  color: var(--color_desc);
  font-family: var(--font_family);
  /* padding-top: .3rem; */
}

.title > div > p {
  position: relative;
  margin-top: .3rem;
  padding: 0 1rem;
}

.title > div > p::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: .1rem;
  height: .7rem;
  background: #e1e1e1
}

.title > div > p:nth-child(1) {
  padding-left: 0;
}

.title > div > p:nth-child(1)::after {
  padding-left: 0;
  background: none;
}


.order__price {
  font-size: 1.2rem;
  text-align: center;
}

.order__price > strong {
  font-size: 1.6rem;
  font-family: var(--font_family_bold);
}

.author {
  justify-content: center;
}

.author > img {
  width: 1.6rem;
}

.reg__date {
  text-align: center;
}

.state {
  justify-content: flex-end;
}

.state__box {
  width: 7rem;
  padding: .7rem 0;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 2em;
}

.bg__ani {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg__ani::before {
  content: '';
  position: absolute;
  left: -300%;
  transform: skew(45deg);
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, transparent, rgba(255, 255, 255, 0.3), transparent, transparent);
  animation: cate 3s linear infinite;
  z-index: -1;
}
@keyframes cate {
  100% {
    transform: translateX(200%);
  }
}

.state__m {
  font-size: 1rem;
}

.state__m > span {
  padding: 0 .3rem;
}


.state01 {background: var(--state01)}
.state02 {background: var(--state02)}
.state03 {background: var(--state03)}
.state04 {background: var(--state04)}
.state05 {background: var(--state05)}
.state06 {background: var(--state06)}
.state07 {background: var(--state07)}





/* DEBUG: 리스트 블라인드 */

.blind__wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  border-radius: 1rem;
}




/* DEBUG: 페이징  */

.paging_box {
  justify-content: center;
  width: 100%;
  margin-top: 5rem;
  font-size: 1.5rem;

}

.page_box {
  padding: 1rem;
  /* box-shadow: 0 2px 8px rgb(227 230 236 / 65%); */
  border-radius: 2em;
}

.page_box > .only_num {
  padding: 1rem 1.2rem;
  border-bottom: 2px solid transparent;
  color: var(--color_title);
  transition: .2s;
}

.page_box > a.selected {
  color: var(--color_pmy);
  border-color: var(--color_pmy);
}

.page_box > a:hover {
  border-color: #e1e1e1;
}

.arrowLeft > i,
.arrowRight > i {
  padding: 1rem;
  margin-right: 1rem;
  color: var(--color_title);
  /* border: 1px solid #eee; */
  border-radius: 2rem;
  background: #f9f9f9
}

.arrowRight > i {
  margin: 0;
  margin-left: 1rem;
}




.no__data {
  justify-content: center;
  padding: 2rem 0;
  /* border-bottom: 2px solid #efefef; */
  color: var(--color_desc);
}



.v840,
.v640,
.v440 {
  display: none;
}














@media all and (max-width: 840px) {
  .b__list__header,
  .b__list__inline li a {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 7rem;
    align-items: center;
  }

  .h840 {
    display: none;
  }

  .v840 {
    display: inherit;
  }
}

@media all and (max-width: 640px) {
  .b__list__header,
  .b__list__inline li a {
    display: grid;
    grid-template-columns: 1fr 7rem;
    align-items: center;
  }

  .title > div {
    padding-top: .3rem;
  }

  .order__price > strong {
    padding-right: .1rem;
  }

  .h640 {
    display: none;
  }

  .v640 {
    display: inherit;
  }
}

@media all and (max-width: 440px) {
  .b__list__header,
  .b__list__inline li a {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 1rem;
  }

  .b__list__header {
    background: none;
    border-top: 0;
  }

  .h440 {
    display: none;
  }

  .v440{
    display: inherit;
  }

  .sort__img {
    width: 4.3rem;
  }


  .state__box {
    width: 4.3rem;
    height: 1.4rem;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-family: var(--font_family_bold);
    border-radius: .3rem;
    z-index: 1;
  }
}


@media all and (max-width: 398px) {
  .title  {
    font-size: 1.3rem;
  }

  .order__price {
    font-size: 1.3rem;
    text-align: center;
  }

  .order__price > strong {
    font-size: 1.5rem;
    padding-right: .1rem;
  }
}
