@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@600;700&family=Noto+Serif+TC:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html,
body {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  color: #333333;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

img {
  display: block;
}

ul,
ol {
  padding-left: 1.5em;
}

a:hover {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a,
button {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  outline: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #1D1D1F;
}

::-webkit-scrollbar-thumb {
  background-color: #006dbb;
}

::selection {
  background: #dc000c;
  color: #fff;
}

.navbar-default {
  transition: all .1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.nav_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #006dbb;
  border-top: 7px solid #dc000c;
  border-bottom: 7px solid #dc000c;
  padding: 0 5em;
}

.nav_top ul {
  padding: 0;
  width: 100%;
  display: flex;
  /*position: fixed;*/
  align-items: center;
  justify-content: flex-end;
}

.nav_top ul li {
  list-style: none;
  padding: 0;
  margin-left: 2em;
  position: relative;
  font-size: .9em;
}

.nav_top ul li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav_top ul li>a svg {
  margin-right: 0.5em;
}

.nav_top ul li .dropdown {
  display: none;
  position: absolute;
  top: 135%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #006dbb;
  z-index: 10;
  width: 80px;
}

.nav_top ul li .dropdown a {
  display: block;
  text-align: center;
  padding: 0.5em;
  color: #fff;
}

.nav_top ul li .dropdown a:hover,
.nav_top ul li .dropdown a:focus {
  background-color: #dc000c;
}

.nav_top ul li:hover>a,
.nav_top ul li:focus>a {
  color: #dc000c;
}

.nav_top ul li:hover>a i,
.nav_top ul li:focus>a i {
  color: #fff;
}

.togglebar {
  display: none;
}

.nav_menu {
  padding: 0 5em;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav_menu dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav_menu dl dd {
  width: 156px;
  height: 72px;
}

.nav_menu dl dd input {
  display: none;
}

.nav_menu dl dd>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
}

.nav_menu dl dd:nth-child(2)>a {
  position: relative;
}

.nav_menu dl dd:nth-child(2)>a svg {
  margin-right: 0.5em;
}

.nav_menu dl dd:nth-child(2)>a::after {
  display: block;
  content: "";
  width: 1px;
  height: 35px;
  background-color: #CBCBCB;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.nav_menu dl dd:hover a,
.nav_menu dl dd:focus a {
  color: #006dbb;
}

.nav_right_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.nav_how a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 216px;
  height: 72px;
  background-color: rgba(132, 132, 132, 0.15);
  font-size: 1rem;
  color: #000;
  position: relative;
  z-index: 9;
}

.nav_how a svg {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  margin-right: 0.6em;
  fill: #dc000c;
}

.nav_how a::after {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #dc000c;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.nav_how a:hover,
.nav_how a:focus {
  color: #fff;
}

.nav_how a:hover::after,
.nav_how a:focus::after {
  height: 100%;
}

.nav_how a:hover svg,
.nav_how a:focus svg {
  fill: #fff;
}

.search_keyword {
  display: none;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}

.search_keyword form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

}

.search_keyword form:first-child {
  margin-bottom: 1.5em;
}


.search_keyword label {
  display: block;
  width: 100%;
  margin-bottom: 0.8em;
}

.search_keyword .form-control {
  width: calc(100% - 54px);
  height: 34px;
  border-radius: 0;
}

.search_keyword button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  background-color: #006dbb;
  font-size: 0.938rem;
  color: #fff;
  border: 0;
}

.search_keyword.active {
  display: block;
}

.dropdown_menu {
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 7px solid #006dbb;
  padding: 3.5em 6em;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  width: 100%;
  z-index: 10;
  -webkit-animation: fadeIn 0.5s;
  -moz-animation: fadeIn 0.5s;
  -ms-animation: fadeIn 0.5s;
  -o-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
}

.dropdown_menu h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;
  width: 100%;
  font-weight: 400;
}

.dropdown_menu h3 span {
  display: block;
  padding-left: 0.8em;
  font-size: 1.25rem;
  color: #000;
  border-left: 2px solid #dc000c;
  letter-spacing: 1px;
}

.dropdown_menu h3 a {
  font-size: 0.875rem;
  color: #006dbb;
  text-decoration: underline;
  font-weight: 400;
}

.dropdown_menu .drop_item {
  margin: 0 0 2em;
}

.dropdown_menu .drop_item .img_box {
  position: relative;
  overflow: hidden;
}

.dropdown_menu .drop_item .img_box img {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  width: 100%;
}

.dropdown_menu .drop_item .img_box::after {
  display: block;
  content: "";
  width: 80px;
  height: 2px;
  background-color: #006dbb;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.dropdown_menu .drop_item .img_box::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #dc000c;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.dropdown_menu .drop_item span {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #000;
  margin-top: 0.5em;
  letter-spacing: 0;
  font-weight: 600;
  font-family: ;
}

.dropdown_menu .drop_item:hover img,
.dropdown_menu .drop_item:focus img {
  transform: scale(1.1);
}

.dropdown_menu .drop_item:hover span,
.dropdown_menu .drop_item:focus span {
  color: #006dbb;
}

.shop_cart a img {
  margin-right: .5em;
}

.shop_cart a i {
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #dc000c;
  border-radius: 100%;
  margin-left: .5em;
  color: #fff;
}

.nav_menu .logo {
  display: none;
}

.navbar-default .nav_search_box .search2 {
  display: none;
}

.scroll_nav {
  display: none;
}

@media (min-width: 767px) {

  .navbar-default.nav_out {
    transition: all .3s ease-in-out;
    /* top: -80px; */
    position: fixed;
  }

  .navbar-default.nav_out>.nav_top {
    display: none;
  }

  .navbar-default.nav_out .nav_menu .logo {
    display: inline-flex;
  }

  .navbar-default .nav_menu {
    transition: all .3s ease-in-out;
  }

  .navbar-default.nav_out .nav_menu {
    background-color: #006dbb;
    border-top: 7px solid #dc000c;
    border-bottom: 7px solid #dc000c;
    box-sizing: Content-box;
  }

  .navbar-default.nav_out .nav_menu dl dd {
    height: 65px;
  }

  .navbar-default.nav_out .nav_menu dl dd>a {
    color: #fff;
  }

  .navbar-default.nav_out .nav_menu dl dd a svg path {
    fill: #fff;
  }

  .navbar-default.nav_out .nav_menu dl dd:hover>a,
  .navbar-default.nav_out .nav_menu dl dd:focus>a {
    color: #fff;
  }

  .navbar-default.nav_out .language {
    display: none;
  }

  .navbar-default.nav_out .nav_menu .scroll_nav {
    display: block;
  }

  .navbar-default.nav_out .nav_search_box span {
    display: none;
  }

  .navbar-default .nav_search_box {
    transition: none;
  }

  .navbar-default.nav_out .nav_search_box {
    background-color: transparent;
    width: auto;
    height: 62px;
  }

  .navbar-default.nav_out .nav_search_box svg {
    margin: 0;
  }

  .navbar-default.nav_out .nav_search_box:after {
    content: normal;
  }

  .navbar-default.nav_out .nav_search_box .search1 {
    display: none;
  }

  .navbar-default.nav_out .nav_search_box .search2 {
    display: block;
    margin-right: .8em;
    fill: #fff;
  }

  .navbar-default.nav_out .nav_search_box:hover .search2 path,
  .navbar-default.nav_out .nav_search_box:focus .search2 path {
    fill: #fff;
  }

  .navbar-default.nav_out .nav_menu .search_keyword {
    width: 390px;
    right: 0;
    left: auto;
  }

  .navbar-default.nav_out .nav_how {
    display: none;
  }

  .navbar-default.nav_out .nav_menu dl .s_n {
    display: none;
  }

  .scroll_nav {
    border: 0;
    background-color: transparent;
    padding: 0;
  }

  .scroll_nav .shop_cart a i {
    margin: 0;
  }

  .scroll_nav ul li {
    margin-left: 1.3em;
  }

  .navbar-default.nav_out .scroll_nav ul li:hover>a,
  .navbar-default.nav_out .scroll_nav ul li:focus>a {
    color: #fff;
  }

  .navbar-default.nav_out .scroll_nav .language {
    display: block;
  }

  .navbar-default.nav_out .scroll_nav .language .dropdown {
    transform: translateX(-50%);
    left: 50%;
  }

}


@media (min-width: 767px) {
  .nav_search_box {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 72px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 9;
  }

  .nav_search_box::after {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #006dbb;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
  }

  .nav_search_box svg {
    margin-right: 0.6em;
  }

  .nav_search_box svg circle {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    fill: #006dbb;
  }

  .nav_search_box svg path {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    fill: #fff;
  }

  .nav_search_box:hover,
  .nav_search_box:focus {
    color: #fff;
  }

  .nav_search_box:hover::after,
  .nav_search_box:focus::after {
    height: 100%;
  }

  .nav_search_box:hover svg circle,
  .nav_search_box:focus svg circle {
    fill: #fff;
  }

  .nav_search_box:hover svg path,
  .nav_search_box:focus svg path {
    fill: #006dbb;
  }
}

.nav_menu dl dd:hover .dropdown_menu,
.nav_menu dl dd:focus .dropdown_menu {
  display: block;
}

@media (max-width: 1199px) {
  .nav_top {
    padding: 0 2.5em;
  }

  .nav_menu {
    padding: 0;
  }

  .nav_menu dl dd {
    width: auto;
  }

  .nav_menu dl dd>a {
    padding: 0 1em;
  }

  .dropdown_menu {
    padding: 2em 3em;
  }

  .dropdown_menu .drop_item {
    margin-bottom: 1.5em;
  }

  .nav_search_box {
    width: 167px;
  }

  .nav_how a {
    width: 200px;
  }

  .navbar-default.nav_out .nav_menu .scroll_nav {
    padding: 0;
  }

  .navbar-default.nav_out .nav_menu {
    padding: 0 1em;
  }

  .navbar-default.nav_out .nav_menu dl dd {
    width: auto;
  }
}

@media (max-width: 991px) {
  .nav_top {
    padding: 0 1em;
  }

  .nav_search_box {
    width: 135px;
  }

  .nav_how a {
    width: 195px;
  }

  .nav_menu {
    padding: 0;
  }

  .nav_menu dl dd>a {
    padding: 0;
    padding-left: 0.8em;
  }

  .nav_menu dl dd:nth-child(2)>a {
    padding: 0 1em;
  }

  .dropdown_menu {
    padding: 2em 2em;
  }

  .navbar-default.nav_out .nav_menu .logo {
    width: 200px;
  }

  .navbar-default.nav_out .nav_search_box .search2 {
    margin-right: 0.5em;
  }

  .navbar-default.nav_out .nav_search_box {
    height: 48px;
  }
}

