* {
  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;
  overflow-x: hidden;
  color: #333333;
  font-size: 1rem;
}

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;
  color: #333333;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #cccccc;
}

::-webkit-scrollbar-thumb {
  background-color: #006DBB;
}

::selection {
  background: #E60012;
  color: #fff;
}

.navbar-default {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #006DBB;
  border-top: 7px solid #E60012;
  border-bottom: 7px solid #E60012;
  padding: 0 1.8em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo a h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-left: 0.3em;
  font-weight: 400;
}

.nav_right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav_right ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.nav_right ul li {
  margin: 0 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav_right ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav_right ul li .logout {
  margin-left: .7em;
  text-decoration: underline;
}

.nav_right ul li a svg {
  margin-right: 0.3em;
}

.nav_right ul li a:hover,
.nav_right ul li a:focus {
  color: #29A7E1;
}

.nav_right ul .lang {
  position: relative;
}

.nav_right ul .lang ol {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  padding: 0;
  list-style: none;
  background-color: #00436E;
  margin-top: 0.6em;
}

.nav_right ul .lang ol li {
  margin: 0 auto;
}

.nav_right ul .lang ol li a {
  display: block;
  padding: 0.3em 0.5em;
  text-align: center;
  width: 100%;
}

.nav_right ul .lang ol li a:hover,
.nav_right ul .lang ol li a:focus {
  background-color: #006DBB;
  color: #fff;
}

.nav_right ul .nav_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #29A7E1;
  border-radius: 5px;
  color: #fff;
  letter-spacing: 1px;
  font-size: 0.9375rem;
  min-width: 150px;
  height: 45px;
  padding: 0 .5em;
  text-align: center;
}

.nav_right ul .nav_btn a:hover,
.nav_right ul .nav_btn a:focus {
  background-color: #fff;
  color: #006DBB;
}

.nav_right .search_box {
  position: relative;
}

.nav_right .search_box label {
  display: none;
}

.nav_right .search_box .search_group {
  position: relative;
}

.nav_right .search_box .form-control {
  background-color: #fff;
  border-radius: 5px;
  height: 45px;
}

.nav_right .search_box button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0.6em 1em;
  background-color: transparent;
  border: 0;
}

.toggle_bar {
  display: none;
}

.nav_box {
  display: none;
}

@media (max-width: 1199px) {
  .nav_right ul li {
    margin: 0 0.5em;
  }

}

@media (max-width: 1099px) {
  .logo a svg {
    width: 200px;
  }

  .nav_right ul li {
    margin: 0 0.5em;
  }

  .nav_right ul .nav_btn a {
    letter-spacing: 0px;
    width: 130px;
  }

  .navbar-default {
    padding: 0 1em;
  }

  .logo a h3 {
    margin-left: 0.2em;
  }
}

@media (max-width: 991px) {
  .navbar-default {
    padding: 0 1em;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }

  .logo a h3 {
    margin-left: 0.2em;
    font-size: 1.375rem;
  }

  .toggle_bar {
    display: block;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 38px;
  }

  .toggle_bar 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;
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 0.5em auto;
  }

  .toggle_bar.active i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
  }

  .toggle_bar.active i:nth-last-child(2) {
    opacity: 0;
  }

  .toggle_bar.active i:nth-last-child(3) {
    transform: rotate(-45deg);
  }

  .nav_box {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    margin: auto;
    z-index: 9;
    background-color: #006DBB;
    width: 100%;
    height: calc(100vh - 72px);
    padding: 0;
    box-shadow: 0 23px 25px -25px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    border-top: 4px solid #E60012;
  }

  .nav_dropdown:last-child {
    margin-bottom: 0;
  }

  .nav_dropdown h3 {
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.125rem;
    font-weight: 400;
    cursor: pointer;
    padding: 0.9em 1.5em;
    border-bottom: 1px dotted #bababa;
  }

  .nav_dropdown h3 svg {
    stroke: #fff;
  }

  .nav_dropdown ul {
    display: none;
    background-color: #fff;
    padding: 1.5em;
    list-style: none;
  }

  .nav_dropdown ul li {
    margin-bottom: 0.8em;
  }

  .nav_dropdown ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.6em;
  }

  .nav_dropdown ul li a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    color: #fff;
    font-size: 0.875rem;
    background-color: #006DBB;
  }

  .nav_dropdown ul li:last-child {
    margin-bottom: 0;
  }

  .nav_dropdown ul li:last-child a {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .nav_dropdown:hover h3,
  .nav_dropdown:focus h3,
  .nav_dropdown.active h3 {
    background-color: #E60012;
  }

  .nav_dropdown:hover ul li a:hover,
  .nav_dropdown:hover ul li a:focus,
  .nav_dropdown:focus ul li a:hover,
  .nav_dropdown:focus ul li a:focus,
  .nav_dropdown.active ul li.active2 a {
    color: #006DBB;
  }

  .nav_dropdown.active ul li.active2 a span {
    background-color: #E60012;
  }

  .nav_right ul .search_icon {
    margin-right: 1em;
    cursor: pointer;
  }

  .nav_right .search_box {
    display: none;
    width: 100%;
    padding: 1em 1.5em;
    background-color: #CCCCCC;
    box-shadow: 0 23px 25px -25px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 77px;
    left: 0;
    margin: auto;
  }

  .nav_right .search_box label {
    display: block;
    color: #006DBB;
    font-size: 1.25rem;
    margin-bottom: 0.5em;
  }

  .nav_right .search_box button {
    right: 0.3em;
  }

}

