@charset "UTF-8";
body {
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
}

div, ul, textarea {
  scrollbar-face-color: #cdcdcd;
  scrollbar-highlight-color: #cdcdcd;
  scrollbar-3dlight-color: #cdcdcd;
  scrollbar-shadow-color: #cdcdcd;
  scrollbar-darkshadow-color: #cdcdcd;
  scrollbar-track-color: #f0f0f0;
  scrollbar-arrow-color: #4a4947;
}
div::-webkit-scrollbar, ul::-webkit-scrollbar, textarea::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
div::-webkit-scrollbar-button:start:decrement, div::-webkit-scrollbar-button:end:increment, ul::-webkit-scrollbar-button:start:decrement, ul::-webkit-scrollbar-button:end:increment, textarea::-webkit-scrollbar-button:start:decrement, textarea::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 0;
}
div::-webkit-scrollbar-track, ul::-webkit-scrollbar-track, textarea::-webkit-scrollbar-track {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px inset;
}
div::-webkit-scrollbar-thumb, ul::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb {
  height: 50px;
  width: 50px;
  background: #111;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px inset;
}
div::-webkit-scrollbar-thumb:hover, ul::-webkit-scrollbar-thumb:hover, textarea::-webkit-scrollbar-thumb:hover {
  background: #999;
}

td, div, p, li, dt, dd, input, select, button, textarea, h1, h2, h3, h4, h5, pre {
  font-family: "Assistant", "Noto", Tahoma, Arial, sans-serif;
  line-height: 1.5em;
  font-weight: 400;
  color: #111;
}

td, div, p, li, dt, dd, input, select, button, textarea, pre,
h1:not(.editorView h1), h2:not(.editorView h2), h3:not(.editorView h3), h4:not(.editorView h4), h5:not(.editorView h5) {
  font-size: 16px;
}

html * {
  box-sizing: border-box;
  word-break: keep-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -ms-word-break: keep-all;
}

header, footer, section, article, nav, aside {
  display: block;
}

a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
  color: #111;
}

b, strong, .fb {
  font-weight: 600;
}

em, th {
  font-style: normal;
}

input, button {
  overflow: visible;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  appearance: none;
  background: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
  color: #111;
}

a.line {
  text-decoration: underline;
}

input[type=text], input[type=file], input[type=password], input[type=tel], input[type=number], input[type=email] {
  box-sizing: border-box;
  height: 48px;
  padding: 0 20px;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 14px;
  text-align: left;
  font-size: 16px;
  appearance: none;
  background: #fff;
}

label {
  position: relative;
}
label input[type=radio], label input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
label input[type=radio] + span, label input[type=checkbox] + span {
  display: inline-block;
  line-height: 20px;
  cursor: pointer;
}
label input[type=radio] + span:before, label input[type=checkbox] + span:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 8px 0 0;
  vertical-align: top;
  background: url(/static/images/icon/ic_radio.svg) no-repeat 0 0;
}
label input[type=radio][type=checkbox] + span:before, label input[type=checkbox][type=checkbox] + span:before {
  background-image: url(/static/images/icon/ic_check.svg);
}
label input[type=radio][type=checkbox].typeB + span:before, label input[type=checkbox][type=checkbox].typeB + span:before {
  background-image: url(/static/images/icon/ic_check2.svg);
}
label input[type=radio]:checked + span:before, label input[type=checkbox]:checked + span:before {
  background-position-y: -20px;
}
label input[type=radio]:disabled + span:before, label input[type=checkbox]:disabled + span:before {
  background-position-y: -40px;
}

select {
  width: 100%;
  height: 48px;
  padding-left: 20px;
  border-radius: 14px;
  border: solid 1px #ddd;
  font-size: 16px;
  color: #666;
  background: none;
}
select[disabled] {
  background-color: #eee;
}

textarea {
  box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 12px 20px;
  margin: 0;
  border-radius: 14px;
  font-size: 16px;
  resize: none;
  appearance: none;
  background: #fff;
}

input[readonly] {
  background-color: #f5f5f5;
}

input::placeholder, textarea::placeholder {
  color: #aaa;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]:focus, input[type=file]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=email]:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #666;
  color: #111;
}
input[type=text]:focus[readonly], input[type=file]:focus[readonly], input[type=password]:focus[readonly], input[type=tel]:focus[readonly], input[type=number]:focus[readonly], input[type=email]:focus[readonly], select:focus[readonly], textarea:focus[readonly] {
  border-color: #ddd;
}

.textArea {
  padding: 10px 5px 10px 20px;
  border: 1px solid #ddd;
  border-radius: 14px;
}
.textArea textarea {
  width: 100%;
  height: 100px;
  border: 0;
  padding: 0;
}

.labelWrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.labelWrap input {
  position: relative;
  z-index: 1;
  background: none;
}
.labelWrap input[readonly] {
  background-color: #f5f5f5;
}
.labelWrap span.placeholder {
  position: absolute;
  left: 21px;
  top: 0;
  line-height: 48px;
  color: #aaa;
}

a.link, span.link {
  text-decoration: underline;
}

.transition {
  transition: all 0.15s ease-in-out;
}