@media (max-width: 767px) {
  .navbar-default {
    position: fixed;
  }

  .togglebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    width: 48px;
    height: 30px;
    cursor: pointer;
    position: relative;
  }

  .togglebar i {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    display: block;
    background-color: #fff;
    width: 30px;
    height: 1px;
  }

  .togglebar.active {
    width: 48px;
    height: 30px;
  }

  .togglebar.active i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .togglebar.active i:nth-child(1) {
    transform: rotate(45deg);
  }

  .togglebar.active i:nth-child(2) {
    opacity: 0;
  }

  .togglebar.active i:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav_top {
    position: relative;
    z-index: 1000;
  }

  .nav_top ul {
    margin-right: 0.7em;
  }

  .nav_top ul li {
    margin-left: 1em;
  }

  .nav_search_box {
    width: auto;
  }

  .nav_menu {
    overflow-y: auto;
  }

  .nav_menu dl {
    display: block;
  }

  .nav_menu dl dd .dropdown_menu {
    display: none;
    position: initial;
  }

  .nav_menu dl dd:hover .dropdown_menu,
  .nav_menu dl dd:focus .dropdown_menu {
    display: none;
  }

  .nav_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 99;
    padding-top: 5em;
  }

  .nav_menu dl dd {
    height: auto;
    padding: 1em 0.5em;
    position: relative;
  }

  .nav_menu dl dd input {
    display: block;
  }

  .nav_menu dl dd:nth-child(2)>a {
    position: initial;
  }

  .nav_menu dl dd:nth-child(2)>a::after {
    content: normal;
  }

  .nav_menu .dropdown_menu {
    padding: 1em 1.5em 1.5em;
    margin-top: 1em;
  }

  .nav_menu .dropdown_menu a {
    position: relative !important;
    z-index: 9;
  }

  .nav_menu .dropdown_menu h3 {
    display: block;
    text-align: right;
    margin-bottom: 0.5em;
  }

  .nav_menu .dropdown_menu h3 span {
    display: none;
  }

  .nav_menu .dropdown_menu .drop_item {
    margin-bottom: 0.5em;
  }

  .nav_menu .dropdown_menu .drop_item .img_box {
    display: none;
  }

  .nav_menu dl dd>input[type="checkbox"] {
    opacity: 0;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .nav_menu dl dd>input[type="checkbox"]:checked~.dropdown_menu {
    display: block;
  }

  .nav_menu .nav_right_box {
    display: block;
  }

  .nav_menu .nav_search_box {
    width: 100%;
    height: auto;
    padding: 0.8em 0.2em;
    background-color: rgba(132, 132, 132, 0.15);
  }

  .nav_menu .nav_how a {
    width: 100%;
    height: auto;
    padding: 0.8em 0.2em;
  }

  .search_keyword2 {
    top: 114%;
  }

  .search_keyword2.active {
    display: block !important;
  }
}

@media (max-width: 699px) {
  .nav_top ul li {
    position: relative;
    margin: 0 0.8em;
  }

  .nav_top ul li>a svg {
    width: 18px;
    height: auto;
    margin: 0;
  }
  .nav_top ul li:first-child > a svg{
    width: 21px;
  }
  .nav_top ul li:last-child > a svg{
    width: 20px;
  }

  .nav_top ul li span {
    display: none;
    position: absolute;
    top: 150%;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    background-color: #1D1D1F;
    padding: 0.2em;
    width: 90px;
    border-radius: 4px;
  }

  .nav_top ul li span::before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #1D1D1F transparent;
    position: absolute;
    top: -0.3em;
    left: 0;
    right: 0;
    margin: auto;
  }

  .nav_top ul li:hover,
  .nav_top ul li:focus {
    color: #fff;
  }

  .nav_top ul li:hover span,
  .nav_top ul li:focus span {
    display: block;
    text-align: center;
    color: #fff;
  }

  .nav_top ul li:hover.language span,
  .nav_top ul li:focus.language span {
    display: none;
  }

  .nav_top ul li .dropdown {
    width: 100px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav_top ul li.shop_cart {
    position: relative;
  }

  .nav_top ul li.shop_cart a img {
    width: 30px;
  }

  .nav_top ul li.shop_cart a i {
    position: absolute;
    top: -0.8em;
    right: -0.8em;
    margin: auto;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }


}

@media (max-width: 576px) {
  .nav_top {
    padding: 0 0.25em 0 0.25em;
  }

  .nav_top .logo {
    width: 200px;
  }

  .nav_top ul {
    margin-right: 0;
    width: calc(100% - 230px);
  }
}

@media (max-width: 480px) {
  .nav_top .logo {
    width: 180px;
  }

  .nav_top ul {
    width: calc(100% - 210px);
  }

  .nav_top ul li {
    margin: 0 0.7em;
  }
}

@media (max-width: 400px) {
  .nav_top ul li {
    margin: 0 0.5em;
  }

  .nav_top ul li.shop_cart {
    margin-right: 0;
  }

  .nav_top ul li.shop_cart a i {
    font-size: 0;
    width: 13px;
    height: 13px;
    top: -4px;
    right: -2px;
  }
}

.index_banner {
  position: relative;
  margin: 9.3em auto 1.3em;
}

.index_banner .swiper-container {
  overflow: hidden;
}

.index_banner .swiper-pagination {
  bottom: 2.5em !important;
}

.index_banner .swiper-pagination .swiper-pagination-bullet {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  width: 30px;
  height: 3px;
  border-radius: 50px;
  background-color: #1D1D1F;
  opacity: 1;
}

.index_banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 50px;
  background-color: #006dbb;
}

.in_img {
  margin-bottom: 1.3em;
}

.footer {
  background-color: #F5F5F7;
  padding: 2.5em 0 0;
  position: relative;
}

.footer_box .footer_logo {
  margin-bottom: 1.5em;
}

.footer_box ul {
  list-style: none;
  padding: 0;
  margin: 1em auto;
}

.footer_box ul li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0.8em;
  letter-spacing: 0;
}

.footer_box ul li svg {
  position: absolute;
  top: 7px;
  left: 0;
  margin: auto;
}

.footer_box ul li a {
  color: #333333;
}

.footer_box ul li a:hover,
.footer_box ul li a:focus {
  color: #006dbb;
  text-decoration: underline;
}

.footer_box2 h4 {
  font-weight: 500;
  height: 20px;
}

.footer_box2 dl dd {
  margin: 0.6em auto;
}

.footer_box2 dl dd a {
  display: block;
  font-size: 0.8rem;
  color: #5B5B5B;
  letter-spacing: 0;
}

.footer_box2-2 h4 {
  font-weight: 500;
  height: 20px;
}

.footer_box2-2 dl dd {
  margin: 0.6em auto;
}

.footer_box2-2 dl dd a {
  display: block;
  font-size: 0.938rem;
  color: #5B5B5B;
}

.footer_box3_top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  margin-bottom: 1.2em;
}

.footer_box3_top img {
  margin: 0 0.6em;
}

.footer_box3_social ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #006dbb;
}

.footer_box3_social ul li {
  margin-left: 0.7em;
}

.footer_box3_social ul li:first-child {
  margin: 0;
}

.footer_box3_social ul li a {
  display: block;
}

.footer_box3_social p {
  font-size: 0.938rem;
  color: #5B5B5B;
  line-height: 30px;
}

.footer_box3_social p a {
  color: #006dbb;
  text-decoration: underline;
}

.footer_box4 {
  background-color: #006dbb;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  margin-top: 2em;
}

.footer_box4 p {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.938rem;
  font-weight: 300;
}

.footer_box4 p a {
  color: #fff;
}

.top {
  margin: 1em auto;
}

/* .top {
  position: absolute;
  right: 5em;
  top: -1.3em;
  cursor: pointer;
  z-index: 9;
} */
@media (max-width: 1499px) {
  .index_banner {
    margin: 9em auto 1.3em;
  }
}

@media (max-width: 1399px) {
  .footer_box3_top {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_box3_top span {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
    text-align: center;
  }

  .footer_box3_social ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_box3_social ul li {
    margin: 0 0.5em;
  }

  .footer_box3_social ul li:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
  }
}

@media (max-width: 1280px) {
  .nav_menu dl dd {
    width: 135px;
  }
}

@media (max-width: 1199px) {
  .footer_box3_top img {
    margin: 0 0.3em;
  }
}

@media (max-width: 991px) {
  .index_banner {
    margin: 8.8em auto 1.3em;
  }

  .footer_box {
    margin-bottom: 2em;
  }

  .footer_box3_social p {
    text-align: center;
  }

}

@media (max-width: 899px) {
  .nav_menu dl dd {
    width: auto;
  }
}

@media (max-width: 767px) {
  .index_banner {
    margin: 4em auto 1em;
  }
}

@media (max-width: 699px) {
  .index_banner {
    margin: 3.7em auto 1em;
  }

}

