@charset "UTF-8";

/************* 웹 접근성 - 스크린리더 전용 ************/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/************* header ************/
body.menu-open,
html.menu-open {
  overflow: hidden;
  height: 100vh;
}

#header {
  background-color: #fff;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
}

header .wFix {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*logo*/
h1.logo {
  max-width: 220px;
}

h1.logo a {
  display: block;
}

h1.logo img {
  width: 100%;
  display: block;
}

/*nav gnb*/
nav.gnb > ul {
  display: flex;
  gap: clamp(1.25rem, 5vw, 2rem);
}

nav.gnb ul li a,
nav.gnb ul li button {
  /* font-size: 20px; */
  /* font-size: clamp(1rem, 1.5vw, 1.25rem); */
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}

nav.gnb ul li button {
  text-align: left;
}

/*nav gnb dropdown*/
nav.gnb li {
  position: relative;
  padding-bottom: 0.625rem;
  padding-top: 0.625rem;
}

nav.gnb li a,
nav.gnb li button {
  padding-right: 0.3125rem;
  padding-left: 0.3125rem;
}

.submenu li {
  padding-bottom: 0 !important;
}

nav.gnb .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 5px;
  box-shadow: 0 3px 20px rgba(16, 53, 113, 0.16);
  z-index: 100;
  min-width: 150px;
  padding: 0.625rem;
}

nav.gnb .submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

/*데스크탑 submenu hover*/
@media screen and (min-width: 1441px){
nav.gnb li:hover > .submenu {
  display: block;
}
}

nav.gnb .submenu {
  display: none;
}

/* 1440 이상일 때 메뉴가 열린 상태(active)면 호버 시 서브메뉴 보여줌 */
@media (min-width: 1441px) {
  nav.gnb.active li:hover .submenu {
    display: block !important;
  }
}

@media (max-width: 1440px){
	.mo_active .submenu{
	display: block !important;
	}
}



/* nav.gnb .submenu li {
  text-align: center;
} */

nav.gnb .submenu li a {
  position: relative;
  display: block;
  padding: 0.625rem 1rem;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  font-weight: 500 !important;
}

/* 25.10.15 추가 */
.mobile_extra_menu .user_name{
	font-size: 1.2rem;
	font-weight: 600;
	display: inline-block;
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
}

/* .mobile_extra_menu .user_name:hover ul.submenu{
	display: block !important;
} */


@media screen and (max-width: 1440px){
.mobile_extra_menu ul.submenu li:hover a,
.mobile_extra_menu ul.submenu li:hover button{
	background-color: #f4f7fb;
}

  nav.gnb .submenu li:hover a {
    background-color: #f4f7fb;
  }
}

.mobile_extra_menu ul.submenu .channel_modal{
	position: relative;
  display: block;
  padding: 0.625rem 1rem;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  font-weight: 500 !important;
}
/* 25.10.15 추가 끝 */

nav.gnb .submenu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

nav.gnb .submenu li a:hover::after {
  width: 100%; /* a 태그 너비만큼 */
}

/*auth*/
header .auth {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

header .auth > ul {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

header .auth > ul li {
  position: relative;
  display: inline-block;
}

header .auth > ul > li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--line-light);
}

header .auth > ul li a {
  display: block;
}

header .auth > ul li a,
header .auth > ul li {
  font-size: 1rem;
}

/* header .auth ul li a:hover {
  font-weight: 600;
} */

header .auth > ul li.lang {
  display: flex;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
}

header .auth > ul li.lang i {
  font-size: 1.25rem;
}

.tablet_menu {
  display: none;
}

.mobile_menu {
  display: none;
}

nav.gnb .mobile_extra_menu {
  display: none;
}

/* nav.gnb .lang_mobile {
  margin-left: 0.3125rem;
} */

nav.gnb .lang_mobile button {
  display: flex;
  align-items: center;
}

/*laptop + tablet*/
@media screen and (max-width: 1440px) {
  header .auth {
    display: none;
  }

  nav.gnb {
    display: none;
  }

  .tablet_menu {
    display: flex;
    gap: 0.625rem;
  }

  .tablet_menu .login,
  .tablet_menu .lang,
  .tablet_menu .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .tablet_menu button a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tablet_menu .login {
    background-color: var(--main-color);
    width: 60px;
    height: 60px;
    border-radius: 5px;
  }

  .tablet_menu .lang {
    background-color: var(--main-color);
    width: 60px;
    height: 60px;
    border-radius: 5px;
  }

  .tablet_menu > .menu {
    background-color: #000;
    width: 60px;
    height: 60px;
    border-radius: 5px;
  }

  nav.gnb.active .mobile_extra_menu {
    display: block;
    margin-top: 0.625rem;
    padding-top: 1.25rem;
    border-top: 1px solid #ddd;
  }

  nav.gnb.active {
    display: flex; /* flex로 바꾸면 기존 flex 설정 유지 가능 */
    flex-direction: column;
    position: fixed;
    top: 90px; /* 헤더 높이 만큼 아래 */
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: #fff;
    padding: 1.25rem;
    z-index: 10000;
    overflow-y: auto;
  }

  nav.gnb.active ul {
    flex-direction: column;
    gap: 0.9375rem;
  }
  
  .auth_mobile{
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  }
    /* 기존 hover 대신 클릭으로 열리도록 스타일 변경 필요 */
/*   nav.gnb.active ul li:hover > ul.submenu {
    display: none;
  } 
  
  nav.gnb.active ul li.open ul.submenu{
  	display: block !important;
  }
   */
  nav.gnb.active ul li {
    padding-bottom: 0.625rem;
  }

  /* 서브메뉴 위치 조정 (모바일에서는 아예 서브메뉴를 아래로 표시) */
  nav.gnb .submenu {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    /* padding-left: 20px; */
  }

  /* 1 {
    display: block;
    width: 100%;
  } */

  nav.gnb .submenu::before {
    display: none;
  }

  nav.gnb .submenu li a::after {
    display: none !important;
    content: none;
  }


}

/*mobile*/
@media screen and (max-width: 500px) {
  #header {
    height: 60px;
  }

  h1.logo img {
    width: 80%;
  }

  nav.gnb.active {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .tablet_menu {
    display: none;
  }

  .mobile_menu {
    display: block;
  }

  .mobile_menu .menu {
    display: block;
    width: 25px;
    height: 20px;
    cursor: pointer;
  }

  .mobile_menu .menu img {
    width: 100%;
    height: 100%;
  }

	.auth_mobile {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0.9375rem;
  }

  nav.gnb .lang_mobile button {
    padding-left: 0.3125rem;
    padding-right: 0.625rem;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }

  nav.gnb .auth_mobile li a,
  nav.gnb .auth_mobile li button {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
  }

  nav.gnb .lang_mobile button {
    font-size: 1rem;
    color: #000;
    cursor: pointer;
  }

  nav.gnb .lang_mobile {
    margin-left: 0;
  }
}

/*** user_board ***/
.list_count_badge {
  color: #e63946;
  font-size: 0.9rem;
  font-weight: 800;
  word-break: keep-all;
}

.count_badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #e63946;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  word-break: keep-all;
}

.user_btn.pc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user_btn.pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user_board {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  right: -300%;
  background-color: #fff;
  padding: 0.9375rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(16, 53, 113, 0.16);
  z-index: 55000;
  width: 200px;
}

