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

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

a {
  text-decoration: none;
}

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

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

blockquote
{
	font-style: italic;
	font-family: Georgia, Times, "Times New Roman", serif;
	padding: 2px 0;
	border-style: solid;
	border-color: #ccc;
	border-width: 0;
  padding-left: 20px;
	padding-right: 8px;
	border-left-width: 5px;
}

a
{
	color: #0782C1;
}

ol,ul,dl
{
	/* IE7: reset rtl list margin. (#7334) */
	margin-right: 0px;
	/* Preserved spaces for list items with text direction different than the list. (#6249,#8049)*/
	padding: 0 40px;
}

h1,h2,h3,h4,h5,h6
{
	font-weight: normal;
	line-height: 1.2;
}

hr
{
	border: 0px;
	border-top: 1px solid #ccc;
}

img.right
{
	border: 1px solid #ccc;
	float: right;
	margin-left: 15px;
	padding: 5px;
}

img.left
{
	border: 1px solid #ccc;
	float: left;
	margin-right: 15px;
	padding: 5px;
}

pre
{
	white-space: pre-wrap; /* CSS 2.1 */
	word-wrap: break-word; /* IE7 */
	-moz-tab-size: 4;
	tab-size: 4;
}

.marker
{
	background-color: Yellow;
}

span[lang]
{
	font-style: italic;
}

figure
{
	text-align: center;
	outline: solid 1px #ccc;
	background: rgba(0,0,0,0.05);
	padding: 10px;
	margin: 10px 20px;
	display: inline-block;
}

figure > figcaption
{
	text-align: center;
	display: block; /* For IE8 */
}

/* Widget Styles */
.code-featured
{
	border: 5px solid red;
}

.math-featured
{
	padding: 20px;
	box-shadow: 0 0 2px rgba(200, 0, 0, 1);
	background-color: rgba(255, 0, 0, 0.05);
	margin: 10px;
}

.image-clean
{
	border: 0;
	background: none;
	padding: 0;
}

.image-clean > figcaption
{
	font-size: .9em;
	text-align: right;
}

.image-grayscale
{
	background-color: white;
	color: #666;
}

.image-grayscale img, img.image-grayscale
{
	filter: grayscale(100%);
}

.embed-240p
{
	max-width: 426px;
	max-height: 240px;
	margin:0 auto;
}

.embed-360p
{
	max-width: 640px;
	max-height: 360px;
	margin:0 auto;
}

.embed-480p
{
	max-width: 854px;
	max-height: 480px;
	margin:0 auto;
}

.embed-720p
{
	max-width: 1280px;
	max-height: 720px;
	margin:0 auto;
}

.embed-1080p
{
	max-width: 1920px;
	max-height: 1080px;
	margin:0 auto;
}


/* color */
/* font */
/* transition */
@keyframes slowShowLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

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

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

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

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

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

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

body:not(.home) .outerWrap {
  padding: 130px 0 180px;
}

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

.loading {
  align-items: center;
  background-color: #066292;
  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%;
}

.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: 170px 0 180px;
}

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

.outerWrap.show {
  opacity: 1;
}

.wrap {
  max-width: 1300px;
  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-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}

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

header:after {
  content: "";
  position: absolute;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
  width: 750px;
  height: 60px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1680px) {
  header:after {
    width: 40%;
  }
}

@media (max-width: 1280px) {
  header:after {
    width: 42%;
  }
}

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

header .wrap {
  width: 1470px;
  max-width: 1570px;
  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: 120px;
}

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

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

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

header .searchBox input:focus {
  outline: none;
}

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

@media (min-width: 1181px) {
  header .searchBox button:hover {
    color: #066292;
  }
}

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

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

header .cartList .cartNum {
  align-items: center;
  background-color: #066292;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 12px;
  height: 16px;
  justify-content: center;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 16px;
}

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

header .cartList svg {
  height: 20px;
  width: 20px;
  color: #fff;
  fill: #fff;
  transition: all 0.5s ease-in-out;
}

header .cartList a:hover svg {
  color: #066292;
  fill: #066292;
}

header .bottomBox {
  position: relative;
}

header .navList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

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

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

header .navList>li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #fff;
  left: 0;
  bottom: 5px;
  transform: scaleX(0);
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  header .navList>li:hover::after {
    transform: scaleX(1);
  }

  header .navList>li:hover a .title {
    color: #066292;
  }
}

header .navList>li.current::after {
  transform: scaleX(1);
}

header .navList>li>a {
  display: flex;
  flex-direction: column;
}

header .navList>li>a .title {
  color: #000;
  font-weight: 500;
  word-break: keep-all;
  transition: all 0.5s ease-in-out;
  letter-spacing: 1.92px;
}

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: #066292;
}

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

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