.none {
  width: 100% !important;
  height: auto !important;
  min-height: 1px !important;
  border: 0 !important;
  padding: 50px 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

.desc {
  position: absolute;
  left: -10000px;
  top: -10000px;
  overflow: hidden;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1px !important;
  line-height: 1px !important;
}

.bgLayer {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.1s;
}

.bgLayer.typeB {
  opacity: 0;
}

.bgLayer.typeB.on {
  opacity: 1;
}

.bgLayer2 {
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.1s;
}

.bgLayer2.on {
  opacity: 1;
}

.bgLayer .loadImg {
  position: absolute;
  left: calc(50% - 250px);
  top: calc(50% - 250px);
}

.loadingArea, #loadingArea {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.loadingArea:before, #loadingArea:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.loadingArea > div, #loadingArea > div {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 100px 0 0 -100px;
  width: 200px;
  height: 200px;
}
.loadingArea > div p, #loadingArea > div p {
  position: absolute;
  width: 200px;
  height: 200px;
}
.loadingArea > div p:before, #loadingArea > div p:before {
  content: "";
  opacity: 0.1;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f9327b;
  animation: loading 1.1s infinite;
}
.loadingArea > div p:nth-child(1), #loadingArea > div p:nth-child(1) {
  transform: rotate(22.5deg);
}
.loadingArea > div p:nth-child(1):before, #loadingArea > div p:nth-child(1):before {
  animation-delay: 0.07s;
}
.loadingArea > div p:nth-child(2), #loadingArea > div p:nth-child(2) {
  transform: rotate(45deg);
}
.loadingArea > div p:nth-child(2):before, #loadingArea > div p:nth-child(2):before {
  animation-delay: 0.14s;
}
.loadingArea > div p:nth-child(3), #loadingArea > div p:nth-child(3) {
  transform: rotate(67.5deg);
}
.loadingArea > div p:nth-child(3):before, #loadingArea > div p:nth-child(3):before {
  animation-delay: 0.21s;
}
.loadingArea > div p:nth-child(4), #loadingArea > div p:nth-child(4) {
  transform: rotate(90deg);
}
.loadingArea > div p:nth-child(4):before, #loadingArea > div p:nth-child(4):before {
  animation-delay: 0.28s;
}
.loadingArea > div p:nth-child(5), #loadingArea > div p:nth-child(5) {
  transform: rotate(112.5deg);
}
.loadingArea > div p:nth-child(5):before, #loadingArea > div p:nth-child(5):before {
  animation-delay: 0.35s;
}
.loadingArea > div p:nth-child(6), #loadingArea > div p:nth-child(6) {
  transform: rotate(135deg);
}
.loadingArea > div p:nth-child(6):before, #loadingArea > div p:nth-child(6):before {
  animation-delay: 0.42s;
}
.loadingArea > div p:nth-child(7), #loadingArea > div p:nth-child(7) {
  transform: rotate(157.5deg);
}
.loadingArea > div p:nth-child(7):before, #loadingArea > div p:nth-child(7):before {
  animation-delay: 0.49s;
}
.loadingArea > div p:nth-child(8), #loadingArea > div p:nth-child(8) {
  transform: rotate(180deg);
}
.loadingArea > div p:nth-child(8):before, #loadingArea > div p:nth-child(8):before {
  animation-delay: 0.56s;
}
.loadingArea > div p:nth-child(9), #loadingArea > div p:nth-child(9) {
  transform: rotate(202.5deg);
}
.loadingArea > div p:nth-child(9):before, #loadingArea > div p:nth-child(9):before {
  animation-delay: 0.63s;
}
.loadingArea > div p:nth-child(10), #loadingArea > div p:nth-child(10) {
  transform: rotate(225deg);
}
.loadingArea > div p:nth-child(10):before, #loadingArea > div p:nth-child(10):before {
  animation-delay: 0.7s;
}
.loadingArea > div p:nth-child(11), #loadingArea > div p:nth-child(11) {
  transform: rotate(247.5deg);
}
.loadingArea > div p:nth-child(11):before, #loadingArea > div p:nth-child(11):before {
  animation-delay: 0.77s;
}
.loadingArea > div p:nth-child(12), #loadingArea > div p:nth-child(12) {
  transform: rotate(270deg);
}
.loadingArea > div p:nth-child(12):before, #loadingArea > div p:nth-child(12):before {
  animation-delay: 0.84s;
}
.loadingArea > div p:nth-child(13), #loadingArea > div p:nth-child(13) {
  transform: rotate(292.5deg);
}
.loadingArea > div p:nth-child(13):before, #loadingArea > div p:nth-child(13):before {
  animation-delay: 0.91s;
}
.loadingArea > div p:nth-child(14), #loadingArea > div p:nth-child(14) {
  transform: rotate(315deg);
}
.loadingArea > div p:nth-child(14):before, #loadingArea > div p:nth-child(14):before {
  animation-delay: 0.98s;
}
.loadingArea > div p:nth-child(15), #loadingArea > div p:nth-child(15) {
  transform: rotate(337.5deg);
}
.loadingArea > div p:nth-child(15):before, #loadingArea > div p:nth-child(15):before {
  animation-delay: 1.05s;
}
.loadingArea > div p:nth-child(16), #loadingArea > div p:nth-child(16) {
  transform: rotate(360deg);
}
.loadingArea > div p:nth-child(16):before, #loadingArea > div p:nth-child(16):before {
  animation-delay: 1.12s;
}
.loadingArea img, #loadingArea img {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 100px 0 0 -100px;
}
.loadingArea.full, .loadingArea.fullLoad, #loadingArea.full, #loadingArea.fullLoad {
  position: fixed;
}
.loadingArea.full > div, .loadingArea.fullLoad > div, #loadingArea.full > div, #loadingArea.fullLoad > div {
  top: 50%;
  margin-top: -100px;
}
.loadingArea.full img, .loadingArea.fullLoad img, #loadingArea.full img, #loadingArea.fullLoad img {
  top: 50%;
  margin-top: -100px;
}
.loadingArea.noBg:before, #loadingArea.noBg:before {
  display: none;
}

.loader {
  position: fixed;
  left: calc(50% - 12px);
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 25px;
  text-indent: -9999em;
  animation: load5 1.1s infinite ease;
  transform: translateZ(0);
}

@keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}
.colorA {
  color: #f9327b !important;
}

.colorB {
  color: #4279be !important;
}

.colorC {
  color: #888 !important;
}

.colorD {
  color: #111 !important;
}

.fontA, .num, .uid {
  font-family: "Roboto";
}

.pname {
  word-break: break-all;
}

.vertical img, img.vertical {
  width: auto !important;
  max-width: 1024px !important;
  height: 100% !important;
}