.lang_board{
	display: none;
	position: absolute;
	top: calc(100% + 20px);
	  right: -300%;
	  background-color: #fff;
	  padding: 0.9375rem;
	  border-radius: 10px;
	  box-shadow: 0 0 15px rgba(16, 53, 113, 0.16);
	  z-index: 55000;
	  width: 100px;
}

.user_board::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 30%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
}

.lang_board::after{
	  content: "";
  position: absolute;
  top: -10px;
  left: 30%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
}

@media screen and (max-width: 1440px) {
  .user_board::after {
    left: 67%;
  }
  
    .lang_board::after{
  left: 50%;
  }
}

.user_board.active {
  display: block;
}

.lang_board.active{
	display: block;
}

.lang_board ul{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.lang_board ul li{
	display: block;
	width: 100%;
}

.lang_board ul li button{
	font-size: 1rem;
	font-weight: 600;
	width: 100%;
}

.lang_board ul li button:hover{
	color: var(--main-color);
}

.lang_board ul li button.active{
	color: var(--main-color);
}

.user_board .top {
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 5px;
  margin-bottom: 0.9375rem;
}

.user_board .top .tag {
  font-weight: 600;
}

.user_board .top .text_wrap span {
  font-size: 1.1rem;
}

.user_board .top .text_wrap span > span {
  font-weight: 700;
  word-break: break-all;
  width: 100%;
  display: inline-block;
}

.user_board ul.menu {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.user_board ul.menu > li{
	width: 100%;
}

.user_board ul.menu > li a,
.user_board ul.menu > li button{
	display: inline-block;
	width: 100%;
}

.user_board ul.menu > li button{
	text-align: left;
}

.tablet_menu > .flex_wrap {
  position: relative;
}

@media screen and (max-width: 1440px) {
  .user_board {
    right: 51%; /* 25.10.14 */
  }
  
  .lang_board{
  right: 24%;
  }
}

/*subpage menu*/
section.sub_title .lnb > div {
  position: relative;
}

ul.sub_submenu {
  display: none;
  position: absolute;
  width: 100%;
  min-width: 120px;
  top: 100%;
  background-color: #fff;
  padding: 0.9375rem;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(16, 53, 113, 0.16);
  gap: 0.9375rem;
  z-index: 1000;
}

section.sub_title .lnb > div.active ul.sub_submenu {
  display: flex;
  flex-direction: column;
}

ul.sub_submenu li {
  position: relative;
}

ul.sub_submenu li::before {
  content: "";
  background-color: var(--main-color);
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.2s ease;
}

ul.sub_submenu li:hover::before {
  width: 100%;
}

ul.sub_submenu li a {
  color: #000 !important;
  display: inline-block;
  width: 100%;
}

/*** 채널 변경/추가 modal ***/
.modal .modal_title_wrap > .flex_wrap {
  align-items: center;
  gap: 0.9375rem;
}

.modal .modal_title_wrap > .flex_wrap .btn_wrap {
  margin-top: 0;
}

.modal .platform_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.modal .platform_wrap button {
  border: 1px solid #ddd;
  padding: 1.25rem;
  border-radius: 10px;
}

.modal .platform_wrap button.active {
  border: 1px solid var(--main-color);
  background-color: rgba(63, 128, 234, 0.05);
}

.modal .platform_wrap button:hover {
  border: 1px solid #000;
  box-shadow: 0 0 10px rgba(16, 53, 113, 0.16);
}

.modal .platform_wrap button .img_wrap {
  position: relative;
  height: 230px;
  margin-bottom: 2.5rem;
}

.modal .platform_wrap button .img_wrap img:first-of-type {
  width: 100%;
  height: 100%;
}

.modal .platform_wrap button .photo {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: -30px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
/*   border: 2px solid #fff; */
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.modal .platform_wrap button .photo::before{
	content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 2;
}

.modal .platform_wrap button .photo img {
  width: 100%;
  height: 100%;
}

.modal .platform_wrap button span.name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.modal .platform_wrap button span.name .tier_img {
  display: flex;
  align-items: center;
}

.modal .platform_wrap button span.memo {
  color: #777;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .modal .platform_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* .modal .platform_wrap .img_wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
} */

/************* footer ************/
footer {
  background-color: #051f39;
  position: relative;
  padding-bottom: 0.625rem;
}

footer::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: clamp(40px, 5vw, 60px);
  left: 0;
}

/*footer_top*/
footer .foot_top {
  height: clamp(40px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .foot_top ul {
  display: flex;
  gap: clamp(1.25rem, 2vw, 1.875rem);
}
footer .foot_top ul li a {
  color: #fff;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 600;
  padding: 10px 0;
}

footer .foot_top .family_site {
  cursor: pointer;
  padding: 10px 0;
}

footer .foot_top .family_site span {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
}

/*foot_content*/
footer .foot_content {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

footer .foot_right {
  width: 70%;
}

footer .foot_content .foot_left ul.flex_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.foot_content .foot_left ul.flex_wrap li {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.75rem, 2vw, 1rem);
}

.foot_content .foot_left ul.flex_wrap li:not(:last-of-type) {
  margin-right: 1.875rem;
}

.foot_content .foot_left .foot_logo {
  margin-top: 3.125rem;
}

.foot_content .foot_left .foot_logo span {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 800;
}

/*footer app*/
footer .foot_content .foot_right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: clamp(0.3125rem, 2vw, 0.625rem);
}
footer .foot_content .btn.app_btn {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.3125rem 0.9375rem;
  display: flex;
  width: fit-content;
  gap: 0.3125rem;
}

footer .foot_content .btn.app_btn span {
  color: #fff;
  font-size: clamp(0.625rem, 2vw, 1rem);
}

@media screen and (max-width: 767px) {
  .foot_content {
    position: relative;
    padding-bottom: 1.875rem;
  }

  .foot_right {
    position: absolute;
    bottom: 0.625rem;
    right: 0;
  }

  .foot_logo {
    margin-top: 2.5rem;
  }
}

/*common*/
.flex_wrap {
  display: flex;
}

.flex_wrap.flex_start {
  display: flex;
  justify-content: flex-start !important;
}

.tier_img{
	min-width: 30px;
	min-height: 30px;
}

.section_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.section_title h2 {
  font-size: clamp(1.375rem, 5vw, 1.875rem);
  font-weight: 800;
}

.section_title span {
  font-size: 0.875rem;
  font-weight: 600;
}

/* <span class="require">*</span> */
span.require {
  color: #e63946 !important;
}
/*color*/
.font_gray_d {
  color: #ddd;
}

/*tag*/

.tag_wrap {
  /* overflow-x: auto; */
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 0.625rem;
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
}

.tag {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 5px;
  width: fit-content;
  white-space: nowrap;
}

.tag-ellipsis {
  user-select: none;
  cursor: default;
  color: #000; /* 눈에 띄는 색상 */
  white-space: nowrap;
  padding-left: 4px;
  font-weight: bold;
  flex-shrink: 0;
}

.gray_tag {
  background-color: #f5f5f5;
  color: #444;
}

.black_tag {
  background: #000;
  color: #fff;
}

.white_tag {
  background: #fff;
  color: #000;
}

.mint_line_tag {
  background-color: #e9f9f6;
  color: var(--main-color2);
  border: 1px solid var(--main-color2);
}

.blue_line_tag {
  background-color: #ebf2fd;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.mint_bg_tag {
  background-color: #e9f9f6;
  color: var(--main-color2);
}

.blue_bg_tag {
  background-color: #ebf2fd;
  color: var(--main-color);
}

.red_bg_tag {
  background-color: #fdebec;
  color: #e63946;
}

.yellow_bg_tag {
  background-color: #fbf6e4;
  color: #ffbf00;
}

/*button*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

/* 가장 작은 초소형 (ss)
  - 아이콘 옆 작은 텍스트, 태그, 배지용
  - 아주 작은 화면이나 사이드바, 미니 버튼 등에 적합
*/
.btn_ss {
  font-size: clamp(0.625rem, 0.8vw, 0.75rem);
  padding: clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.5rem, 1vw, 0.75rem);
}

/* 소형 (s)
  - 서브 액션 버튼, 간단한 필터나 정렬 버튼
  - 모바일에서 많이 쓰임
*/
.btn_s {
  font-weight: 500;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  padding: clamp(0.375rem, 0.8vw, 0.5rem) clamp(0.75rem, 1.5vw, 1rem);
}

/* 중형 (m)
  - 기본 버튼, 폼 제출, 주요 인터랙션용
  - 데스크탑 & 모바일 모두 적당한 크기
*/
.btn_m {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(1rem, 2vw, 1.25rem);
}

/* 대형 (l)
  - 강조 버튼, 주요 콜투액션(CTA)
  - 눈에 띄는 버튼이나 배너 등에 적합
*/
.btn_l {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  padding: clamp(0.5rem, 1.2vw, 0.625rem) clamp(1.25rem, 3vw, 1.75rem);
}

/* 특대형 (xl)
  - 히어로 섹션, 랜딩 페이지의 핵심 CTA
  - 큰 터치 영역 필요할 때, 프레젠테이션 스타일 버튼
*/
.btn_xl {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  padding: clamp(0.875rem, 1.8vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
}

.btn.blue_btn {
  color: #fff;
  background-color: var(--main-color);
}

.btn.lightblue_btn {
  color: var(--main-color);
  background-color: #ebf2fd;
}

.btn.gray_btn {
  color: #000;
  background-color: #eee;
}

.btn.black_btn {
  color: #fff;
  background-color: #000;
}

.btn.red_btn {
  color: #fff;
  background-color: #e63946;
}

.btn.mint_btn {
  color: #fff;
  background-color: var(--main-color2);
}

.btn.mint_bg_btn {
  background-color: #e9f9f6;
  color: var(--main-color2);
}

.btn.blue_bg_btn {
  background-color: #ebf2fd;
  color: var(--main-color);
}

.btn.red_bg_btn {
  background-color: #fdebec;
  color: #e63946;
}

/*swiper*/

.swiper-slide {
  width: auto;
}

/*input*/
input[type="date"] {
  cursor: pointer;
}

/*link_input*/
.link_input {
  width: 100%;
  border-radius: 5px !important;
  border: 1px solid #ddd;
  padding: 0 0.625rem;
  line-height: 160%;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.link_input:focus {
  border: 1px solid #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  outline: none;
}
/*pagination*/
/*
<div class="flex_wrap pagination">
    <div class="pagination">
        <button class="first"><span class="material-icons">keyboard_double_arrow_left</span></button>
        <button class="prev"><span class="material-icons">chevron_left</span></button>
        <button class="page active">1</button>
        <button class="page">2</button>
        <button class="page">3</button>
        <button class="next"><span class="material-icons">chevron_right</span></button>
        <button class="last"><span class="material-icons">keyboard_double_arrow_right</span></button>
    </div>
    <div class="btn_wrap">
        <button>캠페인 등록하기</button>
    </div>
</div>
*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.pagination .page {
  font-size: 1.25rem;
  font-weight: 700;
  width: 35px;
  height: 35px;
}

.pagination .page.active {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
}

.pagination > button:not(.page) span {
  font-size: 1.625rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .flex_wrap.pagination {
    flex-direction: column;
  }
  .flex_wrap.pagination .btn_wrap > button {
    position: static;
    transform: none;
    margin-top: 0.625rem;
  }
}

/* 화살표 아이콘 */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.125rem;
  color: #000; /* 화살표 색상 */
  font-weight: bold;
}
.swiper-button-prev {
  left: -50px !important;
}

.swiper-button-next {
  right: -50px !important;
}

/*keyword*/
.keyword_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}

.keyword {
  border-radius: 999px;
  padding: 0.625rem 1.5625rem;
  cursor: pointer;
}

.keyword.no_cursor {
  cursor: default;
}

.keyword_black {
  color: #fff;
  background-color: #000;
}

.keyword_black_fixed {
  color: #fff;
  background-color: #000;
}

.keyword_white {
  color: #000;
  background-color: #fff;
  outline: 1px solid #ddd;
}

.keyword_white_fixed {
  color: #000;
  background-color: #fff;
  outline: 1px solid #ddd;
}

.keyword_black::before {
  content: url(../../image/icon/check_white_ico.svg);
  margin-right: 0.625rem;
}

.keyword_black_fixed::before {
  content: url(../../image/icon/check_white_ico.svg);
  margin-right: 0.625rem;
}

.keyword_white::before {
  content: url(../../image/icon/check_black_ico.svg);
  margin-right: 0.625rem;
}

.keyword_white_fixed::before {
  content: url(../../image/icon/check_black_ico.svg);
  margin-right: 0.625rem;
}

/*keyword_mobile*/
@media screen and (min-width: 769px) {
  .keyword_wrap_mo.list {
    display: none;
  }

  .keyword_wrap.list {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .keyword_wrap.list {
    display: none;
  }

  .keyword_wrap_mo.list {
    display: block;
  }

  .keyword_wrap_mo.list .dropdown_wrap {
    width: 100% !important; /*키워드 드롭다운 width*/
  }
}

/*table*/
.gb_table {
  border: 1px solid #ddd;
  border-collapse: collapse;
}

.gb_table th,
.gb_table td {
  border: 1px solid #ddd;
  padding: 0.625rem;
}

.gb_table th {
  background-color: #f5f5f5;
}

.gb_table td.up {
  color: #e63946;
}

.gb_table td.down {
  color: var(--main-color);
}

@media screen and (max-width: 500px) {
  .gb_table th {
    font-size: 0.8125rem;
  }
  .gb_table td {
    font-size: 0.75rem;
  }
}

/*link_table*/
table.link_table td {
  height: 45px !important;
}

/*input*/
.edit_wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.input_wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.input_wrap input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0 0.625rem;
  line-height: 160%;
}

.input_wrap input:focus {
  border: 1px solid #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* 자연스러운 확산 */
  outline: none; /* 기본 브라우저 아웃라인 제거 */
}

.input_wrap textarea:focus {
  border: 1px solid #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* 자연스러운 확산 */
  outline: none; /* 기본 브라우저 아웃라인 제거 */
}

/*empty*/
.emtpy_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.empty {
  display: flex;
  justify-content: center;
  align-items: center;
/*   min-height: 800px; */
  height: auto;
  color: #888;
  font-size: 18px;
  text-align: center;
}

/* section.filter_section .content_wrap{
	min-height: 800px;
} */

section.filter_section .section_right{
	flex: 1;
}

@media screen and (max-width: 768px) {
  section.filter_section .empty {
    min-height: 400px;
  }
}
/* span.empty {
  display: block;
  color: #777;
  text-align: center;
} */

/*dropdown*/
/*
<div class="dropdown_wrap">
  <div class="dropdown">
    <span>@@@</span>
    <i class="material-icons">arrow_drop_down</i>
  </div>
  <ul class="dropdown_list"></ul>
</div>
width값은 직접 css로 조정
*/
.dropdown {
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0.625rem 1.25rem;
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 50001;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 5px;
}

.dropdown_list.no_absolute {
  position: static;
  border: 1px solid #ddd;
}

.dropdown_wrap.active .dropdown_list {
  display: block;
}

.dropdown_wrap {
  position: relative; /* 드롭다운 위치 기준 */
}

.dropdown_list li {
  padding: 0.625rem;
  cursor: pointer;
}

.dropdown_list li:hover {
  color: var(--main-color);
}

/* lang dropdown */
.dropdown_wrap.lang{
	width: 100px;
}

.dropdown_wrap.lang .dropdown_list{
	border: 1px solid #eee;
}

.dropdown_wrap.lang .dropdown_list li{
	display: block;
}

/* .dropdown_wrap.lang .dropdown_list li:not(last-of-type){
	border-bottom: 1px solid #eee;
} */

.dropdown_wrap.lang_mobile .dropdown_list{
	border: 1px solid #eee;
}

/* .dropdown_wrap.lang_mobile{
	max-width: 320px;
} */

/*main filter_dropdown*/
.main_dropdown.dropdown_wrap {
  position: static;
}

.dropdown.dropdown_filter {
  cursor: pointer;
  border-radius: 0;
  border: none;
  padding: 0;
  width: fit-content;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
}

.main_dropdown .dropdown_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 20%;
  background-color: white;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  max-height: 120px;
  overflow-y: scroll;
  border-radius: 5px;
  z-index: 500;
}

@media screen and (max-width: 500px) {
  .main_dropdown .dropdown_list {
    width: 30%;
  }
}

/*scroll*/
/* Chrome,Edge,Safari 등 WebKit 기반 브라우저*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

/* 스크롤바 트랙도 둥글게 하고 싶다면 (선택사항) */
::-webkit-scrollbar-track {
  border-radius: 10px;
}

/*checkbox*/
/*
<div class="checkbox_wrap">
  <label class="check_wrap">
    <input type="radio" name="@@@" value="" hidden>
    <img src="../image/icon/check_off_ico.svg" alt="check">
    <span>@@</span>
  </label>
  <label class="check_wrap">
    <input type="radio" name="@@@" value="" hidden>
    <img src="../image/icon/check_off_ico.svg" alt="check">
    <span>@@</span>
  </label>
</div>
*/

.check_wrap input {
  display: none;
}

.check_wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem; /*gap은 알아서 수치조정*/
}