header .decoLine {
  clip-path: polygon(0 0, 99% 0, 100% 100%, 0 100%);
  background-image: -moz-linear-gradient(-177deg, #ecedea 0%, #f8f8f6 50%, #dcdbd8 100%);
  background-image: -webkit-linear-gradient(-177deg, #ecedea 0%, #f8f8f6 50%, #dcdbd8 100%);
  background-image: -ms-linear-gradient(-177deg, #ecedea 0%, #f8f8f6 50%, #dcdbd8 100%);
  width: 62.5%;
  height: 10px;
  margin-bottom: 6px;
}

header .decoLine2 {
  background-image: -moz-linear-gradient(50deg, #bebebe 0%, #eeeeee 50%, #d2d2d2 100%);
  background-image: -webkit-linear-gradient(50deg, #bebebe 0%, #eeeeee 50%, #d2d2d2 100%);
  background-image: -ms-linear-gradient(50deg, #bebebe 0%, #eeeeee 50%, #d2d2d2 100%);
  width: 100%;
  height: 40px;
  z-index: -1;
}

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

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

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

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

.mobileHeader .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.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: #066292;
  display: none;
  padding: 10px 0;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 50;
}

.mobileHeader .mobileMenuList {
  max-height: 70vh;
  overflow: auto;
}

.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 {
  content: "";
  position: absolute;
  color: #1fb29f;
  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;
}

.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(6, 98, 146, 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;
}

@media screen and (max-width: 414px) {
  .mobileHeader .mobileMenuFnc {
    flex-wrap: wrap;
    row-gap: 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: #066292;
  }
}

.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 {
  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: #066292;
}

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

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

.sideBtns .socialList {
  display: none;
}

.sideBtns .socialList a {
  width: 50px;
  height: 50px;
  margin: 10px 0;
  display: block;
  background-color: #fff;
}

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

.sideBtns .sideSocial.open {
  rotate: 180deg;
}

.sideBtns li {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  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 .contentBox {
  padding: 10px 0;
  background-image: url("../assets/images/footerBg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 25% center;
}

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

footer .topBox .logo {
  width: 370px;
}

@media (max-width: 640px) {
  footer .topBox .logo {
    width: 80vw;
  }
}

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

footer .bottomBox {
  display: flex;
  justify-content: space-between;
  padding: 0 75px 35px;
}

@media (max-width: 1180px) {
  footer .bottomBox {
    padding: 0 0 20px;
  }
}

@media (max-width: 640px) {
  footer .bottomBox {
    flex-direction: column;
    padding: 0;
  }
}

footer .bottomBox .title {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  color: #fff;
  font-size: 24px;
  max-width: 190px;
  margin-bottom: 15px;
}

footer .bottomBox .sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  footer .bottomBox .sitemap {
    margin-bottom: 40px;
  }
}

footer .bottomBox .sitemap a {
  color: #fff;
  transition: all 0.5s ease-in-out;
  letter-spacing: 1.6px;
}

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

footer .bottomBox .contactItem {
  margin-bottom: 20px;
}

footer .bottomBox .contactItem span,
footer .bottomBox .contactItem a {
  color: #fff;
  letter-spacing: 1.6px;
  transition: all 0.5s ease-in-out;
}

footer .bottomBox .contactItem span:first-child,
footer .bottomBox .contactItem a:first-child {
  font-size: 14px;
}

footer .bottomBox .contactItem span {
  display: inline-block;
  width: 50px;
}

footer .bottomBox .contactItem a {
  margin-left: 15px;
}

@media (min-width: 1181px) {
  footer .bottomBox .contactItem a:hover {
    color: #1fb29f;
  }
}

footer .copyrightBox {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% top;
  background-image: url("../assets/images/copyrightBg.jpg");
}

footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  text-align: center;
}

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

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

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

.btnBox .btn {
  cursor: pointer;
  border-radius: 25px;
  padding: 5px 40px;
  font-size: 24px;
  color: #fff;
  border: 2px solid #066292;
  background-color: #066292;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .btnBox .btn:hover {
    background-color: #fff;
    color: #066292;
  }
}

.btnBox .btn.small {
  padding: 5px 30px;
  font-size: 18px;
}

.btnBox .btn.btn2 {
  color: #066292;
  background-color: transparent;
}

@media (min-width: 1181px) {
  .btnBox .btn.btn2:hover {
    background-color: #066292;
    color: #fff;
  }
}

.titleBox {
  display: flex;
  flex-direction: column;
  width: fit-content;
  position: relative;
  color: #fff;
}

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

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

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

.titleBox .title {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 1.3px;
}

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

.bread {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 50px;
  list-style: none;
}

.bread li,
.bread a {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  letter-spacing: 1.4px;
}

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

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

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

.breadBox {
  height: 40px;
  background-image: -moz-linear-gradient(50deg, #bebebe 0%, #eeeeee 50%, #d2d2d2 100%);
  background-image: -webkit-linear-gradient(50deg, #bebebe 0%, #eeeeee 50%, #d2d2d2 100%);
  background-image: -ms-linear-gradient(50deg, #bebebe 0%, #eeeeee 50%, #d2d2d2 100%);
  align-items: flex-end;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.insBox {
  position: relative;
}

.insBanner {
  background-image: url("../assets/images/insBanner.jpg");
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  position: relative;
}

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

.insTitle {
  font-weight: 700;
  color: #066292;
  font-size: 20px;
  letter-spacing: 1.8px;
}

@media (max-width: 640px) {
  .insTitle {
    font-size: 20px;
    letter-spacing: 1px;
  }
}

.insTitleBox {
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}

.insContent {
  display: grid;
  grid-template-columns: 25% 75%;
  column-gap: 60px;
  padding-top: 80px;
}

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

@media (max-width: 1180px) {
  .insContent {
    grid-template-columns: 100%;
    column-gap: 0;
    row-gap: 40px;
  }
}

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

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

.blockTitleBox {
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.blockTitleBox.horizontal {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 30px;
}

.blockTitleBox.horizontal .deco {
  width: 20px;
  height: 35px;
  margin: 0 10px 0 0;
}

@media (max-width: 1180px) {
  .blockTitleBox.horizontal .deco {
    width: 15px;
    height: 30px;
  }
}

.blockTitleBox.horizontal .blockTitle {
  color: #066292;
  font-size: 24px;
  letter-spacing: 1.44px;
}

@media (max-width: 1180px) {
  .blockTitleBox.horizontal .blockTitle {
    font-size: 20px;
  }
}

.blockTitleBox .deco {
  width: 55px;
  height: 70px;
  background-color: rgba(6, 98, 146, 0.35);
  margin: 0 auto 20px;
}

@media (max-width: 640px) {
  .blockTitleBox .deco {
    width: 40px;
    height: 60px;
  }
}

.blockTitleBox .blockTitle {
  color: #303030;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 4.6px;
}

@media (max-width: 640px) {
  .blockTitleBox .blockTitle {
    font-size: 36px;
  }
}

.blockTitleBox span {
  color: #303030;
  font-size: 20px;
  font-weight: 300;
}

.viewBox {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  color: #066292;
  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: #000000;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.sideBox .sideContent {
  width: 90%;
}

@media (max-width: 1180px) {
  .sideBox .sideContent {
    width: auto;
  }
}

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

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

.sideMenu {
  list-style: none;
}

.sideBox .sideMenu>li {
  color: #252525;
  font-size: 20px;
  padding: 10px 20px;
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid #b5b5b5;
}

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

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

.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>a {
  color: #066292;
  font-weight: 500;
}

.sideBox .sideMenu>li .child {
  display: none;
  list-style: none;
  padding: 10px;
}

.sideBox .sideMenu>li .child li {
  font-size: 18px;
  padding: 15px 0;
  position: relative;
}

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

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

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

@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: #d87474;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

.textEditor {
  color: #000;
}

.textEditor ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.textEditor ul {
  list-style-type: disc;
  padding-left: 20px;
}

.textEditor a {
  color: #066292;
  text-decoration: underline;
  transition: all 0.5s ease-in-out;
}

.textEditor blockquote {
  border-left: 5px solid #3b3b3b;
  margin: 20px 0;
  padding-left: 15px;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 1.28px;
}

.textEditor p {
  color: #3b3b3b;
  font-size: 16px;
  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: #d87474;
  color: #fff;
  width: 100%;
}

.pageList {
  align-items: baseline;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-top: 50px;
}

.pageList li {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #b5b5b5;
  transition: all 0.5s ease-in-out;
}

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

  .pageList li:hover a {
    color: #fff;
  }
}

.pageList li.current {
  background-color: #066292;
}

.pageList li.current a {
  color: #fff;
}

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

.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: 1181px) {
  .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%;
  width: 100%;
  height: 100%;
}

.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 #066292;
  color: #066292;
  background-color: #fff;
  margin-right: 10px;
}

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

.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 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: #066292;
  }
}

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

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

.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;
  background-color: #f5f5f5;
}

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

.orderSteps .topBox {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.orderSteps .orderStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9f9f9f;
}

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

.orderSteps .orderStep.current {
  color: #066292;
}

.orderSteps .orderStep .stepIcon {
  color: currentColor;
}

.orderSteps .orderStep .stepIcon svg {
  color: currentColor;
  height: 80px;
  width: 80px;
}

@media (max-width: 1180px) {
  .orderSteps .orderStep .stepIcon svg {
    height: 60px;
    width: 60px;
  }
}

.orderSteps .orderStep .stepNum {
  font-size: 24px;
}

.orderSteps .orderStep .stepTxt {
  color: currentColor;
  font-weight: 500;
}

.orderSteps .orderStep .stepDot {
  width: 12px;
  height: 12px;
  background-color: currentColor;
  border-radius: 50%;
  margin-top: 20px;
  position: relative;
}

.orderSteps .orderStep .stepDot:after {
  content: "";
  position: absolute;
  width: 310px;
  height: 2px;
  background-color: currentColor;
  top: 50%;
  transform: translateY(-50%);
}

.imgBox[data-src] {
  position: relative;  
}

.productItem:hover .imgBox[data-src] img.hoverImg,
.linkWrap:hover ~ .imgBox[data-src] img.hoverImg,
.linkWrap:has(.imgBox[data-src]):hover .imgBox[data-src] img.hoverImg,
.imgBox[data-src]:hover img.hoverImg {
  opacity: 1;
}

.imgBox[data-src] img.hoverImg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 2;
}