@media (max-width: 899px) {
  .nav_right ul .nav_btn {
    display: none;
  }

  .nav_right .search_box {
    top: 77px;
  }

  .nav_box {
    top: 74px;
    height: calc(100vh - 74px);
  }

}

@media (max-width: 799px) {
  .logo a svg {
    width: 180px;
  }

  .logo a h3 {
    font-size: 1.063rem;
  }
}

@media (max-width: 767px) {
  .navbar-default {
    flex-wrap: wrap;
    padding: 0 1em;
  }

  .navbar-default .logo {
    width: 100%;
    margin-bottom: .5em;
  }

  .navbar-default .logo a {
    justify-content: center;
  }

  .navbar-default .nav_right {
    width: 100%;
  }

  .navbar-default .nav_right ul .nav_btn a {
    height: 35px;
  }

  .navbar-default .nav_right .search_box {
    top: 124px;
    margin-top: -1px;
  }

  .nav_box {
    top: 124px;
    height: calc(100vh - 124px);
    margin-top: 0;
    border-top: 1px solid #E60012;
  }
}

@media (max-width: 480px) {
  .nav_right ul .nav_btn a {
    letter-spacing: 0;
    width: auto;
    padding: 0 0.5em;
  }

  .nav_right ul li a span {
    /* display: none; */
  }

  .nav_right ul .lang ol {
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 424px) {
  .nav_right ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .navbar-default {
    padding: 0 0.7em;
  }

  .navbar-default .nav_right .search_box {
    top: 124px;
    margin-top: -1px;
  }

  .logo a svg {
    width: 150px;
  }

  .nav_box {
    top: 120px;
    height: calc(100vh - 120px);
    /* margin-top: -1px; */
    border-top: 4px solid #E60012;
  }

  .nav_dropdown h3 {
    padding: 0.5em 1em;
  }

  .nav_right ul .lang span {
    display: none;
  }

  .nav_right ul .lang svg {
    margin: 0;
  }

  .nav_right ul .search_icon svg {
    margin-top: .35em;
  }

  .nav_dropdown h3 {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .nav_right ul li {
    margin: 0 0.3em;
  }

  .nav_right ul .search_icon {
    margin: 0 0.5em;
  }
}



.index_banner_slick .in_items a img {
  display: block;
}

.index_banner_slick .slick-prev,
.index_banner_slick .slick-next {
  z-index: 2;
  width: 45px;
  height: 45px;
  transform: none;
  top: 0;
  bottom: 0;
  margin: auto;
}

.index_banner_slick .slick-prev::before,
.index_banner_slick .slick-next::before {
  display: block;
  content: url(../image/icon/arrows.svg);
  width: 45px;
  height: 45px;
  opacity: 1;
}

.index_banner_slick .slick-prev {
  left: 1em;
  transform: scalex(-1);
}

.index_banner_slick .slick-next {
  right: 1em;
}

.in_bg {
  position: relative;
  z-index: 9;
  padding-bottom: 8em;
}

.in_left {
  display: block;
  margin-top: -4.45em;
  position: relative;
}

.in_left h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006DBB;
  text-align: center;
  height: 69px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #fff;
  font-size: 1.375rem;
  width: 100%;
  font-weight: 400;
  letter-spacing: 2px;
}

.in_left h3 svg {
  margin-right: 0.5em;
}

.in_left dl {
  border: 1px solid #006DBB;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.in_left dl dd {
  -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: flex-start;
  padding: 0.7em 2em 0.7em 1.5em;
  font-size: 1.125rem;
  letter-spacing: 1px;
  border-bottom: 1px solid #CCCCCC;
  background: url(../image/icon/arrow-right.svg) no-repeat right center;
  background-position-x: 93%;
  cursor: pointer;
  position: relative;
}

.in_left dl dd:last-child {
  border: 0;
  border-radius: 0 0 8px 8px;
}

.in_left dl dd 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: 1em;
  fill: #006DBB;
}

.in_left dl dd p {
  width: calc(100% - 35px);
}

.in_left dl dd ul {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 285px;
  background-color: #fff;
  border-radius: 0 8px 8px 8px;
  border: 1px solid #F1F1F1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 1em 1.5em 1em 2.5em;
}

.in_left dl dd ul li {
  margin: 0.5em 0;
}

.in_left dl dd ul li::marker {
  color: #006DBB;
}

.in_left dl dd.qa_a svg {
  stroke: #fff;
}

.in_left dl dd:hover,
.in_left dl dd:focus {
  color: #fff;
  background: #E60012 url(../image/icon/arrow-right2.svg) no-repeat right center;
  background-position-x: 93%;
}

.in_left dl dd:hover svg,
.in_left dl dd:focus svg {
  fill: #fff;
}

.in_left dl dd:hover ul,
.in_left dl dd:focus ul {
  display: flex;
}

.in_left dl dd:hover ul li a:hover,
.in_left dl dd:hover ul li a:focus,
.in_left dl dd:focus ul li a:hover,
.in_left dl dd:focus ul li a:focus {
  color: #006DBB;
}

.in_left dl dd:hover.qa_a svg,
.in_left dl dd:focus.qa_a svg {
  stroke: #E60012;
}

.in_left dl dd:hover.qa_a p a,
.in_left dl dd:focus.qa_a p a {
  display: block;
  color: #fff;
}

.in_bg_i {
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.in_bg_i.active {
  display: block;
}

.in_n_bg {
  padding: 0 2.8em;
}

.in_n_title {
  margin-top: 5em;
  margin-bottom: 1.5em;
}

.in_n_title h4 {
  font-size: 2.125rem;
  letter-spacing: 2px;
  font-weight: 400;
}

.in_n_title h3 {
  color: #006DBB;
  letter-spacing: 2px;
  font-weight: 400;
}

.in_n_title h3::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #006DBB;
  margin-right: 0.5em;
}