@media (max-width: 576px) {
  .index_banner .swiper-pagination {
    bottom: 1.5em !important;
  }

  .footer {
    padding: 1.7em 0 0;
  }

  .footer_box {
    text-align: center;
  }

  .footer_box img {
    margin: 0 auto;
  }

  .footer_box ul li {
    margin-bottom: 0.5em;
    padding: 0;
  }

  .footer_box ul li svg {
    display: none;
  }

  .footer_box2 {
    display: none;
  }

  .footer_box2-2 {
    margin-bottom: 1.5em;
    text-align: center;
  }

  .footer_box2-2 dl {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer_box2-2 dl dd {
    margin: 0 1em;
    margin-top: 0.8em;
  }

  .footer_box4 {
    margin-top: 1em;
  }

  .top {
    right: 1em;
    top: -1.5em;
  }

  .top svg {
    width: 50px;
    height: 50px;
  }
}

.bread_box {
  padding: 0 2em;
  margin: 10.3em auto 1em;
}

.bread_box ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.bread_box ul li {
  font-size: 0.813rem;
  color: #666;
  margin-right: 1em;
  letter-spacing: 0;
  letter-spacing: 0;
}

.bread_box ul li i {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5px 0 1.5px 3px;
  border-color: transparent transparent transparent #666;
}

.bread_box ul li a {
  color: #151515;
}

.bread_box ul li a:hover,
.bread_box ul li a:focus {
  color: #006dbb;
}

.bread_box ul li:last-child {
  font-weight: 500;
}

.banner {
  padding: 0 2em;
  position: relative;
}

.banner .banner_title {
  letter-spacing: 0;
  font-weight: 600;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15%;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.banner .banner_title h1 {
  font-size: 2.5rem;
  /* color: #333333; */
  color: #fff;
  mix-blend-mode: difference;
  font-weight: 500;
  /* max-width: 60%;
  width: 100%; */
}

.banner .banner_title h2 {
  font-size: 1.375rem;
  color: #808080;
}

.p_bg {
  padding: 0 5em 3em;
}

.p_title {
  margin: 1em auto;
}

.p_title h3 {
  font-size: 1.8rem;
  position: relative;
  font-weight: 500;
  padding-bottom: 0.7em;
  margin-bottom: 0.7em;
  letter-spacing: 0;
  font-weight: 600;

}

.p_title h3 a {
  color: #000;
}

.p_title h3::after {
  display: block;
  content: "";
  width: 680px;
  height: 5px;
  background-color: #dc000c;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
}

.p_title h3::before {
  display: block;
  content: "";
  width: 340px;
  height: 5px;
  background-color: #006dbb;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

.p_out {
  position: relative;
}

.p_out .swiper-button-prev {
  transform: scaleX(-1);
  width: 38px;
  height: 38px;
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  left: -1em;
}

.p_out .swiper-button-prev::after {
  content: normal;
}

.p_out .swiper-button-next {
  border-radius: 100%;
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  right: -1em;
}

.p_out .swiper-button-next::after {
  content: normal;
}

.p_slick {
  margin-bottom: 5em;
}

.p_slide {
  background-color: #F5F5F5;
  position: relative;
  height: 100%;
  border: #fff 1px solid;
}

.p_slide a {
  display: block;
  text-align: center;
}

.p_slide a em {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006dbb;
  font-style: normal;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 90px;
  padding: .3em .5em;
  /* font-size: .7em; */
  letter-spacing: 0;
  font-weight: 500;
  font-family: ;
}

.p_slide a img {
  margin: 0 auto;
  width: 80%;
}

.p_slide a h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #333;

  margin-bottom: 0.6em;
  letter-spacing: 0;
  padding: 0 2em;
  letter-spacing: 0;

  font-family: ;
}

.p_slide a h3 img,
.p_slide a h3 svg {
  display: inline-block;
  margin: 0 0.2em;
  max-width: 30px;
  border: #eee 1px solid;
  border-radius: 200px;
  background-color: #fff;
  padding: 3px;
  margin-right: 6px;

}

.p_slide a p {
  font-size: 1rem;
  color: #808080;
  letter-spacing: 0;
  padding: 0 10px;
}

.p_slide a span {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  min-width: 60px;
  height: 26px;
  border-radius: 50px;
  background-color: #dc000c;
  margin: 1.5em auto 0;
  opacity: 0;
  font-size: .5em;
  margin-bottom: 2em;
  padding: 0 .8em;
}

.p_slide a:hover span,
.p_slide a:focus span {
  opacity: 1;
}

.p_slide a:hover {
  border: #dc000c 1px solid;

  position: relative;
  height: 100%;

}

.p_items2 {
  margin-bottom: 4em;
}

.p_items2 a {
  display: block;
}

.p_items2 a .p_hover {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  overflow: hidden;
  border: 4px solid transparent;
}

.p_items2 a .p_hover img {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

.p_items2 a h3 {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  background-color: #fff;
  border-left: 4px solid #006dbb;
  padding: 1em 1.5em;
  color: #000;
  font-size: 1.2rem;
  width: 90%;
  margin: -1em auto 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 0;
  font-weight: 400;
  font-family: 'Antonio', "Noto Sans TC", Arial, Helvetica, sans-serif;
}

.p_items2 a h3::before {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background-color: #006dbb;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.p_items2 a:hover .p_hover,
.p_items2 a:focus .p_hover {
  border: 4px solid #dc000c;
}

.p_items2 a:hover .p_hover img,
.p_items2 a:focus .p_hover img {
  transform: scale(1.1);
}

.p_items2 a:hover h3,
.p_items2 a:focus h3 {
  color: #fff;
}

.p_items2 a:hover h3::before,
.p_items2 a:focus h3::before {
  width: 100%;
  z-index: -1;
}

.p_list,
.p_list2 {

  margin-top: 2em;
}

.p_list ul,
.p_list2 ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.p_list ul li {
  margin: 0 0.2em 0.5em;
  text-align: center;
}

.p_list2 ul li {
  margin: 0 0.2em 0.5em;
  text-align: center;
}

.p_list ul li a {
  display: block;
  font-size: 1rem;
  color: #333;
  border: #ccc 1px solid;
  padding: 1em;
  border-radius: 5px;
}

.p_list2 ul li a {
  display: block;
  font-size: 1rem;
  color: #333;
  border: #ccc 1px solid;
  padding: 1em;
  font-family: 'Antonio';
  border-radius: 5px;
}

.p_list2 ul li a img {
  width: 35px;
}

.p_list ul li:hover a,
.p_list ul li:focus a,
.p_list ul li.active a {
  background-color: #dc000c;
  color: #fff;
}

.p_list2 ul li:hover a,
.p_list2 ul li:focus a,
.p_list2 ul li.active a {
  background-color: #f5f5f5;
  border: #dc000c 1px solid;

}

.p_search {
  display: block;
  background-color: #F5F5F5;
  padding: 1.5em 1em;
  text-align: center;
  margin: 1.3em auto 0;
}

.p_search h3 {
  font-weight: 400;
  font-size: 1.25rem;
}

.p_search a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 261px;
  height: 62px;
  background-color: #006dbb;
  border-radius: 5px;
  margin: 1em auto 0;
  color: #fff;
  font-size: 1rem;
}

.p_search a svg {
  margin-right: 0.5em;
}

.p_search a:hover,
.p_search a:focus {
  background-color: #dc000c;
}

.p_d_slick_top {
  margin-top: 5em;
  margin-bottom: 1.5em;
  position: relative;
}

.p_d_slick_top em {
  display: inline-block;
  font-style: normal;
  background-color: #006dbb;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: .5em 1em;
}

.p_d_slick_top img {
  border: 1px solid #CBCBCB;
  width: 100%;
  border-radius: .2em;
  padding: .8rem;
  border-collapse: collapse;
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
  border-bottom: 2px solid #006dbb;
}

.p_d_slick_top svg {
  position: absolute;
  bottom: 1.5em;
  right: 1.5em;
  margin: auto;
  z-index: 9;
  cursor: pointer;
}

.p_d_slick_bottom {
  margin-bottom: 3em;
}

.p_d_slick_bottom .swiper-slide {
  border: 1px solid #CBCBCB;
  padding: .5em;
  border-radius: .2em;
}

.p_d_slick_bottom img {
  width: 100%;
  position: relative;
  z-index: -1;
}

.p_d_box {
  padding: 0 2em;
  margin-top: 5em;
}

.p_d_box h3 {
  font-size: 1.6rem;
  position: relative;
  font-weight: 500;
  padding-bottom: 0.5em;
  margin-bottom: .5em;
  letter-spacing: 0;
  font-weight: 600;
  font-family: ;
  display: flex;
}

.p_d_box h4 {
  font-size: 1.3rem;
  position: relative;
  font-weight: 500;
  padding-bottom: 0.5em;
  margin-bottom: .5em;
  letter-spacing: 0;
  font-weight: 600;
  font-family: ;
  display: flex;
}

.p_d_box h3::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dc000c;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
}

.p_d_box h3::before {
  display: block;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #006dbb;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

.p_d_box ul {
  padding: 0;
  list-style: none;
}

.p_d_box ul li {
  padding-left: 1.6em;
  margin-bottom: 0.5em;
  position: relative;
  font-size: .9em;
}

.p_d_box ul li::before {
  display: block;
  content: "";
  width: 16px;
  height: 1px;
  background-color: #006dbb;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.p_d_box .p_qrcode {
  border: 1px solid #cbcbcb;
  margin: 1em 0;
  border-radius: .2em;
}

.p_d_box dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 1em auto;
  padding-bottom: 1em;
}

.p_d_box dl dd {
  margin: 0.5em;
}

.p_d_box dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 173px;
  height: 53px;
  border-radius: 50px;
}

.p_d_box dl dd a svg {
  margin-right: 0.5em;
}

.p_d_box dl dd:first-child a {
  border: 1px solid #006dbb;
  color: #006dbb;
}

.p_d_box dl dd:first-child a:hover,
.p_d_box dl dd:first-child a:focus {
  background-color: #006dbb;
  color: #fff;
}

.p_d_box dl dd:nth-child(2) a {
  border: 1px solid #dc000c;
  color: #dc000c;
}

.p_d_box dl dd:nth-child(2) a:hover,
.p_d_box dl dd:nth-child(2) a:focus {
  background-color: #dc000c;
  color: #fff;
}

.p_d_box dl dd:nth-child(3) a {
  border: 1px solid #dc000c;
  color: #dc000c;
}

.p_d_box dl dd:nth-child(3) a:hover,
.p_d_box dl dd:nth-child(3) a:focus {
  background-color: #dc000c;
  color: #fff;
}

.p_box2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 1.5em 1.5em 2em;
}

.p_box2 .shop_cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #006dbb;
  color: #fff;
}

.p_box2 .shop_cart a img {
  margin-right: 0.5em;
}

.p_box2 .shop_cart a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  width: 32px;
  height: 32px;
  color: #fff;
  background-color: #dc000c;
  border-radius: 100%;
  margin-left: 0.5em;
  letter-spacing: 0;
}

.p_box2 .shop_cart a:hover,
.p_box2 .shop_cart a:focus {
  background-color: rgba(0, 109, 187, 0.8);
}

.p_box2 .shop_qty button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  font-size: 16px;
  border-radius: 8px;
  background-color: #dc000c;
  border: 0;
  color: #fff;
}

.p_box2 .shop_qty button img {
  margin-right: 0.5em;
}

.p_box2 .shop_qty button:hover,
.p_box2 .shop_qty button:focus {
  background-color: rgba(220, 0, 12, 0.8);
}

.p_social {
  margin: 1em auto 3em;
}

.p_social ol {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.p_social ol li {
  margin-right: 0.3em;
  font-size: 1rem;
  font-weight: 500;
}

.p_bg2 {
  background-color: #F8F8F8;
  padding: 4em 0;
}

.p_bg2 .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin-bottom: 2em;
}

.p_bg2 .nav-tabs .nav-item {
  margin-right: 0.5em;
}

.p_bg2 .nav-tabs .nav-item a {
  font-size: 1.19rem;
  color: #808080;
  border-bottom: 2px solid #808080;
  padding: 0.3em 2em;
  cursor: pointer;
}

.p_bg2 .nav-tabs .nav-item a.active {
  border-color: #dc000c;
  color: #1D1D1F;
}

.p_table {
  display: block;
  margin: 3em auto;
}

.p_table table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 3px solid #dc000c;
  -webkit-backface-visibility: hidden;
}

.p_table table tr {
  border-bottom: 1px solid #CBCBCB;
}

.p_table table thead tr:first-child {
  /* display: flex; */
  position: sticky;
  top: 4.9em;
  z-index: 1;
  border: 0;
  width: 100%;
}

.p_table table tr th {
  background-color: #006dbb;
  color: #fff;
  padding: 1em;
  font-weight: 500;
  font-size: .9rem;
  flex: 1 1 auto;
}

.p_table table tr th img {
  margin: 0 auto;
}

.p_table table tr td {
  padding: 1.5em 2em;
}

.p_table table tr td .form-check .form-check-input {
  margin-left: -1.8em;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.4em;
}

.p_table table .p_all {
  background-color: #fff;
  border: 0;
}

.p_back {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3em auto;
}

.p_back button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 48px;
  border-radius: 50px;
  background-color: #dc000c;
  border: 0;
  color: #fff;
  margin: 0 0.5em;
  font-size: 16px;
}

.p_back button img {
  margin-right: 0.5em;
}

.p_back button:hover,
.p_back button:focus {
  background-color: rgba(220, 0, 12, 0.5);
}

.p_back a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 48px;
  border-radius: 50px;
  background-color: #006dbb;
  border: 0;
  color: #fff;
  margin: 0 0.5em;
  /*font-size: .8em;*/
  font-size: 16px;
}

.p_back a:hover,
.p_back a:focus {
  background-color: rgba(0, 109, 187, 0.5);
}

.pro_row5_list {
  display: block;
  text-align: center;
  color: #000;
  font-weight: 400;
  padding: 1.5em 1em;
}

.pro_row5_list img {
  margin: 0 auto;
}

.pro_row5_list h3 {
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: 0;
  font-weight: 600;
}

.pro_row5_list a {
  display: block;
  text-align: center;
  color: #000;
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  padding: 1.5em 1em;
}

.pro_row5_list a:hover {

  border-bottom: 1px solid #006dbb;
}

.pro_row5_list a img {
  margin: 0 auto;
}

.pro_row5_list a h3 {
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: 0;
  font-weight: 600;
  font-family: ;
}

@media (max-width: 1399px) {
  .p_items2 a h3 {
    padding: 0.5em 0.5em;
    width: 93%;
  }
}

@media (max-width: 1199px) {
  .p_d_box {
    padding: 0 1em;
  }

  .p_d_box dl dd a {
    width: 100%;
    padding: 0 1em;
  }

  .p_table table tr td {
    padding: 1.5em 1em;
  }
}

@media (max-width: 1099px) {
  .p_box2 .shop_cart a {
    width: 180px;
  }

  .p_box2 .shop_qty button {
    width: 180px;
  }
}

@media (max-width: 991px) {
  .banner .banner_title {
    left: 8%;
  }

  .p_bg {
    padding: 0 2em 3em;
  }

  .p_title {
    margin: 2em auto;
  }

  .p_title h3::after {
    width: 100%;
  }

  .p_title h3::before {
    width: 50%;
  }

  .p_slick {
    margin-bottom: 0;
  }

  .p_d_slick_top {
    margin-top: 1.5em;
  }

  .p_d_box {
    margin-top: 0.5em;
  }

  .p_table table tr td {
    padding: 0.7em 1em;
  }

  .p_out .swiper-button-prev {
    left: .7em;
  }

  .p_out .swiper-button-next {
    right: .7em;
  }

  .p_social {
    margin: 1em auto 2em;
  }
}