/*tab*/
/*
<div class="check_channel tab_wrap tab_menu">
  <h4 class="font_sub_title2">연동채널 리스트</h4>
  <ul>
      <li data-platform="youtube">유튜브</li>
      <li data-platform="blog">블로그</li>
      <li data-platform="instagram">인스타그램</li>
      <li data-platform="tiktok">틱톡</li>
      <li data-platform="twitch">트위치</li>
      <li data-platform="threads">스레드</li>
  </ul>
  <div class="tab_content">
      <div class="tab" data-platform="youtube">유튜브~~</div>
      <div class="tab" data-platform="blog">블로그~~</div>
  </div>
</div>
*/

.tab_content .tab {
  display: none;
}

.tab_content .tab.active {
  display: block;
}

/*
<div class="content"> <-필수
  <div class="open_modal_btn" data-@@@="@@@"></div>
    <div class="modal_wrap" data-@@@="@@@">
      <div class="modal">
        <div class="flex_wrap">
          <h3 class="font_sub_title">@@@</h3>
          <i class="material-icons close">close</i>
        </div>
        <div class="content_wrap"></div>
      </div>
  </div>
</div>
*/

/*modal*/
.modal_wrap .modal {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  width: 50%;
  height: 80%;
  overflow-y: auto;
}

.modal_wrap .modal > .flex_wrap:first-of-type {
  margin-bottom: 1.25rem;
}

