@import url("vendor/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Noto+Sans+TC:wght@300;400;500;700;900&family=Potta+One&display=swap");
body, html {
  font-family: "Noto Sans TC", "Oswald", sans-serif;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  background-color: #fff;
  -webkit-text-size-adjust: none;
  color: #000;
  /*background-image: url(../images/bg_line.svg);*/
  background-position: center;
  background-repeat: repeat-y;
}

a {
  transition: 0.5s ease;
  text-decoration: none;
}

button {
  transition: 0.5s ease;
}

textarea, select, input, button {
  outline: none;
}

:focus {
  outline-color: transparent;
  outline-style: none;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

h3, p {
  text-align: justify;
  text-justify: inter-word;
}

.clear-fix {
  clear: both;
}

::-moz-placeholder {
  color: #D9D9D9;
}

::placeholder {
  color: #D9D9D9;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 10px;
  background: #E8E8E8;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #7A7A7A;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #343339;
}

@media all and (max-width: 640px) {
  #preloder .loader .img {
    width: 160px;
    height: 72px;
    background-size: contain;
  }
  #preloder .loader .deco {
    margin-top: 10px;
    padding-top: 10px;
  }
  #preloder .loader .desc {
    font-size: 12px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(151, 151, 151, 0.4);
}
header .header-div {
  position: relative;
  padding: 0;
}
header .header-div .outer-div {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}
header .header-div .outer-div .brand-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header .header-div .outer-div .brand {
  padding: 10px 0;
}
header .header-div .outer-div .brand a {
  display: flex;
  justify-content: center;
}
header .header-div .outer-div .brand a img {
  height: 85px;
}
header .header-div .outer-div .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
header .header-div .outer-div .links .navi ul li {
  display: inline-block;
  padding: 0 10px;
}
header .header-div .outer-div .links .navi ul li:first-child {
  padding-left: 0;
}
header .header-div .outer-div .links .navi ul li a {
  font-size: 20px;
  color: #2F2F2F;
  font-weight: 500;
  display: inline-block;
  padding: 6px;
  border-bottom: 1px solid transparent;
}
header .header-div .outer-div .links .navi ul li a:hover {
  color: #036EB8;
}

main {
  margin-top: 105px;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 1280px) {
  header .header-div .outer-div .links .navi ul li a {
    font-size: 18px;
  }
}
@media all and (max-width: 992px) {
  header .header-div .outer-div .brand {
    padding: 5px 0;
  }
  header .header-div .outer-div .brand a img {
    height: 45px;
  }
  header .header-div .outer-div .links {
    display: none;
  }
}
footer {
  position: relative;
  z-index: 2;
  background-color: #036EB8;
}
footer .section-footer {
  padding: 80px 0;
}
footer .section-footer .block-outer {
  /*max-width: 1200px;*/
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
}
footer .section-footer .block-outer h3 {
  font-size: 20px;
}
footer .section-footer .block-outer p {
  font-size: 18px;
}
footer .section-footer .block-outer .info {
  display: flex;
  flex-wrap: wrap;
}
footer .section-footer .block-outer .info .col01 .ul-list {
  display: flex;
  flex-wrap: wrap;
}
footer .section-footer .block-outer .info .col01 .ul-list ul {
  margin-left: 100px;
  display: inline-block;
}
footer .section-footer .block-outer .info .col01 .ul-list ul:first-child {
  margin-left: 0;
}
footer .section-footer .block-outer .info .col01 .ul-list ul li a {
  display: block;
  color: #fff;
  font-size: 18px;
  margin: 10px 0;
}
footer .section-footer .block-outer .info .col01 .ul-list ul li a:hover {
  opacity: 0.5;
}
footer .section-footer .block-outer .info .col02 {
  margin-left: 100px;
}
footer .section-footer .block-outer .copyright {
  margin-top: 50px;
  font-size: 16px;
}

.toggle-btn {
  display: none;
  position: fixed;
  top: 10px;
  right: 20px;
  width: 22px;
  height: 30px;
  z-index: 889;
  background: none;
  border: none;
  padding: 0;
}
.toggle-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  transition: 0.5s ease;
}
.toggle-btn span:nth-child(2) {
  width: 22px;
}
.toggle-btn span:nth-child(3) {
  width: 15px;
}

.body-mobile-active {
  overflow: hidden;
}
.body-mobile-active #mobile-nav {
  display: block;
  border-top: 1px solid #D9D9D9;
}
.body-mobile-active .toggle-btn {
  /*display: none;*/
  left: auto;
  right: 20px;
  top: 12px;
}
.body-mobile-active .toggle-btn span:nth-child(1) {
  transform: rotate(45deg);
  margin-bottom: -7px;
  width: 22px;
}
.body-mobile-active .toggle-btn span:nth-child(2) {
  transform: rotate(135deg);
  width: 22px;
}
.body-mobile-active .toggle-btn span:last-child {
  display: none;
}
.body-mobile-active .overlay {
  display: block;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  cursor: pointer;
}