@media (max-width: 767px) {
  .bread_box {
    padding: 0 1em;
    margin: 4.9em auto 1em;
  }

  .p_bg {
    padding: 0 1em 3em;
  }

  .p_slick .p_slide a {
    padding: 1.5em 1em;
  }

  .banner {
    padding: 0;
  }

  .banner .banner_title h2 {
    font-size: 1.125rem;
  }

  .p_table table thead tr:first-child {
    z-index: 10;
    overflow-x: auto;
  }

  .p_table table thead tr th {
    height: 55px;
    overflow-x: auto;
  }

  .p_table table tr td {
    height: 55px;
    overflow-x: auto;
  }

  .p_list ul li {
    flex: 1 1 auto;
    width: auto;
  }


  .pane--table2 th,
  .pane--table2 td {
    width: auto;
    min-width: 160px;
  }

  .pane--table2 tbody {
    overflow-x: auto;
    overflow-x: hidden;
    display: block;
    height: 300px;
  }

  .pane--table2 thead {
    display: table-row;
  }
}

@media (max-width: 576px) {
  .p_items2 {
    margin-bottom: 1.5em;
  }

  .banner .banner_title {
    left: 4%;
  }

  .banner img {
    object-fit: cover;
    height: 245px;
  }

  .m_list {
    margin-bottom: 2.5em;
  }

  .p_table table tr th {
    padding: 1em 0.5em;
  }

  .p_table table tr td {
    padding: 0.7em .5em;
  }
}

@media (max-width: 480px) {
  .bread_box {
    margin: 4.5em auto 1em;
  }

  .p_search a {
    width: 100%;
    height: 55px;
  }

  .p_title h3 {
    font-size: 1.5rem;
  }

  .p_d_slick_bottom {
    margin-bottom: 2em;
  }

  .p_box2 {
    width: 100%;
    margin: 1.5em 0 2em;
    justify-content: space-between;
  }

  .p_box2 .shop_cart {
    width: 60%;
  }

  .p_box2 .shop_cart a {
    width: 100%;
  }

  .p_box2 .shop_qty {
    width: 70%;
  }

  .p_box2 .shop_qty button {
    width: 100%;
  }

  .p_table {
    margin: 2em auto 0;
  }

  .p_bg2 {
    padding: 2em 0;
  }

  .p_d_slick_bottom .swiper-slide {
    padding: 0.1em;
  }
}

@media (max-width: 400px) {
  .banner .banner_title h2 {
    font-size: 1rem;
  }

  .p_d_box dl dd {
    width: 100%;
  }
}

.p_s_bg {
  padding: 4em 0 6em;
}

.p_search_title {
  margin-top: 2em;
}

.p_search_title h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.p_search_box {
  background-color: #FBFBFB;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 4em;
  margin: 1.5em auto 5em;
  position: relative;
}

.p_search_box::before {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #dc000c;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.p_search_box::after {
  display: block;
  content: "";
  width: 50%;
  height: 5px;
  background-color: #006dbb;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.p_search_group {
  margin-bottom: 0em;
  margin-top: 1em;
}

.p_search_group label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}

.p_search_group .form-control,
.p_search_group .form-select {
  border-color: #E9E4DF;
  border-radius: 0;
  height: 47px;
  border-radius: .3em;
}

.p_search_sumit {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #E6E8EA;
  padding-top: 3em;
  margin-top: 2em;
}

.p_search_sumit a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 50px;
  border-radius: 3px;
  background-color: #808080;
  color: #fff;
  font-size: 1.063rem;
  margin: 0 0.5em;
}

.p_search_sumit button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 50px;
  border-radius: 3px;
  background-color: #006dbb;
  border: 0;
  color: #fff;
  font-size: 1.063rem;
  margin: 0 0.5em;
}

.p_s_show h3 {
  text-align: center;
  font-weight: 500;
  font-size: 1.875rem;
}

.p_s_table {
  margin-top: 1.5em;
}

.p_s_table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #006dbb;
}

.p_s_table table tr {
  border-bottom: 1px solid #ccc;
}

.p_s_table table tr th {
  background-color: #006dbb;
  font-weight: 400;
  padding: 0.5em 2.5em;
  color: #fff;
  font-size: 1.1rem;
  text-align: left;
}

.p_s_table table tr td {
  padding: 2em 2.5em;
}

.p_s_table table tr td:nth-child(1) {
  width: 40%;
}

.p_s_table table tr td a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.p_s_table table tr td a img {

  padding: .5em;
  border: #ccc 1px solid;
  margin-bottom: 1em;
  border-radius: 0.3em;
}

.p_s_table table tr td a .p_s_right span {
  display: block;
  color: #333;
  text-decoration: underline;
  margin-bottom: 0.5em;
  letter-spacing: 0;
  font-weight: 600;
  font-family: ;
  font-size: 1.5em;
}

.p_s_table table tr td a .p_s_right p {
  font-size: 1.125rem;
  color: #000;
}

.p_s_right {
  font-size: 1rem;
  color: #000;
}

.p_s_table table tr td .p_s_ul {

  align-items: center;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1rem;
}

.p_s_table table tr td .p_s_ul span {
  font-size: 1.125rem;
  display: block;
  background-color: #006dbb;
  padding: 0.2em 0.5em;
  color: #fff;
  border-radius: 4px;
  margin-right: 1em;
}

.p_s_table table tr td .p_s_ul ul {
  display: flex;
  align-items: center;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.p_s_table table tr td .p_s_ul ul li {
  width: 33%;
  margin-bottom: 1em;
  padding-right: 1.5em;
}

.p_s_table table tr td .p_s_ul ul li::marker {
  color: #006dbb;
}

.p_s_table .rwd-table {
  overflow: hidden;
}

.p_s_table .rwd-table th {
  display: none;
}

.p_s_table .rwd-table td {
  display: block;
}

.p_s_table .rwd-table td:before {
  content: attr(data-th) "";
  display: inline-block;
}

@media (min-width: 991px) {
  .p_s_table .rwd-table td {
    display: table-cell;
  }

  .p_s_table .rwd-table td:before {
    display: none;
  }

  .p_s_table .rwd-table th {
    display: table-cell;
  }
}

@media (max-width: 1399px) {
  .p_s_table table tr td a {
    flex-wrap: wrap;
  }

  .p_s_table table tr td a img {
    margin-bottom: 1em;
  }

  .p_s_table table tr td .p_s_ul ul li {
    width: 50%;
    margin-bottom: 0.5em;
  }
}

@media (max-width: 1199px) {
  .p_s_table table tr td:nth-child(1) {
    width: 30%;
  }
}

@media (max-width: 991px) {
  .p_search_box {
    padding: 3em;
  }

  .p_search_sumit {
    margin-top: 0;
  }

  .p_s_table table tr {
    border-color: #006dbb;
  }

  .p_s_table table tr:nth-child(odd) {
    background-color: #F5F5F5;
  }

  .p_s_table table tr td {
    padding: 1em;
  }

  .p_s_table table tr td::before {
    color: #006dbb;
    font-weight: 500;
    margin-bottom: 1em;
  }

  .p_s_table table tr td:nth-child(1) {
    width: auto;
  }
}

@media (max-width: 767px) {
  .p_search_group {
    margin-bottom: 1em;
  }

  .p_search_sumit {
    margin-top: 1.5em;
    padding-top: 2em;
  }

  .p_search_box {
    margin: 1.5em auto 2em;
    padding: 2em 1.5em;
  }
}

@media (max-width: 576px) {
  .p_s_table table tr td a img {
    width: 180px;
  }

  .p_s_table table tr td .p_s_ul {
    flex-wrap: wrap;
  }

  .p_s_table table tr td .p_s_ul span {
    margin-bottom: 0.8em;
  }
}

@media (max-width: 480px) {
  .p_s_table table tr td .p_s_ul ul li {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.3em;
  }
}

.news_items {
  margin-bottom: 3em;
}

.news_items a {
  display: block;
}

.news_items a .news_bottom {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
  padding: 2.5em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.news_items a .news_bottom h3 {
  font-size: 1.25rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 1em;
}

.news_items a .news_bottom h3 svg {
  margin-right: 0.3em;
}

.news_items a .news_bottom p {
  font-size: 1.063rem;
  color: #808080;
}

.news_items a .news_bottom time {
  display: block;
  text-align: center;
  color: #006dbb;
  border-top: 1px solid #D1D1D1;
  padding-top: 1em;
  margin-top: 1.5em;
}

.news_items a:hover .news_bottom,
.news_items a:focus .news_bottom {
  border: 1px solid #dc000c;
}

.n_page {
  margin: 2em auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.n_page span {
  font-size: 1.125rem;
  color: #525252;
  margin: 0.5em 0;
  margin-left: 1em;
}

.n_page dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.n_page dl dd {
  margin: 0.1em;
}

.n_page dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  height: 40px;
  padding: 0 1em;
  color: #525252;
}

.n_page dl dd:hover a,
.n_page dl dd:focus a,
.n_page dl dd.active a {
  background-color: #006dbb;
  color: #fff;
}

.n_page dl dd:hover a svg,
.n_page dl dd:focus a svg,
.n_page dl dd.active a svg {
  stroke: #fff;
}

.n_page dl .pre a svg {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  margin-right: 0.5em;
  stroke: #dc000c;
}

.n_page dl .nex a svg {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  margin-left: 0.5em;
  stroke: #dc000c;
}

.n_d_title {
  margin: 2em auto 1.5em;
}

.n_d_title h3 {
  display: block;
  font-size: 1.75rem;
  border-bottom: 5px solid #dc000c;
  padding-bottom: 0.7em;
  position: relative;
}

.n_d_title h3::after {
  display: block;
  content: "";
  background-color: #006dbb;
  width: 15%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.n_d_social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.5em;
}

.n_d_social ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  list-style: none;
  margin-bottom: 0.5em;
}

.n_d_social ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin-right: 0.7em;
  font-size: 1.125rem;
}

.n_d_social ul li a {
  color: #333333;
}

.n_d_social ul li a:hover,
.n_d_social ul li a:focus {
  color: #006dbb;
}

.n_d_social dl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0.5em;
}

.n_d_social dl dd {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  border-right: 1px solid #707070;
  padding: 0 1.6em;
}

.n_d_social dl dd svg {
  margin-right: 0.5em;
}

.n_d_social dl dd:last-child {
  border: 0;
  padding-right: 0;
}

.n_d_social dl dd:first-child {
  padding-left: 0;
}

.n_d_content {
  display: block;
  padding: 0 2em;
  margin-bottom: 3em;
}

.n_d_content p {
  font-size: 1.25rem;
  margin: 1.5em auto 3em;
}

.n_d_content h3 {
  font-size: 1.25rem;
  margin-bottom: 1em;
}

.n_d_content img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.5em;
}

.n_d_page {
  display: block;
  margin: 4em auto;
}

.n_d_page dl {
  background-color: #F5F5F5;
  padding: 3em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.n_d_page dl dd i {
  display: block;
  height: 195px;
  width: 1px;
  background-color: #CBCBCB;
}

.n_d_page dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  padding: 0.5em 1em;
}

.n_d_page dl dd a img {
  border: 1px solid #CBCBCB;
  margin: 0 1em 1em;
}

.n_d_page dl dd a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 56px;
  background-color: #006dbb;
  color: #fff;
}

.n_d_page dl dd a .pre_icon {
  margin-left: -4em;
}

.n_d_page dl dd a .nex_icon {
  margin-right: -4em;
}

.n_d_back {
  display: block;
  margin: 2em auto;
}

.n_d_back a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 48px;
  border-radius: 50px;
  color: #fff;
  background-color: #006dbb;
  margin: 0 auto;
}

.n_d_back a:hover,
.n_d_back a:focus {
  background-color: #dc000c;
}

.news_title {
  margin-bottom: 2em;
}

.news_title h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  font-size: 1.25rem;
}

.news_title h3 svg {
  margin-right: 0.5em;
}

.n_album {
  display: block;
  margin: 3em auto 2em;
}

.n_album p {
  font-size: 1rem;
  color: #006dbb;
  letter-spacing: 0;
  margin: 0.5em auto;
}

