* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
:root {
  --theme_color: #5353ef;
  --title_color: #222;
}
html {
  font-size: clamp(7.5px, 0.522vw, 10px);
}
.content {
	max-width: 140rem;
	margin: 0 auto;
	position: relative;
}
.largecontent {
	max-width: 100%;
	padding: 0 4rem;
}
html {
	scroll-behavior: smooth;
}
pre {
  text-wrap: wrap;
}
.flex {
	display: flex;
}
.wrap {
	flex-wrap: wrap;
}
.flex1 {
	flex:1;
}
.flex2 {
	flex:2;
}
.flex3 {
	flex:3;
}
.between {
	justify-content: space-between;
}
.center {
	text-align: center;
}
.boxshadow {
	box-shadow: 0 0 1.5rem rgba(0,0,0,0.1);
	background: white;
}
.vertical {
	display: flex;
	flex-direction:column;
	justify-content: center;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 143rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
.header_content {
  max-width: 181.5rem;
  margin: 0 auto;
  position: relative;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title_color);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title_color);
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title_color);
  font-family: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: translate(-50%, -50%) scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: translate(-50%, -50%) scaleY(1) rotate(135deg);
  }
  50% {
    transform: translate(-50%, -50%) scaleY(-1) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) scaleY(-1) rotate(-135deg);
  }
}
.loading {
  position: relative;
}
.loading::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.5);
}
.loading::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 6px solid var(--theme_color);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 2rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.btn {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  background-color: var(--theme_color);
  padding: .8rem 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  max-width: max-content;
  text-align: center;
  gap: 0;
}
.btn:hover {
  filter: brightness(1.2);
}
.btn.loading {
  gap: 1rem;
  opacity: 0.6;
  pointer-events: none;
  padding: .8rem 1.9rem;
}
.btn.loading::before {
  opacity: 1;
}
.btn.loading::after {
  display: none;
}
.btn.gray {
  color: #000;
  background-color: #f0f0f7;
}
.btn.gray:hover {
  color: #fff;
  background-color: #000;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.btn_red {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 500;
  border-radius: 1.3rem;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #f44336;
  padding: .8rem 1.8rem;
  display: inline-block;
  vertical-align: top;
}
.btn_red:hover {
  background-color: #e43d31;
}
.notice_box {
  position: fixed;
  left: 50%;
  bottom: 100vh;
  z-index: 9999;
  color: #fff;
  border-radius: 8px;
  padding: 1.5rem 2.5rem;
  background-color: #323232;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
  cursor: pointer;
  transform: translate(-50%, -1rem);
  transition: transform cubic-bezier(0.62, 0.1, 0.28, 1.27) .4s;
  max-width: 50vw;
}
.notice_box.active {
  transform: translate(-50%, calc(100% + 3rem));
}
.notice_box.success {
  background-color: #4caf50;
}
.notice_box.warning {
  background-color: #ff9800;
}
.notice_box.error {
  color: #fff;
  background-color: #f44336;
}
.tip_box {
  position: absolute;
  font-size: 1.4rem;
  display: none;
  padding: 8px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  pointer-events: none;
  z-index: 99;
  max-width: 40rem;
}
.modal_box {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all .2s;
}
.modal_box.active {
  opacity: 1;
  pointer-events: all;
}
.modal_box>.close {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal_box .modal_content {
  width: calc(100vw - 4rem);
  max-width: max-content;
  min-width: 40rem;
  max-height: 90vh;
  border-radius: 1rem;
  background-color: #fff;
  font-size: 1.6rem;
  padding: 2rem;
  display: grid;
  gap: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform cubic-bezier(.5,0,.5,1.5) .3s, opacity cubic-bezier(.5,0,.5,1.5) .3s;
  transform: scale(0.9);
  opacity: 0;
}
.modal_box.active .modal_content {
  transform: scale(1);
  opacity: 1;
}
.modal_box .modal_content::-webkit-scrollbar {
  width: 5px;
}
.modal_box .modal_content::-webkit-scrollbar-thumb {
  background: rgb(136, 136, 136);
  border-radius: 10px;
}
.modal_box .head .title {
  font-size: 2.2rem;
  font-weight: 600;
}
.modal_box .head .desc {
  font-size: 1.5rem;
  color: #666;
  margin-top: 1rem;
}
.modal_box .btc {
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
}
.modal_box .filed_form {
  display: grid;
  gap: 2rem;
}
.modal_box .filed_item .label {
  cursor: pointer;
  max-width: max-content;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #666;
  font-weight: 500;
}
.modal_box .filed_item input,
.modal_box .filed_item select,
.modal_box .filed_item textarea,
.modal_box .filed_item .input_file {
  display: block;
  width: 100%;
  transition: border .3s, outline .3s;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 1px solid transparent;
}
.modal_box .filed_item input:focus,
.modal_box .filed_item select:focus,
.modal_box .filed_item textarea:focus,
.modal_box .filed_item .input_file:hover {
  border-color: var(--theme_color);
  outline-color: var(--theme_color);
}
.modal_box .filed_item textarea {
  height: 12rem;
  resize: vertical;
}
.modal_box .filed_item textarea::-webkit-scrollbar {
  width: 5px;
}
.modal_box .filed_item textarea::-webkit-scrollbar-thumb {
  background: rgb(136, 136, 136);
  border-radius: 10px;
}
.modal_box .filed_item .input_file {
  cursor: pointer;
  text-align: center;
  font-weight: 500;
}
.file_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.file_list:empty {
  display: none;
}
.file_item {
  width: 10rem;
  height: 10rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  gap: .5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.file_item .remove_btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all .3s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  background-color: rgba(255, 255, 255, 0.8);
}
.file_item:hover .remove_btn {
  opacity: 1;
  font-size: 3rem;
}
.file_item img {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.ring {
  transform-origin: top center;
  animation: ring 0.8s ease-in-out infinite;
  background-color: #f44336;
}
.ring::after {
  filter: contrast(0) brightness(2);
}
@keyframes ring {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(8deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  45% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.layout_container {
  height: 100vh;
  min-height: 500px;
  display: flex;
}
.layout_container .br {
  width: 1px;
  background-color: #eee;
}
.layout_header {
  width: 8rem;
  display: flex;
  flex-direction: column;
}
.header_menus {
  flex: 1;
  padding: 15px 10px;
}
.header_actions {
  padding: 15px 10px;
}
.layout_header .header_item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 54/48;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0;
  border-radius: 1rem;
}
.layout_header .header_item.active {
  background-color: var(--theme_color);
  box-shadow: 0 0 12px rgba(83, 83, 239, 0.1);
}
.layout_header .header_item.active::after {
  filter: contrast(0) brightness(2);
}
.layout_header .header_item::after {
  content: '';
  display: block;
  transition: all 0.3s;
  background: var(--icon) no-repeat center / contain;
  width: 45%;
  aspect-ratio: 1;
}
.layout_header .header_item:first-child {
  margin-top: 0;
}
.layout_header .header_item:last-child {
  margin-bottom: 0;
}
.layout_body {
  flex: 1;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 2rem;
  background-color: #f0f0f7;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.layout_body_header {
  gap: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.layout_body_header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.layout_menu {
  border-left: 1px solid #eee;
}
.layout_menu ul {
  background-color: #fff;
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  overflow: auto;
}
.layout_menu ul li + li {
  margin-top: 1rem;
}
.layout_menu ul a {
  display: block;
  font-size: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  transition: all .3s;
}
.layout_menu ul .active a {
  color: #fff;
  background-color: #5353ef;
  box-shadow: 0 0 12px rgba(83, 83, 239, 0.1);
}
.controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.filter-item {
  display: flex;
  flex-direction: column;
}
.filter-item label {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  max-width: max-content;
}
.filter-item select,
.filter-item input {
  padding: 0.75rem 1rem;
  font-size: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.filter-item input {
  transition: all .3s;
  outline: 1px solid transparent;
}
.filter-item input:focus {
  outline-color: var(--theme_color);
}
.filter-item select {
  appearance: unset;
}
.search-bar {
  position: relative;
  flex-grow: 1;
  max-width: 400px;
}
.search-input {
  width: 100%;
  font-size: 1.4rem;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--title_color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
}
.flatpickr-input {
  width: 22rem;
}
div .select2-container .select2-selection--single {
  height: 38px;
  font-size: 1.4rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
div .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: var(--title_color);
}
div .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