.in_n_item {
  padding: 1em 1.3em;
  border-bottom: 1px solid #CBCBCB;
}

.in_n_item:last-child {
  border-bottom: 0;
}

.in_n_item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3em 0;
}

.in_n_item .in_n_item_right time {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #E60012;
  font-size: 1.063rem;
  letter-spacing: 1px;
}

.in_n_item .in_n_item_right time svg {
  margin-right: 0.4em;
}

.in_n_item .in_n_item_right 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);
  font-size: 1.063rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 0.5em;
  padding-right: 1em;
}

.in_n_item .in_n_item_left svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.in_n_item .in_n_item_left svg #arrows2-2 {
  -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);
  stroke: #006DBB;
}

.in_n_item .in_n_item_left svg #arrows3 {
  -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);
  stroke: #006DBB;
}

.in_n_item:hover .in_n_item_right h3,
.in_n_item:focus .in_n_item_right h3 {
  color: #006DBB;
}

.in_n_item:hover .in_n_item_left svg #arrows2-2,
.in_n_item:focus .in_n_item_left svg #arrows2-2 {
  stroke: none;
  fill: #006DBB;
}

.in_n_item:hover .in_n_item_left svg #arrows3,
.in_n_item:focus .in_n_item_left svg #arrows3 {
  stroke: #fff;
}

.in_bottom_box {
  position: relative;
}

.in_bottom_box .in_hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 1.7em 1.5em;
}

.in_bottom_box .in_hover::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);
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 109, 187, 0.65);
  z-index: -1;
}

.in_bottom_box .in_hover h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.in_bottom_box img {
  display: block;
  width: 100%;
}

.in_bottom_box:hover .in_hover::before,
.in_bottom_box:focus .in_hover::before {
  width: 95%;
  height: 82%;
}

.in_bottom_box2 {
  position: relative;
}

.in_bottom_box2 .in_hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 1.7em 1.5em;
}

.in_bottom_box2 .in_hover::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);
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 0, 18, 0.75);
  z-index: -1;
}

.in_bottom_box2 .in_hover h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.in_bottom_box2 img {
  display: block;
  width: 100%;
}

.in_bottom_box2:hover .in_hover::before,
.in_bottom_box2:focus .in_hover::before {
  width: 95%;
  height: 82%;
}

.footer {
  background-color: #333333;
  padding: 2.5em 0 1em;
  position: relative;
}

.footer p {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.9375rem;
  margin-top: 1.3em;
  letter-spacing: 1px;
  font-weight: 300;
}

.footer p a {
  color: #fff;
}

.top {
  position: absolute;
  right: 1.5em;
  top: 1.5em;
  cursor: pointer;
}

.top svg .st0 {
  -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;
}

.top svg .st1 {
  -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);
  stroke: #fff;
}

.top:hover svg .st0,
.top:focus svg .st0 {
  fill: #006DBB;
}

.top:hover svg .st1,
.top:focus svg .st1 {
  stroke: #fff;
}

.footer_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
}

.footer_box ul {
  list-style: none;
  padding: 0;
  margin-top: 1em;
}

.footer_box ul li {
  display: inline-block;
  vertical-align: middle;
}

.footer_box ul li::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 1px;
  height: 14px;
  background-color: #fff;
  margin: 0 0.5em;
}

.footer_box ul li a {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.footer_box ul li a:hover,
.footer_box ul li a:focus {
  color: #006DBB;
}

.footer_box ul li:last-child::after {
  content: normal;
}

.footer_box ol {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  color: #fff;
  margin-top: 2em;
}

.footer_box ol li {
  font-size: 0.9375rem;
  margin-right: 0.8em;
  font-weight: 300;
  letter-spacing: 2px;
}

.footer_box ol li 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);
  fill: #fff;
}

.footer_box ol li a:hover svg,
.footer_box ol li a:focus svg {
  fill: #006DBB;
}

.footer_box dl dd {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 0.7em;
}

.footer_box dl dd a {
  color: #fff;
}

.footer_box dl dd svg {
  margin-right: 1em;
}

.footer_box_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 1em;
}

.footer_box_right img {
  width: 100px;
  margin-left: 1.5em;
}





@media (max-width: 1399px) {
  .in_n_bg {
    padding: 0 1.5em;
  }

  .in_bottom_box .in_hover,
  .in_bottom_box2 .in_hover {
    padding: 1.1em;
  }
}

@media (max-width: 1199px) {
  .in_n_bg {
    padding: 0 0.8em;
  }
}

@media (max-width: 1099px) {
  .in_n_bg {
    padding: 0 0.8em;
  }

  .in_left dl dd {
    padding: 0.7em 1.5em 0.7em 0.7em;
  }
}

@media (max-width: 991px) {
  .index_banner_slick {
    margin-top: 4em;
  }

  .in_left {
    display: none;
  }

  .in_left dl dd {
    flex-wrap: wrap;
    background-position-x: 97%;
    background-position-y: 25px;
    padding: 0.7em;
  }

  .in_left dl dd p {
    width: calc(100% - 60px);
  }

  .in_left dl dd ul {
    position: initial;
    width: 100%;
    border-radius: 8px;
    margin-top: 0.5em;
  }

  .in_left dl dd:hover,
  .in_left dl dd:focus {
    background-position-x: 97%;
    background-position-y: 25px;
  }

  .in_left dl dd:hover ul,
  .in_left dl dd:focus ul {
    display: none;
  }

  .in_n_title {
    margin-top: 2.8em;
  }

  .in_bg {
    padding-bottom: 3em;
  }

  .in_bottom_box .in_hover,
  .in_bottom_box2 .in_hover {
    padding: 0.8em;
  }

  .top {
    top: 1em;
  }
}