.n_album_out {
  position: relative;
}

.n_album_out .swiper-button-prev {
  transform: scaleX(-1);
  width: 38px;
  height: 38px;
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  left: -1em;
  top: 0;
  bottom: 0;
  margin: auto;
}

.n_album_out .swiper-button-prev::after {
  content: normal;
}

.n_album_out .swiper-button-next {
  border-radius: 100%;
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  right: -1em;
  top: 0;
  bottom: 0;
  margin: auto;
}

.n_album_out .swiper-button-next::after {
  content: normal;
}

@media (max-width: 1399px) {
  .n_d_page dl {
    padding: 1em 2em;
  }

  .n_d_page dl dd a img {
    width: 160px;
  }
}

@media (max-width: 1199px) {
  .news_items a .news_bottom {
    padding: 1.2em;
  }

  .n_d_page dl {
    padding: 1em 2em;
  }

  .n_d_page dl dd i {
    height: 150px;
  }
}

@media (max-width: 1099px) {
  .n_d_page dl {
    padding: 1.5em 2em;
  }

  .n_d_page dl dd i {
    height: 100px;
  }

  .n_d_page dl dd a p {
    margin: 0 0.8em;
  }

  .n_d_page dl dd a img {
    display: none;
  }

  .n_d_page dl dd a .pre_icon {
    margin-left: -5em;
  }

  .n_d_page dl dd a .nex_icon {
    margin-right: -5em;
  }
}

@media (max-width: 767px) {
  .n_d_social {
    flex-wrap: wrap;
  }

  .n_d_back {
    margin: 1em auto;
  }

  .n_d_page {
    margin: 2em auto;
  }

  .n_d_page dl {
    padding: 1em 0.5em;
  }

  .n_d_page dl dd a .pre_icon {
    margin-left: 0;
  }

  .n_d_page dl dd a .nex_icon {
    margin-right: 0;
  }

  .n_album_out .swiper-button-prev {    
    left: -0.5em;
    width: 30px;
    height: 30px;
  }
  .n_album_out .swiper-button-next {
    right: -0.5em;
    width: 30px;
    height: 30px;
  }
  
}

@media (max-width: 576px) {
  .n_d_social {
    justify-content: center;
    margin-bottom: 2em;
  }

  .n_d_social dl dd {
    padding: 0 0.5em;
  }

  .n_d_content {
    padding: 0;
  }

  .n_d_page dl {
    flex-wrap: wrap;
    padding: 0;
  }

  .n_d_page dl dd {
    width: 100%;
  }

  .n_d_page dl dd:first-child {
    border-bottom: 1px solid #CBCBCB;
  }

  .n_d_page dl dd i {
    display: none;
  }

  .n_d_page dl dd a {
    width: 100%;
    padding: 0;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .n_d_back {
    margin-bottom: 0;
  }
}

.support_search {
  background-color: #E6E8EA;
  padding: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3em;
}

.support_search .form-control {
  width: 500px;
  height: 60px;
  border-radius: 0;
  margin-left: 0.5em;
}

.support_search .form-select {
  width: auto;
  height: 60px;
  width: 230px;
  border-radius: 0;
  margin: 0 0.5em;
}

.support_search button {
  display: flex;
  align-items: center;
  font-size: 1rem;
  justify-content: center;
  width: 195px;
  height: 60px;
  background-color: #006dbb;
  color: #fff;
  border: 0;
}

.support_content {
  border: 1px solid #E6E8EA;
  padding: 2.5em;
  margin-top: 1em;
  margin-bottom: 2em;
}

.support_content .rwd-table {
  overflow: hidden;
}

.support_content .rwd-table th {
  display: none;
}

.support_content .rwd-table td {
  display: block;
}

.support_content .rwd-table td:before {
  content: attr(data-th) "";
  display: inline-block;
}

.support_content table {
  border-collapse: collapse;
  width: 100%;
}

.support_content table tr {
  border-bottom: 1px solid #D6D6D6;
}

.support_content table tr:last-child {
  border-bottom: 0;
}

.support_content table tr:nth-child(odd) {
  background-color: #F8F8F8;
}

.support_content table tr th {
  padding: 0 0.5em 1em;
  border-bottom: 4px solid #dc000c;
  background-color: #fff;
  font-size: 1.25rem;
}

.support_content table tr th:first-child {
  text-align: left;
}

.support_content table tr td {
  padding: 1.5em 1em;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0;
  position: relative;
}

.support_content table tr td:first-child {
  text-align: left;
  padding-left: 2em;
}

.support_content table tr td i {
  display: block;
  width: 9px;
  height: 9px;
  background-color: #dc000c;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
}

.support_content table tr td a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100px;
  width: 100%;
  height: 30px;
  background-color: #dc000c;
  color: #fff;
  margin: 0 auto;
  padding: 0.5em;
  font-size: .8rem;
}

.support_content table tr td a:hover,
.support_content table tr td a:focus {
  background-color: #006dbb;
}

@media (min-width: 899px) {
  .support_content .rwd-table td {
    display: table-cell;
  }

  .support_content .rwd-table td:before {
    display: none;
  }

  .support_content .rwd-table th {
    display: table-cell;
  }
}

@media (max-width: 899px) {
  .support_content .rwd-table tr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .support_content .rwd-table td {
    padding: 0.5em 1em;
  }

  .support_content .rwd-table td:before {
    display: none;
  }

  .support_content .rwd-table td:first-child {
    width: 100%;
  }

  .support_content .rwd-table td a {
    max-width: 100%;
    width: auto;
    height: auto;
  }
}

@media (max-width: 767px) {
  .support_search {
    padding: 1.5em;
    flex-wrap: wrap;
    margin-top: 0em;
  }

  .support_search .form-select {
    width: 100%;
    height: 50px;
    margin: 0;
  }

  .support_search .form-control {
    width: 100%;
    height: 50px;
    margin: 0.5em auto;
  }

  .support_search button {
    width: 100%;
    height: 50px;
  }

  .support_content {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .support_search {
    padding: 1em;
  }
}

.catalog_box {
  margin: 2em auto;
}

.catalog_box a {
  display: block;
  text-align: center;
}

.catalog_box a .catalog_img {
  display: inline-block;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0.4em;
}

.catalog_box a .catalog_img img {
  margin: 0 auto;
}

.catalog_box h3 {
  font-size: 1.25rem;
  text-align: center;
  color: #333333;
  letter-spacing: 0;
  font-weight: 500;
}

.catalog_box svg {
  display: block;
  margin: 1.5em auto 1em;
}

.catalog_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 1em;
}

.catalog_box ul li {
  margin: .35em .5em;
  width: 100%;
}

.catalog_box ul li a {
  display: block;
  padding: .2em 1em;
  color: #fff;
  border-radius: 4px;
  font-size: 1.125rem;
}

.catalog_box ul li:nth-child(1) a {
  background-color: #006dbb;
}

.catalog_box ul li:nth-child(2) a {
  background-color: #dc000c;
}


.catalog_box a:hover .catalog_img,
.catalog_box a:focus .catalog_img {
  box-shadow: 0 0 2px #dc000c;
}

.catalog_box2 {
  display: block;
  margin: 3em auto;
}

.catalog_box2 h3 {
  font-size: 1.125rem;
}

.catalog_box2 .catalog_img {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  /* border:1px solid rgba(0,0,0,.6); */
  padding: .8em;
  border-radius: 7px;
  margin-bottom: .5em;
}

.catalog_box2 .catalog_img img {
  width: 100%;
  margin-bottom: 1em;
}

.catalog_box2 h4,
.catalog_box2 span {
  display: block;
  text-align: center;
  font-size: 1rem;
  color: #999;
  margin: 0.3em auto;
  font-weight: normal;
}



@media (max-width: 576px) {
  .catalog_box {
    margin: 1em auto;
  }
}

.privacy_box {
  padding: 1em 2em;
}

.privacy_box h3 {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 2em;
}

.privacy_box p {
  margin-bottom: 1em;
  line-height: 26px;
}

.privacy_box p b {
  display: inline-block;
  vertical-align: middle;
  color: #006dbb;
  margin: 0.5em auto;
}

.privacy_box p a {
  color: #dc000c;
  text-decoration: underline;
}

.privacy_box p .t_link {
  display: inline-block;
  vertical-align: middle;
  color: #006dbb;
  border: 1px solid #006dbb;
  border-radius: 5px;
  padding: 0.5em 1em;
  margin: 0.5em auto;
  text-decoration: none;
}

.privacy_box dl dd {
  padding-left: 3em;
  position: relative;
  margin: 1.5em auto 3em;
}

.privacy_box dl dd i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  position: absolute;
  top: -0.4em;
  left: 0;
  width: 37px;
  height: 37px;
  border-radius: 100%;
  color: #fff;
  background-color: #006dbb;
}

.privacy_box dl dd ul {
  padding-left: 1em;
}

.privacy_box dl dd ul li {
  margin-bottom: 0.5em;
}

.privacy_box dl dd ul li::marker {
  color: #006dbb;
}

.privacy_box dl dd ul li span {
  display: block;
  color: #006dbb;
}

@media (max-width: 576px) {
  .privacy_box {
    padding: 1em 0 0;
  }
}

@media (max-width: 480px) {
  .privacy_box dl dd {
    margin: 1.5em auto 2em;
  }
}

.re_box h3 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1em;
}

.re_box p {
  font-size: 1.125rem;
}

.re_box2 {
  display: flex;
  align-items: center;
  align-items: flex-start;
  justify-content: space-between;
}

.re_box2 ul {
  border: 1px solid #E6E8EA;
  border-radius: 5px;
  padding: 0.5em 1em 0.5em 2.5em;
  width: 25%;
  margin: 0 1em 1em;
  min-height: 311px;
}

.re_box2 ul li {
  font-size: 1.125rem;
  margin: 0.8em auto;
}

.re_box2 ul li::marker {
  color: #006dbb;
}

.re_box3 {
  display: flex;
  align-items: center;
  align-items: flex-start;
  justify-content: space-between;
}

.re_box3 ul {
  border: 1px solid #E6E8EA;
  border-radius: 5px;
  padding: 0.5em 1em 0.5em 2.5em;
  width: 50%;
  margin: 0 1em 1em;
}

.re_box3 ul li {
  font-size: 1.125rem;
  margin: 0.8em auto;
}

.re_box3 ul li::marker {
  color: #006dbb;
}

.re_slick,
.re_slick2 {
  margin: 2em auto 3.5em;
}

.re_slick img,
.re_slick2 img {
  width: 100%;
  margin: 0 auto;
}

.re_slick_all {
  position: relative;
  margin-bottom: 5em;
}

.re_slick_all .re_slick .swiper-slide,
.re_slick_all .re_slick2 .swiper-slide {
  text-align: center;
}

.re_slick_all .re_slick h3,
.re_slick_all .re_slick2 h3 {
  display: inline-block;
  vertical-align: middle;
  color: #333333;
  font-size: 1.063rem;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 1em;
  border-left: 1px solid #006dbb;
  padding: 0 0.8em;
  text-align: left;
}

.re_slick_all .re-next {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: -1em;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.re_slick_all .re-prev {
  border-radius: 100%;
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: -1em;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.re_a {
  margin: 3em auto 5em;
}

.re_a a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 275px;
  height: 56px;
  border-radius: 5px;
  background-color: #dc000c;
  padding: 0.5em 1em;
  color: #fff;
  margin: 0 auto;
}

.re_a a span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.063rem;
}

.re_a a span svg {
  margin-right: 1em;
}

.re_a a:hover,
.re_a a:focus {
  background-color: #006dbb;
}

@media (max-width: 1399px) {

  .re_box2 ul,
  .re_box3 ul {
    padding: 0 0.5em 0em 2em;
    margin: 0 0.5em 1em;
  }
}

@media (max-width: 1199px) {
  .re_box p {
    margin-bottom: 2em;
  }
}

