html,
body {
  position: relative;
  height: 100%;
}
body { 
  color: #000;
  margin: 0;
  padding: 0;
}
/* ----------main------------------- */
main {
    padding-top: 8.125rem;
    height: 100%;
}
.swiper.none {
  display: none;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: scroll;
}
.swiper{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  border-top-left-radius: 3.75rem;
  border-top-right-radius: 3.75rem;
  overflow: hidden;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}
.swiper-wrapper {
}
.swiper-slide {
  padding: 0 1.25rem;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
.swiperBtn {
  position: absolute;
  left: 0;
  top: 3.75rem;
  z-index: 1;
  height: 3.125rem;
  width: 100%;
  padding: 0 3.125rem;
  display: flex;
  justify-content: space-between;
}
.swiperBtnPrev , .swiperBtnNext {
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.swiperBtnPrev img , .swiperBtnNext img {
  height: 100%;
}
.swiper-button-next, .swiper-button-prev {
  display: none !important;
}
.recommendBtn button {
  font-weight: 700 !important;
}
/* ---------------------profileform--------------------------- */
h2 {
  font-weight: 700 !important;
  font-size: 3rem;
  padding:  0 3rem;
  margin: 3.75rem 0 5rem;
}
#profile {
}
.profileWrap {
}
.profileWrap form {
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}
.profileWrap form fieldset {
  width: 50%;
  height: 3.125rem;
  max-width: 520px;
  display: flex;
  align-items: center;
}
.profileWrap form fieldset:nth-child(3),
.profileWrap form fieldset:nth-child(4) {
  margin: 30px 0;
}
.formTitle {
  width: 30%;
  height: 100%;
  min-width: 7.7rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-end;
  font-size: 1.125rem;
  font-weight: 400;
  padding-right: 10px;
  text-align: end;
  line-height: 1.2;
}
.formContent {
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  border-left: 1px solid #bbb;
}
.infoTxt {
  text-align: start;
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 33.125rem;
  overflow: hidden;
  line-height: 25px;
}
.infoTxt.none,
.editBtn.none {
  display: none;
}
.formContent.input {
  background-color: #fafafa;
  border: 1px solid #ddd;
}
.editInput, .editCheck {
  display: none;
}
.editInput.block{
  width: 100%;
}
.editInput.block,
.editCheck.block {
  display: block;
  outline: none;
}
.editBtn, .editCheck, .editClose {
  height: 25px;
  margin-left: 15px;
}
.editBtn {
  display: block;
}
.editBtn img, .editCheck img, .editClose img  {
  height: 100%;
}
.pscheckForm .editInput, 
.editClose.block {
  display: block;
}
.editClose {
  display: none;
}
.emailForm {}
.nameForm {}
.nationForm {}
.birthdayForm {}
.passwordForm {}
.pscheckForm {
  display: none !important;
}
.pscheckForm.block {
  display: flex !important;
}
/* -----------------------customWrap-------------------- */
#custom {
  overflow: scroll;
}
.customWrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.customList {
  width: 33.3333%;
  margin-bottom: 30px;
  padding: 0 10px;
  text-align: start;
}
.customImg {
  background-image: url(../image/hei4.png);
  background-size: cover;
  background-position: center;
  height: 18.75rem;
  border-radius: 20px;
}
.customSub {
  height: 3.125rem;
  display: flex;
  justify-content: space-between;
}
.customTxt {
  font-size: 1.25rem;
  margin-top: 0.938rem;
  display: inline-block;
  white-space:nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.customUrl{
  font-size: 0.75rem;
  margin-left:5px;
  text-decoration: underline;
  max-width: 300px; /* 최대 너비 설정 */
  white-space: nowrap; /* 텍스트를 한 줄로 */
  overflow: hidden; /* 넘치는 텍스트를 숨김 */
  text-overflow: ellipsis; /* 넘치는 텍스트를 ...으로 대체 */
  color:#666;

}

.customBtn {
  padding: .5rem 0;
  white-space: nowrap;
}
.customBtn button {
  overflow: hidden;
  height: 100%;
  border-radius: 100%;
}
.customBtn button:first-child {
  margin-right: 5px;
}
.customBtn button img {
  height: 100%;
}
.customList:hover .customImg {
  box-shadow: 0 2px 2px #434343;
}
.customList:hover .customTxt::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #004CBD 0%, rgba(175 , 207 , 255, 0.6) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
animation: border 0.2s linear ;
}
@keyframes border {
    0%{width: 0;}
    100%{width: 100%;}
}
/* --------------------purchase----------------------------- */
#purchase {
  overflow: scroll;
}
.purchaseWrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.purchaseList {
  width: 33.3333%;
  height: 500px;
  padding: 0 10px;
  text-align: start;
}
.purchaseImg {
  background-image: url(../image/hei4.png);
  background-size: cover;
  background-position: center;
  height: 440px;
  border-radius: 20px;
}
.purchaseTxt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 1.375rem;
}
.purchaseName {}
.purchasePrice {}
.purchaseInfo {
  width: 100%;
  font-weight: 400;
  text-align: start;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin: 80px 0 40px;
}
.purchaseList:hover .purchaseImg {
  box-shadow: 0 4px 4px #434343;
}
.purchaseList:hover .purchaseName::after,
.purchaseList:hover .purchasePrice::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #004CBD 0%, rgba(175 , 207 , 255, 0.6) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
animation: border 0.2s linear ;
}
/* ----------------------------registration-------------------------------------------- */
#registration h2 {
  margin-bottom: 0;
}
#registration * {
  font-weight: 400;
}
.registrationWrap {}
.registrationInfo {
  font-size: 1.375rem;
  font-weight: 400;
  margin: 3vh 0 5vh;
  line-height: 2rem;
}
.registrationInfo span {
  font-size: 1.375rem;
  margin: 3vh 0 7vh;
  line-height: 2rem;
}
.recommendBox {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  justify-content: space-between;
}
.recommendBox li {
  width: 49%;
  max-width: 768px;
  text-align: start;
}
/* .recommendBox li:nth-child(2n) {
  margin-left: 1%;
} */
.sendTitle {
  font-weight: 400;
  display: flex;
  margin: 10px 0 5px;
}
.warningStar {
  color: red;
  font-size: 10px;
  font-weight: 400;
}
.Empty {
  width: 100%;
}
.Empty, .noteBox  {
  border: 1px solid #ddd;
  height: 3rem;
  padding: 0 15px;
  border-radius: 3px;
  font-size: 1.125rem;
}
#file_upload {
  display: none;
}
#registration form {
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}
.note {
  text-align: start;
  width: 100%;
  height: 100%;
}
.noteBox {
  width: 100%;
  height: 100%;
  resize: none;
  padding: 15px;
}
.fileWrap * {
  font-size: 1.125rem;
}
.fileWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.file_info {
  color: #757575;
  width: 73%;
  border: 1px solid #ddd;
  height: 3rem;
  padding: 0 15px;
  border-radius: 3px;
  line-height: 3rem;
}
.fileBtn {
  width: 25%;
  text-align: center;
}
.file_label {
  background-color: #ddd;
  font-weight: 400;
  border: 1px solid #bbb;
  display: block;
  height: 3rem;
  padding: 0 15px;
  border-radius: 3px;
  line-height: 3rem;
}
.recommendBtn {
  width: 100%;
}
.recommendBtn button.block {
  cursor: pointer;
  color: #fff;
  background-color: #777;
}
.recommendBtn button {
  color: #222;
  cursor: not-allowed;
  margin: 2% 0;
  font-size: 1.375rem;
  width: 100%;
  height: 3rem;
  background-color: #ddd;
  border-radius: 3px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
}
.regPopup {
  opacity: 0;
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  background-color: #FFEAEA;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .15);
  border-radius: 5px;
  padding: 3% 5%;
}
.regWarningTxt {
  line-height: 1.5;
  color: #FF0C0C;
  font-size: 1.375rem;
  font-weight: 600;
}
.regPopup.block,
.outPopup.block {
  opacity: 1;
  display: block;
}
/* ----------------------------outsourcing-------------------------------------------- */
#outsourcing h2 {
  margin-bottom: 0;
}
#outsourcing * {
  font-weight: 400;
}
.outsourcingWrap {}
.outsourcingInfo {
  font-size: 1.375rem;
  font-weight: 400;
  margin: 3vh 0 5vh;
  line-height: 2rem;
}
.recommendBox {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  justify-content: space-between;
}
.recommendBox li {
  width: 49%;
  max-width: 768px;
  text-align: start;
}
/* .recommendBox li:nth-child(2n) {
  margin-left: 1%;
} */
.sendTitle {
  font-weight: 400;
  display: flex;
  margin: 10px 0 5px;
}
.warningStar {
  color: red;
  font-size: 10px;
  font-weight: 400;
}
.Empty {
  width: 100%;
}
.Empty, .noteBox  {
  border: 1px solid #ddd;
  height: 3rem;
  padding: 0 15px;
  border-radius: 3px;
  font-size: 1.125rem;
}
#file_upload {
  display: none;
}
#outsourcing form {
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}
.note {
  text-align: start;
  width: 100%;
  height: 100%;
}
.noteBox {
  width: 100%;
  height: 100%;
  resize: none;
  padding: 15px;
}
.fileWrap * {
  font-size: 1.125rem;
}
.fileWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.file_info {
  color: #757575;
  width: 73%;
  border: 1px solid #ddd;
  height: 3rem;
  padding: 0 15px;
  border-radius: 3px;
  line-height: 3rem;
}
.fileBtn {
  width: 25%;
  text-align: center;
}
.file_label {
  background-color: #ddd;
  font-weight: 400;
  border: 1px solid #bbb;
  display: block;
  height: 3rem;
  padding: 0 15px;
  border-radius: 3px;
  line-height: 3rem;
}
.recommendBtn {
  width: 100%;
}
.recommendBtn button.block {
  cursor: pointer;
  color: #fff;
  background-color: #777;
}
.recommendBtn button {
  color: #222;
  cursor: not-allowed;
  margin: 2% 0;
  font-size: 1.375rem;
  width: 100%;
  height: 3rem;
  background-color: #ddd;
  border-radius: 3px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
}
.Empty option:first-child {
  color: #bbb;
  font-weight: 400;
}
.outPopup {
  opacity: 0;
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  background-color: #FFEAEA;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .15);
  border-radius: 5px;
  padding: 3% 5%;
}
.outWarningTxt {
  line-height: 1.5;
  color: #FF0C0C;
  font-size: 1.375rem;
  font-weight: 600;
}
.outPopup.block {
  opacity: 1;
  display: block;
}
/* ----------------------------------------domain---------------------------------------- */
.detail.block {
  display: block;
}
.detail {
  display:none;
  padding: 4.375rem 9rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  border-top-left-radius: 3.75rem;
  border-top-right-radius: 3.75rem;
  overflow: scroll;
  box-shadow: 0 -0.125rem 0.5rem rgba(0, 0, 0, 0.2);
}

