@charset "UTF-8";
/*basci*/
/*Cis====================*/
/*text==================*/
/*hover color===========*/
/*header選單切換斷點*/
/*other color*/
html, body {
  /*overflow-x: hidden;*/
}

body {
  font-size: 16px;
  font-family: "Microsoft JhengHei", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: #e60012;
}

.main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cis1Btn {
  background-color: #e60012;
  color: #fff;
}

.grayBtn1 {
  background-color: #e0e0e0;
  color: #444;
}

/*頁籤*/
.tabBlock {
  width: 100%;
}

.tabList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tabList a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #565656;
  padding: 10px 1em;
}
.tabList a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #565656;
  margin-top: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tabList a:hover::after {
  width: 100%;
}
.tabList a.active {
  color: #e60012;
}
.tabList a.active::after {
  width: 100%;
  background-color: #e60012;
}

.tabContent {
  width: 100%;
  overflow: hidden;
}

.tabBox {
  width: 100%;
  padding: 10px 15px;
}

/*文字編輯器*/
.editBlock {
  width: 100%;
}
.editBlock img {
  max-width: 100%;
}
.editBlock p {
  line-height: 1.8;
  margin-bottom: 35px;
}
.editBlock td, .editBlock th {
  border: 1px #000 solid;
}

/*數量設定*/
.quantity {
  width: 100%;
  height: 36px;
  max-width: 130px;
  margin: 0 auto;
  border: 1px #000 solid;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quantity .btn {
  width: 30px;
  height: 36px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 5px;
  border: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quantity .minus {
  border-right: 1px #000 solid;
}
.quantity .add {
  border-left: 1px #000 solid;
}
.quantity input {
  width: 70px;
  height: 36px;
  padding: 5px;
  color: #000;
  text-align: center;
  line-height: 42px;
  border: 0;
}

@media screen and (max-width: 992px) {
  .editBlock {
    overflow-x: auto;
  }
  .editBlock img {
    max-width: none;
  }
  .tabBox {
    overflow-x: auto;
  }
}
/*element*/
/*header============================================*/
header {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /*手機版選單*/
}
header.sticky {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header .toplink {
  width: 100%;
  margin: 0 auto;
  padding: 8px 5%;
  background-color: #e60012;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header .headerInfo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
header .headerInfo li {
  display: inline-block;
  margin-left: 32px;
}
header .headerInfo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
header .headerInfo .icon {
  display: inline-block;
  width: 16px;
  margin-right: 5px;
}
header .headerInfo .addricon {
  width: 14px;
}
header .headerBox {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .moreMenu {
  position: relative;
}
header .moreMenu > a {
  /*&::after{
      content: '\f107';
      font-family: "Font Awesome 6 Free";
      display: inline-block;
      margin-left: 5px;
  }*/
}
header .moreMenu > a > i {
  display: inline-block;
  margin-left: 5px;
}
header .moreMenu > ul {
  width: 200px;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  display: none;
}
header .moreMenu > ul > li {
  width: 100%;
  display: block;
}
header .moreMenu > ul > li > a {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #fff;
}
header .topLink {
  width: 100%;
  background-color: #e60012;
}
header .navigation {
  width: 100%;
  padding: 15px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .navigation nav {
  max-width: calc(100% - 312px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
}
header .navigation nav > ul > li {
  display: inline-block;
  margin: 0 1em;
}
header .navigation nav > ul > li > a {
  font-weight: bold;
  padding-bottom: 15px;
}
header .navigation nav > ul > li.moreMenu > ul {
  top: 100%;
  left: 0;
}
header .navigation a {
  display: block;
  color: #6b6b6b;
  font-size: 16px;
  word-wrap: break-word;
  word-break: normal;
}
header .logo {
  width: 200px;
  display: inline-block;
}
header .logo img {
  display: block;
  width: 100%;
}
header .tagItem {
  position: relative;
}
header .tag {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 3px);
  -webkit-transform: translateX(-50%) scale(0.8);
          transform: translateX(-50%) scale(0.8);
  z-index: 2;
}
header .tag span {
  display: block;
  padding: 5px;
  background-color: #e60012;
}
header .tag::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #e60012 transparent transparent transparent;
  margin: 0 auto;
}
header .menuBtn {
  width: 42px;
  height: 30px;
  position: relative;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}
header .menuBtn div {
  width: 42px;
}
header .menuBtn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #6b6b6b;
  border-radius: 100px;
  margin: 3px auto;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header .menuBtn.open span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
}
header .menuBtn.open span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
header .menuBtn.open span:nth-child(2) {
  opacity: 0;
}
header .menuBtn.open span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header .closeSpace {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 133px;
  background-color: rgba(0, 0, 0, 0.7);
  left: -100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.secondary {
  max-width: 134px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secondary .item {
  margin-left: 15px;
}
.secondary .item img {
  display: block;
  width: 20px;
}
.secondary .langList a {
  font-size: 14px;
}

/*語系*/
.language {
  position: relative;
}
.language .langList {
  width: 130px;
  padding: 0 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px #9f9f9f;
          box-shadow: 0 0 3px #9f9f9f;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
}
.language a {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px #d1d1d1 solid;
}
.language a:last-child {
  border-bottom: 0;
}
.language:hover .langList {
  display: block;
}

/*搜尋功能*/
.searchBox {
  position: relative;
}

.searchIcon {
  width: 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.searchIcon i {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.searchIcon img {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.searchIcon::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #6b6b6b;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.searchIcon::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #6b6b6b;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.searchIcon.open i, .searchIcon.open img {
  opacity: 0;
}
.searchIcon.open::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.searchIcon.open::after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.searchBar {
  width: 315px;
  max-width: 100vw;
  background-color: #F7F7F7;
  padding: 20px;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  display: none;
}
.searchBar div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.searchBar .textBox {
  width: calc(100% - 96px);
  max-width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(131, 131, 131, 0.2);
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-right: 0;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.searchBar .submitBtn {
  width: 96px;
  height: 40px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e60012;
  color: #fff;
  border: 1px #e60012 solid;
}

/*產品詢價車圖示*/
.inquiryBar {
  display: inline-block;
  width: 20px;
  margin-right: 7px;
  position: relative;
}
.inquiryBar .number {
  width: 16px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px;
  background-color: #e60012;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  position: absolute;
  top: -15px;
  right: -10px;
  z-index: 2;
}

@media screen and (min-width: 1025px) {
  header .moreMenu:hover > ul {
    display: block;
  }
  .language:hover .langList {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  header .navigation .moreMenu {
    position: static;
  }
  header .navigation .moreMenu > ul {
    width: 100%;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .navigation nav {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: fixed;
    top: 133px;
    left: -100%;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header .navigation nav > ul {
    width: 70%;
    height: calc(100vh - 98px);
    padding: 30px 3% 0 3%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  header .navigation nav > ul > li {
    margin: 0;
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
  }
  header .navigation nav > ul > li > a {
    padding-bottom: 15px;
  }
  header .navigation nav li {
    width: 100%;
  }
  header .navigation nav li a {
    width: 100%;
    padding: 15px 15px 15px 0;
  }
  header .tag {
    display: inline-block;
    position: static;
    -webkit-transform: translateX(0) scale(0.8);
            transform: translateX(0) scale(0.8);
  }
  header .menuBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header.mb .navigation nav {
    left: 0;
  }
  header.mb .closeSpace {
    left: 0;
  }
  .searchBar {
    top: 56px;
  }
}
@media screen and (max-width: 992px) {
  header .headerInfo li {
    margin-left: 20px;
  }
  header .listText {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  header .navigation nav > ul {
    padding: 30px 5% 0 5%;
  }
  .searchBar {
    width: 100%;
    position: fixed;
    top: 117px;
    right: 0;
  }
}
@media screen and (max-width: 500px) {
  header .logo {
    width: 156px;
  }
  header .navigation nav {
    top: 117px;
  }
  header .closeSpace {
    top: 117px;
  }
}
.bannerBlock {
  width: 100%;
  padding: 0 5%;
}
.bannerBlock .item {
  width: 100%;
  position: relative;
  background: url(../images/bannerBg.jpg) no-repeat center bottom/cover;
  padding-bottom: 50%;
  overflow: hidden;
}
.bannerBlock .bannerBg {
  display: block;
  width: 100%;
}
.bannerBlock .textBox {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.bannerBlock .title {
  color: #e60012;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin: 5% 5% 3% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bannerBlock .title span {
  display: inline-block;
  margin: 0 0.3em;
}
.bannerBlock .title::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #e60012;
  margin-left: 10px;
}
.bannerBlock .logoAnimate {
  width: 80%;
  margin: 0 auto;
}
.bannerBlock .logoAnimate svg {
  width: 100%;
}
.bannerBlock .redBg {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.bannerBlock .redBg img {
  display: block;
}
.bannerBlock .redBg1 {
  width: 50%;
  left: 0;
}
.bannerBlock .redBg1 img {
  width: 100%;
}
.bannerBlock .redBg2 {
  width: 28%;
  right: 0;
}
.bannerBlock .redBg2 img {
  height: 100%;
}
.bannerBlock .product {
  position: absolute;
  z-index: 2;
}
.bannerBlock .product img {
  width: 100%;
  display: block;
}
.bannerBlock .p1 {
  width: 53%;
  left: 5%;
  bottom: 0;
}
.bannerBlock .p2 {
  width: 43%;
  right: -3%;
  bottom: 0;
}

/*首頁動畫*/
.intro-animation-final-block {
  visibility: hidden;
  width: 100%;
  text-align: center;
}

.intro-animation-final-block.show {
  visibility: visible;
}

.intro-animation-final-block .copy {
  position: relative;
  width: 88%;
  max-width: 760px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.intro-animation-final-block .copy h1 {
  width: 100%;
  padding-top: 12%;
  line-height: 1;
}

.intro-animation-final-block .copy h1 #svg path {
  stroke: transparent;
  fill: transparent;
}

.intro-animation-final-block .copy h1 #svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.intro-animation-final-block .copy h1 #svg.start .st2 {
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 0.5;
  stroke: #e60012;
  stroke-dashoffset: 2000;
}

.intro-animation-final-block .copy h1 #svg.show .st2 {
  -webkit-animation: st2_anime 4s ease-in 1s forwards;
          animation: st2_anime 4s ease-in 1s forwards;
}

@-webkit-keyframes st2_anime {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: #e60012;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #e60012;
    opacity: 0.8;
  }
}

@keyframes st2_anime {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: #e60012;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #e60012;
    opacity: 0.8;
  }
}
/*首頁動畫END*/
@media screen and (max-width: 992px) {
  .bannerBlock .title {
    font-size: 24px;
  }
  .intro-animation-final-block .copy h1 {
    padding-top: 10%;
  }
}
@media screen and (max-width: 576px) {
  .bannerBlock .item {
    padding-bottom: 55%;
  }
  .bannerBlock .title {
    font-size: 20px;
    margin: 5%;
  }
}
@media screen and (max-width: 500px) {
  .bannerBlock .item {
    padding-bottom: 59%;
  }
  .bannerBlock .title {
    font-size: 18px;
    margin: 5% 5% 6% 5%;
  }
  .intro-animation-final-block .copy h1 {
    padding-top: 12%;
  }
}
/*內頁Banner*/
.pageBanner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.pageBanner img {
  display: block;
  width: 100%;
}

.pageTopBlock {
  width: 100%;
  background-color: #1a1a1b;
  color: #fff;
  text-align: center;
  padding: 50px 32px 55px 32px;
}

.breadcrumbs ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs li::after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs a {
  color: #fff;
}

@media screen and (max-width: 576px) {
  .pageTopBlock {
    padding: 35px 15px 40px 15px;
  }
}
.pageTitle {
  font-size: 32px;
  margin-bottom: 16px;
}

.titleStyle2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin-bottom: 36px;
}
.titleStyle2 span {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.1;
  color: #e60012;
}
.titleStyle2::after {
  content: "";
  display: inline-block;
  width: 109px;
  height: 2px;
  background-color: #e60012;
  margin-left: 15px;
}

.titleStyle3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: #565656;
  text-align: center;
  margin-bottom: 15px;
}
.titleStyle3::after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  background-color: #e60012;
  color: #fff;
  margin: 5px auto 0 auto;
}

@media screen and (max-width: 576px) {
  .titleStyle3 {
    font-size: 24px;
  }
  .titleStyle3::after {
    width: 76px;
  }
}
form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
form .must {
  color: red;
  font-weight: bold;
  margin-right: 5px;
}
form .verify {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
form .verifyText {
  width: 100%;
  max-width: 190px;
  margin-right: 32px;
}
form .verifyImg {
  width: calc(100% - 222px);
}
form .verifyImg img {
  display: block;
  width: 150px;
  max-width: 100%;
}
form .verifyImg i {
  display: inline-block;
  font-size: 24px;
  margin-left: 10px;
  cursor: pointer;
}
form .codeImg {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.formItem {
  width: 100%;
  margin-bottom: 25px;
}
.formItem label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.formItem input, .formItem textarea {
  width: 100%;
  padding: 15px;
  border: 1px #c5c5c5 solid;
}
.formItem textarea {
  height: 300px;
  overflow: auto;
}
.formItem.w50 {
  width: calc(50% - 8px);
}
.formItem .Btn {
  display: inline-block;
  width: 100px;
  height: 42px;
  padding: 0 15px;
  text-align: center;
  line-height: 42px;
  border: none;
  font-weight: bold;
  margin-right: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.formItem .Btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 576px) {
  form .formItem.w50 {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  form .verifyImg {
    width: 100%;
    margin-top: 15px;
  }
}
.pageNav {
  width: 100%;
  padding: 15px;
}
.pageNav .arrowBtn {
  width: 32px;
  height: 32px;
  background-color: #1a1a1b;
  color: #fff;
  margin: 0 5px 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageNav ul {
  max-width: calc(100% - 90px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageNav ul li {
  display: inline-block;
  margin: 0 5px 10px 5px;
  /*box-shadow: 1px 1px 2px #ddd;*/
}
.pageNav ul li.active a {
  background-color: #e60012;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pageNav ul a {
  width: 32px;
  height: 32px;
  background-color: #f8f8f8;
  color: #444;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageNav .pc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageNav .mb {
  width: 100%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageNav .pageSelect {
  width: 85%;
  height: 32px;
  max-width: 100px;
  border: 1px #1a1a1b solide;
  margin: 0 10px 10px 10px;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .pageNav {
    /*.pc{display: none;}
    .mb{
        display: flex;
    }*/
  }
  .pageNav .arrowBtn {
    margin: 0 0 10px 0;
  }
}
footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding-top: 50px;
}
footer .content {
  width: 100%;
  padding: 0 5% 0 5%;
}
footer .logo {
  margin-bottom: 24px;
}
footer .logo img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
footer .footerNav {
  padding-bottom: 14px;
}
footer .footerNav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footerNav li {
  margin-right: 15px;
  margin-bottom: 15px;
  display: inline-block;
}
footer .footerNav li a {
  display: block;
  color: #fff;
}
footer .footerNav li:hover a {
  color: #e60012;
}
footer .copyright {
  width: 100%;
  text-align: center;
  border-top: 1px #565656 solid;
  padding: 1em 5%;
}
footer .socialBar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
footer .socialBar .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 5px 15px 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
footer .socialBar .icon:hover {
  opacity: 0.8;
}
footer .fb {
  background-color: #365493;
}
footer .twitter {
  background-color: #33ccff;
}
footer .msg {
  background-color: #f89a1e;
}
footer .pinterest {
  background-color: #cb2027;
}
footer .linkedin {
  background-color: #0274b3;
}
footer .infoBlock {
  width: 100%;
}
footer .footerInfo {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footerInfo li {
  display: inline-block;
  margin-right: 32px;
  margin-bottom: 15px;
}
footer .footerInfo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
footer .footerInfo .icon {
  display: inline-block;
  width: 16px;
  margin-right: 8px;
}
footer .footerInfo .addricon {
  width: 14px;
}

.gotop {
  width: 52px;
  height: 52px;
  background-color: #fff;
  color: #aaa;
  border-radius: 50%;
  border: 1px #aaa solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  right: 15px;
  bottom: 10%;
  z-index: 10;
  cursor: pointer;
}
.gotop img {
  display: block;
  width: 25px;
}

@media screen and (max-width: 992px) {
  .gotop {
    width: 48px;
    height: 48px;
  }
}
/*plug*/
/*slick==========================*/
.slick-slider .slick-arrow {
  width: 58px;
  height: 58px;
  background-color: #fff;
  color: #aaa;
  -webkit-box-shadow: 0 0 5px #cfcfcf;
          box-shadow: 0 0 5px #cfcfcf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.slick-slider .slick-prev {
  left: 0px;
}
.slick-slider .slick-next {
  right: 0px;
}
.slick-slider .slick-dots li button:before {
  color: #aaa;
}
.slick-slider .slick-dots .slick-active button:before {
  color: #e60012;
}

@media screen and (max-width: 992px) {
  .slick-slider .slick-arrow {
    width: 48px;
    height: 48px;
  }
}
/*page*/
.index {
  /*background-color: rgba(136, 136, 136, 0.14);*/
}
.index .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  /*box-shadow: 0 1px 5px rgb(190 190 190 / 26%);*/
  overflow: hidden;
}

.indexService {
  width: 100%;
  padding: 5% 5% 0 5%;
}
.indexService .serviceList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.indexService .item {
  width: 32%;
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 9%;
}
.indexService .item:hover .productImg::before {
  height: calc(100% + 30px);
}
.indexService .item:hover .imgBox {
  -webkit-transform: translateX(-50%) scale(1.1);
          transform: translateX(-50%) scale(1.1);
}
.indexService .productImg {
  width: 100%;
  position: relative;
  padding-top: 57%;
}
.indexService .productImg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.indexService .imgBox {
  width: 100%;
  padding: 0 10%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.indexService .imgBox img {
  display: block;
  width: 100%;
  margin-bottom: -23%;
}
.indexService .titleBox {
  width: 100%;
  padding: 10% 5% 0 5%;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.indexService .title {
  font-size: 20px;
  color: #e60012;
  font-weight: bold;
  margin-bottom: 7px;
}
.indexService .link {
  font-size: 14px;
  font-weight: bold;
  color: #6b6b6b;
  text-decoration: underline;
}

.indexAbout {
  width: 100%;
  padding: 0 5% 7% 5%;
}
.indexAbout .content {
  width: 100%;
  padding: 60px 65px 70px 65px;
  background: url(../images/indexAboutBg.jpg) no-repeat center center/cover;
  color: #fff;
  text-align: center;
}
.indexAbout .title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.indexAbout .title::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 28px;
  background-color: #fff;
  margin-right: 0.7em;
}
.indexAbout .title::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 28px;
  background-color: #fff;
  margin-left: 0.7em;
}
.indexAbout p {
  line-height: 1.8;
}
.indexAbout .link {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  margin-top: 1em;
}

.indexNews {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 50px;
}
.indexNews .content {
  width: 100%;
  overflow: hidden;
}
.indexNews .blockTitle {
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 0 5%;
}
.indexNews .blockTitle small {
  display: block;
  font-size: 16px;
  color: #aaa;
  margin-bottom: 7px;
}
.indexNews .blockTitle span {
  width: 100%;
  color: #e60012;
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.indexNews .blockTitle span::before {
  content: "";
  width: calc((100% - 192px) / 2);
  height: 2px;
  display: inline-block;
  margin-right: 1em;
  background-color: #e60012;
}
.indexNews .blockTitle span::after {
  content: "";
  width: calc((100% - 192px) / 2);
  height: 2px;
  display: inline-block;
  margin-left: 1em;
  background-color: #e60012;
}
.indexNews .slideBox {
  width: 100%;
  padding-left: calc(5% - 8px);
  padding-right: calc(5% - 8px);
}
.indexNews .newsSlide {
  width: 100%;
}
.indexNews .newsSlide .slick-arrow img {
  display: block;
  width: 18px;
}
.indexNews .newsSlide .slick-prev {
  left: 8px;
}
.indexNews .newsSlide .slick-next {
  right: 6px;
}
.indexNews .newsSlide .slick-prev:before, .indexNews .newsSlide .slick-next:before {
  display: none;
}
.indexNews .item {
  margin: 0 8px;
}

@media screen and (max-width: 992px) {
  .indexNews .newsSlide .slick-arrow img {
    width: 12px;
  }
}
@media screen and (max-width: 900px) {
  .indexService .productImg {
    padding-top: 60%;
  }
}
@media screen and (max-width: 768px) {
  .indexService .productImg {
    padding-top: 66%;
  }
  .indexService .imgBox {
    padding: 0 10%;
  }
  .indexService .title {
    font-size: 18px;
  }
  .indexService .link {
    font-size: 12px;
  }
  .indexAbout .content {
    padding: 50px 8% 55px 8%;
  }
}
@media screen and (max-width: 576px) {
  .indexService .item {
    width: 100%;
    padding-bottom: 26%;
  }
  .indexService .productImg {
    padding-top: 42%;
  }
  .indexService .imgBox {
    padding: 0 10%;
  }
  .indexService .title {
    font-size: 20px;
  }
  .indexService .link {
    font-size: 16px;
  }
  .indexAbout {
    padding: 0 0 7% 0;
  }
  .indexAbout .content {
    padding: 50px 32px 55px 32px;
  }
  .indexAbout p {
    text-align: justify;
  }
}
@media screen and (max-width: 500px) {
  .indexService .productImg {
    padding-top: 45%;
  }
}
@media screen and (max-width: 420px) {
  .indexService .productImg {
    padding-top: 48%;
  }
}
.about .main {
  padding: 90px 32px;
}

img.core {
  display: block;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.about2 .main {
  width: 100%;
  max-width: 1230px;
  padding-top: 70px;
  padding-bottom: 70px;
  color: #565656;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.about2 .LBox {
  width: 50%;
  margin-right: 3%;
}
.about2 .LBox img{
  width: 100%;
  height: auto;
}
.about2 .RBox {
  width: 47%;
  padding-right: 15px;
}
.about2 .textBox {
  width: 100%;
  max-width: 768px;
}
.about2 p {
  line-height: 1.5;
  margin-bottom: 32px;
}
.about2 .aboutImg1 {
  display: block;
  width: 80%;
  margin-bottom: 32px;
}
.about2 .aboutImg2 {
  display: block;
  width: 76%;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 1024px) {
  .about2 .main {
    padding-top: 50px;
  }
  .about2 .LBox, .about2 .RBox {
    width: 100%;
  }
  .about2 .LBox {
    display: block;
  }
  .about2 .LBox {
    margin: 0 32px 32px;
}
  .about2 .RBox {
    padding: 0 32px;
  }
  .about2 .textBox {
    max-width: 100%;
  }
  .about2 .aboutImg1 {
    width: 100%;
    max-width: 500px;
  }
  .about2 .aboutImg2 {
    display: block;
    width: 100%;
    max-width: 580px;
  }
}
.newsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsList .topBox {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.newsList .imgBox {
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
}
.newsList .imgBox img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsList .date {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background-color: #fff;
  color: #565656;
  text-align: center;
  padding: 7px 10px;
  font-weight: bold;
}
.newsList .date .day {
  font-size: 20px;
  margin-bottom: 3px;
}
.newsList .date .month {
  font-size: 16px;
}
.newsList .bottomBox {
  padding: 10px 0 15px 0;
}
.newsList .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  color: #e60012;
  text-align: center;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.newsList .text {
  height: 120px;
  line-height: 1.5;
  color: #565656;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.newsList .link {
  display: block;
  font-size: 20px;
  text-decoration: underline;
  text-align: center;
  color: #aaa;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsList .item {
  display: block;
}
.newsList .item:hover .imgBox img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.newsList .item:hover .link {
  color: #e60012;
}

.news .main {
  padding-top: 70px;
  padding-bottom: 50px;
}
.news .newsList .item {
  width: calc(33.3333% - 32px);
  margin: 0 16px 30px 16px;
}
.news .newsList .item:hover .title {
  color: #e60012;
}
.news .newsList .title {
  color: #1a1a1b;
}
.news .newsList .year {
  color: #aaa;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
}

.newsDetail .main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 5% 70px 5%;
}
.newsDetail .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: #e60012;
  margin-bottom: 32px;
}
.newsDetail .date {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
.newsDetail .date span {
  margin-right: 10px;
}
.newsDetail .editBlock img {
  width: 100%;
}
.newsDetail .btnGroup {
  width: 100%;
  text-align: center;
  border-top: 1px #eee solid;
  padding-top: 22px;
}
.newsDetail .btnGroup .btn {
  display: inline-block;
  width: 140px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  margin: 0 10px 15px 10px;
}
.newsDetail .btnGroup .btn:hover {
  color: #fff;
}

@media screen and (max-width: 880px) {
  .news .newsList .item {
    width: calc(50% - 32px);
  }
}
@media screen and (max-width: 576px) {
  .news .newsList .item {
    width: calc(100% - 32px);
  }
  .news .newsList .text {
    height: auto;
  }
  .news .main {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.product_menu {
  width: 100%;
  background-color: #000;
}
.product_menu ul {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
}
.product_menu li {
  display: inline-block;
  margin: 15px 1em;
}
.product_menu li:hover a::after {
  width: 100%;
}
.product_menu a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.product_menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  margin-top: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product .main {
  max-width: 1230px;
  padding: 60px 0 28px 0;
}

.seriesList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.seriesList .item {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList .item:hover .imgBox > img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.seriesList .imgBox {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.seriesList .imgBox > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList .icon {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.seriesList .icon img {
  display: block;
  width: 100%;
}

.seriesList1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}
.seriesList1 .item {
  display: block;
  width: calc(25% - 30px);
  margin: 0 15px 7% 15px;
}
.seriesList1 .item .imgBox {
  width: 100%;
  padding-bottom: 127.383%;
  position: relative;
  overflow: hidden;
}
.seriesList1 .item .imgBox img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.seriesList1 .item:hover .hoverText {
  opacity: 1;
}
.seriesList1 .item:hover .hoverText::after {
  width: 100%;
}
.seriesList1 .item:hover .title {
  color: #e60012;
}
.seriesList1 .item:hover .title::before {
  background-color: #e60012;
}
.seriesList1 .hoverText {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
  padding: 10%;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
}
.seriesList1 .hoverText::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(230, 0, 18, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList1 .hoverText ul {
  padding-left: 20px;
  list-style-type: disc;
}
.seriesList1 .hoverText li {
  line-height: 1.5;
  margin-bottom: 12px;
}
.seriesList1 .title {
  width: 100%;
  font-weight: bold;
  color: #565656;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList1 .title span {
  display: inline-block;
  width: calc(100% - 19px);
  font-size: 22px;
}
.seriesList1 .title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 31px;
  background-color: #565656;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.productList .main {
  padding-top: 70px;
  padding-bottom: 70px;
}

/*錨點位置調整*/
.target-fix {
  position: relative;
  top: -132px;
  display: block;
  height: 0;
}

.seriesList2 {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.seriesList2 .item {
  display: block;
  width: calc(33.333% - 30px);
  margin: 0 15px 50px 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList2 .item:hover {
  background-color: #aaa;
}
.seriesList2 .item:hover .imgBox img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.seriesList2 .item:hover .title {
  font-weight: bold;
}
.seriesList2 .item:hover .series span {
  color: #fff;
}
.seriesList2 .item:hover .series .iconBox i {
  opacity: 1;
}
.seriesList2 .imgBox {
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}
.seriesList2 .imgBox img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList2 .textBox {
  width: 100%;
  padding: 25px 20px;
  position: relative;
}
.seriesList2 .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #565656;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList2 .series {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.seriesList2 .series .iconBox {
  width: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.seriesList2 .series .iconBox i {
  font-size: 32px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList2 .series span {
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  color: #565656;
}
.seriesList2 .series span::after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
.seriesList2 .series span:last-child::after {
  display: none;
}
.seriesList2 .seriesTag {
  width: calc(100% - 64px);
  padding-right: 15px;
}

.productDetail .main {
  padding-top: 70px;
}
.productDetail .tableImg {
  width: 100%;
  overflow-x: auto;
}
.productDetail .tableImg img {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}
.productDetail .productEdit {
  width: 100%;
  height: auto;
  overflow-y: hidden;
  overflow-x: auto;
}
.productDetail .productEdit img {
  max-width: 100%;
}
.productDetail table {
  width: 100%;
}
.productDetail td, .productDetail th {
  border: 1px #000 solid;
}

.seriesList3 a {
  display: block;
}
.seriesList3 .item {
  width: calc(33.333% - 30px);
  margin: 0 15px 30px 15px;
}
.seriesList3 .item:hover .textBox {
  padding: 25px 20px;
}
.seriesList3 .item:hover .textBox::after {
  height: 100%;
}
.seriesList3 .item:hover .describe {
  opacity: 0;
}
.seriesList3 .item:hover .linkBox {
  height: auto;
}
.seriesList3 .item:hover .inquiry {
  color: #fff;
}
.seriesList3 .topImgBox {
  width: 100%;
  position: relative;
}
.seriesList3 .imgBox {
  padding-bottom: 100%;
}
.seriesList3 .textBox {
  width: 100%;
  padding: 25px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList3 .textBox::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #aaa;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList3 .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #565656;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList3 .describe {
  line-height: 1.3;
  margin-bottom: 15px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList3 .linkBox {
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.seriesList3 .download, .seriesList3 .inquiry, .seriesList3 .applicationLink {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
}
.seriesList3 .download, .seriesList3 .applicationLink {
  color: #e60012;
}
.seriesList3 .inquiry {
  color: #e60012;
}

.productSearch .main {
  width: 100%;
  min-height: 377px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.productSearch .noResult {
  text-align: center;
  font-size: 24px;
}

.productCatalog .main {
  width: 100%;
  max-width: 1230px;
  padding: 70px 5%;
}

.singleCatalog {
  width: 100%;
  overflow: auto;
}
.singleCatalog img {
  width: 100%;
  display: block;
  margin: 0 auto 15px auto;
}

.productEditTab img {
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 1200px) {
  .seriesList2 .series span {
    display: block;
  }
  .seriesList2 .series span::after {
    display: none;
  }
  .seriesList3 .item {
    margin: 0 15px 15px 15px;
  }
  .seriesList3 .item:hover .textBox {
    padding: 25px 0;
  }
  .seriesList3 .item:hover .describe {
    opacity: 1;
  }
  .seriesList3 .item:hover .inquiry {
    color: #000;
  }
  .seriesList3 .linkBox {
    position: static;
    height: auto;
    padding: 0;
  }
  .seriesList3 .textBox {
    padding: 25px 0;
  }
  .seriesList3 .textBox::after {
    display: none;
  }
  .seriesList3 .download, .seriesList3 .inquiry, .seriesList3 .applicationLink {
    display: inline-block;
    padding: 10px 15px;
    width: 124px;
    max-width: 100%;
    text-align: center;
    margin: 0 5px 15px 0;
  }
  .seriesList3 .download {
    background-color: #e60012;
    color: #fff;
    border: 1px #e60012 solid;
  }
  .seriesList3 .inquiry {
    color: #000;
    border: 1px #565656 solid;
  }
  .seriesList3 .applicationLink {
    background-color: #000;
    color: #fff;
    border: 1px #000 solid;
  }
}
@media screen and (max-width: 992px) {
  .product_menu ul {
    padding-top: 0;
  }
  .product_menu a::after {
    display: none;
  }
  .seriesList1 .item {
    width: calc(33.3333% - 30px);
  }
  .seriesList1 .hoverText {
    display: none;
  }
  .seriesList1 .title span {
    font-size: 20px;
  }
  .seriesList1 .title::before {
    height: 27px;
  }
  .seriesList2 .item {
    width: calc(50% - 30px);
  }
  .seriesList2 .series .iconBox {
    display: none;
  }
  .seriesList2 .seriesTag {
    width: 100%;
  }
  .seriesList3 .item {
    width: calc(50% - 30px);
  }
  .productDetail .tableImg img {
    width: 992px;
  }
  .singleCatalog img {
    width: initial;
  }
  .productDetail .productEdit img {
    max-width: none;
  }
  .productEditTab {
    overflow-x: auto;
  }
  .productEditTab img {
    max-width: none;
  }
}
@media screen and (max-width: 576px) {
  .product_menu ul {
    padding: 10px 0;
  }
  .product_menu li {
    margin: 8px 1em;
  }
  .product .main {
    padding: 46px 0 28px 0;
  }
  .seriesList1 {
    margin-top: 30px;
  }
  .seriesList1 .item {
    width: calc(50% - 30px);
    margin-bottom: 50px;
  }
  .seriesList1 .title span {
    font-size: 18px;
    width: calc(100% - 18px);
  }
  .seriesList1 .title::before {
    width: 3px;
    height: 24px;
  }
  .seriesList2 .item {
    width: calc(100% - 30px);
  }
  .seriesList3 .item {
    width: calc(100% - 30px);
  }
  .seriesList3 .describe {
    min-height: auto;
  }
  .productDetail .tableImg img {
    width: 768px;
  }
}
/*product application*/
.application .main {
  width: 100%;
  max-width: 1230px;
  padding: 70px 5%;
}
.application .breadcrumbs li {
  line-height: 1.5;
}

.applicationImgList {
  width: 100%;
}
.applicationImgList img {
  max-width: 100%;
  display: block;
  margin: 0 auto 15px auto;
}

.download .main {
  padding-top: 50px;
}

.downloadList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.downloadList .item {
  width: 20%;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 50px;
}
.downloadList .item:hover .imgBox img.icon {
  opacity: 0;
}
.downloadList .item:hover .imgBox img.hover {
  opacity: 1;
}
.downloadList .imgBox {
  width: 100%;
  padding-bottom: 125.83%;
  background-color: #aaa;
  overflow: hidden;
  position: relative;
}
.downloadList .imgBox img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.downloadList .imgBox img.icon {
  width: 60px;
  max-width: 100%;
  opacity: 0;
}
.downloadList .imgBox img.hover {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.downloadList .tag {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  background-color: #e60012;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
}
.downloadList .title {
  height: 48px;
  text-align: center;
  line-height: 1.5;
  margin: 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.downloadList .btn {
  display: block;
  width: 120px;
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
}
.downloadList .btn:hover {
  color: #fff;
}

@media screen and (max-width: 860px) {
  .downloadList .item {
    width: 25%;
  }
  .downloadList .imgBox img.icon {
    opacity: 0;
  }
  .downloadList .imgBox img.hover {
    opacity: 1;
  }
}
@media screen and (max-width: 680px) {
  .downloadList .item {
    width: 33.333%;
  }
  .downloadList .imgBox img.icon {
    opacity: 0;
  }
  .downloadList .imgBox img.hover {
    opacity: 1;
  }
}
@media screen and (max-width: 520px) {
  .downloadList .item {
    width: 50%;
  }
  .downloadList .imgBox img.icon {
    opacity: 0;
  }
  .downloadList .imgBox img.hover {
    opacity: 1;
  }
}
.mapBlock {
  width: 100%;
  position: relative;
  padding-bottom: 24%;
  overflow: hidden;
}
.mapBlock > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contact .main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 70px;
  padding-bottom: 50px;
}
.contact .LBox, .contact .RBox {
  padding-left: 16px;
  padding-right: 16px;
}
.contact .LBox {
  width: calc(100% - 360px);
}
.contact .RBox {
  width: 360px;
}
.contact .RBox p {
  line-height: 2;
}
.contact .titleStyle2 {
  padding-left: 16px;
  padding-right: 16px;
}

.companyInfo {
  margin-top: 15px;
}
.companyInfo li {
  margin-bottom: 6px;
  color: #565656;
}
.companyInfo li:hover {
  color: #e60012;
}
.companyInfo a {
  line-height: 1.5;
  color: #565656;
}
.companyInfo a:hover {
  color: #e60012;
}
.companyInfo i {
  margin-right: 10px;
}
.companyInfo img {
  display: inline-block;
  width: 18px;
  margin-right: 10px;
}

@media screen and (max-width: 992px) {
  .contact .main {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .contact .LBox, .contact .RBox {
    width: 100%;
  }
  .contact .LBox {
    margin-bottom: 12px;
  }
}
.inquiry .main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 5% 50px 5%;
}
.inquiry .formBlock {
  margin-top: 50px;
}

.inquiryTable {
  width: 100%;
  border: 1px #dee2e6 solid;
}
.inquiryTable .tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px #dee2e6 solid;
}
.inquiryTable .tr:last-child {
  border-bottom: 0;
}
.inquiryTable .tr > div:first-child {
  width: calc(100% - 244px);
}
.inquiryTable .tr > div:nth-child(2) {
  width: 180px;
}
.inquiryTable .tr > div:nth-child(3) {
  width: 64px;
}
.inquiryTable .th {
  font-weight: bold;
  padding: 20px 15px;
  text-align: center;
}
.inquiryTable .td {
  padding: 20px 15px;
}
.inquiryTable .pcHide {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  display: none;
}
.inquiryTable .productItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inquiryTable .imgBox {
  width: 130px;
  height: 130px;
  border: 1px #dee2e6 solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin-right: 15px;
}
.inquiryTable .imgBox img {
  display: block;
  width: 100%;
}
.inquiryTable .textBox {
  width: calc(100% - 145px);
}
.inquiryTable .productType {
  font-size: 15px;
  line-height: 1.3;
  color: #565656;
  margin-bottom: 5px;
}
.inquiryTable .productType span {
  display: block;
}
.inquiryTable .productName {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
}
.inquiryTable .delete {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e60012;
  color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inquiryTable .tr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 0 20px 0;
  }
  .inquiryTable .tr:first-child {
    display: none;
  }
  .inquiryTable .tr > div:first-child, .inquiryTable .tr > div:nth-child(2), .inquiryTable .tr > div:nth-child(3) {
    width: 100%;
  }
  .inquiryTable .td {
    padding: 10px 15px;
  }
  .inquiryTable .pcHide {
    display: block;
  }
  .inquiryTable .quantity, .inquiryTable .delete {
    margin: 0;
  }
}
@media screen and (max-width: 420px) {
  .inquiryTable .imgBox {
    margin-right: 0;
  }
  .inquiryTable .textBox {
    width: 100%;
    margin-top: 13px;
  }
}