@media (max-width: 767px) {
  .index_banner_slick {
    margin-top: 6.5em;
  }

  .in_bottom_box .in_hover {
    padding: 1.2em 1em;
  }

  .in_bottom_box2 .in_hover {
    padding: 1.2em 1em;
  }

  .footer_box ul {
    text-align: center;
  }

  .footer_box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_box dl {
    /* text-align: center; */
    margin-top: 1.5em;
  }

  .footer_box_right {
    margin-left: 0;
  }

  .footer_box dl dd {
    margin-bottom: 0.3em;
  }

  .in_bottom_box .in_hover {
    padding: 0.8em;
  }

  .in_bottom_box2 .in_hover {
    padding: 0.8em;
  }
}

@media (max-width: 699px) {}

@media (max-width: 576px) {
  /* .index_banner_slick {
    margin-top: 4em;
  } */

  .in_n_item {
    padding: 1em 0;
  }
}

@media (max-width: 480px) {
  .in_left {
    margin-top: -2em;
  }

  .in_left h3 {
    height: 50px;
  }

  .footer_box dl {
    margin-top: 1em;
  }

  .footer_box dl dd svg {
    margin-right: 0.5em;
  }

  .footer {
    padding: 2em 0 1em;
  }

  .footer p {
    margin-top: 0.8em;
  }

  .top {
    right: 0.9em;
  }
}

@media (max-width: 400px) {
  .index_banner_slick {
    margin-top: 6.5em;
  }

  .top {
    top: 5.5em;
  }

  .footer_box_right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_box_right dl {
    width: 100%;
  }

  .footer_box_right img {
    margin-top: 1em;
  }
}

.p_bg {
  padding: 5em 0 7em;
}

.products_banner {
  background: no-repeat top center;
  background-size: cover;
  height: 442px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1em;
  margin-top: 4.9em;
}

.products_banner h1,
.products_banner .h1 {
  color: #006DBB;
  font-size: 2rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  max-width: 655px;
  width: 100%;
  text-align: center;
}

.products_banner h2 {
  color: #000;
  font-size: 1.125rem;
  max-width: 655px;
  width: 100%;
  text-align: center;
}

.bread_box {
  display: block;
  background-color: #F2F2F2;
}

.bread_box ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 85%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  padding: 0.6em 0;
}

.bread_box ul li {
  margin-right: 0.5em;
  letter-spacing: 1px;
  font-size: 0.9375rem;
}

.bread_box ul li:first-child a {
  color: #006DBB;
}

.p_left_box {
  margin: 0 auto;
  padding: 0 3em;
}

.p_left_box .p_left_items {
  -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);
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  margin-bottom: 0.5em;
  cursor: pointer;
}

.p_left_box .p_left_items .p_left_dropdown {
  -webkit-transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7em 1em;
  background-color: #fff;
  border-radius: 5px;
}

.p_left_box .p_left_items .p_left_dropdown .p_arrow {
  stroke: #006DBB;
}

.p_left_box .p_left_items .p_left_dropdown h3 {
  -webkit-transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.938rem;
  font-weight: 400;
}

.p_left_box .p_left_items .p_left_dropdown h3 svg {
  -webkit-transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  margin-right: 0.4em;
  fill: #006DBB;
}

.p_left_box .p_left_items .p_left_dropdown h3 span {
  -webkit-transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  width: calc(100% - 35px);
}

.p_left_box .p_left_items .qa_a {
  -webkit-transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.7em 1em;
  background-color: #fff;
  border-radius: 5px;
}

.p_left_box .p_left_items .qa_a svg {
  -webkit-transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  margin-right: 0.5em;
  fill: #006DBB;
  stroke: #fff;
}

.p_left_box .p_left_items .qa_a span {
  -webkit-transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3 cubic-bezier(0.42, 0, 0.58, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.063rem;
  font-weight: 400;
  width: calc(100% - 35px);
}

.p_left_box .p_left_items .qa_a span a {
  display: block;
  width: 100%;
}

.p_left_box .p_left_items ul {
  display: none;
  padding: 0.7em 1em;
  list-style: none;
}

.p_left_box .p_left_items ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0.8em;
  border-bottom: 1px solid #CCCCCC;
  font-size: 1.063rem;
  letter-spacing: 1px;
}

.p_left_box .p_left_items ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  color: #fff;
  font-size: 0.875rem;
  background-color: #006DBB;
}

.p_left_box .p_left_items ul li a:hover,
.p_left_box .p_left_items ul li a:focus {
  color: #006DBB;
}

.p_left_box .p_left_items ul li.active a {
  background-color: #29A7E1;
  border-radius: 3px;
  color: #fff;
}

.p_left_box .p_left_items ul li.active a span {
  background-color: #E60012;
}


.p_left_box .p_left_items ul li:last-child a {
  border-bottom: 0;
}

.p_left_box .p_left_items.active {
  border-color: #006DBB;
}

.p_left_box .p_left_items.active .p_left_dropdown {
  background-color: #006DBB;
  border-radius: 5px 5px 0 0;
}

.p_left_box .p_left_items.active .p_left_dropdown .p_arrow {
  stroke: #fff;
}

.p_left_box .p_left_items.active .p_left_dropdown h3 svg {
  fill: #fff;
}

.p_left_box .p_left_items.active .p_left_dropdown h3 span {
  color: #fff;
}

.p_left_box .p_left_items.active .p_left_dropdown ul li a {
  color: #006DBB;
}