.modal_wrap .modal i:first-of-type {
  font-size: 1.875rem;
}

.modal_wrap .modal .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding: 1.875rem;
  border: 1px solid #dadfe5;
  border-radius: 10px;
}

.modal_wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 1500;
}

.modal_wrap.active {
  display: flex;
}

.modal .close {
  cursor: pointer !important;
}

/* body.modal-open {
  overflow-y: hidden;
} */

.modal_wrap .modal .btn_wrap {
  justify-content: space-between;
  margin-top: 0.625rem;
}

.modal_wrap .modal > .flex_wrap:first-of-type {
  justify-content: space-between;
}

@media screen and (max-width: 1440px) {
  .modal_wrap .modal {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .modal_wrap .modal {
    padding: 1.25rem;
  }

  .modal_wrap .modal .content_wrap {
    padding: 1.25rem;
  }
}

/*modal_s*/
.modal_wrap_s {
  background: none;
}

.modal_wrap_s .modal {
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  width: 768px;
  height: 40%;
  overflow-y: auto;
  box-shadow: 0 0 15px rgba(16, 53, 113, 0.16);
}

.modal_wrap_s .modal .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}

@media screen and (max-width: 1024px) {
  .modal_wrap_s .modal {
    width: 80%;
  }
}

/* modal_mini */
.modal_wrap_mini {
  background: none;
}

.modal_wrap_mini .modal {
  height: auto;
  width: auto;
  background-color: #f8fbff;
  border: 1px solid var(--main-color);
  box-shadow: 0 0 10px rgba(16, 53, 113, 0.16);
  padding: 1.875rem;
}

.modal_wrap_mini .modal > .flex_wrap {
  justify-content: flex-start !important;
  gap: 1.875rem;
}

.modal_wrap_mini .text_wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.modal_wrap_mini .text_wrap span {
  font-size: 1.125rem;
  font-weight: 600;
}

.modal_wrap_mini .btn_wrap {
  justify-content: center !important;
  gap: 0.9375rem;
}

@media screen and (max-width: 500px) {
  .modal_wrap_mini .modal > .flex_wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.9375rem;
  }

  .modal_wrap_mini .text_wrap {
    justify-content: center;
    align-items: center;
  }

  .modal_wrap_mini .text_wrap span {
    text-align: center;
  }

  .modal_wrap_mini .modal {
    width: 80%;
  }
}

/*more*/
.more {
  cursor: pointer;
}
.more ul.more_list li {
  cursor: pointer;
}

.more ul.more_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 20px rgba(16, 53, 113, 0.16);
  z-index: 5000;
}