.btnArea {
  margin-top: 40px;
  text-align: center;
}
.btnArea * + button, .btnArea * + a {
  margin-left: 6px;
}
.btnArea .message {
  position: absolute;
  left: 15px;
  top: -20px;
  padding: 0 20px;
  border-radius: 14px 14px 14px 0;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  line-height: 34px;
  background: #f9327b;
}
.btnArea .message:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  border-left: 6px solid #f9327b;
  border-top: 4px solid #f9327b;
  border-right: 6px solid transparent;
  border-bottom: 4px solid transparent;
}
.btnArea.typeB {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.btnArea.typeB span {
  display: table-cell;
}
.btnArea.typeB span a, .btnArea.typeB span button {
  width: 100%;
}

.btnTypeA {
  display: inline-block;
  border: 1px solid #111;
  border-radius: 14px;
  text-align: center;
  color: #fff !important;
  background: #111;
} /* 진한배경 */
.btnTypeB {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 14px;
  text-align: center;
  background: #fff;
} /* 흰배경&진한글씨 */
.btnTypeC {
  display: inline-block;
  border: 1px solid #fbfbfb;
  border-radius: 14px;
  text-align: center;
  background: #f2f2f2;
} /* 연한배경2&진한글씨 */
.btnTypeD {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 14px;
  text-align: center;
  background: #ddd;
} /* 연한배경3&진한글씨 */
.btnTypeE {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 14px;
  text-align: center;
  background: #fff;
} /* 회색라인&진한글씨 */
.btnTypeF {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 14px;
  text-align: center;
  color: #888 !important;
  background: #fff;
} /* 회색라인&연한글씨 */
.btnTypeG {
  display: inline-block;
  border: 1px solid #111;
  border-radius: 14px;
  text-align: center;
  background: #fff;
} /* 진한라인&진한글씨 */
.btnTypeH {
  display: inline-block;
  border: 1px solid #666;
  border-radius: 14px;
  text-align: center;
  color: #fff !important;
  background: #666;
} /* 진한배경2 */
.btnTypeI {
  display: inline-block;
  border: 1px solid #fbfbfb;
  border-radius: 14px;
  text-align: center;
  color: #888 !important;
  background: #f2f2f2;
} /* 연한배경2&연한글씨 */
.btnTypeJ {
  display: inline-block;
  border: 1px solid #f9327b;
  border-radius: 14px;
  text-align: center;
  color: #f9327b !important;
  background: #fff;
} /* 포인트컬러라인&포인트컬러글씨 */
.btnTypeK {
  display: inline-block;
  border: 1px solid #bbb;
  border-radius: 14px;
  text-align: center;
  color: #fff !important;
  background: #bbb;
} /* 진한배경3 */
.btnTypeL {
  border: 0;
  background-image: linear-gradient(117deg, #fe9c47 1%, #f9327b 58%, #c433ae 107%);
}

.btnTypeM {
  display: inline-block;
  border: 1px solid #f9327b;
  border-radius: 14px;
  text-align: center;
  color: #fff !important;
  background: #f9327b;
} /* 포인트컬러배경 */
.btnTypeA.disabled, .btnTypeA:disabled, button:disabled {
  background-color: #eee;
  border-color: #eee;
  cursor: default;
}

.btnKakao {
  display: inline-block;
  border: 1px solid #ffeb04;
  border-radius: 14px;
  text-align: center;
  color: #222 !important;
  background: #ffeb04;
}
.btnKakao:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -2px 8px 0 0;
  vertical-align: middle;
  background: url(/static/images/icon/ic_kakao3.svg) no-repeat 0 0;
}

.sizeA {
  min-width: 100px;
  height: 48px;
  padding: 0 40px;
  line-height: 46px;
  font-size: 14px;
}

.sizeB {
  min-width: 200px;
  height: 54px;
  padding: 0 40px;
  line-height: 52px;
}

.sizeC {
  height: 64px;
  padding: 0 40px;
  line-height: 62px;
}

.sizeD {
  height: 74px;
  padding: 0 40px;
  line-height: 72px;
  font-size: 18px;
}

button.del {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #888;
  font-size: 16px;
  line-height: 1em;
}
button.del:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url(/static/images/icon/ic_del.png) no-repeat 0 0;
}