@media (max-width: 991px) {
  .re_slick_all .re-prev {
    right: 0;
  }

  .re_slick_all .re-next {
    left: 0;
  }

  .re_slick,
  .re_slick2 {
    margin: 2em auto 0;
  }

  .re_a {
    margin: 0 auto 3em;
  }
}

@media (max-width: 767px) {
  .re_box2 {
    flex-wrap: wrap;
  }

  .re_box2 ul {
    width: 46%;
  }
}

@media (max-width: 480px) {
  .re_slick_all {
    margin-bottom: 3em;
  }

  .re_box2 ul {
    width: 100%;
    min-height: auto;
  }

  .re_box3 {
    flex-wrap: wrap;
  }

  .re_box3 ul {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .re_a a {
    width: 100%;
  }
}

.c_bg {
  padding: 6em 0;
}

.contact_box p {
  line-height: 26px;
}

.contact_box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  margin: 2em auto;
}

.contact_box ul li {
  flex: 1 1 auto;
  display: block;
  margin: 0 0.5em;
  border: 1px solid #E9E4DF;
  background-color: #fff;
  border-radius: 5px;
  width: 30%;
}

.contact_box ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  width: 100%;
  height: 66px;
  padding: 0.5em;
  text-align: center;
}

.contact_box ul li a img {
  margin: 0 auto;
}

.contact_box dl {
  margin: 1em auto 1.5em;
}

.contact_box dl dd {
  color: #006dbb;
  margin: 0.5em auto;
}

.contact_form {
  padding-left: 5em;
  margin-bottom: 3em;
}

.c_group {
  margin-bottom: 2em;
}

.c_group label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5em;
}

.c_group label span {
  color: #dc000c;
}

.c_group .form-control,
.c_group .form-select {
  border-radius: 0;
  height: 47px;
  background-color: #F5F5F5;
  border: 0;
}

.c_group2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}

.c_group2 label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5em;
  width: 100%;
}

.c_group2 label span {
  color: #dc000c;
}

.c_group2 .form-control {
  border-radius: 0;
  height: 47px;
  background-color: #F5F5F5;
  border: 0;
  width: calc(100% - 120px);
}

.c_button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2em;
}

.c_button button {
  display: block;
  height: 47px;
  width: 140px;
  background-color: #dc000c;
  border: 0;
  border-radius: 4px;
  font-size: 1.063rem;
  color: #fff;
}

.c_button button:hover,
.c_button button:focus {
  background-color: #006dbb;
}

.c_bg2 {
  padding: 0 0 7em;
}

.contact_items {
  margin: 1.2em auto;
}

.contact_items img {
  display: block;
  margin: 0 auto;
  border-radius: 100%;
  border: 1px solid #E6E8EA;
}

.contact_items span {
  display: block;
  text-align: center;
  color: #1D1D1F;
  margin: 0.5em auto;
}

.contact_items_bottom {
  border: 1px solid #E6E8EA;
  background-color: #fff;
  padding: 1em;
}

.contact_items_bottom dl {
  display: flex;
  align-items: center;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  min-height: 200px;
}

.contact_items_bottom dl dd {
  display: flex;
  align-items: center;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0.6em 1em;
  word-break: break-all;
}

.contact_items_bottom dl dd img {
  margin-right: 0.5em;
}

.contact_items_bottom dl dd::empty {
  display: none;
}

.contact_items_bottom dl dd a {
  color: #1D1D1F;
}

@media (max-width: 1399px) {
  .contact_items_bottom {
    padding: 0.5em;
  }

  .contact_items_bottom dl dd {
    margin-left: 0.5em;
  }
}

@media (max-width: 1199px) {
  .contact_box ul {
    flex-wrap: wrap;
  }

  .contact_box ul li {
    width: 100%;
    margin: 0.5em auto;
  }

  .contact_form {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .c_button {
    justify-content: center;
  }

  .c_group,
  .c_group2 {
    margin-bottom: 1em;
  }
}

@media (max-width: 767px) {
  .contact_box {
    margin-bottom: 3em;
  }

  .c_bg {
    padding: 3em 0;
  }

  .contact_items_bottom dl {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .contact_box {
    margin-bottom: 2em;
  }

  .contact_box ul {
    margin: 1em auto;
  }

  .c_bg2 {
    padding: 0 0 3em;
  }
}

.login_form {
  background-color: #FBFBFB;
  border: 1px solid #F5F5F5;
  margin: 2em auto;
  padding: 3em 3em 2em;
  position: relative;
}

.login_form::before {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #dc000c;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.login_form::after {
  display: block;
  content: "";
  width: 50%;
  height: 5px;
  background-color: #006dbb;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.login_group {
  margin-bottom: 1.5em;
}

.login_group i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E6E8EA;
  margin: 2.5em auto;
}

.login_group p {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2em;
}

.login_group em {
  font-style: normal;
  color: #5A5A5A;
  font-size: 0.938rem;
}

.login_group label {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}

.login_group label span {
  color: #dc000c;
}

.login_group .form-control,
.login_group .form-select {
  border-radius: 0;
  height: 47px;
}

.login_group .form-check {
  display: block;
  margin: 2em auto;
  padding-left: 2em;
}

.login_group .form-check .form-check-input {
  width: 21px;
  height: 21px;
  margin-left: -2em;
}

.login_group .form-check label {
  font-size: 1.125rem;
}

.login_group .form-check label a {
  color: #006dbb;
  text-decoration: underline;
}

.hr {
  display: block;
  width: 100%;
  margin: 1.5em auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hr::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E6E8EA;
  position: absolute;
  top: 0.35em;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.hr span {
  display: inline-block;
  vertical-align: middle;
  background-color: #FBFBFB;
  padding: 0 0.5em;
  font-size: 0.938rem;
}

.login_group2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.login_group2 .forgot_a {
  width: 50%;
}

.login_group2 .forgot_a a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
}

.login_group2 .forgot_a a svg {
  margin-right: 0.5em;
}

.login_group2 .join_a {
  width: 50%;
}

.login_group2 .join_a a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background-color: rgba(233, 228, 223, 0.4);
  border: 1px solid #E9E4DF;
  height: 47px;
}

.login_group2 .join_a a svg {
  margin-right: 0.5em;
}

.login_group2 ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0.5em auto;
}

.login_group3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}

.login_group3 label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5em;
  width: 100%;
}

.login_group3 label span {
  color: #dc000c;
}

.login_group3 .form-control {
  border-radius: 0;
  height: 47px;
  width: calc(100% - 120px);
}

.login_button button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #006dbb;
  color: #fff;
  width: 205px;
  height: 50px;
  border-radius: 3px;
  margin: 0 auto;
  border: 0;
  font-size: 1.063rem;
  padding: 0 1em;
}

.login_button button:hover,
.login_button button:focus {
  background-color: #dc000c;
}

.j_list {
  margin: 2em auto 4em;
  text-align: center;
}

.j_list dl {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.j_list dl::before {
  display: block;
  content: "";
  width: 75%;
  height: 1px;
  background-color: #E9E4DF;
  position: absolute;
  top: 2.4em;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.j_list dl dd {
  margin: 0 3em;
}

.j_list dl dd img {
  margin: 0 auto 0.5em;
}

.j_list dl dd span {
  font-size: 1.125rem;
  display: block;
  text-align: center;
}

.join_form {
  padding: 3em 8em 2em;
}

@media (max-width: 1099px) {
  .join_form {
    padding: 3em 3em 2em;
  }
}

@media (max-width: 767px) {
  .login_group2 ul li {
    margin: 0.5em auto;
  }

  .login_form {
    padding: 2em 2em 1em;
  }
}

@media (max-width: 576px) {
  .j_list dl dd {
    margin: 0 1.5em;
  }
}

@media (max-width: 424px) {
  .j_list dl dd {
    margin: 0 0.8em;
  }
}

@media (max-width: 400px) {
  .login_form {
    padding: 1em;
  }

  .j_list dl dd {
    margin: 0 0.5em;
  }
}

.m_bg {
  padding: 1em 0 5em;
}

.m_list {
  margin-bottom: 5em;
}

.qty_table {
  margin: 3em auto;
}

.qty_table table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #006dbb;
}

.qty_table table tr {
  border-bottom: 1px solid #F5F5F5;
}

.qty_table table tr th {
  background-color: #006dbb;
  padding: 0.6em 2em;
  color: #fff;
  font-weight: normal;
  text-align: center;
  font-size: 1.25rem;
}

.qty_table table tr th:first-child {
  text-align: left;
}

.qty_table table tr td {
  padding: 1.5em 2em;
  text-align: center;
}

.qty_table table tr td a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.qty_table table tr td a img {
  margin-right: 1em;
}

.qty_table table tr td a .qty_right {
  text-align: left;
}

.qty_table table tr td a .qty_right span {
  display: block;
  font-size: 1.125rem;
  color: #006dbb;
  text-decoration: underline;
  margin-bottom: 0.2em;
}

.qty_table table tr td a .qty_right p {
  font-size: 1.125rem;
  color: #1D1D1F;
}

.qty_table .rwd-table {
  overflow: hidden;
}

.qty_table .rwd-table th {
  display: none;
}

.qty_table .rwd-table td {
  display: block;
}

.qty_table .rwd-table td:before {
  content: attr(data-th) "";
  display: inline-block;
}

@media (min-width: 767px) {
  .qty_table .rwd-table td {
    padding: 1em 1.5em;
    display: table-cell;
  }

  .qty_table .rwd-table td:before {
    display: none;
  }

  .qty_table .rwd-table th {
    display: table-cell;
  }
}

@media (max-width: 991px) {
  .qty_table table tr th:first-child {
    width: 35%;
  }

  .qty_table table tr td a {
    display: block;
  }

  .qty_table table tr td a img {
    margin-bottom: 0.5em;
    width: 150px;
  }
}

@media (max-width: 767px) {
  .qty_table .rwd-table tr {
    display: flex;
    align-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .qty_table .rwd-table tr td {
    padding: 0 1em 0.5em;
    width: auto;
  }

  .qty_table .rwd-table tr td::before {
    display: inline-block;
    color: #006dbb;
    font-weight: 500;
    margin-bottom: 0.5em;
  }

  .qty_table .rwd-table tr td:first-child {
    width: 100%;
    padding: 0;
  }

  .qty_table .rwd-table tr td:first-child::before {
    display: block;
    background-color: #006dbb;
    color: #fff;
    padding: 0.5em;
  }

  .qty_table .rwd-table tr td a {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5em 1em;
  }
}

@media (max-width: 480px) {
  .qty_table table tr td a img {
    width: 110px;
  }

  .m_bg {
    padding: 1em 0 2em;
  }
}

.cart_table time {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.8em;
}

.cart_table ul {
  list-style: none;
  padding: 0;
}

.cart_table ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.8em auto;
  text-align: left;
}

.cart_table ul li span {
  color: #006dbb;
  min-width: 40%;
  text-decoration: underline;
}

.cart_table ul li .form-select {
  height: 47px;
  width: 142px;
  border-color: #E9E4DF;
  border-radius: 0;
}

.cart_table .cart_delete {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart_table .cart_delete svg {
  margin-right: 0.3em;
}

.cart_form {
  background-color: #FBFBFB;
  border: 1px solid #E9E4DF;
  padding: 5em 10em;
  margin-bottom: 2.5em;
}

@media (max-width: 1199px) {
  .cart_form {
    padding: 3em 5em;
  }
}

@media (max-width: 991px) {
  .cart_form {
    padding: 1.8em 3em;
  }
}

@media (max-width: 767px) {
  .cart_table table.rwd-table tr {
    position: relative;
  }

  .cart_table table.rwd-table tr td {
    width: 100%;
  }

  .cart_table table.rwd-table tr td::before {
    display: block;
    text-align: left;
  }

  .cart_table table.rwd-table tr td ul li {
    justify-content: space-between;
  }

  .cart_table table.rwd-table tr .cart_delete {
    display: block;
    position: absolute;
    top: 3em;
    right: 1em;
    width: auto;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .cart_table table.rwd-table tr .cart_delete {
    top: 2em;
    right: 0.5em;
  }
}

.a_box img {
  margin-bottom: 1em;
}

.a_box p {
  font-size: 1.125rem;
  line-height: 28px;
  margin: 1em auto 2em;
}

.a_box p span {
  color: #006dbb;
}

.hr2 {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5em auto;
  background-color: #E6E8EA;
}

.a_title {
  margin: 0 auto 4em;
}

.a_title h3 {
  font-size: 1.875rem;
  position: relative;
  font-weight: 500;
  padding-bottom: 0.7em;
  margin-bottom: 0.7em;
}

.a_title h3::after {
  display: block;
  content: "";
  width: 680px;
  height: 5px;
  background-color: #dc000c;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
}

.a_title h3::before {
  display: block;
  content: "";
  width: 340px;
  height: 5px;
  background-color: #006dbb;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

.about_box2 {
  margin: 5em auto 2em;
}

.about_box2 h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid #E6E8EA;
  padding-bottom: 0.6em;
}

.about_box2 h3 svg {
  margin-right: 0.5em;
}

.about_box3 {
  display: block;
  margin: 3em auto 5em;
}

.about_box3 p {
  font-size: 1.125rem;
  text-align: center;
}

.about_box4 {
  display: block;
  text-align: center;
  margin: 2em auto 3.5em;
  border: 1px solid #CBCBCB;
  border-radius: 5px;
  padding: 1em 1.5em;
  min-height: 200px;
}

.about_box4 span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
  color: #fff;
  background-color: #006dbb;
  border-radius: 50px;
  padding: 0.3em 1em;
  margin-top: -3em;
}

.about_box4 p {
  text-align: left;
}

.about_title {
  margin-bottom: 3em;
}

.about_title h3 {
  font-size: 1.75rem;
  padding: 0 0 0.5em;
  font-weight: 500;
  position: relative;
}

.about_title h3::before {
  display: block;
  content: "";
  width: 40%;
  height: 3px;
  background-color: #dc000c;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about_title h3::after {
  display: block;
  content: "";
  width: 17%;
  height: 3px;
  background-color: #006dbb;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about_box5 {
  margin: 1em auto 5em;
  position: relative;
  padding: 1em;
}

.about_box5::after {
  display: block;
  content: "";
  width: 1px;
  height: 530px;
  background-color: #E6E8EA;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.5em;
}

.about_box5 h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.7em;
}

.about_box5 h3 svg {
  margin-right: 0.5em;
}

.about_box5 h4 {
  color: #006dbb;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1em;
}

.about_box5 img {
  width: 100%;
  margin: 0 0 2em;
  border-radius: 4px;
}

.about_box5 p {
  font-size: 1.125rem;
  line-height: 28px;
  margin-bottom: 2em;
}

.col-lg-4:nth-child(4) .about_box5::after {
  content: normal;
}

.about_box6 {
  margin-bottom: 3.5em;
}

.about_box6 dl dd {
  flex: 0 0 auto;
  width: calc(100% / 5.4);
  margin: 1.5em 0.5em;
  background-color: #fff;
  border: 1px solid #E9E4DF;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 1.5em 1em;
  max-width: 100%;
}

.about_box6 dl dd span {
  letter-spacing: 0;
  font-weight: 600;
  font-family: ;
  display: block;
  color: #006dbb;
  font-size: 2.188rem;
  margin-top: -1.3em;
  margin-bottom: 0.2em;
}

.about_box6 dl dd h4 {
  display: block;
  color: #006dbb;
  font-size: 1.125rem;
  margin: 0.5em 0;
  font-weight: 400;
}

.about_box6 dl dd img {
  width: 100%;
  margin: 0 auto;
}

.about_box7 {
  display: block;
  width: 100%;
}

.about_box7 .about_box7-2 {
  width: 100%;
  border: 1px solid #E9E4DF;
}

.about_box7 img {
  margin: 0 auto;
}

.about_box7 h4 {
  font-size: 1.125rem;
  background-color: #006dbb;
  padding: 0.6em 1em;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.a_mt {
  margin-top: 5em;
}

.about_box5-2 {
  margin: 5em auto 5em;
  position: relative;
  text-align: center;
  padding: 1em 2em;
}

.about_box5-2::after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #E6E8EA;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5em;
}

.about_box5-2 h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.7em;
}