.beforBtn {
}
.beforBtn button {
  position: fixed;
  background-color: #fff;
  left: 2%;
  top: 12.5rem;
  height: 2.5rem;
  width: 7rem;
  border: 1px solid #222;
  border-radius: 5rem;
}
.domain, .plan, .delete {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 3.125rem;
}
.detail h3 {
  font-size: 2.375rem;
}
.domainInfo, .deleteInfo {
  font-size: 1.375rem;
  font-weight: 400;
  margin: 1.25rem 0 3.125rem;
  line-height: 2rem;
}
.domainInfo a {
  font-size: 1.375rem;
}

.domainInfo a span {
  font-size: 1.375rem;
  text-decoration: underline;
}
.contentsWrap {
  margin: 0 auto;
  max-width: 1200px;
}
.domainWrap * {
  text-align: start;
}
.domainWrap {}
.domainList {
  margin-bottom: 1.875rem;
}
.domainTitle, .deleteTitle {
  font-size: 1.125rem;
  font-weight: 600;
}
.domainSubTitle, .deleteSubTitle {
  font-weight: 400;
  margin: 0.625rem 0 0.313rem;
}
.domainSelect, .currentPlan, .billInfo {
  border: 1px solid #bbb;
  width: 100%;
  padding: 0.938rem;
  border-radius: 3px;
}
.domainSelect select,
.editAd input, .planList li {
  border: 1px solid #bbb;
  width: 100%;
  padding: 0.938rem;
  border-radius: 0.188rem;
}
.domainEdit ul {
  padding: 0.625rem;
}
.domainEdit ul li{
  font-weight: 400;
}
.domainEdit ul li:nth-child(2) {
  margin: 0.313rem 0;
}
.editAd {
  margin-bottom: 0.625rem;
}
.editAd input {
  font-weight: 400;
}
.saveBtn {}
.saveBtn button{
  margin-top: 3.125rem;
  font-size: 1.375rem;
  font-weight: 600;
  width: 100%;
  height: 3.125rem;
  background-color: #ddd;
  border-radius: 0.188rem;
  box-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, .2);
}
.saveBtn button.active {
  background-color: #777;
  color: #fff;
}
.btn-color {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
/* plan */
.plan h3 {
  margin-bottom: 1.25rem;
}
.plan {
  max-width: 1300px;
  padding: 6.25rem 3.125rem;
  margin: 6.25rem auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.planSection {}
.planSection li {}
.planListWrap {
  margin: 0 0 1.875rem;
  height: 0;
  overflow: hidden;
}
.planSection > li:nth-child(2).active {
  margin: 1.25rem 0 1.875rem;
  height: auto;
}
.sectionTitle {
  margin-bottom: 0.313rem;
  font-size: 1.125rem;
  font-weight: 400;
}
.currentPlan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  height: 3rem;
  padding: 0 0 0 0.938rem;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.currentPlan button {
  width: 12.5rem;
  font-size: 1.125rem;
  height: 100%;
  color: #fff;
  background-color: #777;
  border-radius: 2.813rem;
  border: 1px solid #bbb;
}
.currentPlan button img {
  margin-left: 1rem;
  height: .7rem;
}
.planList {
}
.planList li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.313rem;
}
.planList li p {
  font-size: 1.25rem;
}
.planList li p input {
  margin-right: 1.25rem;
}
.planList li span {
  font-size: 1.125rem;
  font-weight: 400;
}
.billInfo {
  font-size: 1.25rem;
}
.planSave {}
.planSave button {}
/* delete */
.deleteBox {}
.delettitle {}
.deleteSelect {
  border: 1px solid #bbb;
  width: 100%;
  padding: 0.938rem;
  border-radius: 0.188rem;
  font-weight: 400;
}
.deleteSelect span {
  font-weight: 300;
}
.deleteBtn button:hover {
  background-color: #777;
  color: #fff;
}
/* deletePopup */
.deleteBg {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}
.deleteBg.block {
  display: block;
}
.deletePopup {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 9999;
  padding: 3% 5%;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 0.188rem;
  box-shadow: 0.125rem 0.25rem 0.5rem rgba(0, 0, 0, .15);
}
.delCWrap {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
}
.deleteCancle {
  font-size: 2rem;
  font-weight: 400;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100px;
  border: 1px solid #575656;
  padding: .3rem;
}
.deleteCancle img {
  height: 100%;
}
.deleteTop {
  margin: 0 1.563rem;
}
.deleteWarning {
  font-size: 1.875rem;
}
.deleteAgreeInfo {
  font-weight: 400;
  font-size: 1.375rem;
  margin: 1.25rem 0;
  line-height: 2.25rem;
}
.websiteNameWrap {
  text-align: start;
}
.websiteNameWrap p {
  font-weight: 400;
  margin-bottom: 0.313rem;
}
.deleteSelect {}
.deleteSelect span {}
.deleteBottom {
  margin-top: 3.75rem;
}
.deleteCheck {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
}
.deleteCheck input:checked::after {
  content:'✔';
  position: absolute;
  line-height: .9rem;
  font-size: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.deleteCheck input {
  margin-right: 1.25rem;
  position: relative;
  text-align: center;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 0.125rem solid #ccc;
  outline: none;
}
.deleteCheck input {}
.deleteCheckBtn button {
  width: 100%;
  font-size: 1.375rem;
  font-weight: 500;
  height: 2.5rem;
  background-color: #ddd;
  border-radius: 0.188rem;
}
.deleteCheckBtn button.active {
  background-color: #777;
  color: #fff;
}