.ellLine1 {
  display: block;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ellLine2 {
  display: block;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellLine3 {
  display: block;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ellLine4 {
  display: block;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.ellLine5 {
  display: block;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.numBox {
  overflow: hidden;
}
.numBox button {
  overflow: hidden;
  position: relative;
  float: left;
  width: 28px;
  height: 28px;
  border: 1px solid #bbb;
  border-radius: 5px;
  background: #fff;
  white-space: nowrap;
  text-indent: 28px;
}
.numBox button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 1px;
  margin-left: -5px;
  background: #111;
}
.numBox button.plus:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 9px;
  margin: -4px 0 0 -1px;
  background: #111;
}
.numBox button:hover {
  border-color: #111;
}
.numBox button:hover:before, .numBox button.plus:hover:after {
  background: #f9327b;
}
.numBox button:disabled {
  background: #eee;
}
.numBox button:disabled:hover {
  border-color: #ddd;
}
.numBox button:disabled:before, .numBox button.plus:disabled:after {
  background: #aaa;
}
.numBox input[type=text], .numBox input[type=number] {
  float: left;
  width: 40px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto";
  line-height: 28px;
  background: none;
}

.focus {
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.focus.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.icoFold {
  position: relative;
  padding-right: 30px;
}
.icoFold:before, .icoFold:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 2px;
  margin-top: -3px;
  background: #111;
  transition: all 0.2s;
}
.icoFold:before {
  right: 3px;
  transform: rotate(43deg);
  transform-origin: 0;
}
.icoFold:after {
  transform: rotate(-43deg);
  transform-origin: 100%;
}
.icoFold.on:before, .icoFold.over:before {
  margin-top: 0 !important;
  transform: rotate(-43deg);
}
.icoFold.on:after, .icoFold.over:after {
  margin-top: 0 !important;
  transform: rotate(43deg);
}

.icoGo {
  position: relative;
  padding-right: 15px;
}
.icoGo:before, .icoGo:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  margin-top: -1px;
  transform-origin: 100%;
  background: #111;
}
.icoGo:before {
  transform: rotate(45deg);
}
.icoGo:after {
  transform: rotate(-45deg);
}

.icoMore {
  position: relative;
  padding-right: 25px;
}
.icoMore:before, .icoMore:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #111;
}
.icoMore:after {
  transform: rotate(90deg);
}

.pdt {
  position: relative;
  display: table;
  width: 100%;
  min-height: 130px;
  padding: 20px 0;
}
.pdt > a {
  display: block;
}
.pdt .thumb {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 20px;
  overflow: hidden;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  vertical-align: top;
  background: #eee;
}
.pdt .content {
  display: table-cell;
  width: 100%;
  padding-left: 100px;
  vertical-align: middle;
}
.pdt .content .option {
  margin-top: 4px;
  font-size: 14px;
  color: #888;
}
.pdt .content .price {
  margin-top: 6px;
  font-size: 14px;
}
.pdt .content .price .num {
  font-size: 16px;
}

.fileFieldArea {
  margin-top: 30px;
  margin-bottom: 40px;
}
.fileFieldArea .fileField {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 94px;
  height: 94px;
  border-radius: 14px;
  background: #f2f2f2;
}
.fileFieldArea .fileField input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 94px;
  height: 94px;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.fileFieldArea .fileField .btn {
  display: block;
  width: 94px;
  height: 94px;
  padding-top: 24px;
  cursor: pointer;
  text-align: center;
}
.fileFieldArea .fileField .btn:before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  margin: 0 auto 8px;
  background: url(/static/images/icon/ic_plus2.svg) no-repeat 0 0;
}
.fileFieldArea .fileField .btn .num {
  font-size: 14px;
  color: #666;
}
.fileFieldArea .attach {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-left: 10px;
  width: 94px;
  height: 94px;
  border-radius: 14px;
}
.fileFieldArea .attach a {
  position: absolute;
  right: 6px;
  top: 6px;
}
.fileFieldArea + .closed {
  margin-top: -10px;
  font-size: 14px;
}

.layer {
  display: none;
  opacity: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 100;
  overflow: hidden;
  max-height: calc(100% - 80px);
  border-radius: 30px;
  background: #fff;
  transition: opacity 0.1s ease-in-out;
}
.layer h1 {
  height: 76px;
  padding-top: 30px;
  font-weight: 600;
  font-size: 18px !important;
}
.layer .close {
  position: absolute;
  right: 20px;
  top: 32px;
}
.layer .close a {
  overflow: hidden;
  display: block;
  width: 16px;
  height: 16px;
  background: url(/static/images/icon/ic_close2.svg) no-repeat 0 0;
}
.layer .close a span {
  display: block;
  white-space: nowrap;
  text-indent: 100%;
}
.layer .content {
  overflow-y: auto;
  padding: 20px;
}
.layer .content .btnArea.fixedBtn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: #fff;
}
.layer.includeFixedBtn .content {
  padding-bottom: 108px;
}
.layer.on {
  opacity: 1;
}

.popLayer {
  display: none;
  opacity: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  overflow: hidden;
  border-radius: 30px;
  transition: opacity 0.1s ease-in-out;
  background: #fff;
}
.popLayer .close {
  position: absolute;
  right: 25px;
  top: 40px;
}
.popLayer .close a {
  display: block;
  width: 16px;
  height: 16px;
  background: #fff url(/static/images/icon/ic_close4.svg) no-repeat 0 0;
}
.popLayer .close a span {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
}
.popLayer.on {
  opacity: 1;
}
.popLayer.bannerPop .close a {
  background-color: transparent;
}
.popLayer.hiddenCloseBtn .close {
  display: none;
}
.popLayer.giftCouponPop .close {
  right: 35px;
  top: 35px;
}
.popLayer.giftCouponPop .close a {
  width: 20px;
  height: 20px;
  background: transparent url(/static/images/icon/ic_close5.svg) no-repeat 0 0;
}
.popLayer.marketingCoupon {
  border-radius: 0;
  background: none;
}

.messageLayer {
  display: none;
  position: fixed;
  left: calc(50% - 150px);
  top: calc(50% - 24px);
  z-index: 500;
  overflow: hidden;
  width: 300px;
  line-height: 48px;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
}

.recommend:before {
  content: "";
  display: inline-block;
  height: 16px;
  vertical-align: middle;
  margin-top: -5px;
  line-height: 16px;
  background: url(/static/images/icon/ic_recommend2.png) no-repeat 0 0;
}
.recommend.step1:before {
  width: 15px;
}
.recommend.step2:before {
  width: 37px;
}
.recommend.step3:before {
  width: 58px;
}
.recommend.step4:before {
  width: 81px;
}
.recommend.step5:before {
  width: 104px;
}

.zoom {
  opacity: 0;
  position: fixed;
  left: 20px;
  right: 20px;
  top: 50%;
  z-index: 100;
  text-align: center;
  transition: opacity 0.1s ease-in-out;
}
.zoom img {
  max-height: 100vh;
}
.zoom span {
  display: inline-block;
}
.zoom.on {
  opacity: 1;
}

p.warning {
  padding-left: 22px;
  line-height: 19px;
  background: url(/static/images/icon/ic_warning.svg) no-repeat 0 0/16px;
}

ul.warning li {
  padding-left: 22px;
  line-height: 19px;
  background: url(/static/images/icon/ic_warning.svg) no-repeat 0 0/16px;
}
ul.warning li + li {
  margin-top: 5px;
}