.more:hover ul.more_list {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.more:hover ul.more_list li {
  padding: 5px 10px;
  word-break: keep-all;
}

.more:hover ul.more_list li:hover {
  text-decoration: underline;
  white-space: nowrap;
}

.more_list.hide {
  display: none !important;
}

/*icon*/
.heart {
  cursor: pointer;
}

.star {
  cursor: pointer;
}
/*main*/
main {
  position: relative;
  min-height: 800px;
}
.main_bg {
  position: absolute;
  top: 0;
  left: 0;
  /* width: calc(100vw - 8px);임시 */
  width: 100%;
  height: 500px; /*임시*/
  background: linear-gradient(to bottom, #ffffff, #d6eaff);
  border-radius: 0 0 0 250px;
  z-index: 10;
}

.main_bg_front {
  position: absolute;
  top: 500px;
  left: 0;
  /* width: calc(100vw - 8px); */
  width: 100%;
  height: 500px;
  background-color: #fff;
  border-radius: 0 250px 0 0;
  /* box-shadow: 0 -5px 30px rgba(10, 33, 78, 0.1); */
  z-index: 50;
}

.main_bg_front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* width: calc(100vw - 8px); */
  width: 100%;
  height: 500px;
  background-color: #d6eaff;
  z-index: 9;
}

.main_bg_front::after {
  content: url(../../image/main_front.svg);
  position: absolute;
  top: -314px;
  left: -45px;
  pointer-events: none;
}

.main_bg_front .content_bg {
  background-color: #fff;
  width: 100%;
  height: 400px;
  border-radius: 0 250px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}

main .flex_wrap {
  gap: 2.5rem;
}

main .flex_wrap > div {
  width: calc((100% - 2.5rem) / 2);
}

.main_text .text_wrap h2 {
  font-size: clamp(1.5rem, 5vw, 2.625rem);
  font-weight: 800;
}

.main_text .text_wrap h3 {
  font-size: clamp(1.125rem, 3.5vw, 1.75rem);
  font-weight: 400;
}

.main_search_wrap .btn_wrap {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 1.875rem;
}

/* .main_search_wrap .btn_wrap .btn {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 20px;
  height: auto;
  box-shadow: 0 3px 6px rgba(17, 55, 116, 0.14);
  background-color: #fff;
  border-radius: 10px !important;
} */

.main_search_wrap .btn_wrap .btn.active {
  font-weight: 800;
}

.main_search_wrap .btn_wrap .creator_btn {
  color: var(--main-color);
  outline: 1px solid var(--main-color);
}

.main_search_wrap .btn_wrap .creator_btn.active {
  color: #fff;
  background-color: var(--main-color);
  border: none;
}

.main_search_wrap .btn_wrap .campaign_btn {
  color: var(--main-color2);
  outline: 1px solid var(--main-color2);
}

.main_search_wrap .btn_wrap .campaign_btn.active {
  color: #fff;
  background-color: var(--main-color2);
  border: none;
}

.main_search {
  position: relative;
  width: 100%;
  margin-top: 0.9375rem;
}

.main_search .dropdown_filter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  display: flex;
  align-items: center;
  gap: 3.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.main_search input[type="text"] {
  width: 100%;
  padding: 0px 3.75rem 0px 9.375rem;
  font-size: 1rem;
  border: 2px solid #eee;
  border-radius: 999px;
  outline: none;
  box-shadow: 0 0 10px rgba(7, 46, 110, 0.09);
  height: 70px;
  font-size: 1.25rem;
}

.main_search .search_btn {
  position: absolute;
  top: 50%;
  right: 0;
  padding-right: 1.875rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_search .search_btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_search_wrap .main_tag_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.main_search_wrap .main_tag_wrap .main_tag {
  padding: 0.375rem 0.9375rem;
  background-color: #f8f8f8;
  box-shadow: 0 3px 6px rgba(17, 55, 116, 0.14);
  border-radius: 999px;
}

.main_search_wrap .main_tag_wrap .main_tag:hover {
  background-color: #000;
  color: #fff;
}

main .flex_wrap .section_right .main_banner img {
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(44, 62, 80, 0.13);
  width: 100%;
  height: 300px;
}

.main_bg_front .content_bg .wFix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  width: 100%;
  height: 1px;
  background: transparent;
  box-shadow: 0 -15px 30px rgba(10, 33, 78, 1);
}

.main_bg_front .content_bg .flex_wrap {
  left: 1.5rem;
  right: 1.5rem;
  position: absolute;
  top: -70px;
  display: flex;
  justify-content: space-between;
}

.quick_menu_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
}

.quick_menu_wrap:hover .box {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.quick_menu_wrap .box {
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  box-shadow: 0 3px 20px rgba(16, 53, 113, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.quick_menu_wrap .box img {
  height: 50px;
  width: 60px;
}

.quick_menu_wrap span {
  font-size: 1.25rem;
  font-weight: 700;
}

.marquee_wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 5rem;
}

.marquee {
  display: flex;
  gap: 8.125rem;
  width: max-content;
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
} /*marquee 키프레임*/

.marquee span {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: clamp(3.4375rem, 6.5vw, 5.5rem);
  font-weight: 900;
  color: var(--main-color);
  opacity: 0.06;
  display: inline-block;
}

section.bg_white {
  position: relative;
  z-index: 100;
}

section.bg_white .flex_wrap {
  gap: 3.125rem;
}

section.bg_white .flex_wrap > div:nth-of-type(1) {
  width: calc(55% - 1.5625rem);
}

section.bg_white .flex_wrap > div:nth-of-type(2) {
  width: calc(45% - 1.5625rem);
}

/*port*/
/* .content_wrap.port.swiper {
  overflow: visible;
} */

.content_wrap.port .swiper_port {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5625rem;
}

.content_wrap.port .box {
  width: calc((100% - 3.125rem) / 3);
}

.content_wrap.port .box .img_wrap{
	width: 100%;
/* 	height: 160px; */
	aspect-ratio: 3 / 2;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
  box-shadow: 0 5px 10px rgba(44, 62, 80, 0.13);
  transform: scale(1);
  transition: 0.3s ease;
  background-color: #fff;
}

.content_wrap.port .box img {
  
  width: 100%;
/*   height: 160px; */
/*   height: auto; */
height: 100%;
  object-fit: cover;
}

/* @media screen and (max-width: 768px) {
  .content_wrap.port .box img {
    height: 250px;
  }
} */

.content_wrap.port .box h3 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  height: 55px;
  margin-bottom: 10px;
  display: -webkit-box; /* 플렉스 박스와 비슷하게 동작 */
  -webkit-box-orient: vertical; /* 박스 방향을 세로로 설정 */
  -webkit-line-clamp: 2; /* 최대 2줄까지만 보여주기 */
  overflow: hidden; /* 넘치는 텍스트 숨기기 */
  text-overflow: ellipsis; /* 넘칠 때 말줄임표(...) 표시 */
  word-break: break-word; /* 단어가 길 때 줄바꿈 처리 */
}

.content_wrap.port .box span {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  display: block;
  white-space: nowrap; /* 한 줄로 강제 */
  overflow: hidden; /* 넘치는 텍스트 숨기기 */
  text-overflow: ellipsis; /* 넘칠 때 말줄임표(...) 표시 */
}

.content_wrap.port .box:hover img {
  transform: scale(1.05);
  transition: 0.3s ease;
}

section.bg_white .section_right .content_wrap.campaign{
 	max-height: 580px;
	overflow-y: auto;
}

/* .content_wrap.campaign ul.campaign_list {
  border: 1px solid #e1e4eb;
} */

.content_wrap.campaign ul.campaign_list li {
  padding: 20px;
  border-top: 1px solid #e1e4eb;
  border-left: 1px solid #e1e4eb;
  border-right: 1px solid #e1e4eb;
}

.content_wrap.campaign ul.campaign_list li:last-of-type{
	border-bottom: 1px solid #e1e4eb;
}

/* .content_wrap.campaign ul.campaign_list li:not(:last-of-type) {
  border-bottom: 1px solid #e1e4eb;
} */

.content_wrap.campaign ul.campaign_list li:hover .text_wrap h3 {
  text-decoration: underline;
}

.content_wrap.campaign .tag_wrap {
  margin-bottom: 10px;
}

.content_wrap.campaign .text_wrap h3 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
}