.gotop {
  position: fixed;
  right: 0;
  bottom: 450px;
  z-index: 3;
  overflow: hidden;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  display: none;
}
.gotop:hover {
  opacity: 0.5;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.gotop:active {
  opacity: 1;
}

.scroll-gotop .gotop {
  display: block;
}

.hide {
  display: none;
}

.body-popup-active {
  overflow: hidden;
}

.overlay {
  /*z-index: 128;*/
  z-index: 3;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
}

.body-popup-active .overlay {
  display: block;
}

.body-popup-active main {
  filter: blur(15px);
}

.body-popup-active footer {
  filter: blur(15px);
}

.popup-div {
  display: none;
  width: 300px;
  background: #FFFFFF;
  border: 1px solid #000;
  border-radius: 8px;
  position: fixed;
  z-index: 900;
  top: 100px;
  left: calc(50% - 166px);
  max-height: calc(100vh - 150px - 100px);
  overflow-y: auto;
  padding: 15px;
}
.popup-div.active {
  display: block;
}
.popup-div .popup-close {
  text-align: right;
}
.popup-div .popup-close .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-image: url(../images/icon_close_gray.svg);
  background-color: transparent;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  border: none;
  width: 16px;
  height: 16px;
  z-index: 10;
}
.popup-div .popup-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #343339;
  margin-top: 15px;
}
.popup-div .popup-info {
  font-size: 15px;
  color: #343339;
}
.popup-div .popup-action {
  text-align: center;
  margin-top: 15px;
}
.popup-div .popup-action button {
  min-width: 100%;
  margin: 5px 0;
  font-size: 18px;
}

.loading-div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 7;
  background-color: #fff;
}
.loading-div.active {
  display: flex;
}
.loading-div h3 {
  color: #96C83E;
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.body-popup-active .popup-div.active {
  display: block;
}

#mobile-nav {
  z-index: 130;
  display: none;
  position: fixed;
  left: 0;
  top: 54px;
  height: auto;
  height: calc(100vh - 53px);
  overflow-y: auto;
  padding-top: 0px;
  padding-bottom: 30px;
  overflow-y: auto;
  /*width: 217px;*/
  width: 100%;
  background-color: #fff;
}
#mobile-nav .links {
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
}
#mobile-nav .links ul li {
  color: #D9D9D9;
  font-size: 16px;
  margin: 10px 0;
}
#mobile-nav .links ul li a {
  color: #000;
  padding: 10px 10px;
  display: inline-block;
}
#mobile-nav .links ul li a.active {
  border-bottom: 1px solid #000;
}
#mobile-nav .links ul li .had-menu {
  display: block;
  padding: 10px;
  position: relative;
}
#mobile-nav .links ul li .had-menu i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(./../images/icon_arrow_down_light_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: 10px;
}
#mobile-nav .links ul li.active .had-menu {
  color: #000;
}
#mobile-nav .links ul li.active .had-menu i {
  background-image: url(./../images/icon_arrow_down_blue.svg);
  transform: rotate(180deg);
}
#mobile-nav .links ul li.active .dropdown-menu {
  display: block;
}