.tabTypeA {
  display: table;
  width: 100%;
  height: 54px;
  border-bottom: 1px solid #ddd;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
}
.tabTypeA li {
  position: relative;
  display: table-cell;
  height: 53px;
  text-align: center;
  vertical-align: middle;
}
.tabTypeA li button, .tabTypeA li a {
  display: table;
  width: 100%;
  height: 53px;
  color: #888;
}
.tabTypeA li button span, .tabTypeA li a span {
  display: table-cell;
  width: 100%;
  height: 54px;
  text-align: center;
  vertical-align: middle;
}
.tabTypeA li.on button, .tabTypeA li.on a {
  color: #111;
  font-weight: 600;
}
.tabTypeA li.on:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  height: 3px;
  background: #111;
}

.tabTypeB {
  overflow: hidden;
  display: table;
  width: 100%;
  height: 60px;
  table-layout: fixed;
  border-radius: 14px;
  border: 1px solid #ddd;
}
.tabTypeB li {
  position: relative;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.tabTypeB li button, .tabTypeB li a {
  display: block;
  font-size: 18px;
  line-height: 58px;
  color: #666;
}
.tabTypeB li.on button, .tabTypeB li.on a {
  color: #fff;
  font-weight: 600;
  background: #111;
}
.tabTypeB li + li {
  border-left: 1px solid #ddd;
}

.tabTypeC {
  height: 50px;
  margin-bottom: 15px;
}
.tabTypeC li {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  font-size: 18px;
  line-height: 50px;
}
.tabTypeC li.on {
  font-weight: 600;
}
.tabTypeC li.on button, .tabTypeC li.on a {
  color: #f9327b;
}
.tabTypeC li.on:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background: #f9327b;
}
.tabTypeC li + li {
  margin-left: 30px;
}

#container .tabTypeC:first-child {
  margin-top: 30px;
}

.tabTypeD {
  margin-bottom: 30px;
}
.tabTypeD li {
  position: relative;
  float: left;
  width: auto;
  margin-right: 6px;
  flex-shrink: initial;
  white-space: nowrap;
}
.tabTypeD li button, .tabTypeD li a {
  display: block;
  padding: 0 14px;
  border-radius: 14px;
  line-height: 34px;
  font-size: 14px;
  color: #888;
  background: #fff;
}
.tabTypeD li.on button, .tabTypeD li.on a {
  color: #fff;
  font-weight: 500;
  background: #111;
}
.tabTypeD:after {
  content: "";
  display: block;
  clear: both;
}

.tabTypeE {
  margin-bottom: 24px;
}
.tabTypeE li {
  position: relative;
  float: left;
  width: auto;
  margin: 0 6px 6px 0;
  flex-shrink: initial;
  white-space: nowrap;
}
.tabTypeE li button, .tabTypeE li a {
  display: block;
  padding: 0 14px;
  border-radius: 14px;
  line-height: 34px;
  font-size: 14px;
  color: #aaa;
  background: #e8e8e8;
}
.tabTypeE li.on button, .tabTypeE li.on a {
  color: #fff;
  font-weight: 500;
  background: #111;
}
.tabTypeE:after {
  content: "";
  display: block;
  clear: both;
}

.tabTypeF {
  overflow: hidden;
  width: calc(100% - 4px);
  height: 62px;
  overflow: hidden;
  border-right: 1px solid #ddd;
}
.tabTypeF li {
  position: relative;
  float: left;
  width: 20%;
  border: 1px solid #ddd;
  border-right: 0;
}
.tabTypeF li button, .tabTypeF li a {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 60px;
  color: #666;
  text-align: center;
}
.tabTypeF li.on button, .tabTypeF li.on a {
  color: #fff;
  font-weight: 600;
  background: #111;
}

.tabTypeG li {
  position: relative;
  float: left;
  width: auto;
  margin-right: 16px;
  flex-shrink: initial;
  white-space: nowrap;
}
.tabTypeG li button, .tabTypeG li a {
  display: block;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  line-height: 38px;
  font-size: 16px;
  color: #888;
  background: #fff;
}
.tabTypeG li.on button, .tabTypeG li.on a {
  color: #fff;
  background: #111;
}
.tabTypeG:after {
  content: "";
  display: block;
  clear: both;
}

.multiTab {
  margin: 0 -15px;
}
.multiTab .list {
  border: 1px solid #ddd;
}
.multiTab .list li {
  float: left;
  display: table;
  width: 33.3%;
  height: 58px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  table-layout: fixed;
}
.multiTab .list li a {
  display: table-cell;
  width: 100%;
  height: 58px;
  padding: 0 10px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
}
.multiTab .list li:nth-child(3) ~ li {
  border-bottom: none;
}
.multiTab .list li:nth-child(3n) {
  border-right: 0;
}
.multiTab .list li.on {
  font-weight: 600;
}
.multiTab .list:after {
  content: "";
  display: block;
  clear: both;
}
.multiTab .nav {
  margin: 8px 0 10px;
  font-size: 0;
  text-align: center;
  line-height: 0;
}
.multiTab .nav .swiper-pagination-bullet {
  opacity: 0.3;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0 1px;
  background: #aaa;
}
.multiTab .nav .on {
  opacity: 1;
  background: #f9327b;
}

.noData {
  margin: 40px 0;
  padding: 0 !important;
  border: 0 !important;
  text-align: center;
  font-size: 14px;
}

#container > .noData:only-child {
  margin-top: 140px;
}

.noDataTypeB {
  margin: 100px 0;
  padding: 0 !important;
  border: 0 !important;
  text-align: center;
  font-size: 14px;
}
.noDataTypeB a {
  display: block;
  width: 250px;
  margin: 20px auto 0;
}

.noCart {
  padding: 130px 0;
  border-radius: 14px;
  text-align: center;
  background: #fff;
}

.noSearch {
  padding: 80px 0;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  background: #fff;
}
.noSearch .btn {
  margin-top: 20px;
}
.noSearch .btn a {
  width: 200px;
}