.p_title h1 {
  font-size: 1.625rem;
  border-left: 3px solid #006DBB;
  padding-left: 0.5em;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1.2em;
}

.p_table table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 2px solid #006DBB;
}

.p_table table tr th {
  background-color: #006DBB;
  padding: 0.5em 1.5em;
  color: #fff;
  font-weight: normal;
  text-align: center;
  letter-spacing: 2px;
}

.p_table table tr th:first-child {
  text-align: left;
}

.p_table table tr td {
  padding: 0.8em 1.5em;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 1px;
  border-bottom: 1px solid #CCCCCC;
}

.p_table table tr td span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  background-color: #DC000C;
  color: #fff;
  border-radius: 100%;
  font-size: 0.625rem;
  letter-spacing: -1px;
  margin-left: 1em;
}

.p_table table tr td:first-child {
  text-align: left;
}

.p_table table tr td a:hover,
.p_table table tr td a:focus {
  color: #006DBB;
}

.p_table table tr:nth-child(odd) {
  background-color: #F6F6F6;
}

.page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 2em;
}

.page ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}

.page ul li {
  margin: 0 0.2em;
}

.page ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006DBB;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 100%;
}

.page ul li:hover a,
.page ul li:focus a,
.page ul li.active a {
  background-color: #006DBB;
  color: #fff;
}

.page ul li.pre {
  transform: scaleX(-1);
}

.page ul li.pre:hover a,
.page ul li.pre:focus a,
.page ul li.pre.active a,
.page ul li.nex:hover a,
.page ul li.nex:focus a,
.page ul li.nex.active a {
  background-color: #fff;
  opacity: 0.5;
}

.page_select form {
  display: flex;
  align-items: center;
}

.page_select form label {
  font-size: 1rem;
  letter-spacing: 1px;
}

.page_select form .form-select {
  width: 78px;
  height: 32px;
  border: 1px solid #CCCCCC;
  text-align: center;
  margin-left: 0.5em;
  font-size: 1rem;
}

.p_title2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 0.6em;
  margin-bottom: 1em;
}

.p_title2 h1 {
  font-size: 1.875rem;
  letter-spacing: 1px;
  font-weight: normal;
}

.p_title2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 121px;
  height: 34px;
  border-radius: 5px;
  background-color: #006DBB;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.p_social ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
}

.p_social ul li {
  margin-left: 0.6em;
  font-size: 0.875rem;
}

.p_title3 {
  margin-bottom: 1.5em;
}

.p_title3 h3 {
  display: block;
  width: 100%;
  font-size: 1.375rem;
  color: #006DBB;
  border-left: 3px solid #E60012;
  padding-left: 0.5em;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0.7em;
}

.p_box {
  margin-bottom: 2.5em;
}

.p_box p {
  font-size: 1.125rem;
  line-height: 30px;
  letter-spacing: 1px;
}

.p_box p a {
  margin: 0 auto;
  background-color: transparent;
  color: #006dbb;
  padding: 0;
  border-radius: 0;
}

.p_box img {
  display: block;
  margin: 0 auto;
}

.p_box span {
  display: block;
  border-radius: 50px;
  background-color: #006DBB;
  text-align: center;
  font-size: 0.9375rem;
  color: #fff;
  line-height: 26px;
  margin-top: 1em;
  letter-spacing: 1px;
  padding: 0 1em;
}

.p_box table {
  border-collapse: collapse;
  width: 100%;
  border-bottom: 2px solid #006DBB;
}

.p_box table tr:nth-child(odd) {
  background-color: #EFEFEF;
}

.p_box table tr th {
  background-color: #006DBB;
  padding: 0.5em;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.p_box table tr td {
  padding: 0.5em;
  font-size: 1rem;
}

.p_box table tr td:first-child {
  text-align: center;
  width: 30%;
}

.p_box ol {
  margin-bottom: 1em;
}

.p_box ol li {
  margin-bottom: .5em;
}

.p_box ol li::marker {
  color: #006DBB;
}

.p_box a {
  display: inline-block;
  background-color: #006DBB;
  border-radius: 4px;
  font-size: 1.125rem;
  padding: .5em;
  color: #fff;
  margin: .5em auto;
}

.p_box a svg {
  margin-left: .5em;
}

.p_box2 {
  background-color: #F6F6F6;
  padding: 2em 3em;
  border-bottom: 1px solid #CCCCCC;
}

.p_box2 h3 {
  font-size: 1.375rem;
  border-left: 3px solid #E60012;
  padding-left: 0.5em;
  color: #006DBB;
  letter-spacing: 1px;
  font-weight: 400;
}

.p_box2 img {
  display: block;
  width: 100%;
}

.p_box2 p {
  padding: 0 1em;
  margin-top: 1em;
  text-align: center;
  margin-bottom: 3em;
}

.p_box3 {
  display: block;
  margin: 3em auto 0.3em;
}

.p_box3 h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.25rem;
  color: #006DBB;
  letter-spacing: 2px;
}

.p_box3 h3 svg {
  margin-right: 0.5em;
}

.p_d_slick {
  width: 96%;
  margin: 0 auto;
}

.p_d_slick a {
  display: block;
  padding: 1em;
}

.p_d_slick a img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.p_d_slick .slick-prev,
.p_d_slick .slick-next {
  width: 20px;
  height: 18px;
  z-index: 9;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}

.p_d_slick .slick-prev::before,
.p_d_slick .slick-next::before {
  content: url(../image/icon/arrow-right.svg);
  width: 20px;
  height: 18px;
  opacity: 1;
}

.p_d_slick .slick-prev {
  transform: scaleX(-1);
}

