* {
  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 slowShowLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

body {
  background-image: url("../assets/images/pageBg.jpg");
  font-family: "Inconsolata", Noto Sans TC, sans-serif;
  font-size: 16px; }
  body a {
    transition: all 0.5s ease-in-out; }
    @media (min-width: 1281px) {
      body a:hover {
        color: #f19148; } }
  body.scroll-disabled, body.isLoading {
    overflow: hidden; }

.loading {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 0;
  position: fixed;
  pointer-events: initial;
  top: 0;
  transition: all 0.5s ease-in-out;
  left: 0;
  width: 100%;
  z-index: 9999; }
  .loading.show {
    opacity: 1;
    pointer-events: none; }
    .loading.show .loading-logo {
      animation: slowShowLeft 1s ease-in-out forwards; }
  .loading-logo {
    margin: auto;
    max-width: 300px;
    opacity: 0;
    transition: all 0.5s ease-in-out; }
    .loading-logo img {
      width: 100%; }

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px; }
  @media (max-width: 768px) {
    .wrap {
      max-width: 95vw;
      padding: 0 20px; } }

header {
  padding: 40px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99; }
  @media (max-width: 1024px) {
    header {
      display: none; } }
  header .bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none; }
  header .wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; }
  header .logo {
    display: block;
    max-width: 220px;
    margin-right: 120px; }
  header nav {
    align-items: center;
    display: flex;
    width: 100%; }
    header nav ul.main {
      display: flex;
      justify-content: space-between; }
      header nav ul.main > li {
        margin: 0 20px;
        padding-bottom: 10px;
        position: relative; }
        @media (min-width: 1281px) {
          header nav ul.main > li:hover .deco {
            opacity: 1; }
          header nav ul.main > li:hover > a .subtitle {
            color: #c71417; } }
        header nav ul.main > li:has(.current) .deco {
          opacity: 1; }
        header nav ul.main > li:has(.current) > a .subtitle {
          color: #c71417; }
        header nav ul.main > li .deco {
          position: absolute;
          z-index: 1;
          top: 70%;
          opacity: 0;
          transform: translateY(-50%);
          transition: all 0.5s ease-in-out; }
        header nav ul.main > li > a {
          align-items: center;
          display: flex;
          flex-direction: column;
          position: relative;
          z-index: 2; }
          header nav ul.main > li > a .title {
            color: #000;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            word-break: keep-all;
            letter-spacing: 1.92px; }
          header nav ul.main > li > a .subtitle {
            color: #000;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 1.12px;
            transition: all 0.5s ease-in-out; }
        header nav ul.main > li .submenu {
          opacity: 0;
          pointer-events: none;
          position: absolute;
          display: flex;
          flex-direction: column;
          width: 140px;
          top: 100%;
          left: 0%;
          transform: translateX(-25%);
          background-color: rgba(241, 145, 72, 0.85);
          border-radius: 20px;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          overflow: hidden;
          padding: 12px 10px;
          transition: all 0.5s ease-in-out; }
          header nav ul.main > li .submenu:before {
            content: "";
            position: absolute;
            width: 60%;
            left: 20%;
            top: 0;
            height: 5px;
            background-color: #c71417; }
          header nav ul.main > li .submenu.open {
            opacity: 1;
            pointer-events: auto; }
          header nav ul.main > li .submenu li {
            text-align: center;
            padding: 5px 10px;
            position: relative; }
            @media (min-width: 1281px) {
              header nav ul.main > li .submenu li:hover a {
                opacity: 1; } }
            header nav ul.main > li .submenu li a {
              color: #000;
              font-size: 14px;
              opacity: 0.5;
              letter-spacing: 1.68px;
              transition: all 0.5s ease-in-out; }
    header nav ul.fnc {
      align-items: center;
      display: flex; }
      header nav ul.fnc li {
        width: 25px;
        margin: 0 3px;
        position: relative;
        padding: 10px 0; }
  header .cartDropdown {
    background-color: rgba(176, 219, 240, 0.85);
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out; }
    header .cartDropdown.open {
      opacity: 1;
      pointer-events: auto; }
    header .cartDropdownBox {
      padding: 25px; }
    header .cartDropdown .cartItem {
      align-items: center;
      display: flex; }
      header .cartDropdown .cartItem .imgBox {
        height: 80px;
        width: 80px; }
        header .cartDropdown .cartItem .imgBox img {
          height: 100%;
          width: 100%;
          object-fit: contain; }
      header .cartDropdown .cartItem .title {
        font-size: 16px; }
  header .cartBtn {
    text-align: center; }
  header .language {
    display: flex;
    position: absolute;
    right: 10%; }
    @media (max-width: 1680px) {
      header .language {
        right: 5%; } }
    @media (max-width: 1440px) {
      header .language {
        right: 2%; } }
    header .language a {
      color: #f19148;
      margin: 0 10px;
      transition: all 0.5s ease-in-out; }
      @media (max-width: 1440px) {
        header .language a {
          font-size: 12px;
          margin: 0 5px; } }
      @media (min-width: 1281px) {
        header .language a:hover {
          color: #c71417; } }

.mobileHeader {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50; }
  @media (min-width: 1025px) {
    .mobileHeader {
      display: none; } }
  .mobileHeader .logo {
    align-items: center;
    display: flex;
    max-width: 300px; }
    @media (max-width: 640px) {
      .mobileHeader .logo {
        max-width: 180px; } }
    .mobileHeader .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain; }

.mobileMenuTrigger {
  height: 30px;
  width: 30px;
  position: relative; }
  .mobileMenuTrigger.open span {
    background-color: transparent; }
    .mobileMenuTrigger.open span:before {
      content: "";
      position: absolute;
      top: 0;
      transform: rotate(45deg); }
    .mobileMenuTrigger.open span:after {
      content: "";
      position: absolute;
      bottom: 0;
      transform: rotate(-45deg); }
  .mobileMenuTrigger span {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateX(-50%);
    margin-top: -0.5px;
    width: 26px;
    height: 2px;
    background-color: #f19148;
    transition: all 0.5s; }
    .mobileMenuTrigger span:before, .mobileMenuTrigger span:after {
      background: #f19148;
      left: 0;
      width: 100%;
      height: 2px;
      transition: all 0.5s; }
    .mobileMenuTrigger span:before {
      content: "";
      position: absolute;
      top: -7px; }
    .mobileMenuTrigger span:after {
      content: "";
      position: absolute;
      bottom: -7px; }

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

.mobileMenuList li {
  color: #000;
  font-size: 18px;
  padding: 12px 0;
  position: relative;
  letter-spacing: 1.08px; }
  .mobileMenuList li a {
    display: block; }
  .mobileMenuList li.hasSubmenu > a {
    display: block;
    position: relative;
    width: 100%; }
    .mobileMenuList li.hasSubmenu > a:after {
      content: "";
      position: absolute;
      color: #c71417;
      content: "+";
      align-items: center;
      display: flex;
      justify-content: center;
      font-size: 20px;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      height: 20px;
      width: 20px;
      object-fit: contain; }
  .mobileMenuList li.hasSubmenu.open > a:after {
    content: "";
    position: absolute;
    content: "-"; }

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

.mobileMenuMask {
  background-color: rgba(241, 145, 72, 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; }
  .mobileMenuMask.show {
    opacity: 1;
    pointer-events: auto; }

.mobileMenuFnc {
  display: flex;
  justify-content: center;
  margin-top: 20px; }
  .mobileMenuFnc li {
    margin: 0 10px; }

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

.mobileLanguage {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px 0; }
  .mobileLanguage a {
    margin: 0 10px;
    color: #f19148; }

.sideBtns {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 99;
  /* li {
        align-items: center;
        display: flex;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: $secondaryColor;
        border-radius: 50%;
        color: #fff;
        font-size: 28px;
        transition: $ts;
        margin: 10px 0;

        a {
            align-items: center;
            display: flex;
            justify-content: center;
        }

        img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        &.toTop {
            opacity: 0;
            pointer-events: none;
        }

        &.show {
            opacity: 1;
            pointer-events: auto;
        }
    } */ }
  @media (max-width: 640px) {
    .sideBtns {
      right: 20px;
      bottom: 100px; } }
  .sideBtns .socialList {
    display: none; }
    .sideBtns .socialList li {
      border: 3px solid #c71417;
      background-color: transparent; }

footer {
  padding-top: 30px;
  background-image: url("../assets/images/footerBg.png"); }
  footer .wrap {
    align-items: center;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 1024px) {
      footer .wrap {
        align-items: flex-start; } }
    @media (max-width: 768px) {
      footer .wrap {
        flex-direction: column; } }
  footer .logo {
    max-width: 300px;
    margin-right: 100px; }
    @media (max-width: 768px) {
      footer .logo {
        margin-right: 0; } }
  footer .centerBox {
    flex: 1; }
  footer .sitemap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px; }
    footer .sitemap li {
      color: #000;
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 5px;
      width: calc(100% / 5);
      letter-spacing: 1.8px; }
      @media (max-width: 768px) {
        footer .sitemap li {
          text-align: center; } }
  footer .contactList {
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 1024px) {
      footer .contactList {
        flex-direction: column;
        margin-bottom: 20px; } }
    footer .contactList > li {
      color: #000;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 15px;
      width: calc(100% / 3); }
      @media (max-width: 1024px) {
        footer .contactList > li {
          width: 100%; } }
      footer .contactList > li img {
        height: 15px;
        width: 20px;
        object-fit: contain;
        margin-right: 10px; }
      footer .contactList > li.social {
        margin-left: auto; }
    footer .contactList .socials {
      display: flex; }
      @media (max-width: 768px) {
        footer .contactList .socials {
          justify-content: center;
          margin: 10px 0; } }
      footer .contactList .socials li {
        margin: 0 5px;
        width: 30px;
        height: 30px; }
        footer .contactList .socials li img {
          width: 25px;
          height: 25px;
          object-fit: contain; }
  footer .copyright {
    background-color: #c71417;
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
    margin-top: 15px;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    letter-spacing: 1.2px; }

.btn {
  border: none;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center; }
  @media (min-width: 1281px) {
    .btn:hover {
      transform: translateX(-20px); } }
  @media (min-width: 1281px) {
    .btn.back:hover img {
      transform: translateX(-20px) scaleX(-1); } }
  .btn.back img {
    transform: scaleX(-1);
    transition: all 0.5s ease-in-out; }
  .btn.main {
    background-color: #c71417;
    width: fit-content;
    color: #fff;
    font-size: 14px;
    padding: 5px 35px;
    border-radius: 8px; }
    .btn.main .btnIcon {
      margin-right: 10px; }

.titleBox {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 50px;
  width: fit-content; }
  @media (max-width: 768px) {
    .titleBox {
      margin-left: 80px; } }
  @media (max-width: 640px) {
    .titleBox {
      padding: 0 40px; } }
  .titleBox.noPadding {
    padding: 0; }
  .titleBox.noPic .subtitle {
    font-weight: 500;
    padding-bottom: 5px; }
    .titleBox.noPic .subtitle:before {
      content: "";
      position: absolute;
      width: 120%;
      height: 1px;
      background-color: #c71417;
      bottom: 0;
      left: -20%; }
  .titleBox.noPic:before {
    content: "";
    position: absolute;
    display: none; }
  .titleBox:before {
    content: "";
    position: absolute;
    content: url("../assets/images/titleBoxDeco.png");
    top: -15px;
    left: -80px; }
  .titleBox.small .title {
    font-size: 40px;
    letter-spacing: 2px; }
  .titleBox .subtitle {
    color: #000;
    font-family: "Inconsolata", Noto Sans TC, sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 3.84px; }
    @media (max-width: 768px) {
      .titleBox .subtitle {
        font-size: 48px; } }
  .titleBox .title {
    color: #000;
    font-size: 24px;
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 700;
    position: relative;
    letter-spacing: 2.16px; }
    @media (max-width: 768px) {
      .titleBox .title {
        font-size: 16px; } }
  .titleBox .deco {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    padding-left: 100px;
    font-weight: 700;
    font-size: 14px;
    font-family: "Inconsolata", Noto Sans TC, sans-serif;
    width: 100%;
    letter-spacing: 1.4px; }
    @media (max-width: 640px) {
      .titleBox .deco {
        transform: none;
        margin-top: 40px;
        position: relative;
        top: auto;
        left: auto; } }
    .titleBox .deco:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 80px;
      height: 1px;
      background-color: #000; }
    .titleBox .deco:has(p) {
      top: 80%;
      width: 150%; }
      @media (max-width: 1024px) {
        .titleBox .deco:has(p) {
          width: 100%; } }
      .titleBox .deco:has(p):before {
        content: "";
        position: absolute;
        top: 10px;
        transform: translateY(0); }
    .titleBox .deco p {
      font-size: 11px;
      color: #c71417; }
      @media (max-width: 640px) {
        .titleBox .deco p {
          margin-left: -100px; } }

.bread {
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .bread li,
  .bread a {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1.6px; }
  .bread .divider {
    margin: 0 5px; }
  .breadBox {
    align-items: center;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 640px) {
      .breadBox {
        flex-direction: column; } }
    .breadBox .titleBox {
      margin-bottom: 0;
      margin-left: 80px; }
      @media (max-width: 640px) {
        .breadBox .titleBox {
          margin-bottom: 20px; } }
      .breadBox .titleBox::before {
        z-index: 2; }
      .breadBox .titleBox .subtitle {
        color: #c71417; }

.insBox {
  background-image: url("../assets/images/insBanner.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 245px 0 120px; }
  @media (max-width: 1366px) {
    .insBox {
      padding: 200px 0 100px; } }
  @media (max-width: 1180px) {
    .insBox {
      padding: 150px 0 40px; } }
  @media (max-width: 640px) {
    .insBox {
      padding: 100px 0 40px; } }

.insTitle {
  font-weight: 700;
  color: #398083;
  font-size: 25px;
  letter-spacing: 1.5px; }
  @media (max-width: 640px) {
    .insTitle {
      font-size: 20px;
      letter-spacing: 1px; } }
  .insTitleBox {
    align-items: center;
    display: flex;
    margin-bottom: 25px; }
    .insTitleBox .logo {
      height: 60px;
      width: 60px;
      margin-right: 15px; }
      @media (max-width: 640px) {
        .insTitleBox .logo {
          display: none; } }
      .insTitleBox .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain; }

.insContent {
  display: grid;
  grid-template-columns: 25% 75%;
  padding-top: 80px; }
  @media (max-width: 1180px) {
    .insContent {
      grid-template-columns: 100%; } }
  @media (max-width: 640px) {
    .insContent {
      padding-top: 20px; } }
  .insContent.noSide {
    grid-template-columns: 100%; }
  .insContent:not(.noSide) {
    padding: 180px 0 50px; }
    @media (max-width: 640px) {
      .insContent:not(.noSide) {
        padding: 20px 0; } }
    .insContent:not(.noSide) .contentBox {
      padding: 0; }
  .insContent .contentBox {
    padding: 100px 0; }
    @media (max-width: 1440px) {
      .insContent .contentBox {
        padding: 80px 0; } }
    @media (max-width: 1180px) {
      .insContent .contentBox {
        padding: 40px 0; } }
  .insContent .pageTitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.6px; }

.viewBox {
  align-items: center;
  display: flex;
  font-size: 16px;
  margin-top: 10px;
  color: #000;
  font-weight: 900;
  font-family: "Inconsolata", Noto Sans TC, sans-serif; }
  .viewBox i {
    color: #c4c4c4;
    margin-right: 10px; }

.sideBox .titleBox {
  padding: 0; }
  .sideBox .titleBox:before {
    content: "";
    position: absolute;
    content: url("../assets/images/decoTitle.png");
    left: -220px; }
  .sideBox .titleBox .title {
    font-size: 46px; }
    @media (max-width: 1536px) {
      .sideBox .titleBox .title {
        font-size: 40px; } }

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

.sideBox .sideMenu li {
  padding: 5px 30px;
  margin-bottom: 5px;
  position: relative;
  width: 100%;
  max-width: 250px;
  transition: all 0.5s ease-in-out;
  color: rgba(2, 2, 2, 0.6); }
  .sideBox .sideMenu li a {
    color: currentColor;
    font-weight: 400;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
    position: relative;
    letter-spacing: 0.96px; }
    @media (min-width: 1281px) {
      .sideBox .sideMenu li a:hover {
        color: #c71417; } }
  .sideBox .sideMenu li > a:after {
    content: "";
    position: absolute;
    background-image: url("../assets/images/menuLogo.png");
    height: 15px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: -60px;
    opacity: 0;
    transition: all 0.5s ease-in-out; }
  @media (min-width: 1281px) {
    .sideBox .sideMenu li > a:hover:after {
      content: "";
      position: absolute;
      opacity: 1; } }
  .sideBox .sideMenu li.current > a {
    color: #c71417; }
    .sideBox .sideMenu li.current > a:after {
      content: "";
      position: absolute;
      opacity: 1; }
  .sideBox .sideMenu li.hasMenu > a {
    position: relative; }
    .sideBox .sideMenu li.hasMenu > a:before {
      content: "";
      position: absolute;
      background-image: url("../assets/images/arrowup.svg");
      background-size: contain;
      background-position: center;
      position: absolute;
      width: 36px;
      height: 36px;
      right: -50px;
      top: -10px;
      transition: all 0.5s ease-in-out; }
  .sideBox .sideMenu li.hasMenu.current > a::before {
    transform: rotate(180deg); }
  .sideBox .sideMenu li .submenu {
    padding: 5px; }

.sideBox .sideMenuBtn {
  margin: 10px 0; }
  @media (min-width: 1181px) {
    .sideBox .sideMenuBtn {
      display: none; } }
  .sideBox .sideMenuBtn button {
    border-radius: 5px;
    background-color: #c71417;
    padding: 5px 40px;
    width: fit-content;
    color: #fff;
    cursor: pointer; }
  @media (max-width: 1181px) {
    .sideBox .sideMenuBtn + .sideMenu {
      margin-top: 30px;
      padding-left: 40px; } }

.sideBox .sideMenu .submenu li {
  transition: all 0.5s ease-in-out; }
  @media (min-width: 1281px) {
    .sideBox .sideMenu .submenu li:hover {
      background-color: #d8d8d8; } }
  .sideBox .sideMenu .submenu li a:after {
    content: "";
    position: absolute;
    display: none; }

.sideBox .sideInputBox {
  margin-top: 20px; }

.sideBox .sideInput {
  border-bottom: 1px solid #c71417;
  display: flex;
  padding: 5px 15px;
  color: #c71417;
  width: fit-content;
  max-width: 150px; }
  .sideBox .sideInput i {
    border-right: 1px solid #c71417;
    padding-right: 10px; }
  .sideBox .sideInput input {
    border: none;
    padding: 0 5px;
    color: #c71417;
    font-size: 14px;
    width: fit-content;
    max-width: 100%;
    letter-spacing: 1.68px; }
    .sideBox .sideInput input::-webkit-input-placeholder {
      color: #c71417; }
    .sideBox .sideInput input:-moz-placeholder {
      color: #c71417; }
    .sideBox .sideInput input::-moz-placeholder {
      color: #c71417; }
    .sideBox .sideInput input:-ms-input-placeholder {
      color: #c71417; }
    .sideBox .sideInput input:focus {
      outline: none; }

.sideBox .sideFilter {
  border-bottom: 1px solid #c71417;
  display: flex;
  padding: 5px 15px;
  color: #c71417;
  width: fit-content;
  max-width: 150px; }
  .sideBox .sideFilter i {
    border-right: 1px solid #c71417;
    padding-right: 10px; }
  .sideBox .sideFilter select {
    border: none;
    padding: 0 5px;
    color: #c71417;
    font-size: 14px;
    letter-spacing: 1.68px; }

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

.textEditor {
  color: #000; }
  .textEditor p {
    color: #3b3b3b;
    font-size: 16px;
    line-height: calc(32 / 18);
    letter-spacing: 1.28px; }
  .textEditor img {
    height: auto;
    max-width: 100%; }

.cardTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26 / 18);
  margin: 20px 0;
  letter-spacing: 0.96px; }

.date {
  color: #2a7ca4;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px; }

.contentTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(27 / 20);
  letter-spacing: 1.2px; }

.tabList {
  display: flex;
  margin-bottom: 30px;
  width: 100%;
  position: relative; }
  .tabList:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    left: 0;
    bottom: 0;
    z-index: 1; }

.tabItem {
  border: 1px solid #d3d3d3;
  border-bottom: 1px solid #fff;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  padding: 5px 25px;
  width: fit-content;
  position: relative;
  z-index: 2; }

.pageList {
  align-items: baseline;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px; }
  .pageList li.current a {
    color: #c71417;
    font-size: 25px;
    padding: 0 25px;
    position: relative; }
    .pageList li.current a:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 60%;
      border-left: 2px solid #336077;
      border-right: 2px solid #336077;
      left: 50%;
      top: 0;
      transform: translateX(-50%) skewX(-20deg); }
  .pageList a {
    color: #f19148;
    font-size: 16px;
    font-weight: 700;
    margin: 0 5px;
    letter-spacing: 2.88px; }

.albumBox .titleBox {
  margin-bottom: 45px; }

.albumList {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  column-gap: 10px;
  row-gap: 15px; }
  @media (max-width: 640px) {
    .albumList {
      grid-template-columns: repeat(2, calc(50% - 10px)); } }
  .albumList a {
    display: block;
    position: relative; }
    @media (min-width: 1281px) {
      .albumList a:hover:before {
        content: "";
        position: absolute;
        opacity: 1; }
      .albumList a:hover:after {
        content: "";
        position: absolute;
        opacity: 1; } }
    .albumList a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-image: url("../assets/images/albumQuery.png");
      background-position: center center;
      background-size: 20px;
      background-repeat: no-repeat;
      opacity: 0;
      pointer-events: none;
      transition: all 0.5s ease-in-out;
      z-index: 3; }
    .albumList a:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-image: url("../assets/images/albumMask.png");
      background-size: cover;
      opacity: 0;
      pointer-events: none;
      transition: all 0.5s ease-in-out;
      z-index: 2; }
  .albumList img {
    max-width: 100%;
    height: 100%; }

.formItem {
  display: flex;
  padding: 10px 25px;
  margin-bottom: 20px;
  background-color: rgba(213, 213, 213, 0.5);
  transition: all 0.5s ease-in-out; }
  @media (max-width: 640px) {
    .formItem {
      padding: 10px; } }
  .formItem:focus-within {
    border-color: #c71417; }
  .formItem.textarea {
    margin-top: 20px; }
  .formItem label {
    font-size: 15px;
    margin-right: 15px;
    letter-spacing: 1.8px; }
  .formItem input,
  .formItem textarea {
    color: #bdbdbd;
    font-size: 14px;
    font-weight: 700;
    background-color: transparent;
    border: none;
    width: max-content;
    flex: 1; }
    .formItem input:focus,
    .formItem textarea:focus {
      outline: none; }
  .formItem2 {
    background-color: #f8f8f8;
    border-bottom: none;
    margin-bottom: 15px; }

.formRadioBox {
  display: flex; }

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

.formBtn {
  align-items: center;
  display: flex;
  font-weight: 700;
  margin-top: 80px;
  padding: 2.5px 50px;
  transition: all 0.5s ease-in-out;
  background-color: rgba(213, 213, 213, 0.5);
  z-index: 2;
  width: 200px;
  margin-left: auto; }
  .formBtn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  .formBtn span {
    font-size: 24px;
    font-weight: 900;
    color: #f19148;
    letter-spacing: 1.6px; }
  .formBtn img {
    height: 16px;
    width: 16px;
    margin-left: 10px; }

.rwdTable {
  max-width: 100%;
  overflow-x: auto; }
  .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 td:not(:first-child) {
      color: #fff; }
      .table td:not(:first-child) > * {
        position: relative;
        z-index: 2; }
      .table td:not(:first-child):after {
        content: "";
        position: absolute;
        position: absolute;
        width: 100%;
        top: 15%;
        left: 0;
        height: 70%;
        background-color: #c71417;
        z-index: 1; }
    .table td:last-child:after {
      content: "";
      position: absolute;
      width: 80%; }
  .table tbody {
    background-color: #edfaff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 10px 15px; }
  .table .productImg {
    height: 150px;
    width: 150px;
    object-fit: contain; }
  .table .iconBtn {
    cursor: pointer;
    color: #fff;
    border: none;
    background-color: transparent; }
  .table.table2 {
    border-collapse: separate;
    border-spacing: 0 10px; }
    .table.table2 thead {
      background-color: #c71417; }
    .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 {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 40px; }
  @media (max-width: 640px) {
    .orderSteps {
      display: none; } }

.orderStep {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .orderStep .stepIcon {
    margin-bottom: 15px; }
  .orderStep .stepTxt {
    color: #c71417;
    font-weight: 500; }

.productNum {
  align-items: center;
  display: flex;
  padding: 5px;
  background-color: #f4f4f4;
  margin: auto;
  justify-content: space-evenly; }
  .productNum button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0 5px; }
  .productNum input {
    background-color: transparent;
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    text-align: center;
    color: #f19148;
    font-size: 20px;
    font-weight: 700;
    max-width: 70px;
    margin: 0 5px; }
    @media (max-width: 640px) {
      .productNum input {
        max-width: 40px; } }
    .productNum input:focus {
      outline: none; }
  .productNum.disabled input {
    border: none; }