.cautionArea {
  margin-top: 20px;
}
.cautionArea > h2, .cautionArea > h3 {
  padding-left: 20px;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px !important;
  line-height: 16px;
  background: url(/static/images/icon/ic_warning.svg) no-repeat 0 50%;
}
.cautionArea li {
  position: relative;
  padding-left: 10px;
  font-size: 14px;
  line-height: 24px;
  color: #888;
}
.cautionArea li:before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.cautionArea .adminText {
  padding-left: 10px;
  font-size: 12px;
  line-height: 20px;
  color: #888;
}
.cautionArea.typeB {
  padding: 20px;
  border-radius: 14px;
  background: #f2f2f2;
}

p.caution {
  position: relative;
  padding-left: 20px;
  margin-top: 20px;
  font-size: 12px;
  line-height: 18px;
  color: #666;
  background: url(/static/images/icon/ic_warning.svg) no-repeat 0 0;
}

ul.caution {
  margin-top: 20px;
}
ul.caution li {
  position: relative;
  padding-left: 8px;
  font-size: 12px;
  color: #666;
}
ul.caution li:before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.calendar {
  position: relative;
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: url(/static/images/icon/ic_calendar.svg) no-repeat 90% 50%;
}
.calendar input {
  width: 100%;
  height: 46px;
  border: 0;
  line-height: 46px;
  font-family: "Roboto";
  background: none;
}

.setDate {
  background: url(/static/images/icon/ic_calendar.svg) no-repeat calc(100% - 20px) 50% !important;
}

.ui-datepicker .ui-datepicker-title warn {
  height: 24px;
  border-radius: 0;
}

.srchArea {
  position: relative;
  width: 100%;
  height: 56px;
  padding: 14px 80px 14px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 0 auto;
  background: #fff;
}
.srchArea input {
  width: 100%;
  height: 24px;
  padding: 0;
  border: 0;
  line-height: 24px;
}
.srchArea img {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -11px;
}

.checkType {
  position: relative;
  margin-left: -10px;
  font-size: 0;
}
.checkType input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.checkType label {
  display: inline-block;
  height: 46px;
  padding: 0 14px;
  margin: 0 0 10px 10px;
  border-radius: 23px;
  line-height: 46px;
  color: #888;
  vertical-align: top;
  cursor: pointer;
  font-size: 14px;
  background: #f5f5f5;
}
.checkType label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -2px 7px 0 0;
  vertical-align: middle;
  background: url(/static/images/icon/ic_plus2.png) no-repeat 0 0;
}
.checkType input:checked + label {
  color: #fff;
  background: #ff5a00;
}
.checkType input:checked + label:before {
  width: 13px;
  height: 8px;
  margin-right: 6px;
  background-image: url(/static/images/icon/ic_check8.png);
}

.grade em {
  display: inline-block;
  width: 118px;
  height: 19px;
  background: url(/static/images/icon/ic_star.svg) no-repeat 0 0/100%;
}
.grade em > span {
  overflow: hidden;
  display: inline-block;
  height: 19px;
  background: url(/static/images/icon/ic_star_on.svg) no-repeat 0 0;
}
.grade em > span.grade10 {
  width: 10px;
}
.grade em > span.grade20 {
  width: 20px;
}
.grade em > span.grade30 {
  width: 35px;
}
.grade em > span.grade40 {
  width: 45px;
}
.grade em > span.grade50 {
  width: 59px;
}
.grade em > span.grade60 {
  width: 69px;
}
.grade em > span.grade70 {
  width: 84px;
}
.grade em > span.grade80 {
  width: 94px;
}
.grade em > span.grade90 {
  width: 108px;
}
.grade em > span.grade100 {
  width: 118px;
}

.selArea {
  position: relative;
}
.selArea .tit {
  border: 1px solid #ddd;
  border-radius: 14px;
}
.selArea .tit .icoFold {
  display: block;
  height: 52px;
  padding: 0 35px 0 20px;
  line-height: 52px;
}
.selArea .tit .icoFold:before, .selArea .tit .icoFold:after {
  right: 20px;
}
.selArea .tit .icoFold:before {
  right: 23px;
}
.selArea .tit.on {
  border-color: #111;
  border-radius: 14px 14px 0 0;
}
.selArea .list {
  display: none;
  position: absolute;
  left: 0;
  top: 53px;
  right: 0;
  z-index: 1;
  overflow-y: auto;
  border: 1px solid #111;
  border-radius: 0 0 14px 14px;
  background: #fff;
}
.selArea .list li {
  position: relative;
  padding: 20px 90px 20px 20px;
  font-size: 14px;
  border-top: 1px solid #eee;
  cursor: pointer;
  background: #fff;
}
.selArea .list li.soldout {
  color: #aaa;
}
.selArea .list li .status {
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
  color: #111;
  font-weight: 600;
}