.content_wrap.campaign .text_wrap .caption_wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.3125rem;
}

.content_wrap.campaign .caption_wrap span {
  position: relative;
  padding-right: 0.625rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: #777;
}

.content_wrap.campaign .caption_wrap span:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #bbb;
}

/*brand*/
/* .content_wrap.brand {
  display: flex;
  gap: 30px;
} */

/* .content_wrap.brand.swiper {
  overflow: visible;
} */

.content_wrap.brand .brand_pagination {
  bottom: 0;
}

.content_wrap.brand a.box {
  width: calc((100% - 5.625rem) / 4);
  aspect-ratio: 1 / 1;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.content_wrap.brand a.box:hover {
  transform: scale(1.05);
}

.content_wrap.brand a.box img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.content_wrap.brand .swiper_brand {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
}

/*app*/
.content_wrap.app {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.content_wrap.app .flex_wrap {
  background-color: rgba(195, 208, 230, 0.18);
  border-radius: 10px;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.875rem;
}

.content_wrap.app h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: #0057a3;
}

.content_wrap.app .btn.download_btn {
  background-color: #0057a3;
  border-radius: 999px !important;
  color: #fff;
  padding: 0.3125rem 1.25rem !important;
  font-size: 1.375rem;
  font-weight: 800;
  height: auto;
}

.content_wrap.app .btn.download_btn span {
  display: inline-block;
  margin-left: 0.625rem;
}

.content_wrap.app .btn.download_btn:hover span {
  animation: swingRight 1s ease-in-out infinite;
}

@keyframes swingRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

/*corp*/

section.corp_section {
  position: relative;
  height: 600px;
}

section.corp_section::before {
  content: "";
  position: absolute;
  background-image: url(../../image/corp_bg.png);
  width: 100%;
  height: 600px;
  border-radius: 0 250px 0 250px;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

section.corp_section::after {
  content: url("../../image/corp_obj.png");
  position: absolute;
  top: 285px;
  left: 20%;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

section.corp_section > .wFix {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.corp_section .content_wrap.corp .top{
	display: flex;
	align-items: center;
	gap: 5px;
}

section.corp_section .content_wrap.corp .top .img_wrap{
	width: 80px;
}

@media screen and (max-width: 1440px){
	section.corp_section .content_wrap.corp .top{
		justify-content: center;
	}
}

@media screen and (max-width: 767px){
	section.corp_section .content_wrap.corp .top{
		justify-content: flex-start;
	}
}

.content_wrap.corp h2 {
  font-size: 2.625rem;
  font-weight: 800;
  width: 75%;
}

.content_wrap.corp h2 .accent {
  color: #0057a3;
}

.content_wrap.corp .btn_wrap {
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.25rem;
  width: fit-content;
  margin-top: 1.25rem;
}

.content_wrap.corp .btn_wrap a.corp_btn {
  padding: 0.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 3px 20px rgba(16, 53, 113, 0.16);
  border-radius: 15px !important;
  min-width: 235px;
  min-height: 50px;
  justify-content: space-between !important;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.content_wrap.corp .btn_wrap a.corp_btn:hover {
  transform: scale(1.05);
}

.content_wrap.corp .btn_wrap .flex_wrap {
  justify-content: space-between;
  align-items: center;
}

.content_wrap.corp .btn_wrap .flex_wrap .img_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 40px;
}

.content_wrap.corp .btn_wrap .flex_wrap img {
  width: 26px;
}

.content_wrap.corp .btn_wrap .flex_wrap span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
}

section.corp_section > .flex_wrap {
  gap: 2.5rem;
}

section.corp_section > .content_wrap.corp > .flex_wrap {
  justify-content: space-between;
}

section.corp_section .flex_wrap > div {
  width: calc((100% - 2.5rem) / 2);
}

section.corp_section .section_right {
  display: flex;
  gap: 1.875rem;
}

section.corp_section .section_left {
  margin-top: 3.125rem;
}

section.corp_section .section_right .box_wrap {
  width: calc((100% - 3.75rem) / 3);
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

section.corp_section .section_right .box {
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 3px 20px rgba(16, 53, 113, 0.16);
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

section.corp_section .section_right .box:hover{
	transform: scale(1.05);
}

section.corp_section .section_right .box img,
section.corp_section .section_right_mo .box img{
	display: block;
	width: 85%;
	max-height: 100%;
	border-radius: 5px;
	object-fit: contain;
}

section.corp_section .section_right .box_wrap:nth-of-type(1) {
  margin-top: 4.375rem;
}

section.corp_section .section_right .box_wrap:nth-of-type(3) {
  margin-top: 4.375rem;
}

section.review_section {
  /* height: 500px; */
  background: linear-gradient(to top, #ecf6ff 0%, #f1f8fe 50%, #ffffff 100%);
}

section.review_section .section_title {
  margin-bottom: 1.25rem;
  margin-top: 3.125rem;
}

.content_wrap.review {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0.625rem 0;
}

.content_wrap.review .review_wrap {
  display: flex;
  gap: 1.25rem;
  animation: horizonLoop 25s linear infinite;
  padding-bottom: 1.875rem;
}

@keyframes horizonLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.content_wrap.review .review_wrap.paused {
  animation: horizonLoop 25s linear infinite paused;
}

.content_wrap.review .flex_wrap {
  display: flex;
  align-items: center;
}

section.review_section .text_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content_wrap.review .box {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(225, 228, 235, 0.6);
  box-shadow: 0 5px 10px rgba(44, 62, 80, 0.05);
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  width: 520px;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.content_wrap.review .box:hover {
  transform: scale(1.05);
}

.content_wrap.review .box .img_wrap {
  width: 180px;
  height: 180px;
}

.content_wrap.review .box .img_wrap img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.content_wrap.review .flex_wrap:nth-of-type(1) {
  gap: 0.625rem;
}

.content_wrap.review .flex_wrap:nth-of-type(1) span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #777;
}

.content_wrap.review .flex_wrap:nth-of-type(2) {
  gap: 0.3125rem;
}

.content_wrap.review .flex_wrap:nth-of-type(2) span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--main-color);
}

.content_wrap.review .review_content {
  width: 280px;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 최대 3줄 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* 줄바꿈 허용 */
  word-break: break-word; /* 단어도 줄바꿈 */
  line-height: 1.5em; /* 줄 간격 조정 (선택) */
  min-height: calc(1.5em * 3); /* 3줄 높이 (백업용) */
}

.content_wrap.review .text_wrap .caption_wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.3125rem;
}

.content_wrap.review .caption_wrap span {
  position: relative;
  padding-right: 0.625rem;
  font-size: 0.875rem;
  color: #777;
  display: flex;
  align-items: center;
}

.content_wrap.review .caption_wrap span i.material-icons-outlined {
  font-size: 1.125rem;
  color: #999;
  margin-right: 0.1875rem;
}

.content_wrap.review .caption_wrap span:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #bbb;
}

.content_wrap.btm_banner {
  background-image: url(../../image/btm_banner.png);
  background-size: 100% 100%;
  border-radius: 10px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.875rem;
  margin-bottom: 3.125rem;
}

.content_wrap.btm_banner .text_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  margin: 0 1rem;
}

.content_wrap.btm_banner .text_wrap h3 {
  font-size: clamp(1.125rem, 2vw, 1.875rem);
  font-weight: 300;
  text-align: center;
}

.content_wrap.btm_banner .text_wrap h2 {
  font-size: clamp(1.75rem, 4vw, 2.8125rem);
  font-weight: 800;
}

.content_wrap.btm_banner .btn_wrap {
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.content_wrap.btm_banner .btn_wrap .btn {
  padding: 0.3125rem 1.25rem !important;
  border-radius: 999px !important;
  /* font-size: 18px; */
  font-weight: 700;
  height: auto;
}

.content_wrap.btm_banner .btn_wrap .btn.find_creator_btn {
  background-color: var(--main-color);
  color: #fff;
}

.content_wrap.btm_banner .btn_wrap .btn.find_campaign_btn {
  background-color: #fff;
  color: #000;
}

.content_wrap.btm_banner .btn_wrap .btn span {
  margin-left: 0.9375rem;
}

section.brand_section .section_title {
  margin-top: 3.125rem;
}

@media screen and (min-width: 1441px) {
  main {
    margin-top: 3.125rem;
  }
  section.corp_section .content_wrap.corp .flex_wrap .section_right_mo {
    display: none;
  }
}

/*laptop + tablet*/
@media screen and (max-width: 1440px) {
  main {
    min-height: 0;
  }

  main .flex_wrap .section_right .main_banner img {
    width: 100%;
    height: 320px;
  }

  .main_bg_front .content_bg .flex_wrap {
    display: none;
  }

  .main_search input[type="text"] {
    height: 55px;
    font-size: 18px;
    padding: 0 3.75rem 0 6.875rem;
  }

  .main_search .dropdown_filter {
    font-size: 1.125rem;
    gap: 1.25rem;
  }

  .main_search .search_btn {
    padding-right: 1.25rem;
  }

  main .flex_wrap.main_text {
    flex-direction: column-reverse;
  }

  main .flex_wrap > div {
    width: 100%;
  }

  .main_bg_front::after {
    display: none;
  }

  .main_bg,
  .main_bg_front,
  .main_bg_front::before,
  .main_bg_front .content_bg,
  .main_bg_front .content_bg .wFix::before {
    position: static;
  }

  .main_bg {
    border-radius: 0;
    height: auto;
  }

  .main_bg_front {
    height: auto;
  }

  .main_bg_front .content_bg {
    height: auto;
    background-color: #d6eaff;
    border-radius: 0;
    margin-bottom: 3.125rem;
  }

  .main_bg_front .content_bg .flex_wrap {
    display: none;
  }
  .marquee_wrap {
    margin-top: 0;
  }

  section.bg_white .flex_wrap {
    flex-direction: column;
  }

  section.bg_white .flex_wrap > div:nth-of-type(1),
  section.bg_white .flex_wrap > div:nth-of-type(2) {
    width: 100%;
  }

  /*campaign*/
  .content_wrap.campaign ul.campaign_list li {
    padding: 0.9375rem;
  }

  /*brand*/
  .content_wrap.brand {
    flex-wrap: wrap;
  }

  section.brand_section .section_title {
    margin-top: 3.125rem;
  }
  .content_wrap.brand a.box {
    width: calc((100% - 1.875rem) / 2);
    aspect-ratio: 1 / 0.5;
  }

  .content_wrap.brand a.box img {
    width: 100%;
    height: 100%;
  }

  .content_wrap.app .flex_wrap {
    height: 70px;
  }

  .content_wrap.app h2 {
    font-size: 1.25rem;
  }
  .content_wrap.app .btn.download_btn {
    font-size: 1rem;
  }

  /*corp*/
  section.corp_section {
    height: auto;
  }

  section.corp_section .content_wrap.corp > .flex_wrap {
    flex-direction: column;
  }

  section.corp_section .content_wrap.corp > .flex_wrap > div {
    width: 100%;
  }

  section.corp_section::before {
    height: 100%;
    border-radius: 0;
    background-size: cover;
  }

  .content_wrap.corp h2 {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    font-size: 2.375rem;
  }

  .content_wrap.corp .btn_wrap {
    flex-direction: row;
    margin: 0 auto;
    margin-top: 1.25rem;
  }

  section.corp_section::after {
    display: none;
  }

  section.corp_section .content_wrap.corp .flex_wrap .section_right {
    display: none;
  }

  section.corp_section .section_right_mo .box_wrap {
    display: flex;
    gap: 1.875rem;
    justify-content: center;
    margin-top: 1.875rem;
  }

  section.corp_section .section_right_mo .box_wrap:last-of-type {
    padding-bottom: 1.875rem;
  }

  section.corp_section .section_right_mo .box {
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(16, 53, 113, 0.16);
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
  }
  
  section.corp_section .section_right_mo .box:hover{
  transform: scale(1.05);
  }

  .content_wrap.corp .btn_wrap a.corp_btn {
    justify-content: center !important;
  }

  /*review*/
  section.review_section .section_title {
    margin-top: 3.125rem;
  }

  /*btm banner*/
  .content_wrap.btm_banner {
    height: 250px;
  }
  /* .content_wrap.btm_banner .text_wrap h3 {
    font-size: 25px;
  }

  .content_wrap.btm_banner .text_wrap h2 {
    font-size: 40px;
  } */
}

@media screen and (min-width: 768px) {
  .port_pagination {
    display: none;
  }

  .brand_pagination {
    display: none;
  }
}

/*모바일*/
@media screen and (max-width: 767px) {
  /*common*/
  /* .content_wrap.swiper {
    overflow: visible !important;
  } */
  /*main*/
  main .flex_wrap .section_right .main_banner img {
    height: 200px;
  }

  main .flex_wrap.main_text .section_left .text_wrap {
    display: none;
  }

  main .flex_wrap {
    gap: 1.25rem;
  }

  .main_search_wrap .btn_wrap {
    margin-top: 0;
  }

  .main_search_wrap .btn_wrap .btn {
    width: calc((100% - 0.625rem) / 2);
  }

  .main_search input[type="text"] {
    height: 50px;
    font-size: 1rem;
    padding: 0 3.125rem 0 6.25rem;
  }

  .main_search .dropdown_filter {
    font-size: 1rem;
    gap: 1.25rem;
  }

  .main_search .search_btn {
    padding-right: 1.25rem;
  }

  .main_search_wrap .main_tag_wrap {
    display: none;
  }

  /*port*/

  .content_wrap.port .swiper_port {
    flex-wrap: nowrap;
  }

  .swiper-container {
    overflow: hidden;
  }

  .content_wrap.port .box {
    padding-top: 0.625rem;
  }

  .content_wrap.port .swiper_port {
    gap: 0;
  }

  .port_pagination {
    position: static !important;
  }

  /*brand*/
  .content_wrap.brand .swiper_brand {
    flex-wrap: nowrap;
    gap: 0;
    padding-bottom: 1.5625rem;
  }

  .content_wrap.brand a.box {
    width: 100%;
    height: 250px;
    aspect-ratio: auto;
    /* padding: 10px; */
  }

  .content_wrap.brand a.box img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .content_wrap.brand .swiper_port {
    flex-wrap: nowrap;
  }

  /*app*/
  .content_wrap.app .flex_wrap {
    flex-direction: column;
    height: auto;
    padding: 0.9375rem 1.875rem;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .content_wrap.app .btn_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  /*corp*/
  .content_wrap.corp .section_right_mo {
    display: none;
  }

  .content_wrap.corp .btn_wrap a.corp_btn {
    min-width: 0;
    width: calc((100% - 1.25rem) / 2);
    padding: 0.3125rem;
  }

  .content_wrap.corp .btn_wrap {
  justify-content: center;
    width: auto;
  }

  .content_wrap.corp .btn_wrap .flex_wrap span {
    font-size: 0.75rem;
  }

  .content_wrap.corp .btn_wrap .flex_wrap .img_wrap {
    width: 30px;
  }

  .content_wrap.corp .btn_wrap .flex_wrap img {
    width: 20px;
  }

  .content_wrap.corp h2 {
    width: 100%;
    font-size: 1.375rem;
    text-align: left;
    margin: 0;
  }

  section.corp_section::before {
    width: calc(100% - 4em);
    left: 2em;
    border-radius: 10px;
  }

  section.corp_section .section_left {
    margin-top: 0;
    padding: 1.875rem;
  }

  /*review*/
  .content_wrap.review {
    width: calc(100% - 4em);
  }

  .content_wrap.review .review_wrap {
    animation: none;
    gap: 0;
  }

  /*bottom_banner*/
  .content_wrap.btm_banner .btn_wrap {
    flex-direction: column;
  }

  .content_wrap.btm_banner {
    height: auto;
    padding: 1.875rem 0;
  }
}

@media screen and (max-width: 600px) {
  .content_wrap.review .box {
    height: 215px;
  }
  .content_wrap.review .box .img_wrap {
    display: none;
  }

  .content_wrap.review .box .text_wrap {
    width: 100%;
  }

  .content_wrap.review .review_content {
    width: 100%;
  }
}

@media screen and (max-width: 500px){
	  section.corp_section::before {
    width: calc(100% - 2em);
    left: 1em;
    border-radius: 10px;
  }
  
  .content_wrap.corp .btn_wrap a.corp_btn{
  	width: 100%;
  }
}

/*standby*/
.standby_container {
  background: linear-gradient(to bottom, #ffffff 20%, #d6eaff 95%);
  transition: all 2s ease-in-out;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.standby_container.corp {
  background: linear-gradient(to bottom, #ffffff 20%, #daf8f3 95%);
  transition: all 2s ease-in-out;
}

.standby_wrap {
  padding: 0 1.5rem;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  padding-top: 100px;
}

/* 흰색 오버레이 (::after) */
.standby_container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 10;
}

/* 오버레이 활성화 상태 */
.standby_container.overlay-active::after {
  opacity: 1;
}

section.standby {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding-bottom: 50px; */
  /* border-bottom: 1px dashed rgba(63, 128, 234, 0.2); */
}

/* .standby_container.corp section.standby {
  border-bottom: 1px dashed rgba(42, 198, 165, 0.2);
} */

section.standby .img_wrap {
  width: 300px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.standby .img_wrap img {
  width: 100%;
  height: 100%;
}

section.standby .text_wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

section.standby .text_wrap h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

section.standby .text_wrap h2 .accent {
  color: var(--main-color);
  font-weight: 800;
}

section.standby .text_wrap > div {
  text-align: center;
  font-size: 1.1rem;
}

section.standby .text_wrap > div .accent {
  font-weight: 700;
  font-size: 1.3rem;
}

section.standby .text_wrap > div .accent.date {
  text-decoration: underline;
}

section.standby .marquee_wrap {
  position: absolute;
  bottom: 0;
}

section.standby .btn_wrap {
  gap: 10px;
}

section.standby .btn_wrap .btn {
  padding: 15px 25px;
  font-size: 1.3rem;
}

/* section.standby .login_text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.2rem;
  font-weight: 600;
} */

.standby_wrap section.login {
  padding: 0 1.5rem;
  box-sizing: border-box;
  /* width: 600px; */
  margin: 0 auto;
  position: relative;
  padding-bottom: 30px !important;
}

.standby_wrap section.login .close {
  display: flex;
  justify-content: flex-end;
}

.standby_wrap .modal_wrap .modal {
  height: auto;
}

.standby_wrap .modal_wrap .modal h2 {
  margin-top: 0;
}

.standby_container .standby_wrap section.login .login_btn_wrap .login_btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  font-size: clamp(24px, 2vw, 18px);
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.6s ease-in-out;
}

.standby_container.corp .standby_wrap section.login .login_btn_wrap .login_btn {
  background-color: var(--main-color2);
  transition: background-color 0.6s ease-in-out;
}

.standby_container.corp .marquee span {
  color: var(--main-color2) !important;
}

section.standby  ul.flex_wrap.find_idpw{
	margin-top: 1.25rem;
    display: flex;
    gap: 1.25rem;
}

section.standby ul.flex_wrap.find_idpw li{
	position: relative;
    font-weight: 500;
    padding: 0.3125rem;
}

section.standby ul.flex_wrap.find_idpw li a{
	color: #777;
	font-size: 1.1rem;
	font-weight: 600;
}

section.standby ul.flex_wrap.find_idpw li:not(:last-of-type)::before{
	content: "";
    width: 2px;
    height: 15px;
    background-color: #bbb;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -0.625rem;
}

/*standby_done*/
.standby_wrap section.login .login_done {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.standby_wrap section.login .login_done .box {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(16, 53, 113, 0.16);
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  padding: 3rem;
}

.standby_wrap section.login .login_done .tag_wrap .tag {
  font-size: 1rem;
}

.standby_wrap section.login .login_done .text_wrap .text {
  font-size: 1.2rem;
}

.standby_wrap section.login .login_done .text_wrap .accent {
  font-weight: 700;
  font-size: 1.6rem;
}

.standby_wrap section.login .login_done .btn_wrap {
  margin-top: 25px;
}

.standby_wrap section.login .login_done .btn_wrap button {
  padding: 15px 25px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .standby_wrap section.login {
    max-width: 100%;
    padding: 0 2em;
    margin: 0 auto;
  }

  .standby_wrap section.login .login_done .btn_wrap {
    flex-direction: column;
  }

  .standby_wrap section.login .login_done .btn_wrap button {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  section.standby .btn_wrap {
    flex-direction: column;
  }

  section.standby .btn_wrap .btn {
    width: 100%;
  }

  .standby_wrap section.login {
    max-width: 100%;
    padding: 0 1em;
    margin: 0 auto;
  }
}

button.qq-upload-download{
	position: relative !important;
/* 	display: flex;
	justify-content: center;
	align-items: center; */
}

button.qq-upload-download > i{
/* 	background-color: #000; */
	width: 10px;
	height: 10px;
	display: block;
	background: url(../../image/icon/download_ico.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	margin: 0 auto;
}

button.qq-upload-delete{
	position: relative !important;
}

button.qq-upload-delete > i{
		width: 10px;
	height: 10px;
	display: block;
	background: url(../../image/icon/close_ico.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	margin: 0 auto;
}

.modal_wrap_mini .img_wrap{
	width: 50px !important;
	height: 50px !important;
}