.p_d_slick .slick-disabled {
  opacity: 0;
}

.p_back_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4em;
}

.p_back_box ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5em 0;
}

.p_back_box ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #006DBB;
  font-size: 1rem;
}

.p_back_box ul li a:hover,
.p_back_box ul li a:focus {
  color: #E60012;
}

.p_back_box ul li i {
  display: block;
  width: 1px;
  height: 27px;
  background-color: #707070;
  margin: 0 1em;
}

.p_back_box ul .pre svg {
  transform: scaleX(-1);
  margin-right: 1em;
}

.p_back_box ul .nex svg {
  margin-left: 1em;
}

.p_back_box .p_back {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E60012;
  border-radius: 5px;
  width: 177px;
  height: 53px;
  color: #fff;
  margin: 0.5em 0;
}

.p_back_box .p_back:hover,
.p_back_box .p_back:focus {
  background-color: #006DBB;
}

.message_box {
  margin-top: 3em;
}

.message_box h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006DBB;
  border-radius: 5px;
  color: #fff;
  font-size: 1.125rem;
  padding: 0.2em 0;
  font-weight: 400;
}

.message_box h3 svg {
  margin-right: 0.1em;
}

.m_items .m_q {
  padding: 2em 2em 1em;
}

.m_items .m_q h4 {
  font-size: 1.125rem;
  border-left: 3px solid #006DBB;
  padding-left: 0.5em;
  font-weight: 400;
  letter-spacing: 1px;
}

.m_items .m_q ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  padding-left: 0.8em;
  margin: 0.7em auto;
}

.m_items .m_q ul li time {
  color: #E60012;
}

.m_items .m_q ul li::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  margin: 0 0.8em;
  width: 1px;
  height: 20px;
  background-color: #CCCCCC;
}

.m_items .m_q ul li:last-child::after {
  content: normal;
}

.m_items .m_a {
  background-color: #F5F5F5;
  border-radius: 5px;
  padding: 1.5em 2em;
  border-top: 1px solid #CCCCCC;
}

.m_items .m_a ol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.m_items .m_a ol li {
  font-size: 1rem;
  letter-spacing: 1px;
}

.m_items .m_a ol li:first-child {
  color: #006DBB;
}

.m_items .m_a ol li:last-child {
  color: #E60012;
}

.m_items .m_a .m_content {
  background-color: #fff;
  padding: 1em;
  margin-top: 1em;
  min-height: 92px;
}

.message_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 53px;
  border-radius: 5px;
  background-color: #006DBB;
  color: #fff;
  background-color: #006DBB;
  margin: 3.5em auto 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #006DBB;
  cursor: pointer;
}

.message_editor {
  display: none;
  background-color: #F5F5F5;
  padding: 3em 1.5em 1em;
  position: relative;
  top: -1.5em;
  border-bottom: 1px solid #006DBB;
  border-radius: 5px;
}

.message_editor h3 {
  margin-right: 0.8em;
  font-weight: normal;
  margin-bottom: 0.5em;
}

.message_editor .form-control {
  border-right: 0;
  border: 0;
  margin: 1.3em auto;
}

.message_editor dl {
  display: flex;
  align-items: center;
  justify-content: center;
}

.message_editor dl dd {
  margin: 1em 0.7em;
}

.message_editor dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 39px;
  border-radius: 5px;
}

.message_editor dl dd.cancel a {
  background-color: #CCCCCC;
}

.message_editor dl dd.sumit a {
  background-color: #E60012;
  color: #fff;
}

.message_editor dl dd.sumit a:hover,
.message_editor dl dd.sumit a:focus {
  background-color: #006DBB;
}

.p_bottom {
  padding: 0 2.5em;
  margin: 4em auto 5em;
}

.p_bottom h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1em;
  letter-spacing: 2px;
  font-weight: 400;
}

.p_bottom h3 svg {
  margin-right: 0.4em;
}

.p_bottom_slick .slick-prev,
.p_bottom_slick .slick-next {
  transform: none;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 35px;
  height: 35px;
  z-index: 1;
}

.p_bottom_slick .slick-prev::before,
.p_bottom_slick .slick-next::before {
  display: block;
  content: url(../image/icon/arrows2.svg);
  border-radius: 100%;
  background-color: #fff;
  width: 35px;
  height: 35px;
}

.p_bottom_slick .slick-prev {
  transform: scaleX(-1);
  left: -35px;
}

.p_bottom_slick .slick-next {
  right: -35px;
}