.fieldArea .field {
  position: relative;
  padding-left: 180px;
}
.fieldArea .field .tit {
  position: absolute;
  left: 0;
  top: 12px;
  color: #666;
}
.fieldArea .field .tit em {
  position: relative;
  color: #f9327b;
}
.fieldArea .field label.tit {
  display: block;
  font-size: 14px;
  color: #111;
}
.fieldArea .field input[type=text], .fieldArea .field input[type=number], .fieldArea .field input[type=password], .fieldArea .field input[type=tel], .fieldArea .field input[type=email] {
  width: 100%;
}
.fieldArea .field p.read {
  font-size: 18px;
}
.fieldArea .field p.cont {
  margin-top: 10px;
}
.fieldArea .field .phone {
  position: relative;
  padding-left: 80px;
  border: 1px solid #ddd;
  border-radius: 14px;
}
.fieldArea .field .phone select {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 46px;
  border: 0;
  border-radius: 14px 0 0 14px;
}
.fieldArea .field .phone input {
  height: 46px;
  border-width: 0;
  border-left-width: 1px;
  border-radius: 0 14px 14px 0;
}
.fieldArea .field .phone.focus {
  border-color: #111;
}
.fieldArea .field .phone.phone2 {
  padding-right: 80px;
}
.fieldArea .field .phone.phone2 input {
  border-radius: 0;
}
.fieldArea .field .phone.phone2 .btnTypeD {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 80px;
  min-width: 1px;
  padding: 0;
  border-radius: 0 14px 14px 0;
}
.fieldArea .field .pin {
  position: relative;
  padding-right: 160px;
  border: 1px solid #ddd;
  border-radius: 14px;
}
.fieldArea .field .pin input {
  border-width: 0;
}
.fieldArea .field .pin .num {
  position: absolute;
  right: 80px;
  width: 80px;
  padding-right: 20px;
  text-align: right;
  line-height: 48px;
}
.fieldArea .field .pin .btnTypeD {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  min-width: 1px;
  padding: 0;
  border-radius: 0 14px 14px 0;
}
.fieldArea .field input + button, .fieldArea .field input + a {
  margin-left: 6px;
}
.fieldArea .field input[type=password] + input[type=password] {
  margin-top: 10px;
}
.fieldArea .field textarea {
  display: block;
  width: 100%;
  height: 150px;
}
.fieldArea .field .textArea .byte {
  margin: 10px 10px 0 0;
  text-align: right;
  font-family: "Roboto";
  color: #888;
}
.fieldArea .field input + .textArea {
  margin-top: 10px;
}
.fieldArea .field .caution {
  margin-top: 20px;
}
.fieldArea .field .pwdField + .pwdField {
  margin-top: 10px;
}
.fieldArea .field .email {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 14px;
}
.fieldArea .field .email input[type=text], .fieldArea .field .email input[type=email], .fieldArea .field .email select {
  float: left;
  width: calc(50% - 12px);
  border: 0;
}
.fieldArea .field .email input[type=text]:last-child, .fieldArea .field .email input[type=email]:last-child, .fieldArea .field .email select:last-child {
  border-radius: 0 14px 14px 0;
}
.fieldArea .field .email span.mark {
  float: left;
  width: 24px;
  line-height: 46px;
  text-align: center;
}
.fieldArea .field .email:after {
  content: "";
  display: block;
  clear: both;
}
.fieldArea .field .email.focus {
  border-color: #111;
}
.fieldArea .field .email.email2 {
  position: relative;
  padding-right: 80px;
}
.fieldArea .field .email.email2 input {
  border-radius: 0;
  background: #fff !important;
}
.fieldArea .field .email.email2 input:first-child {
  border-radius: 14px 0 0 14px;
}
.fieldArea .field .email.email2 .btnTypeD {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  min-width: 1px;
  padding: 0;
  border-radius: 0 14px 14px 0;
}
.fieldArea .field .text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #aaa;
}
.fieldArea .field .pwdField {
  position: relative;
}
.fieldArea .field .pwdField input {
  position: relative;
  z-index: 1;
  background: none;
}
.fieldArea .field .pwdField span {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 46px;
  color: #aaa;
  font-size: 16px;
}
.fieldArea .field .pwdField input:focus + span, .fieldArea .field .pwdField input.isVal + span {
  display: none;
}
.fieldArea .field .birth {
  border: 1px solid #ddd;
  border-radius: 10px;
}
.fieldArea .field .birth input {
  float: left;
  width: calc((100% - 60px) / 3);
  height: 46px;
  border: 0;
  text-align: center;
}
.fieldArea .field .birth span {
  float: left;
  width: 30px;
  text-align: center;
  line-height: 46px;
}
.fieldArea .field .birth:after {
  content: "";
  display: block;
  clear: both;
}
.fieldArea .field .pwdArea {
  position: relative;
}
.fieldArea .field .pwdArea .cancel {
  position: absolute;
  right: 0;
  bottom: 3px;
  text-decoration: underline;
  color: #888;
  line-height: 1em;
}
.fieldArea .field .message {
  position: relative;
  padding-left: 17px;
  margin-top: 8px;
  font-size: 12px;
}
.fieldArea .field .message.pass {
  color: #27993a;
}
.fieldArea .field .message.fail {
  color: #e91818;
}
.fieldArea .field .message.pass:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 8px;
  background: url(/static/images/icon/ic_check6.png) no-repeat 0 0;
}
.fieldArea .field .message.fail:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: url(/static/images/icon/ic_check7.png) no-repeat 0 0;
}
.fieldArea .field + .field {
  margin-top: 30px;
}
.fieldArea + .cautionArea {
  margin-top: 40px;
}

.formTypeA {
  width: 100%;
  border-top: 2px solid #bbb;
  table-layout: fixed;
  border-collapse: collapse;
}
.formTypeA tr {
  border-bottom: 1px solid #ddd;
}
.formTypeA th {
  background: #f5f5f5;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  text-align: center;
  font-weight: 500;
}
.formTypeA td {
  height: 76px;
  padding: 20px;
  line-height: 22px;
}

.searchForm {
  position: absolute;
  right: 0;
  top: 30px;
  overflow: hidden;
  width: 650px;
  height: 52px;
  padding: 0 70px 0 20px;
  border: 2px solid #111;
  border-radius: 14px;
  background: #fff;
  /*&.typeB {position:fixed; left:58px; right:58px; top:13px; z-index:30; margin:0; border-color:#fff;}*/
}
.searchForm input {
  width: 100%;
  height: 48px;
  padding: 0;
  line-height: 48px;
  border: 0;
  border-radius: 0;
}
.searchForm .srch {
  position: absolute;
  right: 20px;
  top: calc(50% - 9px);
}
.searchForm .del {
  display: none;
  position: absolute;
  right: 44px;
  top: calc(50% - 9px);
}
.searchForm.focus {
  border-color: #666 !important;
}

