@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
  letter-spacing: -0.5px;
  color: #222227;
}

.flex {
  display: flex;
}
.flex_center {
  display: flex;
  justify-content: center !important;
  align-items: center;
}
.flex_start {
  display: flex;
  align-items: center;
  justify-content: start !important;
}

.flex_column {
  flex-direction: column;
}
.flex_row {
  flex-direction: row !important;
}

.flex_nowrap {
  flex-wrap: nowrap !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
ul,
li,
il {
  list-style: none;
}
img {
  vertical-align: top;
}

html,
body,
.wrap {
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 10px;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
}

button,
select,
input {
  border: none;
  outline: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button,
button:focus,
button:active {
  padding: 0;
}
button > span {
  position: relative;
  width: auto;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}

select:focus::-ms-value {
  background-color: transparent;
  color: #222;
}

select::-ms-expand {
  display: none;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.clear::after {
  clear: both;
  content: "";
  display: block;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*---------------------------------textarea-----------------------------------*/
textarea {
  width: 100%;
  min-height: 4.25rem;
  resize: none;
  border: 1px solid #dfdfdf;
  outline: none;
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
  vertical-align: middle;
  margin: 0.25rem 0;
  font-size: 1rem;
}

textarea::placeholder {
  font-size: 1.2rem;
  color: #d9d9d9;
}

/*--------------------input----------------------*/
input[type="text"],
input[type="password"],
input[type="number"] {
  padding-right: 0.625rem;
  cursor: pointer;
  padding-left: 0.5rem;
  height: 2rem;
  line-height: 1.3rem;
  background-color: white;
  color: #444444;
  border-radius: 2px;
  position: relative;
  border: 1px solid #caced3;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder {
  color: #d9d9d9;
  font-size: 0.75rem;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

label input[type="radio"],
label input[type="checkbox"] {
  margin-right: 0.375rem;
  cursor: pointer;
}

.border_none {
  border: none !important;
}

/* text overflow */
.overflow_v {
  overflow-x: hidden;
}
.overflow_h {
  overflow-y: hidden;
}
.ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.overflow_auto {
  overflow: auto !important;
}

/* ------------border-radius------------ */
.border_r0 {
  border-radius: 0;
}
.border_r8 {
  border-radius: 8px;
}
.border_r10 {
  border-radius: 1rem;
}
.border_r16 {
  border-radius: 1.6rem;
}
.border_r20 {
  border-radius: 2rem;
}
.border_r25 {
  border-radius: 2.5rem;
}
.border_r30 {
  border-radius: 3rem;
}

.pointer {
  cursor: pointer;
}
/*--------------------------------display--------------------------------*/
.display_block {
  display: block !important;
}
.display_inline {
  display: inline-block !important;
}
.display_none {
  display: none !important;
}

/*------------------------------vertical-align-------------------------------*/
.vertical_t {
  vertical-align: top !important;
}
.vertical_m {
  vertical-align: middle !important;
}
.vertical_b {
  vertical-align: bottom !important;
}

/*---------------------------------font----------------------------------*/
.fw_thin {
  font-weight: 300 !important;
}
.fw_regular {
  font-weight: 400 !important;
}
.fw_medium {
  font-weight: 500 !important;
}
.fw_bold {
  font-weight: 700 !important;
}

.word_bk {
  word-break: keep-all !important;
}
.white_space {
  white-space: nowrap !important;
}
.white_space_normal {
  white-space: normal !important;
}

.fs0 {
  font-size: 0 !important;
}
.fs11 {
  font-size: 1.1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs13 {
  font-size: 1.3rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs45 {
  font-size: 4.5rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
.fs50 {
  font-size: 5rem !important;
}

/*---------------------------------width----------------------------------*/
.width_auto {
  width: auto !important;
}
.width0 {
  width: 0% !important;
}
.width1 {
  width: 1% !important;
}
.width1_td {
  width: 1% !important;
  min-width: 4rem;
  max-width: 4rem;
}
.width2 {
  width: 2% !important;
}
.width4 {
  width: 4% !important;
}
.width5 {
  width: 5% !important;
}
.width6 {
  width: 6% !important;
}
.width8 {
  width: 8% !important;
}
.width10 {
  width: 10% !important;
}
.width15 {
  width: 15% !important;
}
.width16 {
  width: 16% !important;
}
.width18 {
  width: 18% !important;
}
.width20 {
  width: 20% !important;
}
.width25 {
  width: 25% !important;
}
.width30 {
  width: 30% !important;
}
.width32 {
  width: 32% !important;
}
.width33 {
  width: 33.33% !important;
}
.width35 {
  width: 35% !important;
}
.width40 {
  width: 40% !important;
}
.width45 {
  width: 45% !important;
}
.width46 {
  width: 46% !important;
}
.width47 {
  width: 47% !important;
}
.width48 {
  width: 48% !important;
}
.width49 {
  width: 49% !important;
}
.width49_5 {
  width: 49.5% !important;
}
.width50 {
  width: 50% !important;
}
.width52 {
  width: 52% !important;
}
.width60 {
  width: 60% !important;
}
.width62 {
  width: 62% !important;
}
.width64 {
  width: 64% !important;
}
.width65 {
  width: 65% !important;
}
.width70 {
  width: 70% !important;
}
.width72 {
  width: 72% !important;
}
.width74 {
  width: 74% !important;
}
.width75 {
  width: 75% !important;
}
.width80 {
  width: 80% !important;
}
.width82 {
  width: 82% !important;
}
.width85 {
  width: 85% !important;
}
.width90 {
  width: 90% !important;
}
.width92 {
  width: 92% !important;
}
.width94 {
  width: 94% !important;
}
.width95 {
  width: 95% !important;
}
.width96 {
  width: 96% !important;
}
.width98 {
  width: 98% !important;
}
.width100 {
  width: 100% !important;
}

/* fix width */
.fix_w120 {
  width: 12rem !important;
}
.fix_w140 {
  width: 14rem !important;
}
.fix_w160 {
  width: 16rem !important;
}
.fix_w180 {
  width: 18rem !important;
}
.fix_w200 {
  width: 20rem !important;
}

/*---------------------------------margin---------------------------------*/
.mc {
  margin: 0 auto !important;
}
.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}
.mt1 {
  margin-top: 1px !important;
}
.mt2 {
  margin-top: 0.2rem !important;
}
.mt3 {
  margin-top: 0.3rem !important;
}
.mt4 {
  margin-top: 0.4rem !important;
}
.mt5 {
  margin-top: 0.5rem !important;
}
.mt6 {
  margin-top: 0.6rem !important;
}
.mt8 {
  margin-top: 0.8rem !important;
}
.mt10 {
  margin-top: 1rem !important;
}
.mt12 {
  margin-top: 1.2rem !important;
}
.mt14 {
  margin-top: 1.4rem !important;
}
.mt15 {
  margin-top: 1.5rem !important;
}
.mt16 {
  margin-top: 1.6rem !important;
}
.mt18 {
  margin-top: 1.8rem !important;
}
.mt20 {
  margin-top: 2rem !important;
}
.mt22 {
  margin-top: 2.2rem !important;
}
.mt24 {
  margin-top: 2.4rem !important;
}
.mt25 {
  margin-top: 2.5rem !important;
}
.mt26 {
  margin-top: 2.6rem !important;
}
.mt28 {
  margin-top: 2.8rem !important;
}
.mt30 {
  margin-top: 3rem !important;
}
.mt32 {
  margin-top: 3.2rem !important;
}
.mt34 {
  margin-top: 3.4rem !important;
}
.mt35 {
  margin-top: 3.5rem !important;
}
.mt36 {
  margin-top: 3.6rem !important;
}
.mt38 {
  margin-top: 3.8rem !important;
}
.mt40 {
  margin-top: 4rem !important;
}
.mt42 {
  margin-top: 4.2rem !important;
}
.mt44 {
  margin-top: 4.4rem !important;
}
.mt45 {
  margin-top: 4.5rem !important;
}
.mt46 {
  margin-top: 4.6rem !important;
}
.mt48 {
  margin-top: 4.8rem !important;
}
.mt50 {
  margin-top: 5rem !important;
}
.mt52 {
  margin-top: 5.2rem !important;
}
.mt54 {
  margin-top: 5.4rem !important;
}
.mt55 {
  margin-top: 5.5rem !important;
}
.mt56 {
  margin-top: 5.6rem !important;
}
.mt58 {
  margin-top: 5.8rem !important;
}
.mt60 {
  margin-top: 6rem !important;
}
.mt62 {
  margin-top: 6.2rem !important;
}
.mt64 {
  margin-top: 6.4rem !important;
}
.mt70 {
  margin-top: 7rem !important;
}
.mt80 {
  margin-top: 8rem !important;
}
.mt100 {
  margin-top: 10rem !important;
}

.mb0 {
  margin-bottom: 0px !important;
}
.mb2 {
  margin-bottom: 0.2rem !important;
}
.mb3 {
  margin-bottom: 0.3rem !important;
}
.mb4 {
  margin-bottom: 0.4rem !important;
}
.mb5 {
  margin-bottom: 0.5rem !important;
}
.mb6 {
  margin-bottom: 0.6rem !important;
}
.mb8 {
  margin-bottom: 0.8rem !important;
}
.mb10 {
  margin-bottom: 1rem !important;
}
.mb12 {
  margin-bottom: 1.2rem !important;
}
.mb14 {
  margin-bottom: 1.4rem !important;
}
.mb16 {
  margin-bottom: 1.6rem !important;
}
.mb18 {
  margin-bottom: 1.8rem !important;
}
.mb20 {
  margin-bottom: 2rem !important;
}
.mb22 {
  margin-bottom: 2.2rem !important;
}
.mb24 {
  margin-bottom: 2.4rem !important;
}
.mb25 {
  margin-bottom: 2.5rem !important;
}
.mb26 {
  margin-bottom: 2.6rem !important;
}
.mb28 {
  margin-bottom: 2.8rem !important;
}
.mb30 {
  margin-bottom: 3rem !important;
}
.mb32 {
  margin-bottom: 3.2rem !important;
}
.mb34 {
  margin-bottom: 3.4rem !important;
}
.mb35 {
  margin-bottom: 3.5rem !important;
}
.mb36 {
  margin-bottom: 3.6rem !important;
}
.mb38 {
  margin-bottom: 3.8rem !important;
}
.mb40 {
  margin-bottom: 4rem !important;
}
.mb42 {
  margin-bottom: 4.2rem !important;
}
.mb44 {
  margin-bottom: 4.4rem !important;
}
.mb45 {
  margin-bottom: 4.5rem !important;
}
.mb46 {
  margin-bottom: 4.6rem !important;
}
.mb48 {
  margin-bottom: 4.8rem !important;
}
.mb50 {
  margin-bottom: 5rem !important;
}
.mb52 {
  margin-bottom: 5.2rem !important;
}
.mb54 {
  margin-bottom: 5.4rem !important;
}
.mb55 {
  margin-bottom: 5.5rem !important;
}
.mb56 {
  margin-bottom: 5.6rem !important;
}
.mb58 {
  margin-bottom: 5.8rem !important;
}
.mb60 {
  margin-bottom: 6rem !important;
}

.ml1per {
  margin-left: 1% !important;
}
.ml2per {
  margin-left: 2% !important;
}

.ml0 {
  margin-left: 0px !important;
}
.ml2 {
  margin-left: 0.2rem !important;
}
.ml3 {
  margin-left: 0.3rem !important;
}
.ml4 {
  margin-left: 0.4rem !important;
}
.ml5 {
  margin-left: 0.5rem !important;
}
.ml6 {
  margin-left: 0.6rem !important;
}
.ml8 {
  margin-left: 0.8rem !important;
}
.ml10 {
  margin-left: 1rem !important;
}
.ml12 {
  margin-left: 1.2rem !important;
}
.ml14 {
  margin-left: 1.4rem !important;
}
.ml16 {
  margin-left: 1.6rem !important;
}
.ml18 {
  margin-left: 1.8rem !important;
}
.ml20 {
  margin-left: 2rem !important;
}
.ml22 {
  margin-left: 2.2rem !important;
}
.ml24 {
  margin-left: 2.4rem !important;
}
.ml25 {
  margin-left: 2.5rem !important;
}
.ml26 {
  margin-left: 2.6rem !important;
}
.ml28 {
  margin-left: 2.8rem !important;
}
.ml30 {
  margin-left: 3rem !important;
}
.ml32 {
  margin-left: 3.2rem !important;
}
.ml34 {
  margin-left: 3.4rem !important;
}
.ml35 {
  margin-left: 3.5rem !important;
}
.ml36 {
  margin-left: 3.6rem !important;
}
.ml38 {
  margin-left: 3.8rem !important;
}
.ml40 {
  margin-left: 4rem !important;
}
.ml42 {
  margin-left: 4.2rem !important;
}
.ml44 {
  margin-left: 4.4rem !important;
}
.ml45 {
  margin-left: 4.5rem !important;
}
.ml46 {
  margin-left: 4.6rem !important;
}
.ml48 {
  margin-left: 4.8rem !important;
}
.ml50 {
  margin-left: 5rem !important;
}
.ml52 {
  margin-left: 5.2rem !important;
}
.ml54 {
  margin-left: 5.4rem !important;
}
.ml55 {
  margin-left: 5.5rem !important;
}
.ml56 {
  margin-left: 5.6rem !important;
}
.ml58 {
  margin-left: 5.8rem !important;
}
.ml60 {
  margin-left: 6rem !important;
}
.ml70 {
  margin-left: 7rem !important;
}
.ml80 {
  margin-left: 8rem !important;
}

.mr0 {
  margin-right: 0px !important;
}
.mr2 {
  margin-right: 0.2rem !important;
}
.mr3 {
  margin-right: 0.3rem !important;
}
.mr4 {
  margin-right: 0.4rem !important;
}
.mr5 {
  margin-right: 0.5rem !important;
}
.mr6 {
  margin-right: 0.6rem !important;
}
.mr8 {
  margin-right: 0.8rem !important;
}
.mr10 {
  margin-right: 1rem !important;
}
.mr12 {
  margin-right: 1.2rem !important;
}
.mr14 {
  margin-right: 1.4rem !important;
}
.mr16 {
  margin-right: 1.6rem !important;
}
.mr18 {
  margin-right: 1.8rem !important;
}
.mr20 {
  margin-right: 2rem !important;
}
.mr22 {
  margin-right: 2.2rem !important;
}
.mr24 {
  margin-right: 2.4rem !important;
}
.mr25 {
  margin-right: 2.5rem !important;
}
.mr26 {
  margin-right: 2.6rem !important;
}
.mr28 {
  margin-right: 2.8rem !important;
}
.mr30 {
  margin-right: 3rem !important;
}
.mr32 {
  margin-right: 3.2rem !important;
}
.mr34 {
  margin-right: 3.4rem !important;
}
.mr35 {
  margin-right: 3.5rem !important;
}
.mr36 {
  margin-right: 3.6rem !important;
}
.mr38 {
  margin-right: 3.8rem !important;
}
.mr40 {
  margin-right: 4rem !important;
}
.mr42 {
  margin-right: 4.2rem !important;
}
.mr44 {
  margin-right: 4.4rem !important;
}
.mr45 {
  margin-right: 4.5rem !important;
}
.mr46 {
  margin-right: 4.6rem !important;
}
.mr48 {
  margin-right: 4.8rem !important;
}
.mr50 {
  margin-right: 5rem !important;
}
.mr52 {
  margin-right: 5.2rem !important;
}
.mr54 {
  margin-right: 5.4rem !important;
}
.mr55 {
  margin-right: 5.5rem !important;
}
.mr56 {
  margin-right: 5.6rem !important;
}
.mr58 {
  margin-right: 5.8rem !important;
}
.mr60 {
  margin-right: 6rem !important;
}
.mr70 {
  margin-right: 7rem !important;
}
.mr80 {
  margin-right: 8rem !important;
}

/*----------------padding------------------*/

.p0 {
  padding: 0px !important;
}
.p10 {
  padding: 1rem;
}
.pt0 {
  padding-top: 0px !important;
}
.pt2 {
  padding-top: 0.2rem !important;
}
.pt3 {
  padding-top: 0.3rem !important;
}
.pt4 {
  padding-top: 0.4rem !important;
}
.pt5 {
  padding-top: 0.5rem !important;
}
.pt6 {
  padding-top: 0.6rem !important;
}
.pt8 {
  padding-top: 0.8rem !important;
}
.pt10 {
  padding-top: 1rem !important;
}
.pt12 {
  padding-top: 1.2rem !important;
}
.pt14 {
  padding-top: 1.4rem !important;
}
.pt16 {
  padding-top: 1.6rem !important;
}
.pt18 {
  padding-top: 1.8rem !important;
}
.pt20 {
  padding-top: 2rem !important;
}
.pt22 {
  padding-top: 2.2rem !important;
}
.pt24 {
  padding-top: 2.4rem !important;
}
.pt25 {
  padding-top: 2.5rem !important;
}
.pt26 {
  padding-top: 2.6rem !important;
}
.pt28 {
  padding-top: 2.8rem !important;
}
.pt30 {
  padding-top: 3rem !important;
}
.pt32 {
  padding-top: 3.2rem !important;
}
.pt34 {
  padding-top: 3.4rem !important;
}
.pt35 {
  padding-top: 3.5rem !important;
}
.pt36 {
  padding-top: 3.6rem !important;
}
.pt38 {
  padding-top: 3.8rem !important;
}
.pt40 {
  padding-top: 4rem !important;
}
.pt42 {
  padding-top: 4.2rem !important;
}
.pt44 {
  padding-top: 4.4rem !important;
}
.pt45 {
  padding-top: 4.5rem !important;
}
.pt46 {
  padding-top: 4.6rem !important;
}
.pt48 {
  padding-top: 4.8rem !important;
}
.pt50 {
  padding-top: 5rem !important;
}
.pt52 {
  padding-top: 5.2rem !important;
}
.pt54 {
  padding-top: 5.4rem !important;
}
.pt55 {
  padding-top: 5.5rem !important;
}
.pt56 {
  padding-top: 5.6rem !important;
}
.pt58 {
  padding-top: 5.8rem !important;
}
.pt60 {
  padding-top: 6rem !important;
}

.pb0 {
  padding-bottom: 0px !important;
}
.pb2 {
  padding-bottom: 0.2rem !important;
}
.pb3 {
  padding-bottom: 0.3rem !important;
}
.pb4 {
  padding-bottom: 0.4rem !important;
}
.pb5 {
  padding-bottom: 0.5rem !important;
}
.pb6 {
  padding-bottom: 0.6rem !important;
}
.pb8 {
  padding-bottom: 0.8rem !important;
}
.pb10 {
  padding-bottom: 1rem !important;
}
.pb12 {
  padding-bottom: 1.2rem !important;
}
.pb14 {
  padding-bottom: 1.4rem !important;
}
.pb16 {
  padding-bottom: 1.6rem !important;
}
.pb18 {
  padding-bottom: 1.8rem !important;
}
.pb20 {
  padding-bottom: 2rem !important;
}
.pb22 {
  padding-bottom: 2.2rem !important;
}
.pb24 {
  padding-bottom: 2.4rem !important;
}
.pb25 {
  padding-bottom: 2.5rem !important;
}
.pb26 {
  padding-bottom: 2.6rem !important;
}
.pb28 {
  padding-bottom: 2.8rem !important;
}
.pb30 {
  padding-bottom: 3rem !important;
}
.pb32 {
  padding-bottom: 3.2rem !important;
}
.pb34 {
  padding-bottom: 3.4rem !important;
}
.pb35 {
  padding-bottom: 3.5rem !important;
}
.pb36 {
  padding-bottom: 3.6rem !important;
}
.pb38 {
  padding-bottom: 3.8rem !important;
}
.pb40 {
  padding-bottom: 4rem !important;
}
.pb42 {
  padding-bottom: 4.2rem !important;
}
.pb44 {
  padding-bottom: 4.4rem !important;
}
.pb45 {
  padding-bottom: 4.5rem !important;
}
.pb46 {
  padding-bottom: 4.6rem !important;
}
.pb48 {
  padding-bottom: 4.8rem !important;
}
.pb50 {
  padding-bottom: 5rem !important;
}
.pb52 {
  padding-bottom: 5.2rem !important;
}
.pb54 {
  padding-bottom: 5.4rem !important;
}
.pb55 {
  padding-bottom: 5.5rem !important;
}
.pb56 {
  padding-bottom: 5.6rem !important;
}
.pb58 {
  padding-bottom: 5.8rem !important;
}
.pb60 {
  padding-bottom: 6rem !important;
}

.pb70 {
  padding-bottom: 7rem !important;
}

.pl0 {
  padding-left: 0px !important;
}
.pl2 {
  padding-left: 0.2rem !important;
}
.pl3 {
  padding-left: 0.3rem !important;
}
.pl4 {
  padding-left: 0.4rem !important;
}
.pl5 {
  padding-left: 0.5rem !important;
}
.pl6 {
  padding-left: 0.6rem !important;
}
.pl8 {
  padding-left: 0.8rem !important;
}
.pl10 {
  padding-left: 1rem !important;
}
.pl12 {
  padding-left: 1.2rem !important;
}
.pl14 {
  padding-left: 1.4rem !important;
}
.pl16 {
  padding-left: 1.6rem !important;
}
.pl18 {
  padding-left: 1.8rem !important;
}
.pl20 {
  padding-left: 2rem !important;
}
.pl22 {
  padding-left: 2.2rem !important;
}
.pl24 {
  padding-left: 2.4rem !important;
}
.pl25 {
  padding-left: 2.5rem !important;
}
.pl26 {
  padding-left: 2.6rem !important;
}
.pl28 {
  padding-left: 2.8rem !important;
}
.pl30 {
  padding-left: 3rem !important;
}
.pl32 {
  padding-left: 3.2rem !important;
}
.pl34 {
  padding-left: 3.4rem !important;
}
.pl35 {
  padding-left: 3.5rem !important;
}
.pl36 {
  padding-left: 3.6rem !important;
}
.pl38 {
  padding-left: 3.8rem !important;
}
.pl40 {
  padding-left: 4rem !important;
}
.pl42 {
  padding-left: 4.2rem !important;
}
.pl44 {
  padding-left: 4.4rem !important;
}
.pl45 {
  padding-left: 4.5rem !important;
}
.pl46 {
  padding-left: 4.6rem !important;
}
.pl48 {
  padding-left: 4.8rem !important;
}
.pl50 {
  padding-left: 5rem !important;
}
.pl52 {
  padding-left: 5.2rem !important;
}
.pl54 {
  padding-left: 5.4rem !important;
}
.pl55 {
  padding-left: 5.5rem !important;
}
.pl56 {
  padding-left: 5.6rem !important;
}
.pl58 {
  padding-left: 5.8rem !important;
}
.pl60 {
  padding-left: 6rem !important;
}

.pr0 {
  padding-right: 0px !important;
}
.pr2 {
  padding-right: 0.2rem !important;
}
.pr3 {
  padding-right: 0.3rem !important;
}
.pr4 {
  padding-right: 0.4rem !important;
}
.pr5 {
  padding-right: 0.5rem !important;
}
.pr6 {
  padding-right: 0.6rem !important;
}
.pr8 {
  padding-right: 0.8rem !important;
}
.pr10 {
  padding-right: 1rem !important;
}
.pr12 {
  padding-right: 1.2rem !important;
}
.pr14 {
  padding-right: 1.4rem !important;
}
.pr16 {
  padding-right: 1.6rem !important;
}
.pr18 {
  padding-right: 1.8rem !important;
}
.pr20 {
  padding-right: 2rem !important;
}
.pr22 {
  padding-right: 2.2rem !important;
}
.pr24 {
  padding-right: 2.4rem !important;
}
.pr25 {
  padding-right: 2.5rem !important;
}
.pr26 {
  padding-right: 2.6rem !important;
}
.pr28 {
  padding-right: 2.8rem !important;
}
.pr30 {
  padding-right: 3rem !important;
}
.pr32 {
  padding-right: 3.2rem !important;
}
.pr34 {
  padding-right: 3.4rem !important;
}
.pr35 {
  padding-right: 3.5rem !important;
}
.pr36 {
  padding-right: 3.6rem !important;
}
.pr38 {
  padding-right: 3.8rem !important;
}
.pr40 {
  padding-right: 4rem !important;
}
.pr42 {
  padding-right: 4.2rem !important;
}
.pr44 {
  padding-right: 4.4rem !important;
}
.pr45 {
  padding-right: 4.5rem !important;
}
.pr46 {
  padding-right: 4.6rem !important;
}
.pr48 {
  padding-right: 4.8rem !important;
}
.pr50 {
  padding-right: 5rem !important;
}
.pr52 {
  padding-right: 5.2rem !important;
}
.pr54 {
  padding-right: 5.4rem !important;
}
.pr55 {
  padding-right: 5.5rem !important;
}
.pr56 {
  padding-right: 5.6rem !important;
}
.pr58 {
  padding-right: 5.8rem !important;
}
.pr60 {
  padding-right: 6rem !important;
}

/*------------------------------min-width-----------------------------------*/
.min_auto {
  min-width: auto !important;
}
.max_auto {
  max-width: none !important;
}
.min1 {
  min-width: 1rem !important;
}
.min2 {
  min-width: 2rem !important;
}
.min3 {
  min-width: 3rem !important;
}
.min4 {
  min-width: 4rem !important;
}
.min5 {
  min-width: 5rem !important;
}
.min6 {
  min-width: 6rem !important;
}
.min7 {
  min-width: 7rem !important;
}
.min8 {
  min-width: 8rem !important;
}
.min9 {
  min-width: 9rem !important;
}
.min10 {
  min-width: 10rem !important;
}
.min11 {
  min-width: 11rem !important;
}
.min12 {
  min-width: 12rem !important;
}
.min13 {
  min-width: 13rem !important;
}
.min14 {
  min-width: 14rem !important;
}
.min15 {
  min-width: 15rem !important;
}
.min16 {
  min-width: 16rem !important;
}
.min18 {
  min-width: 18rem !important;
}
.min20 {
  min-width: 20rem !important;
}
.min22 {
  min-width: 22rem !important;
}
.min24 {
  min-width: 24rem !important;
}
.min25 {
  min-width: 25rem !important;
}
.min26 {
  min-width: 26rem !important;
}
.min28 {
  min-width: 28rem !important;
}
.min30 {
  min-width: 30rem !important;
}
.min34 {
  min-width: 34rem !important;
}
.min35 {
  min-width: 35rem !important;
}
.min38 {
  min-width: 38rem !important;
}
.min40 {
  min-width: 40rem !important;
}
.min42 {
  min-width: 42rem !important;
}
.min45 {
  min-width: 45rem !important;
}
.min46 {
  min-width: 46rem !important;
}
.min48 {
  min-width: 48rem !important;
}
.min50 {
  min-width: 50rem !important;
}
.min52 {
  min-width: 52rem !important;
}
.min55 {
  min-width: 55rem !important;
}
.min56 {
  min-width: 56rem !important;
}
.min58 {
  min-width: 58rem !important;
}
.min60 {
  min-width: 60rem !important;
}
.min62 {
  min-width: 62rem !important;
}
.min64 {
  min-width: 64rem !important;
}
.min65 {
  min-width: 65rem !important;
}
.min68 {
  min-width: 68rem !important;
}
.min70 {
  min-width: 70rem !important;
}
/* max width */
.max_w10 {
  max-width: 10% !important;
}
.max_w20 {
  max-width: 20% !important;
}
.max_w30 {
  max-width: 30% !important;
}
.max_w40 {
  max-width: 40% !important;
}
.max_w50 {
  max-width: 50% !important;
}
.max_w60 {
  max-width: 60% !important;
}
.max_w100 {
  max-width: 100% !important;
}
/*------------------------------text_align--------------------------------*/
.text_center {
  text-align: center !important;
}
.text_left {
  text-align: left !important;
}
.text_right {
  text-align: right !important;
}

/*------------------------------line-height-------------------------------*/
.lh12 {
  line-height: 1.2rem !important;
}
.lh14 {
  line-height: 1.4rem !important;
}
.lh16 {
  line-height: 1.6rem !important;
}
.lh18 {
  line-height: 1.8rem !important;
}
.lh20 {
  line-height: 2rem !important;
}
.lh24 {
  line-height: 2.4rem !important;
}
.lh26 {
  line-height: 2.6rem !important;
}
.lh28 {
  line-height: 2.8rem !important;
}
.lh30 {
  line-height: 3rem !important;
}
.lh32 {
  line-height: 3.2rem !important;
}
.lh36 {
  line-height: 3.6rem !important;
}
.lh40 {
  line-height: 4rem !important;
}
.lh48 {
  line-height: 4.8rem !important;
}
.lh50 {
  line-height: 5rem !important;
}

.hei_auto {
  height: auto !important;
}
.hei10 {
  height: 10%;
}
.hei20 {
  height: 20%;
}
.hei50 {
  height: 50%;
}
.hei100 {
  height: 100%;
}

.f_hei120 {
  height: 12rem !important;
}
.max_hei110 {
  max-height: 11rem !important;
}

/*------------------right&left---------------------*/
.ps_relative {
  position: relative;
}
.ps_absolute {
  position: absolute;
}
.ps_right {
  position: absolute;
  right: 0;
}
.ps_left {
  position: absolute;
  left: 0;
}
.ps_top {
  position: absolute;
  top: 0;
}
.ps_bottom {
  position: absolute;
  bottom: 0;
}
.ps_bottom_10 {
  position: absolute;
  bottom: 1rem;
}
.ps_bottom_16 {
  position: absolute;
  bottom: 1.6rem;
}
.ps_bottom_20 {
  position: absolute;
  bottom: 2rem;
}
.ps_bottom_24 {
  position: absolute;
  bottom: 2.4rem;
}
.ps_l_center {
  left: 50%;
  transform: translateX(-50%);
}
.ps_t_center {
  top: 50%;
  transform: translateY(-50%);
}

.f_right {
  float: right;
}
.f_left {
  float: left;
}