@media all and (max-width: 1100px) {
  footer .section-footer {
    padding: 40px 0;
  }
  footer .section-footer .block-outer h3 {
    font-size: 16px;
  }
  footer .section-footer .block-outer p {
    font-size: 13px;
  }
  footer .section-footer .block-outer .info {
    display: block;
  }
  footer .section-footer .block-outer .info .col01 {
    width: 100%;
  }
  footer .section-footer .block-outer .info .col01 .ul-list ul li a {
    font-size: 13px;
    margin: 3px 0;
  }
  footer .section-footer .block-outer .info .col02 {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
  footer .section-footer .block-outer .copyright {
    margin-top: 20px;
    font-size: 13px;
  }
}
@media all and (max-width: 992px) {
  .toggle-btn {
    display: inline-block;
  }
}
@media all and (max-width: 640px) {
  footer .section-footer .block-outer {
    max-width: 100%;
    padding: 0 20px;
  }
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid #000;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  /*background-color: #000;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container input:checked ~ .checkmark:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 16px;
  height: 16px;
  background-color: #000;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-blue {
  min-width: 180px;
  background-color: #000;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
}
.btn-blue a {
  color: #fff;
  display: block;
}
.btn-blue:hover {
  background-color: #000;
  border: 1px solid #000;
}
.btn-blue:active {
  background-color: #000;
  border: 1px solid #000;
}
.btn-blue:disabled {
  opacity: 0.6;
}

.btn-white {
  min-width: 180px;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #000;
}
.btn-white:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-white:active {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-white:disabled {
  opacity: 0.6;
}
.btn-white.btn-transparent {
  background-color: transparent;
}
.btn-white.btn-transparent:hover {
  color: #fff;
  border-color: #fff;
}

.btn-darkBlue {
  min-width: 180px;
  background-color: #000;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
}
.btn-darkBlue a {
  color: #fff;
  display: block;
}
.btn-darkBlue:hover {
  background-color: #000;
  border: 1px solid #000;
}
.btn-darkBlue:active {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
}
.btn-darkBlue:disabled {
  opacity: 0.6;
}

.form-div .item {
  margin: 10px 0;
}
.form-div .item .label {
  font-size: 12px;
  color: #686868;
  font-weight: 700;
}
.form-div .item .label.wid-label {
  width: -moz-max-content;
  width: max-content;
}
.form-div .item .label sup {
  color: #96C83E;
}
.form-div .item .controller {
  margin-top: 5px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form-div .item .controller input {
  width: calc(100% - 22px);
  padding: 0 10px;
  border: 1px solid #B1B1B1;
  line-height: 43px;
  border-radius: 5px;
  font-size: 14px;
}
.form-div .item .controller input::-webkit-outer-spin-button,
.form-div .item .controller input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-div .item .controller input[type=number] {
  -moz-appearance: textfield;
}
.form-div .item .controller .checkbox-container input {
  width: auto;
}
.form-div .item .controller .checked-container input {
  width: auto;
}
.form-div .item .controller select {
  border: 1px solid #B1B1B1;
  line-height: 43px;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  padding: 0 10px;
  height: 45px;
  background-color: #fff;
  color: #686868;
}
.form-div .item .controller textarea {
  resize: none;
  border: 1px solid #B1B1B1;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 10px;
  width: calc(100% - 22px);
  height: 184px;
}
.form-div .item .controller .desc p {
  color: #B1B1B1;
  font-size: 10px;
  margin-bottom: 15px;
}
.form-div .item .controller .desc p:last-child {
  margin-bottom: 0;
}
.form-div .item .controller .file-container {
  position: relative;
}
.form-div .item .controller .file-container label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .controller .file-container label input {
  width: calc(100% - 22px - 132px - 10px);
}
.form-div .item .controller .file-container label input:disabled {
  background-color: #fff;
}
.form-div .item .controller .file-container label button {
  min-width: 132px;
  background-color: #96C83E;
  border: 1px solid #96C83E;
  border-radius: 5px;
  font-size: 12px;
  line-height: 43px;
  text-align: center;
  color: #fff;
}
.form-div .item .controller .file-container label button:hover {
  background-color: #cbe49f;
}
.form-div .item .controller .file-container .file-upload {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.form-div .item .two-col {
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  flex-wrap: wrap;
}
.form-div .item .two-col .col {
  width: calc(50% - 10px);
  margin: 0 5px;
}
.form-div .item .three-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .three-col .col {
  width: calc(33.3333333333% - 7.5px);
}
.form-div .item .keyin-item:hover .label {
  color: #96C83E;
}
.form-div .item .keyin-item:hover .controller input {
  border-color: #96C83E;
}
.form-div .item .keyin-item:hover .controller select {
  border-color: #96C83E;
  color: #96C83E;
}
.form-div .item .keyin-item:hover .controller textarea {
  border-color: #96C83E;
}
.form-div .item .city-State {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .city-State .keyin-item:nth-child(1) {
  width: 196px;
}
.form-div .item .city-State .keyin-item:nth-child(2) {
  width: 108px;
}
.form-div .item .city-State .keyin-item:nth-child(2) select {
  width: 100%;
}
.form-div .item .col-2-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .col-2-3 .keyin-item:nth-child(1) {
  width: 110px;
}
.form-div .item .col-2-3 .keyin-item:nth-child(2) {
  width: calc(100% - 110px - 10px);
}
.form-div .item .col-3-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .col-3-2 .keyin-item:nth-child(1) {
  width: calc(100% - 110px - 10px);
}
.form-div .item .col-3-2 .keyin-item:nth-child(2) {
  width: 110px;
}
.form-div .item .qty {
  width: 196px;
}
.form-div .item .qty .controller select {
  width: 100%;
}
.form-div .item .ups-ffdex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form-div .item .ups-ffdex .col01 {
  width: calc(100% - 540px);
}
.form-div .item .ups-ffdex .col01 .radio-container {
  margin-top: 15px;
}
.form-div .item .ups-ffdex .col02 {
  width: 540px;
}
.form-div .item .keep-forgot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.form-div .item .keep-forgot .col01 {
  width: 50%;
}
.form-div .item .keep-forgot .col02 {
  width: 50%;
  text-align: right;
  font-size: 12px;
  color: #B1B1B1;
}
.form-div .item .keep-forgot .col02 a {
  color: #96C83E;
}
.form-div .item.or {
  margin: 20px 0;
}
.form-div .item.or .or-div {
  color: #686868;
  font-size: 12px;
  position: relative;
  text-align: center;
}
.form-div .item.or .or-div span {
  background-color: #fff;
  padding: 0 10px;
}
.form-div .item.or .or-div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #F5F5F7;
}
.form-div .item.remark {
  margin: 20px 0;
}
.form-div .item.action {
  margin-top: 20px;
  margin-bottom: 0;
}
.form-div .item.action button {
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #96C83E;
  font-size: 12px;
  line-height: 45px;
  color: #fff;
  margin: 0 auto;
}
.form-div .item.action button:hover {
  opacity: 0.3;
}
.form-div .item.action button a {
  color: #fff;
  display: block;
}
.form-div .item .apply-account {
  text-align: center;
  color: #B1B1B1;
  font-size: 12px;
}
.form-div .item .apply-account span {
  display: block;
}
.form-div .item .apply-account .green {
  color: #96C83E;
}

.form-item .box-div {
  background-color: #fff;
  padding: 20px 55px 50px 55px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.form-item .item-title h3 {
  font-size: 14px;
  color: #96C83E;
  font-weight: 700;
  margin-left: -30px;
}
.form-item .item-desc p {
  font-size: 10px;
  color: #B1B1B1;
}

@media all and (max-width: 640px) {
  .form-div .item .two-col {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .form-div .item .two-col .col {
    margin: 0;
    width: 100%;
  }
  .form-div .item .two-col .col:nth-child(2) {
    margin-top: 10px;
  }
  .form-div .item .col-3-2 .keyin-item:nth-child(1) {
    width: calc(65% - 10px);
  }
  .form-div .item .col-3-2 .keyin-item:nth-child(2) {
    width: 35%;
  }
  .form-div .item .col-2-3 .keyin-item:nth-child(1) {
    width: 35%;
  }
  .form-div .item .col-2-3 .keyin-item:nth-child(2) {
    width: calc(65% - 10px);
  }
  .form-div .item .keep-forgot {
    display: block;
  }
  .form-div .item .keep-forgot .col01 {
    width: 100%;
  }
  .form-div .item .keep-forgot .col02 {
    margin-top: 5px;
    width: 100%;
    text-align: left;
  }
  .form-div .item .three-col {
    display: block;
  }
  .form-div .item .three-col .col {
    width: 100%;
    margin: 10px 0;
  }
}
.block-outer {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.block-title {
  text-align: center;
}
.block-title h2 {
  font-size: 50px;
  color: #292F36;
  position: relative;
}
.block-title h2:after {
  content: "";
  position: absolute;
  left: calc(50% - 28px);
  bottom: 0;
  width: 56px;
  height: 3px;
  background-color: #FFCA42;
}

.company-two-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.company-two-cols .col01 {
  margin-left: 50%;
  margin-right: -100%;
  width: 50%;
  text-align: right;
}
.company-two-cols .col01 img {
  width: 100%;
}
.company-two-cols .col02 {
  width: 50%;
}
.company-two-cols .col02 .info {
  margin-right: 50px;
}
.company-two-cols .col02 .info h2 {
  font-size: 50px;
  color: #292F36;
}
.company-two-cols .col02 .info p {
  font-size: 22px;
  color: #4D5053;
}
.company-two-cols .col02 .info h3 {
  font-size: 36px;
  color: #292F36;
}
.company-two-cols .col02 .info ul {
  font-size: 22px;
  color: #4D5053;
}
.company-two-cols .col02 .info p + h3, .company-two-cols .col02 .info p + p {
  margin-top: 20px;
}
.company-two-cols .col02 .phone {
  margin-right: 50px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.company-two-cols .col02 .phone .desc {
  color: #4D5053;
  margin-left: 20px;
}
.company-two-cols .col02 .phone .desc b {
  font-size: 24px;
  display: block;
  font-weight: 700;
  line-height: 1.2;
}
.company-two-cols .col02 .phone .desc span {
  font-size: 22px;
  display: block;
}
.company-two-cols .col02 .phone + .info {
  margin-top: 10px;
}

.productSwiper {
  margin-top: 50px;
  padding-bottom: 50px;
}
.productSwiper .swiper-slide {
  min-width: 500px;
}
.productSwiper .swiper-slide .box {
  position: relative;
  display: flex;
  align-items: self-end;
  justify-content: center;
}
.productSwiper .swiper-slide .box:before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  height: calc(50% - 20px);
  background-color: #D9D9D9;
  border-radius: 22px;
}
.productSwiper .swiper-slide .box:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  border: 1px solid #D9D9D9;
  border-radius: 30px;
}
.productSwiper .swiper-slide .box .img {
  position: relative;
  z-index: 2;
  height: 250px;
  vertical-align: bottom;
  display: inline-flex;
  align-items: flex-end;
}
.productSwiper .swiper-slide .box .img img {
  max-width: 280px;
}
.productSwiper .swiper-slide .box .info {
  position: relative;
  z-index: 2;
  margin-left: 30px;
}
.productSwiper .swiper-slide .box .info h3 {
  font-size: 22px;
  color: #4D5053;
  margin-bottom: 40px;
}
.productSwiper .swiper-slide.swiper-slide-active .box:before {
  background-color: #036EB8;
}
.productSwiper .swiper-slide.swiper-slide-active .box:after {
  border: 1px solid #036EB8;
}
.productSwiper .swiper-slide.swiper-slide-active .box .info h3 {
  color: #fff;
}

.special-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.special-list .item {
  width: 45%;
}
.special-list .item .box .img img {
  width: 100%;
}
.special-list .item .box .info {
  margin-top: 30px;
}
.special-list .item .box .info h3 {
  display: flex;
  align-items: center;
  color: #3C2B4A;
  font-size: 24px;
}
.special-list .item .box .info h3 span {
  display: inline-block;
  width: calc(100% - 60px);
}
.special-list .item .box .info h3 i {
  width: 48px;
  height: 48px;
  margin-left: 12px;
  background-image: url(./../images/icon_arrow_circle_blue_right.svg);
}
.special-list .item .box:hover {
  /*opacity: 0.5;*/
}

.section-banner {
  margin-bottom: 50px;
}
.section-banner .block-banner {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 200px;
}
.section-banner .block-banner .block-outer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  height: 250px;
}
.section-banner .block-banner .block-outer h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 10px #000;
}
.section-banner .block-banner .block-outer p {
  font-size: 24px;
  color: #fff;
  text-shadow: 1px 1px 10px #000;
}

.section-product-list .block-product-list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.section-product-list .block-product-list .item {
  width: calc(33.3333333333% - 30px);
  padding: 15px 15px 100px 15px;
  position: relative;
}
.section-product-list .block-product-list .item .border {
  border: 2px solid #D9D9D9;
  border-radius: 30px;
  padding: 20px;
  background-color: #fff;
}
.section-product-list .block-product-list .item .border .box {
  background-color: #D9D9D9;
  border-radius: 20px;
  padding: 10px;
}
.section-product-list .block-product-list .item .border .box .img {
  text-align: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-product-list .block-product-list .item .border .box .img img {
  max-height: 100%;
  max-width: 100%;
}
.section-product-list .block-product-list .item .border .box h3 {
  color: #4D5053;
  font-size: 22px;
  text-align: center;
  font-weight: 700;
}
.section-product-list .block-product-list .item .sub-category {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
}
.section-product-list .block-product-list .item .sub-category a {
  display: block;
  background-color: #D9D9D9;
  border-radius: 100px;
  color: #4D5053;
  font-size: 16px;
  text-align: center;
  border-radius: 100px;
  margin: 10px 30px;
  padding: 2px;
  font-weight: 500;
}
.section-product-list .block-product-list .item .sub-category a:hover {
  background-color: #036EB8;
  color: #fff;
}
.section-product-list .block-product-list .item:hover .border {
  border: 2px solid #036EB8;
}
.section-product-list .block-product-list .item:hover .border .box {
  background-color: #036EB8;
}
.section-product-list .block-product-list .item:hover .border .box h3 {
  color: #fff;
}
.section-product-list .block-product-list .item:hover .sub-category {
  display: block;
}

.section-product-detail .product-detail-01 .sub-category {
  padding-bottom: 100px;
}
.section-product-detail .product-detail-01 .sub-category ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.section-product-detail .product-detail-01 .sub-category ul li {
  display: inline-block;
  margin: 10px 10px;
  position: relative;
}
.section-product-detail .product-detail-01 .sub-category ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 32px;
  background-color: #D9D9D9;
  font-size: 16px;
  font-weight: 500;
  color: #4D5053;
  border-radius: 100px;
}
.section-product-detail .product-detail-01 .sub-category ul li a.active {
  background-color: #036EB8;
  color: #fff;
}
.section-product-detail .product-detail-01 .sub-category ul li .dropdown {
  text-align: center;
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 10px;
  background-color: #fff;
  z-index: 888;
}
.section-product-detail .product-detail-01 .sub-category ul li .dropdown a {
  background-color: transparent;
  border-radius: 0;
  padding: 2px 0;
}
.section-product-detail .product-detail-01 .sub-category ul li .dropdown a:hover {
  color: #036EB8;
}
.section-product-detail .product-detail-01 .sub-category ul li:hover .dropdown {
  display: block;
}
.section-product-detail .product-detail-02 .block-outer {
  max-width: 1440px;
  padding: 0;
}
.section-product-detail .product-detail-02 .photo-info {
  display: flex;
  flex-wrap: wrap;
}
.section-product-detail .product-detail-02 .photo-info .photo {
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
}
.section-product-detail .product-detail-02 .photo-info .photo .img {
  overflow: hidden;
  display: flex;
  border-radius: 0 0 0 100px;
}
.section-product-detail .product-detail-02 .photo-info .photo .img img {
  width: 100%;
}
.section-product-detail .product-detail-02 .photo-info .info {
  width: calc(50% - 90px - 10px);
  padding-left: 90px;
  padding-right: 10px;
}
.section-product-detail .product-detail-02 .photo-info .info h2 {
  color: #1B3764;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding-bottom: 30px;
}
.section-product-detail .product-detail-02 .photo-info .info h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  background-color: #036EB8;
}
.section-product-detail .product-detail-02 .photo-info .info .spec-list {
  margin-top: 50px;
  position: relative;
}
.section-product-detail .product-detail-02 .photo-info .info .spec-list:before {
  content: "";
  position: absolute;
  left: 32px;
  top: 10px;
  height: calc(100% - 20px);
  border-left: 1px dashed #000;
}
.section-product-detail .product-detail-02 .photo-info .info .spec-list .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin: 30px 0;
}
.section-product-detail .product-detail-02 .photo-info .info .spec-list .item .number {
  width: 80px;
}
.section-product-detail .product-detail-02 .photo-info .info .spec-list .item .number b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  width: 65px;
  height: 65px;
  background-color: #036EB8;
}
.section-product-detail .product-detail-02 .photo-info .info .spec-list .item .desc {
  width: calc(100% - 80px);
  font-size: 24px;
  line-height: 1.4;
  color: #292F36;
}
.section-product-detail .product-detail-03 {
  background-color: #F5F8FC;
  padding: 80px 0;
  margin-top: 80px;
}
.section-product-detail .product-detail-03 .img {
  text-align: center;
}
.section-product-detail .product-detail-03 .img img {
  max-width: 100%;
}
.section-product-detail .product-detail-03 .scrollbar {
  overflow-x: auto;
  padding-bottom: 15px;
}
.section-product-detail .product-detail-03 .scrollbar .table-div {
  text-align: center;
  padding: 30px 0;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table {
  width: 100%;
  min-width: 330px;
  border-top: 1px solid #C4C4C4;
  border-left: 1px solid #C4C4C4;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr td {
  color: #036EB8;
  text-align: center;
  padding: 5px;
  font-size: 13px;
  border-right: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr td p {
  font-size: 13px;
  text-align: center;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr td:first-child {
  text-align: left;
  padding-left: 20px;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr td:first-child p {
  text-align: left;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr td:last-child {
  padding-right: 20px;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr td[colspan] {
  text-align: center;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr td[colspan] p {
  text-align: center;
}
.section-product-detail .product-detail-03 .scrollbar .table-div table tr:first-child td {
  font-weight: 700;
}

.section-home-banner {
  position: relative;
  overflow: hidden;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box {
  position: relative;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .img {
  display: flex;
  overflow: hidden;
  /*border-radius: 0 0 0 290px ;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*height: 650px;*/
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .img img {
  width: 100%;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .img.img01 {
  background-image: url(./../images/home_slider_img_web_01.png);
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  height: 80%;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer {
  max-width: 1080px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h1 {
  color: #fff;
  font-size: 64px;
  line-height: 1.2;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc p {
  color: #fff;
  font-size: 32px;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .more {
  margin-top: 30px;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #036EB8;
  border-radius: 18px;
  color: #fff;
  min-width: 220px;
  min-height: 56px;
  font-size: 22px;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .more a i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(./../images/icon_arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 10px;
}
.section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .more a:hover {
  opacity: 0.5;
}
.section-home-banner .homeBannerSwiper .swiper-pagination {
  bottom: 100px;
  text-align: left;
  left: calc(50% - 540px);
}
.section-home-banner .homeBannerSwiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #d9d9d9;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 10px;
}
.section-home-banner .homeBannerSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #036EB8;
}

.section-home .block01 {
  padding: 100px 0 50px 0;
}
.section-home .block02 {
  overflow: hidden;
}
.section-home .block02 .block-outer {
  max-width: 100%;
  padding: 0;
}
.section-home .block03 {
  padding: 100px 0;
}
.section-home .block03 .sub-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-home .block03 .sub-title h2 {
  font-size: 50px;
  padding-bottom: 20px;
  position: relative;
}
.section-home .block03 .sub-title h2:after {
  content: "";
  position: absolute;
  left: calc(50% - 28px);
  bottom: 0;
  width: 56px;
  background-color: #FFCA42;
  height: 3px;
}

.section-company {
  padding: 50px 0 100px 0;
}

.section-special {
  padding: 50px 0 100px 0;
}
.section-special .info p {
  font-size: 22px;
  color: #4D5053;
}
.section-special .list-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 30px;
}
.section-special .list-items .item {
  margin: 15px;
  width: calc(25% - 30px);
}
.section-special .list-items .item .box {
  border-radius: 30px 0 0 0;
  /*background-color: #F4F8FF;*/
  background-color: #1C95A8;
  padding: 20px 10px 10px 10px;
}
.section-special .list-items .item .box .img {
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-special .list-items .item .box .desc {
  /*color: #4D5053;*/
  color: #fff;
  font-size: 18px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
}
.section-special .list-items .item .box .desc span {
  display: block;
}
.section-special .block02 {
  margin-top: 100px;
}

.section-certificate-list {
  padding: 0px 0 100px 0;
}
.section-certificate-list .info p {
  font-size: 22px;
  color: #4D5053;
  text-align: center;
}
.section-certificate-list .list-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-certificate-list .list-items .item {
  width: calc(50% - 10px);
}
.section-certificate-list .list-items .item .sub-item {
  margin: 25px 0;
}
.section-certificate-list .list-items .item .sub-item .box {
  padding: 10px;
  background-color: #F4F8FF;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section-certificate-list .list-items .item .sub-item .box .no {
  color: #fff;
  background-color: #036EB8;
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-certificate-list .list-items .item .sub-item .box .desc {
  color: #1B3764;
  width: calc(100% - 48px - 10px);
  padding-left: 10px;
  font-size: 24px;
}
.section-certificate-list .block02 {
  background-color: #F4F8FF;
  padding: 100px 0 50px 0;
  margin-top: 100px;
}
.section-certificate-list .block02 .taf-certificate .logo {
  margin-top: -150px;
  text-align: center;
}
.section-certificate-list .block02 .taf-certificate .paper-list {
  display: flex;
  flex-wrap: wrap;
}
.section-certificate-list .block02 .taf-certificate .paper-list .item {
  margin: 30px;
  width: calc(33.3333333333% - 60px);
}
.section-certificate-list .block02 .taf-certificate .paper-list .item .img img {
  width: 100%;
}
.section-certificate-list .block02 .taf-certificate .paper-list .item .desc {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
}
.section-certificate-list .block02 .taf-certificate .paper-list .item .desc p {
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  color: #4D5053;
}
.section-certificate-list .block03 {
  padding-top: 100px;
}

.section-profile-list {
  padding: 50px 0 100px 0;
}
.section-profile-list .profile-list-slider {
  margin-left: -10px;
  margin-right: -10px;
}
.section-profile-list .profile-list-slider .swiper-grid-column > .swiper-wrapper {
  flex-direction: row;
}
.section-profile-list .profile-list-slider .profileSwiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .profile-list {
  display: flex;
  flex-wrap: wrap;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .profile-list .box {
  width: calc(33.3333333333% - 20px);
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .box {
  margin: 10px;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .box .img {
  display: flex;
  position: relative;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .box .img img {
  width: 100%;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .box .img a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .box .info {
  padding: 10px;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .box .info h3 {
  color: #3C2B4A;
  font-size: 16px;
  text-align: center;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-slide .box .info p {
  color: #1B3764;
  font-size: 12px;
  text-align: right;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-pagination {
  bottom: 12px;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #D9D9D9;
  margin: 0 10px;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #036EB8;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-button-next {
  width: 48px;
  height: 48px;
  background-image: url(./../images/icon_arrow_circle_blue_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  top: auto;
  bottom: 0;
  z-index: 99;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-button-next:after {
  content: "";
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  background-image: url(./../images/icon_arrow_circle_blue_left.svg);
  background-repeat: no-repeat;
  background-position: center;
  top: auto;
  left: auto;
  right: 80px;
  bottom: 0;
  z-index: 99;
}
.section-profile-list .profile-list-slider .profileSwiper .swiper-button-prev:after {
  content: "";
}
.section-profile-list .gallery-photo {
  display: none;
}

.section-download-list {
  padding: 50px 0 100px 0;
}
.section-download-list .coming-soon {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-download-list .coming-soon h2 {
  font-size: 32px;
  color: #4D5053;
}

.section-contact {
  padding: 50px 0 100px 0;
}
.section-contact .two-cols {
  display: flex;
  flex-wrap: wrap;
}
.section-contact .two-cols .col {
  width: 50%;
}
.section-contact .two-cols .col iframe {
  width: 100%;
  height: 330px;
}
.section-contact .two-cols .col .info {
  margin-left: 50px;
}
.section-contact .two-cols .col .info h2 {
  color: #000;
  font-size: 32px;
  line-height: 1.2;
}
.section-contact .two-cols .col .info .company {
  margin-top: 20px;
}
.section-contact .two-cols .col .info .company .item {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.section-contact .two-cols .col .info .company .item .img {
  width: 40px;
}
.section-contact .two-cols .col .info .company .item .desc {
  width: calc(100% - 40px);
  font-size: 16px;
  color: #000;
}
.section-contact .two-cols .col .info .company .item .desc a {
  color: #000;
}

@media all and (max-width: 1366px) {
  .section-home-banner .homeBannerSwiper .swiper-slide .box .img {
    /*height: 580px;*/
  }
}
@media all and (max-width: 1350px) {
  .section-product-detail .product-detail-02 .photo-info {
    padding: 0 20px;
  }
  .section-product-detail .product-detail-02 .photo-info .info {
    width: calc(50% - 10px);
    padding-left: 0px;
    padding-right: 10px;
  }
}
@media all and (max-width: 1200px) {
  .section-home-banner .homeBannerSwiper .swiper-slide .box .img {
    /*border-radius: 0 0 0 150px;*/
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer {
    max-width: 80%;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h1 {
    font-size: 48px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h2 {
    font-size: 48px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc p {
    font-size: 24px;
  }
  .section-home-banner .homeBannerSwiper .swiper-pagination {
    left: 10%;
    bottom: 50px;
  }
}
@media all and (max-width: 1100px) {
  .section-product-detail .product-detail-02 .photo-info {
    display: block;
  }
  .section-product-detail .product-detail-02 .photo-info .photo {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .section-product-detail .product-detail-02 .photo-info .info {
    width: 100%;
    margin-top: 20px;
  }
  .section-product-detail .product-detail-02 .photo-info .info h2 {
    font-size: 24px;
    line-height: 1.4;
    padding-bottom: 20px;
  }
  .section-product-detail .product-detail-02 .photo-info .info .spec-list:before {
    left: 24px;
  }
  .section-product-detail .product-detail-02 .photo-info .info .spec-list .item .number {
    width: 60px;
  }
  .section-product-detail .product-detail-02 .photo-info .info .spec-list .item .number b {
    font-size: 28px;
    width: 48px;
    height: 48px;
  }
  .section-product-detail .product-detail-02 .photo-info .info .spec-list .item .desc {
    width: calc(100% - 60px);
    font-size: 18px;
  }
  .section-special .list-items .item .box .desc {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media all and (max-width: 992px) {
  .section-banner {
    margin-bottom: 30px;
  }
  .section-banner .block-banner .block-outer {
    height: 30vw;
  }
  .section-banner .block-banner .block-outer h1 {
    font-size: 28px;
    margin-left: 50px;
  }
  .section-banner .block-banner .block-outer p {
    font-size: 18px;
    margin-left: 50px;
  }
  main {
    margin-top: 55px;
  }
  .block-title h2 {
    font-size: 36px;
  }
  .company-two-cols {
    display: block;
  }
  .company-two-cols .col01 {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
  }
  .company-two-cols .col02 {
    width: 100%;
    margin-top: 30px;
  }
  .company-two-cols .col02 .info {
    margin-right: 0;
  }
  .company-two-cols .col02 .info h2 {
    font-size: 36px;
  }
  .company-two-cols .col02 .info p {
    font-size: 18px;
  }
  .company-two-cols .col02 .info h3 {
    font-size: 24px;
  }
  .company-two-cols .col02 .info ul {
    font-size: 18px;
  }
  .company-two-cols .col02 .phone .icon img {
    width: 60px;
  }
  .company-two-cols .col02 .phone .icon .desc {
    margin-left: 10px;
  }
  .company-two-cols .col02 .phone .icon .desc b {
    font-size: 20px;
  }
  .company-two-cols .col02 .phone .icon .desc span {
    font-size: 18px;
  }
  .productSwiper {
    padding-left: 15px;
  }
  .productSwiper .swiper-slide {
    min-width: 30vw;
  }
  .productSwiper .swiper-slide .box .img img {
    max-width: 200px;
  }
  .section-company {
    padding: 30px 0 60px 0;
  }
  .section-special {
    padding: 30px 0 60px 0;
  }
  .section-special .info p {
    font-size: 18px;
  }
  .section-special .list-items .item {
    width: calc(50% - 30px);
  }
  .section-special .list-items .item .box .desc {
    font-size: 13px;
    min-height: 70px;
  }
  .section-special .list-items .item .box .desc span {
    display: contents;
  }
  .section-certificate-list {
    padding: 30px 0 60px 0;
  }
  .section-profile-list {
    padding: 30px 0 60px 0;
  }
  .section-download-list {
    padding: 30px 0 60px 0;
  }
  .section-download-list .coming-soon {
    min-height: 200px;
  }
  .section-download-list .coming-soon h2 {
    font-size: 24px;
  }
  .section-product-list .block-product-list .item {
    width: calc(50% - 20px);
    padding: 10px 10px 85px 10px;
  }
  .section-product-list .block-product-list .item .border {
    padding: 10px;
  }
  .section-product-list .block-product-list .item .border .box h3 {
    font-size: 18px;
  }
  .section-product-list .block-product-list .item .border .box .img {
    height: 120px;
  }
  .section-product-list .block-product-list .item .sub-category a {
    font-size: 13px;
  }
  .section-product-detail .product-detail-01 .sub-category {
    padding-bottom: 80px;
  }
  .section-product-detail .product-detail-01 .sub-category ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  .section-product-detail .product-detail-01 .sub-category ul li {
    width: calc(33.3333333333% - 20px);
    margin: 10px;
  }
  .section-product-detail .product-detail-01 .sub-category ul li a {
    min-width: 100%;
    min-height: 30px;
  }
  .section-product-detail .product-detail-01 .sub-category ul li:hover .dropdown {
    background: rgb(255, 255, 255);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(47%, rgb(246, 246, 246)), color-stop(55%, rgb(247, 247, 247)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(247, 247, 247) 55%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff", GradientType=0 );
  }
  .section-product-detail .product-detail-03 .scrollbar .table-div table tr td {
    padding: 3px;
  }
  .section-product-detail .product-detail-03 .scrollbar .table-div table tr td:first-child {
    padding-left: 10px;
  }
  .section-product-detail .product-detail-03 .scrollbar .table-div table tr td:last-child {
    padding-right: 10px;
  }
  .special-list .item .box .info h3 {
    font-size: 20px;
  }
  .section-certificate-list .info p {
    font-size: 18px;
  }
  .section-certificate-list .list-items {
    display: block;
  }
  .section-certificate-list .list-items .item {
    width: 100%;
  }
  .section-certificate-list .list-items .item .sub-item {
    margin: 15px 0;
  }
  .section-certificate-list .block02 .taf-certificate .paper-list .item .desc p {
    font-size: 16px;
  }
  .section-home .block03 {
    padding: 50px 0;
  }
  .section-home .block03 .sub-title {
    margin-bottom: 30px;
  }
  .section-home .block03 .sub-title h2 {
    font-size: 36px;
  }
  .fancybox-active .fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
  }
  .fancybox-show-thumbs .fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
  }
}
@media all and (max-width: 900px) {
  .section-banner .block-banner {
    border-radius: 0 0 0 100px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info {
    top: 10%;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer {
    max-width: calc(100% - 40px);
    padding: 0 20px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .img {
    /*height: 75vw;*/
    /*border-radius: 0 0 0 100px;*/
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .img img {
    /*display: none;*/
  }
  .section-home-banner .homeBannerSwiper .swiper-pagination {
    bottom: 20px;
  }
  .section-home-banner .homeBannerSwiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    width: 10px;
    height: 10px;
  }
  .section-contact .two-cols {
    display: block;
  }
  .section-contact .two-cols .col {
    width: 100%;
  }
  .section-contact .two-cols .col:nth-child(2) {
    margin-top: 30px;
  }
  .section-contact .two-cols .col .info {
    margin-left: 0;
  }
  .section-contact .two-cols .col .info h2 {
    font-size: 28px;
  }
  .section-contact .two-cols .col .info .company .item .img {
    width: 30px;
  }
  .section-contact .two-cols .col .info .company .item .img img {
    width: 24px;
  }
  .section-contact .two-cols .col .info .company .item .desc {
    width: calc(100% - 30px);
    font-size: 14px;
  }
  .section-profile-list .profile-list-slider .profileSwiper .swiper-slide .profile-list .box {
    width: calc(50% - 20px);
  }
}
@media all and (max-width: 768px) {
  .section-home-banner .homeBannerSwiper .swiper-slide .box .img.img01 {
    background-image: url(./../images/home_slider_img_pad_01.png);
  }
}
@media all and (max-width: 720px) {
  .special-list {
    display: block;
  }
  .special-list .item {
    width: 100%;
  }
  .special-list .item:nth-child(2) {
    margin-top: 50px;
  }
  .special-list .item .box .info {
    margin-top: 10px;
  }
  .special-list .item .box .info h3 {
    font-size: 16px;
  }
  .special-list .item .box .info h3 i {
    width: 36px;
    height: 36px;
    background-size: contain;
  }
  .section-certificate-list .block02 .taf-certificate .paper-list {
    display: block;
  }
  .section-certificate-list .block02 .taf-certificate .paper-list .item {
    margin: 30px 0;
    width: 100%;
  }
  .section-certificate-list .block03 {
    padding-top: 50px;
  }
  .section-profile-list .profile-list-slider .profileSwiper {
    padding-bottom: 50px;
  }
  .section-profile-list .profile-list-slider .profileSwiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
  }
  .section-profile-list .profile-list-slider .profileSwiper .swiper-button-next {
    display: none;
  }
  .section-profile-list .profile-list-slider .profileSwiper .swiper-button-prev {
    display: none;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .img {
    /*border-radius: 0 0 0 60px;*/
    /*height: 100vw;*/
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info {
    top: 15%;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h1 {
    font-size: 33px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h2 {
    font-size: 33px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc p {
    font-size: 16px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .more a {
    min-width: 160px;
    min-height: 40px;
    font-size: 18px;
    border-radius: 9px;
  }
}
@media all and (max-width: 640px) {
  .section-product-detail .product-detail-02 .photo-info .info .spec-list .item {
    margin: 20px 0;
  }
  .section-product-detail .product-detail-02 .photo-info .info .spec-list .item .number {
    width: 45px;
  }
  .section-product-detail .product-detail-02 .photo-info .info .spec-list .item .number b {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .section-product-detail .product-detail-02 .photo-info .info .spec-list .item .desc {
    width: calc(100% - 45px);
    font-size: 16px;
  }
  .section-product-detail .product-detail-03 {
    padding: 40px 0;
  }
  .section-product-detail .product-detail-03 .img img {
    max-height: 100px;
  }
  .productSwiper .swiper-slide .box {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
  .productSwiper .swiper-slide .box .img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .productSwiper .swiper-slide .box .img img, .productSwiper .swiper-slide .box .img a {
    margin: 0 auto;
  }
  .productSwiper .swiper-slide .box .info {
    margin-left: 0;
    width: 100%;
  }
  .productSwiper .swiper-slide .box .info h3 {
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 25px;
  }
}
@media all and (max-width: 580px) {
  .section-profile-list .profile-list-slider {
    margin-left: 0;
    margin-right: 0;
  }
  .section-profile-list .profile-list-slider .profileSwiper .swiper-slide .profile-list .box {
    width: calc(100% - 10px);
    margin: 20px 10px;
  }
  .section-home .block01 {
    padding-top: 50px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info {
    top: 8px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h1 {
    font-size: 24px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc h2 {
    font-size: 24px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .desc p {
    font-size: 14px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .more {
    margin-top: 5px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .info .block-outer .more a {
    font-size: 14px;
    min-width: 120px;
    min-height: 30px;
  }
  .section-home-banner .homeBannerSwiper .swiper-slide .box .img.img01 {
    background-image: url(./../images/home_slider_img_mobile_01.png);
  }
}/*# sourceMappingURL=main.css.map */