.searchFormArea {
  min-height: 52px;
  margin: 60px 0 20px;
  text-align: right;
}
.searchFormArea .oldBtn {
  margin: -30px 0 10px;
}
.searchFormArea .sort {
  position: relative;
  display: inline-block;
  width: 140px;
  text-align: left;
  vertical-align: top;
}
.searchFormArea .sort .tit {
  padding-left: 20px;
  line-height: 52px;
  border-radius: 14px;
  background: #fff;
}
.searchFormArea .sort .tit a {
  display: block;
  background: url(/static/images/icon/ic_arrow2.svg) no-repeat 90% 50%;
}
.searchFormArea .sort .list {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0px;
  right: 0;
  z-index: 10;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
}
.searchFormArea .sort .list label {
  display: block;
  white-space: nowrap;
  cursor: pointer;
}
.searchFormArea .sort .list label span {
  display: block;
  padding: 0 20px;
  line-height: 35px;
  color: #888;
}
.searchFormArea .sort .list label span:before {
  display: none;
}
.searchFormArea .sort .list label input:checked + span {
  color: #111;
  background: #f2f2f2;
}
.searchFormArea .searchForm {
  position: relative;
  top: 0;
  display: inline-block;
  width: 470px;
  margin-left: 16px;
  border-color: #fff;
}

.srchWord {
  position: relative;
}
.srchWord:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  height: 8px;
  border-radius: 4px;
  background: #ffef61;
}
.srchWord span {
  position: relative;
}

.paging {
  margin: 40px -15px;
  text-align: center;
}
.paging li {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 0 5px;
  vertical-align: top;
}
.paging li a, .paging li strong, .paging li span {
  display: block;
  line-height: 34px;
  border-radius: 50%;
  color: #888;
}
.paging li strong {
  color: #fff;
  font-weight: 600;
  background: #111;
}
.paging .prev, .paging .next {
  cursor: pointer;
}
.paging .prev a, .paging .next a {
  overflow: hidden;
  background: url(/static/images/icon/ic_arrow5.svg) no-repeat 50% 50%;
}
.paging .prev span, .paging .next span {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
.paging .prev > span, .paging .next > span {
  opacity: 0.5;
  background: url(/static/images/icon/ic_arrow5.svg) no-repeat 50% 50%;
}
.paging .prev.prev, .paging .next.prev {
  margin-left: 0;
  transform: rotate(180deg);
}
.paging .prev.next, .paging .next.next {
  margin-right: 0;
}

.bbsListArea {
  padding: 0 30px;
  border-radius: 14px;
  background: #fff;
}
.bbsListArea .bbsList tr:last-child td {
  border-bottom: 0;
}
.bbsListArea .noData {
  padding: 100px 0 !important;
  margin: 0;
}

.bbsList {
  width: 100%;
  table-layout: fixed;
}
.bbsList thead th {
  height: 59px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  font-weight: 600;
}
.bbsList tbody th, .bbsList tbody td {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.bbsList tbody th .del, .bbsList tbody td .del {
  position: absolute;
  right: 0;
  top: 20px;
}
.bbsList tbody th .thumb, .bbsList tbody td .thumb {
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-radius: 20px;
}
.bbsList tbody th.tit, .bbsList tbody td.tit {
  padding-left: 15px;
  text-align: left;
}
.bbsList tbody th .option, .bbsList tbody td .option {
  margin-top: 6px;
  font-size: 14px;
  color: #888;
}
.bbsList tbody th .text, .bbsList tbody td .text {
  margin-top: 10px;
  font-size: 12px;
}
.bbsList tbody th .original, .bbsList tbody td .original {
  color: #888;
  font-size: 12px;
  text-decoration: line-through;
}
.bbsList tbody th .original .num, .bbsList tbody td .original .num {
  font-size: 14px;
}
.bbsList tbody th .discount, .bbsList tbody th .price, .bbsList tbody td .discount, .bbsList tbody td .price {
  font-size: 14px;
}
.bbsList tbody th .discount .num, .bbsList tbody th .price .num, .bbsList tbody td .discount .num, .bbsList tbody td .price .num {
  font-size: 20px;
}
.bbsList tbody th a.sizeA, .bbsList tbody td a.sizeA {
  min-width: 1px;
  height: 32px;
  line-height: 30px;
  padding: 0 20px;
  border-radius: 10px;
}
.bbsList tbody th a.sizeA + a.sizeA, .bbsList tbody td a.sizeA + a.sizeA {
  margin-top: 5px;
}
.bbsList tbody th .tracking, .bbsList tbody td .tracking {
  font-size: 14px;
}
.bbsList tbody th .tracking + .tracking, .bbsList tbody td .tracking + .tracking {
  margin-top: 5px;
}
.bbsList tbody th .return, .bbsList tbody td .return {
  position: relative;
  margin-top: 15px;
  font-size: 14px;
}
.bbsList tbody th .return .btnTypeE, .bbsList tbody td .return .btnTypeE {
  margin-left: 6px;
}
.bbsList tbody th .return + .return, .bbsList tbody td .return + .return {
  margin-top: 10px;
}
.bbsList tbody th .default, .bbsList tbody td .default {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 8px;
  border-radius: 14px 14px 14px 0;
  line-height: 24px;
  font-size: 10px;
  color: #fff;
  background: #f9327b;
}
.bbsList tbody th .point, .bbsList tbody td .point {
  color: #f93232;
}
.bbsList tbody th .point.minus, .bbsList tbody td .point.minus {
  color: #324df9;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  1% {
    visibility: visible;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes showY {
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scrollWrap {
  overflow-y: hidden;
  overflow-x: auto;
  padding: 0 15px 12px;
  margin-left: -15px;
  margin-right: -15px;
  white-space: nowrap;
  font-size: 0;
}
.scrollWrap::-webkit-scrollbar-track, .scrollWrap::-webkit-scrollbar-thumb {
  background: none;
  box-shadow: none;
}

.balloonLabel {
  position: relative;
  display: inline-block;
  line-height: 48px;
  padding: 0 15px;
  border-radius: 22px 22px 22px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #f9327b;
}
.balloonLabel:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  border-left: 13px solid #F9327B;
  border-top: 8px solid #F9327B;
  border-right: 13px solid transparent;
  border-bottom: 8px solid transparent;
}

/*# sourceMappingURL=common.css.map */