.about_box5-2 h3 svg {
  margin-right: 0.5em;
}

.about_box5-2 img {
  display: inline-block;
  vertical-align: middle;
  margin: 2em 0.8em 3em;
  border-radius: 4px;
}

.about_box5-2 span {
  display: block;
  font-size: 1.125rem;
  color: #006dbb;
  margin-bottom: 1.5em;
}

.about_box5-2 p {
  font-size: 1.125rem;
  line-height: 28px;
  text-align: left;
}

.col-md-6:first-child .about_box5-2::after {
  content: normal;
}

.about_map {
  padding: 8em 0;
  position: relative;
}

.about_map img {
  margin: 3em auto;
  opacity: .8;
}

.map_items {
  color: #dc000c;
  font-size: 2rem;
  position: absolute;
}

.map_items svg {
  position: absolute;
}

.map_items ul {
  padding: 0;
  width: 40%;
  position: relative;
  z-index: 2;
}

.map_items ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
}

.map_items ul li a {
  color: #000;
}

.map_items ul li a:hover,
.map_items ul li a:focus {
  color: #006dbb;
}

.map_america {
  left: -20%;
  top: 10%;
  margin: auto;
}

.map_europe {
  text-align: right;
  top: 6%;
  right: -11%;
  margin: auto;
}

.map_europe svg {
  left: 43%;
  top: 25%;
}

.map_europe ul {
  margin: 0 0 0 auto;
}

.map_africa {
  bottom: 18%;
  left: -19%;
}

.map_africa svg {
  left: 20%;
  top: -2.8em;
}

.map_asia {
  text-align: right;
  top: 36%;
  right: -22%;
  margin: auto;
}

.map_asia svg {
  right: 31%;
  top: 40%;
}

.map_asia ul {
  margin: 0 0 0 auto;
}

.map_mobile {
  display: none;
}


@media (max-width: 1699px) {
  .map_america {
    left: -28%;
  }

  .map_europe {
    right: -15%;
  }

  .map_asia {
    right: -28%;
  }

  .map_africa {
    bottom: 13%;
    left: -28%;
  }
}

@media (max-width: 1599px) {
  .map_europe {
    right: -22%;
  }

  .map_asia {
    right: -30%;
  }
}

@media (max-width: 1520px) {
  .map_africa {
    bottom: 6%;
  }
}

@media (max-width: 1499px) {
  .map_asia {
    top: 40%;
  }

  .map_asia svg {
    right: 18%;
    top: 29%;
  }

  .map_africa svg {
    left: 15%;
  }
}

@media (max-width: 1399px) {
  .map_america {
    left: -32%;
  }

  .map_europe {
    right: -20%;
    top: 3%;
  }

  .map_africa svg {
    left: 12%;
  }

  .map_asia svg {
    right: 14%;
    top: 30%;
  }
}


@media (max-width: 1340px) {
  .about_box6 dl dd {
    width: calc(100% / 4.27);
  }
}

@media (max-width: 1299px) {
  .map_items ul {
    width: 50%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: .5em;
  }

  .map_items ul li {
    line-height: 30px;
    letter-spacing: 1px;
  }

  .map_europe ul {
    justify-content: flex-end;
  }

  .map_europe svg {
    left: 40%;
    top: 36%;
  }

  .map_asia ul {
    justify-content: flex-end;
  }

  .map_asia svg {
    right: 9%;
    top: 34%;
  }
}

@media (max-width: 1199px) {
  .about_box4 {
    padding: 1em;
    min-height: 250px;
    margin: 1em auto 0;
  }

  .a_title {
    margin: 0 auto 2em;
  }

  .a_title h3::after {
    width: 100%;
  }

  .a_title h3::before {
    width: 35%;
  }

  .about_box6 dl dd {
    width: calc(100% / 3.222);
  }

  .map_america {
    left: -34%;
  }
}

@media (max-width: 1099px) {
  .hr2 {
    margin: 2em auto 3em;
  }

  .map_items svg {
    width: 300px;
  }

  .map_asia svg {
    width: 230px;
  }

  .map_items ul {
    width: 40%;
  }

  .map_items ul li {
    font-size: 1.125rem;
  }

  .map_items h3 {
    font-size: 2rem;
  }

  .map_asia svg {
    right: 13%;
  }

  .map_africa svg {
    left: 23%;
    top: -2.3em;
  }

  .map_europe {
    right: -30%;
    top: 7%;
  }

  .map_europe svg {
    left: 40%;
    top: 28%;
  }
}

@media (max-width: 991px) {
  .about_box4 {
    margin-bottom: 2em;
    min-height: 180px;
  }

  .map_mobile {
    display: block;
    margin: 0 auto;
  }

  .about_map {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-top: 0;
  }

  .about_map img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto !important;
    z-index: -1;
    opacity: .4;
  }

  .map_items svg {
    display: none;
  }

  .map_items {
    text-align: left !important;
    position: initial;
    width: 47%;
    flex: 1 1 auto;
    padding: 0 1em;
    min-height: 200px;
    border-bottom: 1px solid #E6E8EA;
  }

  .map_items ul {
    width: 100%;
  }

  .map_europe ul,
  .map_asia ul {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .about_box2 {
    margin: 2.5em auto 2em;
  }

  .about_box5 {
    margin: 1em auto;
    padding: 0 1em;
  }

  .about_box5::after {
    content: normal;
  }

  .about_title {
    margin-bottom: 1em;
  }

  .about_title h3::after {
    width: 30%;
  }

  .about_title h3::before {
    width: 100%;
  }

  .about_box5-2 {
    margin: 2em auto 3em;
    padding: 0 1em;
  }

  .about_box5-2 img {
    margin: 1em 0.3em 2em;
  }

  .about_box5-2::after {
    content: normal;
  }

  .about_box6 dl dd {
    width: calc(100% / 3.3);
  }

  .map_items {
    width: 100%;
    min-height: auto;
    padding: 1em;
  }
}

@media (max-width: 576px) {
  .about_box6 dl dd {
    width: calc(100% / 2.15);
  }

  .map_items {
    padding: 1em .5em;
  }
}

@media (max-width: 480px) {
  .about_box6 dl {
    padding: 0 1em;
  }

  .about_box6 dl dd {
    width: 100%;
    margin: 1.5em 0;
  }
}

/* privacy */
.privacy_button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  background-color: #006dbb;
  z-index: 99;
  text-align: center;
}

.privacy_button p {
  color: #fff;
  font-size: 1rem;
  line-height: 26px;
  text-align: left;
  width: 100%;
}

.privacy_a {
  display: block;
  background-color: #fff;
  border: 1px solid #fff;
  color: #006dbb;
  font-size: 1rem;
  padding: 0.5em 1em;
  border: 0;
  margin: 1em 1em 0;
}

.privacy_a2 {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  padding: 0.5em 1em;
  margin: 1em 1em 0;
}

@media (max-width: 480px) {
  .privacy_button p {
    font-size: 0.92rem;
  }
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }

  .fade:not(.show) {
    opacity: 0;
  }
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  margin: 0 auto;
}

.btn-close {
  box-sizing: content-box;
  width: 18px;
  height: 18px;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 1;
  position: absolute;
  bottom: -2.5em;
  right: 0;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.btn-close:focus {
  outline: 0;
  opacity: 1;
}

.pro_col {
  border: #ccc 1px solid;
  border-radius: 5px;
  background-color: #fff;
  padding: 1em;
  margin-bottom: .5em;
}

.pro_col:hover {
  border: #dc000c 1px solid;
}

.pro_txt {
  color: #333;
}

.pro_txt p {
  font-size: 1em;
  color: #999;
}

.pro_txt h4 {
  letter-spacing: 0;
  font-weight: 600;
  font-family: ;
  font-size: 1.3em;
}

.icon {
  border: #eee 1px solid;
  padding: 3px;
  border-radius: 5em;
}

#threesixty {
  background: no-repeat center;
}

