* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}

ul {
  list-style: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* color */
/* font */
/* transition */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slowShowLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  to {
    opacity: 1;
  }
}

body {
  font-family: "Cormorant", Noto Serif TC, sans-serif;
  font-size: 16px;
}

body a {
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  body a:hover {
    color: #627695;
  }
}

body.scroll-disabled,
body.isLoading {
  overflow: hidden;
}

body:not(.home) header .decoLine2 {
  display: none;
}

body:not(.home) .outerWrap {
  padding: 115px 0 0;
  background-image: url("../assets/images/insBg.jpg");
  background-size: cover;
  z-index: 1;
}

@media (max-width: 1180px) {
  body:not(.home) .outerWrap {
    padding: 80px 0;
  }
}

.loading {
  align-items: center;
  background-color: #627695;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 1;
  position: fixed;
  pointer-events: none;
  top: 0;
  transition: all 0.5s ease-in-out;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  margin: auto;
  max-width: 300px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  animation: slowShowLeft 1s ease-in-out forwards;
}

.loading-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.outerWrap {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
  padding: 0 0 180px;
}

@media (max-width: 1180px) {
  .outerWrap {
    padding: 80px 0 100px;
  }
}

@media (max-width: 640px) {
  .outerWrap {
    padding: 80px 0 0;
  }
}

.outerWrap.show {
  opacity: 1;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 1366px) {
  .wrap {
    max-width: 90vw;
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .wrap {
    max-width: 95vw;
  }
}

header {
  position: fixed;
  background-image: url("../assets/images/headerBg.jpg");
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  height: 115px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}

header.hide {
  transform: translateX(-50%) translateY(-100%);
}

@media (max-width: 1180px) {
  header {
    display: none;
  }
}

header .wrap {
  max-width: 1300px;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1440px) {
  header .wrap {
    width: 90vw;
    max-width: 90vw;
  }
}

header .leftBox {
  display: flex;
  align-items: center;
}

header .logo {
  display: block;
  width: 200px;
}

header .topBox {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}

header .cartList {
  align-items: center;
  display: flex;
}

header .cartList a {
  display: block;
  height: 20px;
  width: 20px;
}

header .cartList a:first-child {
  margin-left: 30px;
  margin-right: 20px;
}

header .cartList svg {
  height: 20px;
  width: 20px;
  color: #fff;
  fill: #fff;
}

header .rightBox {
  display: flex;
  align-items: center;
}

header .navList {
  display: flex;
}

@media (max-width: 1180px) {
  header .navList {
    display: none;
  }
}

header .navList>li {
  margin: 0 10px;
  padding: 0 10px;
  position: relative;
  width: 125px;
}

@media (min-width: 1181px) {
  header .navList>li:hover a .title {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.35);
  }

  header .navList>li:hover a .subtitle {
    opacity: 1;
  }
}

header .navList>li.current a .title {
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.35);
}

header .navList>li.current a .subtitle {
  opacity: 1;
}

header .navList>li>a {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
}

header .navList>li>a .title {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  margin-bottom: 5px;
  letter-spacing: 2.7px;
}

header .navList>li>a .subtitle {
  position: absolute;
  left: 0;
  top: 100%;
  font-family: "Cormorant", Noto Serif TC, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  letter-spacing: 1.68px;
}

header .navList>li .submenu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 120px;
  top: 100%;
  left: 0%;
  transform: translateX(-25%) translateX(10px);
  background-color: rgba(255, 245, 224, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 12px 10px;
  transition: all 0.5s ease-in-out;
}