.p_bottom_slick a {
  padding: 1.5em;
  background-color: #fff;
  margin: 0.7em 0.8em;
  min-height: 320px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.p_bottom_slick a img {
  display: block;
  margin: 0 auto 1.5em;
}

.p_bottom_slick a h4 {
  font-size: 1.125rem;
  font-weight: 400;
}

.p_bottom_slick a span {
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em 0.8em;
  background-color: #006DBB;
  color: #fff;
  margin-top: 1em;
  border-radius: 50px;
  font-size: 1rem;
}

.p_bottom_slick a:hover,
.p_bottom_slick a:focus {
  box-shadow: none;
}

.rwd-table {
  overflow: hidden;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:before {
  content: attr(data-th) "";
  display: inline-block;
}

@media (min-width: 767px) {
  .rwd-table td:before {
    display: none;
  }

  .rwd-table th,
  .rwd-table td {
    display: table-cell;
  }
}

@media (max-width: 1499px) {
  .p_left_box {
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .p_left_box .p_left_items ul {
    padding: 0.7em 0.5em;
  }
}

@media (max-width: 1199px) {
  .bread_box ul {
    width: 90%;
  }
}

@media (max-width: 1099px) {
  .p_bg {
    padding: 3em 0 4em;
  }
}

@media (max-width: 991px) {
  .p_d_slick .slick-next {
    right: -12px;
  }

  .p_d_slick .slick-prev {
    left: -12px;
  }

  .p_left_box {
    display: none;
  }
}

@media (max-width: 767px) {
  .products_banner {
    height: 310px;
    margin-top: 5.7em;
  }

  .products_banner h1,
  .products_banner .h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    max-width: 500px;
  }

  .products_banner h2 {
    max-width: 500px;
  }

  .p_table table tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #CCCCCC;
  }

  .p_table table tr td {
    flex: 1 1 auto;
    border: 0;
    display: none;
    position: relative;
  }

  .p_table table tr td::before {
    /* color: #006DBB; */
    /* font-weight: 400; */
    margin-right: 0.3em;
    width: 5px;
    height: 5px;
    background-color: #006DBB;
    vertical-align: middle;
  }

  .p_table table tr td::after {
    display: inline-block;
    content: '';
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35 35'%3E%3Cg transform='translate(-688 -1428)'%3E%3Cg transform='translate(688 1428)' stroke-width='1.2' stroke='%23006DBB' fill='none'%3E%3Ccircle cx='17.5' cy='17.5' r='17.5' stroke='none'%3E%3C/circle%3E%3Ccircle cx='17.5' cy='17.5' r='17' fill='none'%3E%3C/circle%3E%3C/g%3E%3Cg transform='translate(-0.5 0.5)' stroke='%23006DBB'%3E%3Cline x2='5' y2='5' transform='translate(703.5 1440.5)' fill='none' stroke-linecap='round' stroke-width='2'%3E%3C/line%3E%3Cline y1='5' x2='5' transform='translate(703.5 1445.5)' fill='none' stroke-linecap='round' stroke-width='2'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center;
    padding: 1px;
    margin-left: .6em;
  }

  .p_table table tr td a {
    width: calc(100% - 45px);
  }

  .p_table table tr td:first-child {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  }

  .p_left_box {
    display: none;
  }

  .p_title2 {
    flex-wrap: wrap;
  }

  .p_title2 span {
    margin: 0.5em 0;
  }

  .p_d_slick .slick-next {
    right: -10px;
  }

  .p_d_slick .slick-prev {
    left: -10px;
  }
}

@media (max-width: 567px) {
  .p_bottom {
    margin: 2em auto 3em;
  }

  .page {
    flex-wrap: wrap;
  }

  .page_select {
    margin: 0 auto 1em;
  }

  .page ul {
    width: 100%;
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .products_banner {
    height: 230px;
    padding: 0 2.5em;
    text-align: center;
  }

  .products_banner h1,
  .products_banner .h1 {
    font-size: 1.125rem;
    letter-spacing: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    -webkit-text-stroke: 0.005em #fff;
    font-weight: 700;
    max-width: 500px;
  }

  .products_banner h2 {
    font-size: 0.875rem;
    max-width: 500px;
  }

  .bread_box ul {
    flex-wrap: wrap;
  }

  .p_back_box ul {
    width: 100%;
    justify-content: center;
  }

  .p_back_box .p_back {
    margin: 0.5em auto;
  }

  .p_box2 {
    padding: 1.5em;
  }

  .p_table table tr td {
    padding: 0.8em 0.5em;
    width: 33%;
  }

  .p_table table tr td:first-child {
    width: 100%;
  }

  .m_items .m_q {
    padding: 1.5em 1em 1em;
  }

  .m_items .m_a {
    padding: 1.5em 1em;
  }
}

@media (max-width: 400px) {
  .products_banner {
    height: 195px;
    padding: 0 2em;
  }

  .p_bottom_slick a {
    padding: 1.5em 1em;
    margin: 0.7em 0.5em;
    min-height: auto;
  }
}

.p_5rem {
  padding: 0 1em;
}

.qa_box {
  display: block;
  background-color: rgba(0, 109, 187, 0.08);
  border-radius: 5px;
  padding: 1.7em;
  position: relative;
  margin: 3em auto;
}

.qa_box .q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1em;
  cursor: pointer;
}

.qa_box .q h3 {
  font-weight: 400;
  width: calc(100% - 15px);
}

.qa_box .q span {
  position: absolute;
  top: -1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  border-radius: 100%;
  background-color: #006DBB;
  font-size: 1.25rem;
  margin-right: 1em;
  color: #fff;
}

.qa_box .a {
  -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: 5px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 0;
  overflow: hidden;
  -webkit-animation: slidetoggle 0.5s;
  -moz-animation: slidetoggle 0.5s;
  -ms-animation: slidetoggle 0.5s;
  -o-animation: slidetoggle 0.5s;
  animation: slidetoggle 0.5s;
  padding: 0 1.5em;
}

.qa_box .a.active {
  height: auto;
  margin-top: 1.8em;
  padding: 1.5em 1.5em 3em;
}

.qa_box .a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: rgba(230, 0, 18, 0.1);
  font-size: 1.125rem;
  margin-right: 1em;
  font-style: normal;
}

.qa_box .a .p {
  width: calc(100% - 65px);
  font-size: 1.125rem;
  line-height: 30px;
  word-break: break-all;
}

@-webkit-keyframes slidetoggle {
  from {
    display: none;
    height: 0;
  }

  to {
    display: flex;
    height: auto;
  }
}

@media (max-width: 767px) {
  .p_5rem {
    padding: 0 1em;
  }
}