#gotop2 {
  background: transparent;
  color: #333333;
  text-align: right;
  border: 0px solid #999999;
  padding: 0px;
  width: 50px;
  position: fixed;
  bottom: 3em;
  height: 180px;
  right: 1%;
  margin-left: 0px;
  _position: absolute;
  _top: expression(documentElement.scrollTop+documentElement.clientHeight-this.clientHeight-4);
  z-index: 4;
}

@media (max-width: 768px) {
  #gotop2 {
    width: 45px;
    bottom: 1.5em;
    right: 2.5%;
  }

  .top {
    margin: .5em auto 0;
  }

  .top svg {
    width: 43px;
  }
}

/* member search */
.member_tab {
  margin: 2.5em auto 1.5em;
}

.member_tab .nav-tabs {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.member_tab .nav-tabs .nav-item {
  width: 23%;
}

.member_tab .nav-tabs .nav-item .nav-link {
  cursor: pointer;
  background-color: #999;
  text-align: center;
  padding: 1em;
  border-radius: 4px;
  color: #fff;
}

.member_tab .nav-tabs .nav-item .nav-link.active {
  background-color: #dc000c;
}

.member_search_form {
  background-color: #F5F5F7;
  padding: 3em 2.5em;
}

.member_search_form label {
  display: block;
}

.member_search_form .form-control {
  height: 46px;
}

.member_search_form button {
  height: 46px;
  width: 100%;
  background-color: #006dbb;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 4px;
  border: 0;
}

.member_search_form button:hover,
.member_search_form button:focus {
  background-color: #dc000c;
}

.member_s_table table tr th {
  width: 23%;
}

.member_search_form .form-control {
  height: 46px;
}

.wrap-custom-file {
  position: relative;
}

.wrap-custom-file input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0;
}

.wrap-custom-file label {
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wrap-custom-file label b {
  font-size: 0.92rem;
  color: #006dbb;
  font-weight: 500;
  width: 100%;
  height: 46px;
  border: 1px solid #006dbb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap-custom-file label span {
  display: block;
  font-size: 1.1rem;
  color: #006dbb;
  font-weight: 500;
}

.wrap-custom-file label.file-ok .fa {
  display: none;
}

@media (max-width: 991px) {
  .member_search_form .select2-container {
    margin: .5em 0 0;
  }

  .member_search_form .form-control {
    margin: .5em 0;
  }

  .member_search_form button {
    margin: .5em 0;
  }

  .member_tab .nav-tabs .nav-item {
    width: 48%;
    margin: .5em 0;
  }

  .member_tab {
    margin: 2.5em auto 0.5em;
  }

  .member_search_form label {
    margin-top: 1em;
  }
}

@media (max-width: 767px) {
  .member_s_table .rwd-table tr td:first-child {
    margin-bottom: 1em;
    background-color: #F5F5F7;
    padding-bottom: .5em;
  }

  .member_s_table .rwd-table tr td:first-child::before {
    margin-right: 0;
  }

  .member_s_table .rwd-table tr td::before {
    margin-right: 1em;
  }

  .member_search_form {
    padding: 2em 1.5em;
  }

  .member_search_form button {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .member_search_form button {
    margin-bottom: 1.5em;
  }
}

@media (max-width: 480px) {
  .member_tab .nav-tabs .nav-item .nav-link {
    padding: 1em 0.3em;
  }

  .member_search_form {
    padding: 1em;
  }
}

@media (max-width: 400px) {
  .member_tab .nav-tabs .nav-item {
    width: 100%;
  }

  .member_tab .nav-tabs .nav-item .nav-link {
    padding: 0.6em 0.3em;
  }
}


/* products_upload */
.p_upload table tr td a {
  color: #dc000c;
}

.p_upload table tr td a:hover,
.p_upload table tr td a:focus {
  color: #006dbb;
}

.products_upload_submit {
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  ;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #006dbb;
}

.products_upload_submit a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dc000c;
  padding: .7em 1em;
  color: #fff;
  border-radius: 4px;
  width: 200px;
}

.products_upload_submit a:hover,
.products_upload_submit a:focus {
  background-color: #006dbb;
}

.products_upload_submit a svg {
  margin-left: .6em;
}

.products_total {
  margin: .8em .8em 1em 0;
  font-size: 1.125rem;
}

.products_total span {
  color: #006dbb;
}

.products_qty {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dc000c;
  padding: .5em 1em;
  color: #fff;
  border-radius: 4px;
  width: 200px;
  font-size: 1.125rem;
  margin: 0 0 0 auto;
}

.products_qty:hover,
.products_qty:focus {
  background-color: #006dbb;
}

.products_qty svg {
  margin-left: .5em;
}

.p_upload table tr td span {
  display: block;
  font-size: 0.83rem;
  color: #dc000c;
  line-height: 18px;
  margin-top: .6em;
}

.p_upload table tr td .form-control {
  margin: 0 0.5em;
  width: 100px;
}

.p_upload .rwd-table {
  overflow: hidden;
}

.p_upload .rwd-table th {
  display: none;
}

.p_upload .rwd-table td {
  display: block;
}

.p_upload .rwd-table td:before {
  content: attr(data-th) "";
  display: inline-block;
}

@media (min-width: 991px) {
  .p_upload .rwd-table td {
    display: table-cell;
  }

  .p_upload .rwd-table td:before {
    display: none;
  }

  .p_upload .rwd-table th {
    display: table-cell;
  }
}

@media (max-width: 991px) {
  .p_upload .rwd-table tr td:first-child {
    margin-bottom: 1em;
    background-color: #F5F5F7;
    padding-bottom: .5em;
  }

  .p_upload .rwd-table tr td:first-child::before {
    margin-right: 0;
  }

  .p_upload .rwd-table tr td::before {
    margin-right: 1em;
  }

  .p_upload .rwd-table tr {
    display: flex;
    align-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }

  .p_upload .rwd-table tr td {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1em 0.5em;
    width: 100%;
    text-align: left;
  }

  .p_upload .rwd-table tr td::before {
    display: inline-block;
    color: #006dbb;
    font-weight: 500;
    margin-bottom: 0.5em;
  }

  .p_upload .rwd-table tr td:first-child {
    display: block;
    width: 100%;
    padding: 0 0 .5em;
    text-align: center;
  }

  .p_upload .rwd-table tr td:first-child::before {
    display: block;
    background-color: #006dbb;
    color: #fff;
    padding: 0.5em;
  }

  .p_upload .rwd-table tr td a {
    margin: 0 0 0 auto;
    padding: 0;
  }

  .p_upload .rwd-table tr td img {
    width: 30%;
  }
}

@media (max-width: 767px) {
  .products_upload_submit {
    flex-wrap: wrap;
  }
}


@media (max-width: 480px) {
  .p_upload .rwd-table tr td img {
    width: 45%;
  }

  .products_qty {
    margin: 0 auto;
  }

  .products_upload_submit {
    justify-content: center;
  }
}


/* 404 */

.not_found {
  margin: 2.5em auto;
  text-align: center;
}

.not_found h3 {
  color: #fff;
  font-size: 12rem;
  -webkit-text-stroke: 3px #006dbb;
  text-shadow: 6px 6px 0 #006dbb;
}

.not_found h4 {
  font-size: 1.75rem;
  margin-bottom: .8em;
}

.not_found p {
  font-size: 1.125rem;
}

@media (max-width: 400px) {
  .not_found h3 {
    font-size: 8rem;
  }
}

.like_icon {
  position: relative;
  margin-right: 1em;
}

.like_icon svg {
  cursor: pointer;
  overflow: visible;
  width: 60px;
}

.like_icon svg #heart {
  transform-origin: center;
  animation: animateHeartOut 0.3s linear forwards;
}

.like_icon svg #main-circ {
  transform-origin: 29.5px 29.5px;
}

.like_icon #checkbox {
  display: none;
}

.like_icon #checkbox:checked+label svg #heart {
  transform: scale(0.2);
  fill: #E2264D;
  animation: animateHeart 0.3s linear forwards 0.25s;
}

.like_icon svg #heart:hover,
.like_icon svg #heart:focus {
  transition: all .2s;
  fill: #E2264D;
}

.like_icon #checkbox:checked+label svg #main-circ {
  transition: all 2s;
  animation: animateCircle 0.3s linear forwards;
  opacity: 1;
}

.like_icon #checkbox:checked+label svg #grp1 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}

.like_icon #checkbox:checked+label svg #grp1 #oval1 {
  transform: scale(0) translate(0, -30px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp1 #oval2 {
  transform: scale(0) translate(10px, -50px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp2 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}

.like_icon #checkbox:checked+label svg #grp2 #oval1 {
  transform: scale(0) translate(30px, -15px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp2 #oval2 {
  transform: scale(0) translate(60px, -15px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp3 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}

.like_icon #checkbox:checked+label svg #grp3 #oval1 {
  transform: scale(0) translate(30px, 0px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp3 #oval2 {
  transform: scale(0) translate(60px, 10px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp4 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}

.like_icon #checkbox:checked+label svg #grp4 #oval1 {
  transform: scale(0) translate(30px, 15px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp4 #oval2 {
  transform: scale(0) translate(40px, 50px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp5 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}

.like_icon #checkbox:checked+label svg #grp5 #oval1 {
  transform: scale(0) translate(-10px, 20px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp5 #oval2 {
  transform: scale(0) translate(-60px, 30px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp6 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}

.like_icon #checkbox:checked+label svg #grp6 #oval1 {
  transform: scale(0) translate(-30px, 0px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp6 #oval2 {
  transform: scale(0) translate(-60px, -5px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp7 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}

.like_icon #checkbox:checked+label svg #grp7 #oval1 {
  transform: scale(0) translate(-30px, -15px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp7 #oval2 {
  transform: scale(0) translate(-55px, -30px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}

.like_icon #checkbox:checked+label svg #grp2 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}

.like_icon #checkbox:checked+label svg #grp3 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}

.like_icon #checkbox:checked+label svg #grp4 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}

.like_icon #checkbox:checked+label svg #grp5 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}

.like_icon #checkbox:checked+label svg #grp6 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}

.like_icon #checkbox:checked+label svg #grp7 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}

@keyframes animateCircle {
  40% {
    transform: scale(10);
    opacity: 1;
    fill: #DD4688;
  }

  55% {
    transform: scale(11);
    opacity: 1;
    fill: #D46ABF;
  }

  65% {
    transform: scale(12);
    opacity: 1;
    fill: #CC8EF5;
  }

  75% {
    transform: scale(13);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0.5;
  }

  85% {
    transform: scale(17);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0.2;
  }

  95% {
    transform: scale(18);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0.1;
  }

  100% {
    transform: scale(19);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0;
  }
}

@keyframes animateHeart {
  0% {
    transform: scale(0.2);
  }

  40% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animateHeartOut {
  0% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.p_d_box-2 {
  padding: 0;
  margin-top: 2em;
}

.p_d_box-3 .p_qrcode {
  border: 1px solid #cbcbcb;
  margin: 1em 0;
  border-radius: 0.2em;
}


.p_d_box-3 {
  border-top: 1px solid #cbcbcb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1em;
  margin-bottom: 1em;
}




@media (max-width: 480px) {
  .p_d_box-3 .p_qrcode {
    margin: 0 auto 1em;
  }
}


.game_bg{
  background:url(../images/game2.png) no-repeat center;
  background-size: cover;
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 3em 1em;
}
.game_bg .spinner-widget{
  margin-top: 1.5em;
}