header .navList>li .submenu:after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 5px;
  background-image: -moz-linear-gradient(-5deg, #77781a 0%, #e18d59 100%);
  background-image: -webkit-linear-gradient(-5deg, #77781a 0%, #e18d59 100%);
  background-image: -ms-linear-gradient(-5deg, #77781a 0%, #e18d59 100%);
}

header .navList>li .submenu.open {
  opacity: 1;
  pointer-events: auto;
}

header .navList>li .submenu li {
  text-align: center;
  padding: 5px 10px;
  position: relative;
}

header .navList>li .submenu li.current a {
  color: #627695;
}

@media (min-width: 1181px) {
  header .navList>li .submenu li:hover a {
    color: #627695;
  }
}

header .navList>li .submenu li a {
  color: #606a45;
  font-size: 14px;
  letter-spacing: 1.68px;
}

header .fncList {
  align-items: center;
  display: flex;
  gap: 14px;
}

header .fncItem {
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
}

.mobileHeader {
  background-color: #627695;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

@media (min-width: 1181px) {
  .mobileHeader {
    display: none;
  }
}

.mobileHeader .wrap {
  height: 100%;
}

.mobileHeader .logo {
  align-items: center;
  display: flex;
  max-width: 120px;
}

@media (max-width: 640px) {
  .mobileHeader .logo {
    max-width: 100px;
  }
}

.mobileHeader .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mobileHeader .mobileMenuTrigger {
  height: 30px;
  width: 30px;
  position: relative;
}

.mobileHeader .mobileMenuTrigger.open span {
  background-color: transparent;
}

.mobileHeader .mobileMenuTrigger.open span:before {
  content: "";
  position: absolute;
  top: 0;
  transform: rotate(45deg);
}

.mobileHeader .mobileMenuTrigger.open span:after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-45deg);
}

.mobileHeader .mobileMenuTrigger span {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateX(-50%);
  margin-top: -0.5px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}

.mobileHeader .mobileMenuTrigger span:before,
.mobileHeader .mobileMenuTrigger span:after {
  background: #fff;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.5s;
}

.mobileHeader .mobileMenuTrigger span:before {
  content: "";
  position: absolute;
  top: -7px;
}

.mobileHeader .mobileMenuTrigger span:after {
  content: "";
  position: absolute;
  bottom: -7px;
}

.mobileHeader .mobileMenuBox {
  background-color: #627695;
  display: none;
  padding: 10px 0;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 50;
}

.mobileHeader .mobileMenuList li {
  color: #fff;
  font-size: 18px;
  padding: 12px 0;
  position: relative;
  letter-spacing: 1.08px;
}

.mobileHeader .mobileMenuList li a {
  display: block;
}

.mobileHeader .mobileMenuList li.hasSubmenu>a {
  display: block;
  position: relative;
  width: 100%;
}

.mobileHeader .mobileMenuList li.hasSubmenu>a:after {
  color: #fff;
  content: "+";
  align-items: center;
  display: flex;
  justify-content: center;
  font-family: 'Noto Serif TC', serif;
  font-size: 28px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(calc(-50% - 5px));
  height: 20px;
  width: 20px;
}

.mobileHeader .mobileMenuList li.hasSubmenu.open>a:after {
  content: "";
  position: absolute;
  content: "-";
}

.mobileHeader .mobileMenuList .submenu {
  display: none;
  padding: 10px 0;
}

.mobileHeader .mobileMenuList .submenu li {
  font-size: 14px;
  padding: 5px 10px;
}

.mobileHeader .mobileMenuMask {
  background-color: rgba(98, 118, 149, 0.65);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 49;
  transition: all 0.5s ease-in-out;
}

.mobileHeader .mobileMenuMask.show {
  opacity: 1;
  pointer-events: auto;
}

.mobileHeader .mobileMenuFnc {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

.mobileHeader .mobileMenuFnc .searchBox {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  margin-right: 10px;
  border-bottom: 1px solid #fff;
}

.mobileHeader .mobileMenuFnc .searchBox input {
  background-color: transparent;
  border: none;
  margin-right: 50px;
  color: #fff;
}

.mobileHeader .mobileMenuFnc .searchBox input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.mobileHeader .mobileMenuFnc .searchBox input:focus {
  outline: none;
}

.mobileHeader .mobileMenuFnc .searchBox button {
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .mobileHeader .mobileMenuFnc .searchBox button:hover {
    color: #627695;
  }
}

.mobileHeader .mobileMenuFnc a {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 10px;
}

.mobileHeader .mobileMenuFnc svg {
  height: 20px;
  width: 20px;
  color: #fff;
  fill: #fff;
}

.mobileHeader .mobileContent {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.mobileHeader .mobileLanguage {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.mobileHeader .mobileLanguage a {
  margin: 0 10px;
  color: #627695;
}

.sideBtns {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 99;
}

@media (max-width: 640px) {
  .sideBtns {
    right: 20px;
    bottom: 100px;
  }
}

.sideBtns .socialList {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.sideBtns .socialList.open {
  opacity: 1;
  pointer-events: auto;
}

.sideBtns .socialList a {
  width: 42px;
  height: 42px;
  margin: 10px auto;
  display: block;
}

.sideBtns .sideSocial {
  transition: all 0.5s ease-in-out;
}

.sideBtns li {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 28px;
  transition: all 0.5s ease-in-out;
  margin: 10px 0;
  cursor: pointer;
}

.sideBtns li a {
  align-items: center;
  display: flex;
  justify-content: center;
}

.sideBtns li img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.sideBtns li.toTop {
  margin-top: 20px;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
}

.sideBtns li.show {
  opacity: 1;
  pointer-events: auto;
}

footer {
  background-image: url("../assets/images/footerBg.png");
  background-size: cover;
  background-position: center;
  max-width: 1920px;
  margin: 0 auto;
}

footer .contentBox {
  padding: 60px 0 20px;
}

@media (max-width: 640px) {
  footer .contentBox {
    padding: 40px 0;
  }
}

footer .topBox {
  margin-bottom: 60px;
}

footer .topBox .logo {
  width: 200px;
  margin: 0 auto;
}

footer .topBox .logo img {
  max-width: 100%;
}

footer .middleBox,
footer .bottomBox {
  max-width: 925px;
  margin: 0 auto;
}

footer .sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  row-gap: 20px;
  margin-bottom: 40px;
}

footer .sitemap li {
  flex: 1;
}

@media (max-width: 768px) {
  footer .sitemap li {
    text-align: center;
  }
}

@media (max-width: 640px) {
  footer .sitemap li {
    flex: auto;
    width: 50%;
  }
}

footer .sitemap li a {
  color: #fff;
  font-size: 18px;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  footer .sitemap li a:hover {
    color: #d1baa2;
  }
}

footer .infoBox {
  margin-top: 25px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  footer .infoBox {
    flex-direction: column;
    gap: 20px;
  }
}

footer .infoBox li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 500;
  letter-spacing: 1.6px;
}

@media (min-width: 1181px) {
  footer .infoBox li:hover a {
    color: #d1baa2;
  }
}

footer .socialBox {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer .copyrightBox {
  color: #fff;
}

footer .copyright {
  padding: 12px 0;
  font-family: "Noto Serif TC", sans-serif;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.2px;
}

@media (max-width: 640px) {
  footer .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.modal {
  position: absolute;
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  pointer-events: none;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.modalMask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  transition: all 0.5s ease-in-out;
}

.modalMask.show {
  opacity: 1;
  pointer-events: auto;
}

.modalBox {
  border: none;
  position: fixed;
  width: 450px;
  max-width: 90vw;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  z-index: 10001;
  transition: all 0.5s ease-in-out;
}

.modalBox.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .modalBox {
    height: 220px;
  }
}

.modalClose {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1181px) {
  .modalClose:hover a {
    color: #fff;
  }
}

.modalHeader {
  align-items: center;
  background-color: #627695;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  position: relative;
}

.modalHeader svg {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.modalBody {
  padding: 30px;
}

.modalBody .modalSearchBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.modalBody .modalSearchBox input {
  width: 100%;
  padding: 10px 20px;
  border: none;
  border-bottom: 1px solid #627695;
}

.modalBody .modalSearchBox .btnBox {
  flex: 0.5;
}

.modalBody .modalSearchBox .btnBox .btn {
  min-width: 180px;
  height: 30px;
  font-size: 14px;
}

.btnBox {
  align-items: center;
  display: flex;
}

.btnBox.center {
  justify-content: center;
}

.btnBox.back {
  justify-content: flex-end;
}

.btnBox.back .btn {
  min-width: 180px;
  width: 180px;
  height: 40px;
  padding: 0 15px;
  font-size: 14px;
}

.btnBox.back .btn img {
  transform: scaleX(-1);
}

.btnBox .btn {
  cursor: pointer;
  border-radius: 25px;
  border-top-left-radius: 0;
  padding: 0 40px;
  min-width: 245px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  color: #fff;
  letter-spacing: 1.76px;
  font-family: "CormorantRoman";
  background-image: linear-gradient(to left, #ffdeb3 0%, #be916a 50%, #ffdeb3 100%);
  text-shadow: 0px 3px 7.84px rgba(0, 0, 0, 0.35);
  transition: all 0.5s ease-in-out;
}

.btnBox .btn img {
  max-width: 25px;
}

@media (min-width: 1181px) {
  .btnBox .btn:hover {
    transform: translateX(-10px);
  }
}

.titleBox {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}

.titleBox .subtitle {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 6.4px;
}

@media (max-width: 1440px) {
  .titleBox .subtitle {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .titleBox .subtitle {
    font-size: 48px;
  }
}

.titleBox .title {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 3.6px;
}

@media (max-width: 1440px) {
  .titleBox .title {
    font-size: 30px;
  }
}

.bread {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0 auto 50px;
  color: #fff;
  gap: 4px;
}

@media (max-width: 640px) {
  .bread {
    align-items: flex-end;
    flex-direction: column;
    margin: 0 auto 20px;
  }

  .bread .divider {
    display: none;
  }
}

.bread li,
.bread a {
  font-size: 16px;
  color: #fff;
}

.bread a {
  transition: all 0.5s ease-in-out;
}

.bread a:has(img) {
  font-size: 0;
}

@media (min-width: 1181px) {
  .bread a:hover {
    color: #627695;
  }
}

.bread .divider {
  margin: 0 5px;
}

.breadBox {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.insBox {
  position: relative;
}

.insBox .bgDeco1 {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 640px) {
  .insBox .bgDeco1 {
    display: none;
  }
}

.insBox .bgDeco2 {
  position: absolute;
  right: 10%;
  top: 20%;
}

@media (max-width: 640px) {
  .insBox .bgDeco2 {
    display: none;
  }
}

.insBox .bgDeco3 {
  position: absolute;
  left: 10%;
  top: 65%;
}

@media (max-width: 640px) {
  .insBox .bgDeco3 {
    display: none;
  }
}

.insBox .bgDeco4 {
  position: absolute;
  left: 15%;
  bottom: 0;
}

@media (max-width: 640px) {
  .insBox .bgDeco4 {
    display: none;
  }
}

.insBanner {
  position: relative;
  height: 460px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}

@media (max-width: 1180px) {
  .insBanner {
    height: 360px;
  }
}

.insBanner .leftBox,
.insBanner .rightBox {
  width: 50%;
  height: 100%;
}

.insBanner .leftBox {
  display: flex;
  align-items: center;
}

@media (max-width: 1180px) {
  .insBanner .leftBox {
    padding-left: 30px;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .insBanner .leftBox {
    width: 100%;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1180px) {
  .insBanner .rightBox {
    width: 55%;
  }
}

@media (max-width: 768px) {
  .insBanner .rightBox {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    opacity: 0.5;
  }
}

.insBanner .rightBox img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .insBanner {
    padding: 60px 0;
  }
}

.insBanner .insTitleBox {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  position: relative;
}

.insBanner .insTitleBox:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background-image: url("../assets/images/decoBanner.png");
  background-position: center;
}

@media (max-width: 768px) {
  .insBanner .insTitleBox {
    margin-left: 0;
  }
}

.insBanner .subtitle {
  font-size: 70px;
  text-shadow: 0px 3px 5.58px rgba(25, 25, 25, 0.34);
  color: #fff;
  line-height: 0.78571;
}

@media (max-width: 640px) {
  .insBanner .subtitle {
    font-size: 50px;
  }
}

.insBanner .title {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 3.6px;
}

.insContent {
  display: grid;
  grid-template-columns: 20% 1fr;
  column-gap: 80px;
  padding-top: 100px;
  position: relative;
}

.insContent>* {
  position: relative;
  z-index: 2;
}

.insContent:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 150%;
  right: -40%;
  border-radius: 32px;
  background-image: linear-gradient(to bottom, rgba(236, 243, 255, 0.35) 30%, transparent 100%);
  z-index: 1;
}

@media (max-width: 1536px) {
  .insContent {
    padding-top: 40px;
    column-gap: 0;
  }
}

@media (max-width: 1180px) {
  .insContent {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
}

@media (max-width: 640px) {
  .insContent {
    padding-top: 20px;
  }
}

.insContent.noSide {
  grid-template-columns: 100%;
}

@media (max-width: 640px) {
  .insContent .leftBox {
    padding-top: 40px;
  }
}

.blockTitleBox {
  text-align: center;
  background-color: #627695;
  position: relative;
}

.blockTitleBox.horizontal {
  display: flex;
  align-items: center;
  padding-left: 30px;
  height: 40px;
}

.blockTitleBox.horizontal .deco {
  width: 10px;
  height: 40px;
  background-color: #e06665;
  position: absolute;
  left: 0;
  top: 0;
}

.blockTitleBox.horizontal .blockTitle {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.4px;
}

.viewBox {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  color: #627695;
  font-size: 16px;
  margin: 20px 0;
}

.viewBox svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.sideBox .titleBox {
  margin-left: 0;
  margin-right: auto;
}

.sideBox .titleBox .title {
  color: #627695;
  font-size: 24px;
  font-weight: 600;
  padding-left: 20px;
  letter-spacing: 2.4px;
  border-bottom: 2px dashed #627695;
  width: 100%;
  margin-bottom: 20px;
}

.sideBox .blockTitleBox {
  margin-top: 40px;
}

@media (max-width: 1180px) {
  .sideBox .sideMenu {
    display: none;
  }
}

.sideBox .sideMenu>li {
  color: #7b7b7b;
  font-size: 18px;
  padding: 10px 20px;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}

.sideBox .sideMenu>li:after {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  background-color: #e06665;
  left: 0;
  top: 0;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 3px 6.86px 0.14px rgba(83, 61, 32, 0.38);
}

.sideBox .sideMenu>li a {
  width: 100%;
  position: relative;
  color: currentColor;
  display: block;
  max-width: 90%;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

@media (min-width: 1181px) {
  .sideBox .sideMenu>li a:hover {
    color: #627695;
  }
}

.sideBox .sideMenu>li.hasChild {
  background-color: #fff;
  color: #96775c;
  border-radius: 24px;
  text-align: left;
  font-weight: 700;
}

.sideBox .sideMenu>li.hasChild>a:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #b5b5b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "+";
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
}

.sideBox .sideMenu>li.hasChild>a.open:before {
  content: "";
  position: absolute;
  content: "-";
}

.sideBox .sideMenu>li.current {
  color: #fff;
}

.sideBox .sideMenu>li.current>a {
  font-weight: 500;
}

.sideBox .sideMenu>li.current:after {
  content: "";
  position: absolute;
  opacity: 1;
}

.sideBox .sideMenu .child {
  display: none;
  padding: 10px;
}

.sideBox .sideMenu .child a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 30px;
  margin-bottom: 5px;
  width: fit-content;
  border-radius: 24px;
  position: relative;
  margin-left: auto;
  color: #627695;
  line-height: 1;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .sideBox .sideMenu .child a:hover {
    background-color: #627695;
    color: #fff;
  }
}

.sideBox .sideMenu .child a.current {
  background-color: #627695;
  color: #fff;
}

.sideBox .sideMenuBtn {
  margin: 30px 0;
  display: none;
}

@media (min-width: 1181px) {
  .sideBox .sideMenuBtn {
    display: none;
  }
}

.sideBox .sideMenuBtn button {
  cursor: pointer;
  background-color: #627695;
  border: 2px solid #627695;
}

@media (max-width: 1024px) {
  .sideBox .sideMenuBtn button {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .sideBox .sideMenuBtn+.sideMenu {
    margin-top: 30px;
  }
}

.sideBox .sideInputBox {
  margin-top: 20px;
  display: flex;
  padding: 5px 15px;
  background-color: #edebeb;
  justify-content: space-between;
}

.sideBox .sideInputBox button {
  background-color: transparent;
  border: none;
}

.sideBox .sideInput {
  border: none;
  background-color: transparent;
  display: flex;
  padding: 5px 15px;
  color: #627595;
  width: auto;
}

@media (max-width: 1180px) {
  .sideBox .sideInput {
    width: 100%;
  }
}

.sideBox .sideInput i {
  border-right: 1px solid #627595;
  padding-right: 10px;
}

.sideBox .sideInput input {
  border: none;
  padding: 0 5px;
  color: #627595;
  font-size: 14px;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 1.68px;
}

.sideBox .sideInput input::-webkit-input-placeholder {
  color: #627595;
}

.sideBox .sideInput input:-moz-placeholder {
  color: #627595;
}

.sideBox .sideInput input::-moz-placeholder {
  color: #627595;
}

.sideBox .sideInput input:-ms-input-placeholder {
  color: #627595;
}

.sideBox .sideInput input:focus {
  outline: none;
}

.sideBox .sideFilter {
  border-bottom: 1px solid #608587;
  display: flex;
  padding: 5px 15px;
  color: #608587;
  width: fit-content;
  max-width: 150px;
  margin: 60px auto 0;
}

.sideBox .sideFilter i {
  border-right: 1px solid #608587;
  padding-right: 10px;
}

.sideBox .sideFilter select {
  border: none;
  padding: 0 5px;
  color: #608587;
  font-size: 14px;
  letter-spacing: 1.68px;
}

.backBox {
  display: flex;
  justify-content: flex-end;
  margin: 100px 0;
}

.textEditor {
  color: #000;
}

.textEditor p {
  color: #495f83;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(32 / 18);
  letter-spacing: 1.28px;
}

.textEditor img {
  height: auto;
  max-width: 100%;
}

.tabList {
  display: flex;
  margin-bottom: 30px;
  width: 100%;
}

.tabItem {
  border-radius: 20px;
  padding: 15px 30px;
  background-color: #627595;
  color: #fff;
  width: 100%;
}

.pageList {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.pageList li {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 10px;
  width: 35px;
  height: 35px;
  transition: all 0.5s ease-in-out;
  font-weight: 600;
  position: relative;
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  transition: all 0.5s ease-in-out;
  line-height: 1;
}

.pageList li a {
  color: currentColor;
  z-index: 2;
}

.pageList li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.pageList li.current {
  border-color: #496ea8;
  background-color: #496ea8;
}

@media (min-width: 1181px) {
  .pageList li:hover {
    border-color: #496ea8;
    background-color: #496ea8;
  }
}

.pageList a {
  font-size: 20px;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}

.formItem {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 10px;
  border-bottom: 1px solid #c8c8c8;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 640px) {
  .formItem {
    padding: 10px;
  }
}

.formItem.textarea {
  align-items: flex-start;
}

.formItem label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-right: 30px;
  letter-spacing: 1.44px;
}

.formItem select {
  padding: 5px 30px;
  background-color: #f7f7f7;
  border: none;
  border-bottom: 1px solid #c8c8c8;
}

.formItem input[type="radio"] {
  width: auto;
  flex: initial;
  margin-right: 10px;
}

.formItem input[type="radio"]+label {
  margin-right: 10px;
}

.formItem input,
.formItem textarea {
  font-family: 'fgdc';
  font-size: 18px;
  letter-spacing: 1.44px;
  font-weight: 700;
  background-color: transparent;
  border: none;
  width: max-content;
  flex: 1;
  padding: 0 30px;
}

.formItem input:focus,
.formItem textarea:focus {
  outline: none;
}

.formItem textarea {
  border: 1px solid #c8c8c8;
}

.formItem2 {
  background-color: #f8f8f8;
  border-bottom: none;
  margin-bottom: 15px;
}

.formRadioBox {
  display: flex;
}

.formRadio {
  cursor: pointer;
  padding: 5px 15px;
  border: 1px solid #627695;
  color: #627695;
  background-color: #fff;
  margin-right: 10px;
}

.formRadio.selected {
  background-color: #627695;
  color: #fff;
}

.rwdTable {
  max-width: 100%;
  overflow-x: scroll;
}

.rwdTable table * {
  word-break: keep-all;
}

@media (max-width: 640px) {
  .rwdTable table th {
    min-width: 150px;
    width: 100% !important;
  }
}

.table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}

.table th {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  letter-spacing: 0.48px;
}

.table td {
  text-align: center;
  position: relative;
}

.table tbody {
  padding: 10px 15px;
}

.table select {
  padding: 2.5px 10px;
  border: none;
  border-bottom: 1px solid #303030;
}

.table .productImg {
  height: 150px;
  width: 150px;
  object-fit: contain;
}

.table .iconBtn {
  cursor: pointer;
  color: #9c9c9c;
  border: none;
  background-color: transparent;
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .table .iconBtn:hover {
    color: #627695;
  }
}

.table.table2 {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table.table2 thead {
  background-color: #627595;
}

.table.table2 tbody {
  background-color: #fff;
}

.table.table2 th {
  color: #fff;
  padding: 5px;
}

.table.table2 tr:nth-child(odd) {
  background-color: transparent;
}

.table.table2 tr:nth-child(even) {
  background-color: #f5f5f5;
}

.table.table2 td {
  color: #797a7a;
  padding: 10px 0;
}

.table.table2 td:after {
  content: "";
  position: absolute;
  display: none;
}

.orderSteps {
  padding: 20px 0;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .orderSteps {
    display: none;
  }
}

.orderSteps .topBox {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.orderSteps .orderStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 70px;
  border: 1px solid #7b7b7b;
  padding: 35px 0;
  position: relative;
}

.orderSteps .orderStep:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  background-image: url("../assets/images/stepArrow.png");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.orderSteps .orderStep:last-child:after {
  content: "";
  position: absolute;
  display: none;
}

.orderSteps .orderStep.current {
  color: #fff;
  background-color: #fd8685;
  border: 5px solid #e46a69;
}

.orderSteps .orderStep.current .stepIcon img {
  filter: brightness(0) invert(1);
}

.orderSteps .orderStep.current .stepTxt {
  color: #fff;
}

.orderSteps .orderStep .stepIcon {
  margin-bottom: 20px;
}

.orderSteps .orderStep .stepIcon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.orderSteps .orderStep .stepTxt {
  color: #7b7b7b;
  font-weight: 500;
  letter-spacing: 1.92px;
}

.albumBox {
  display: none;
}