@media (max-width: 576px) {
  .qa_box {
    padding: 1.3em;
  }

  .qa_box .a {
    display: block;
    padding: 0 1em;
  }

  .qa_box .a.active {
    padding: 1em 1em 2em;
  }

  .qa_box .a i {
    margin-bottom: 0.5em;
  }

  .qa_box .a .p {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .p_5rem {
    padding: 0 0.5em;
  }

  .qa_box {
    margin: 2.5em auto 2em;
  }
}

/* login */

.login_banner {
  margin-top: 8.35em;
  /* login banner往下移動*/
  height: auto;
}

.login_box {
  background-color: #F5F5F5;
  border-top: 1px solid #CCCCCC;
  padding: 2em 2.5em;
}

.login_box label {
  display: block;
  color: #005CAF;
  font-size: 1rem;
  margin-bottom: 1em;
}

.login_box .form-control {
  border: 0;
  border-radius: 0;
  height: 48px;
  margin-bottom: 2em;
}

.login_box button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #005CAF;
  width: 144px;
  height: 40px;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  border: 0;
  border-radius: 5px;
}

.login_boxbottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login_boxbottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.login_boxbottom ul li:last-child::after {
  content: normal;
}

.login_boxbottom ul li::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 1px;
  height: 14px;
  background-color: #333333;
  margin: 0 0.7em;
}

.login_boxbottom ul li a {
  color: #005CAF;
}

.login_boxbottom ul li a:hover,
.login_boxbottom ul li a:focus {
  color: #E60012;
}



@media (max-width: 991px) {

  .login_banner {
    margin-top: 8em;
  }

}


@media (max-width: 480px) {
  .login_box {
    padding: 2em 1.5em;
  }
}

@media (max-width: 424px) {
  .login_boxbottom {
    flex-wrap: wrap;
  }

}

@media (max-width: 400px) {
  .login_boxbottom ul {
    width: 100%;
    margin-bottom: 1.3em;
    justify-content: center;
  }

  .login_box button {
    margin: 0 auto;
  }

}

/* 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: 16px;
  padding: .5em 1em;
  border: 0;
  margin: 1em 1em 0;
}

.privacy_a2 {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  padding: .5em 1em;
  margin: 1em 1em 0;
}

@media (max-width: 480px) {
  .privacy_button p {
    font-size: 0.92rem;
  }

}

#gotop2 {
  background: transparent;
  color: #333333;
  text-align: right;
  border: 0px solid #999999;
  padding: 0px;
  width: 50px;
  position: fixed;
  bottom: -4em;
  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: -4em;
    right: 2.5%;
  }

  .top {
    margin: .5em auto 0;
    bottom: -4em;
  }

  .top svg {
    width: 43px;
  }
}

.form-select {
  display: block;
  width: 100%;
  padding: .375rem 2.25rem .375rem .75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.m10_form {
  background-color: #f5f5f5;
  margin: 2em auto;
  padding: 3em 5em
}

.m10_form .m10_group {
  margin-bottom: 1.5em
}

.m10_form .m10_group label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: .5em
}

.m10_form .m10_group .form-select {
  border-radius: 0;
  height: 53px;
  border: 0;
  width: 100%;
}

.m10_form .m10_group .form-control {
  border-radius: 0;
  border: 0;
  margin-bottom: 2em;
  width: 100%;
}

.m9_button button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006dbb;
  border-radius: 6px;
  width: 233px;
  height: 66px;
  color: #fff;
  font-size: 1.125rem;
  border: 0;
  margin: 0 auto
}

.m9_button button:hover,
.m9_button button:focus {
  background-color: #dc000c
}
.quest_button{
  margin-left: .5em;
}
.quest_button a{
  display: flex;
  align-items: center;
  justify-content: center !important;
  background-color: #fff;
  border-radius: 5px;
  width: 177px;
  height: 53px;
  color: #006dbb;
  border: 1px solid #006dbb;
  text-align: center;
}

.quest_button a:hover,.quest_button a:focus{
  background-color: #006dbb;
  color: #fff !important;
}

.m9_qa {
  background-color: #f5f5f5;
  padding: 2em 3.5em;
  margin: 3em auto
}

.m9_qa .m9_q {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2em
}

.m9_qa .m9_q span {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  color: #fff;
  background-color: #006dbb;
  padding-bottom: .3em
}

.m9_qa .m9_q h3 {
  font-size: 1.25rem;
  width: calc(100% - 42px);
  font-weight: 400;
  padding-left: 1em
}

.m9_qa .m9_a {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  padding: 1em 4em
}

.m9_qa .m9_a .form-check {
  margin: 1.8em 0
}

.m9_qa .m9_a .form-check .form-check-label {
  margin-left: 1em
}

.m9_qa .m9_a .form-check .form-check-input {
  width: 28px;
  height: 28px;
  border-color: #cbcbcb;
  margin-top: 0;
  border-radius: 100%
}

.m9_qa .m9_a .form-check .form-check-input:checked {
  background-color: #fff
}

.m9_qa .m9_a .form-check .form-check-input:checked[type=radio],.m9_qa .m9_a .form-check .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%23006dbb'/%3e%3c/svg%3e")
}


@media (max-width: 1199px) {
  .quest_button a {
    width: 110px;
  }

}

@media (max-width: 1099px) {

  .m10_form {
    padding: 3em;
  }

}

@media (max-width: 767px) {
  .m9_qa .m9_a {
    padding: 1em 2em;
  }
  .m9_qa {
    padding: 2em;
  }

}

@media (max-width: 576px) {

  .m10_form {
    padding: 2em 1.5em;
  }

  .p_back_box .p_back {
    width: 110px;
  }

}
@media (max-width: 480px) {
  .m10_form {
    padding: 1.5em 1em;
  }
}
















