@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
* {
  color: #424342;
  font-family: "quiche-sans", "Noto Sans TC", sans-serif;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #424342;
  cursor: pointer !important;
}

ul {
  list-style: none;
}

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

input, select, textarea, button {
  outline: none;
  background-color: transparent;
  border: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.main {
  overflow: hidden;
}

.main-inner {
  padding-top: 156px;
}

@media screen and (max-width: 575px) {
  .main-inner {
    padding-top: 90px;
  }
}

.header {
  height: 96px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-logobg::before {
  position: absolute;
  content: "";
  width: calc((100vw - 1620px) / 2 + 185px + 100px);
  height: 100%;
  border-radius: 0 0 200px 0;
  background-image: url(../images/logo-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
}

.header-logobg .header_menu .bar {
  background-color: #222222;
}

.header-logobg .header_menu.active .bar {
  background-color: #fff;
}

.header .container {
  max-width: 1620px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_logo {
  width: 185px;
}

.header_logo > img {
  width: 100%;
}

.header_nav_first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.header_nav_first > li {
  position: relative;
}

.header_nav_first > li:hover .header_nav_second {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
}

.header_nav_first > li:hover > a span.header_nav_default {
  -webkit-transform: translateY(calc(-100% - 10px));
          transform: translateY(calc(-100% - 10px));
}

.header_nav_first > li:hover > a span.header_nav_hover {
  top: 4px;
}

.header_nav_first > li:hover > a::after {
  width: 100%;
}

.header_nav_first > li > a {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 4px 0;
}

.header_nav_first > li > a span {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav_first > li > a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FE8C4A;
  bottom: 0;
  left: 0;
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav_second {
  position: absolute;
  padding-top: 16px;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav_second ul {
  padding: 35px;
  background-color: #222222;
  border-radius: 10px;
}

.header_nav_second ul li {
  margin-bottom: 15px;
}

.header_nav_second ul li:last-child {
  margin-bottom: 0;
}

.header_nav_second ul a {
  white-space: nowrap;
  font-size: 18px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav_second ul a:hover {
  color: #FE8C4A;
}

.header_nav_default {
  position: relative;
  left: 0;
  top: 0;
}

.header_nav_hover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

.header_menu {
  display: none;
  position: relative;
  width: 28px;
  height: 19px;
}

.header_menu .bar {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_menu .bar-top {
  top: 0;
}

.header_menu .bar-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header_menu .bar-bottom {
  top: calc(100% - 3px);
}

.header_menu.active .bar {
  top: 50%;
  left: 50%;
  border-radius: 3px;
}

.header_menu.active .bar-top, .header_menu.active .bar-middle {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header_menu.active .bar-bottom {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1700px) {
  .header .container {
    max-width: 1400px;
  }
  .header-logobg::before {
    width: calc((100vw - 1400px) / 2 + 185px + 100px);
  }
}

@media screen and (max-width: 1400px) {
  .header-logobg::before {
    width: calc(20px + 185px + 100px);
  }
}

@media screen and (max-width: 991px) {
  .header-logobg::before {
    width: calc(20px + 136px + 85px);
  }
  .header_menu {
    display: block;
  }
  .header_logo {
    width: 136px;
  }
  .header_nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    max-width: 375px;
    background-color: #222222;
    padding: 78px 20px 20px;
    overflow-y: auto;
    right: -375px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header_nav_first {
    display: block;
  }
  .header_nav_first > li {
    padding: 23px 0;
    border-top: 1px solid #424342;
  }
  .header_nav_first > li > a span {
    color: #FE8C4A;
    font-size: 24px;
  }
  .header_nav_first > li > a::after {
    display: none;
  }
  .header_nav_first > li:last-child {
    border-bottom: 1px solid #424342;
  }
  .header_nav_first > li.has-child > a {
    padding-right: 30px;
  }
  .header_nav_first > li.has-child > a::before, .header_nav_first > li.has-child > a::after {
    position: absolute;
    content: "";
  }
  .header_nav_first > li.has-child > a::before {
    width: 16px;
    height: 3px;
  }
  .header_nav_first > li:hover > a span.header_nav_default {
    -webkit-transform: none;
            transform: none;
  }
  .header_nav_first > li:hover > a span.header_nav_hover {
    top: calc(100% + 10px);
  }
  .header_nav_collapse {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header_nav_collapse .bar {
    background-color: #FE8C4A;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    position: absolute;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header_nav_collapse .bar-horizontal {
    width: 100%;
    height: 3px;
  }
  .header_nav_collapse .bar-vertical {
    width: 3px;
    height: 100%;
  }
  .header_nav_collapse.active .bar-vertical {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .header_nav_second {
    position: static;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
  .header_nav_second ul {
    padding: 0;
  }
  .header_nav_second ul a {
    font-weight: 300;
  }
  .header_nav.active {
    right: 0;
  }
}

@media screen and (max-width: 575px) {
  .header {
    height: 60px;
  }
}

.title {
  font-size: 69px;
  font-weight: 500;
  line-height: 100%;
}

@media screen and (max-width: 575px) {
  .title {
    font-size: 46px;
  }
}

.subtitle {
  font-size: 28px;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  .subtitle {
    font-size: 24px;
  }
}

.text {
  color: #767575;
  font-size: 20px;
  line-height: 1.8;
}

.text .highlight {
  font-weight: 700;
  color: #FE624D;
}

@media screen and (max-width: 575px) {
  .text {
    font-size: 18px;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  padding: 10px 25px;
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn span {
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_arrow {
  width: 45px;
  height: 28px;
}

.btn_arrow line {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-fill {
  background-color: #FE624D;
  border: 1px solid #FE624D;
}

.btn-fill span {
  color: #fff;
}

.btn-fill .btn_arrow line {
  stroke: #fff;
}

.btn-fill:hover {
  background-color: transparent;
}

.btn-fill:hover span {
  color: #FE624D;
}

.btn-fill:hover .btn_arrow line {
  stroke: #FE624D;
}

.btn-border {
  border: 1px solid #FE624D;
  background-color: transparent;
}

.btn-border .btn_arrow line {
  stroke: #FE624D;
}

.btn-border:not(.swiper-button-disabled):hover {
  background-color: #FE624D;
  border-color: #FE624D;
}

.btn-border:not(.swiper-button-disabled):hover .btn_arrow line {
  stroke: #fff;
}

.btn-border:not(.swiper-button-disabled):hover span {
  color: #fff;
}

@media screen and (max-width: 575px) {
  .btn_arrow {
    width: 27px;
    height: 11px;
  }
}

.footer {
  border-radius: 30px 30px 0 0;
  background-color: #222222;
}

.footer_top {
  padding-top: 75px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer_logo {
  width: 265px;
}

.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

.footer_nav li {
  margin-bottom: 15px;
}

.footer_nav li a {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}

.footer_nav li a:hover {
  text-decoration: underline;
}

.footer_nav li.footer_nav_title {
  margin-bottom: 20px;
}

.footer_nav li.footer_nav_title a {
  color: #FE8C4A;
  font-size: 24px;
  font-weight: 500;
}

.footer_nav li.footer_nav_title a:hover {
  text-decoration: none;
}

.footer_bottom {
  border-top: 1px solid #424342;
  padding-top: 26px;
  padding-bottom: 80px;
}

.footer_bottom p {
  line-height: 2;
  font-size: 14px;
  color: #C0BDB9;
  font-weight: 400;
}
.footer_bottom a{
  color: #C0BDB9; 
}
@media screen and (max-width: 1399px) {
  .footer_top {
    display: block;
  }
  .footer_logo {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 991px) {
  .footer_nav {
    display: block;
  }
  .footer_nav ul {
    margin-bottom: 45px;
  }
  .footer_nav ul:last-child {
    margin-bottom: 0;
  }
  .footer_top {
    padding-bottom: 35px;
  }
  .footer_bottom {
    padding-top: 27px;
    padding-bottom: 75px;
  }
}

.breadcrumb {
  padding-bottom: 55px;
}

.breadcrumb .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb .container li {
  padding: 0 25px;
  position: relative;
}

.breadcrumb .container li svg {
  width: 12px;
  height: 12px;
}

.breadcrumb .container li svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.breadcrumb .container li:first-child {
  padding-left: 0;
}

.breadcrumb .container li:last-child {
  padding-right: 0;
}

.breadcrumb .container li:last-child::after {
  display: none;
}

.breadcrumb .container li a {
  font-size: 14px;
  color: #767575;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.breadcrumb .container li a:hover {
  color: #FE624D;
}

.breadcrumb .container li a:hover svg path {
  fill: #FE624D;
}

.breadcrumb .container li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background-color: #C0BDB9;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 575px) {
  .breadcrumb .container li {
    padding: 0 10px;
  }
}

.inner-title {
  font-size: 38px;
  margin-bottom: 40px;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  .inner-title {
    margin-bottom: 30px;
  }
}

.swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  .swiper-arrows {
    gap: 7px;
  }
  .swiper-arrows .btn {
    padding: 11px 16px;
  }
  .swiper-arrows .btn_arrow {
    width: 27px;
    height: 11px;
  }
}

.radius-item {
  border: 1px solid #FFBC95;
  border-radius: 20px 50px 20px 50px;
}

.btn-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  border-radius: 50%;
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #424342;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-top p {
  font-size: 12px;
  font-family: "Roboto";
  margin-bottom: 3px;
  color: #fff;
  font-weight: 700;
}

.btn-top img {
  width: 13px;
}

.btn-top:hover {
  background-color: #FE624D;
}

@media screen and (max-width: 575px) {
  .btn-top {
    width: 44px;
    height: 44px;
    right: 20px;
  }
}

.swiper-button-disabled {
  opacity: 0.5;
  background-color: #eee;
  border: 1px solid #eeeeee;
}

.home-banner {
  position: relative;
}

.home-banner_title {
  width: 52%;
  padding: 12vw 0 12vw calc((100vw - 1620px) / 2 + 20px);
  border-radius: 5vw 2.6vw 26vw 1.6vw;
  background-image: url(../images/kv_bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 83px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.home-banner_pic {
  width: 60%;
  position: absolute;
  top: 96px;
  right: 0;
  border-radius: 1vw 15.6vw 2.6vw 26vw;
  padding-bottom: calc(60% * 0.7037);
  -webkit-box-shadow: 0 20px 80px rgba(254, 140, 74, 0.3);
          box-shadow: 0 20px 80px rgba(254, 140, 74, 0.3);
  overflow: hidden;
}

.home-banner_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.home-banner_circle {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE624D), to(#FD8B48));
  background: linear-gradient(to bottom, #FE624D 0%, #FD8B48 100%);
  bottom: 16px;
  right: 118px;
}

.home-banner_circle_arrow img {
  width: 16px;
}

.home-banner_circle_arrow-1 {
  -webkit-animation: arrow-opacity 1s linear 0s infinite alternate;
          animation: arrow-opacity 1s linear 0s infinite alternate;
}

.home-banner_circle_arrow-2 {
  -webkit-animation: arrow-opacity 1s linear 0.33s infinite alternate;
          animation: arrow-opacity 1s linear 0.33s infinite alternate;
}

.home-banner_circle_arrow-3 {
  -webkit-animation: arrow-opacity 1s linear 0.67s infinite alternate;
          animation: arrow-opacity 1s linear 0.67s infinite alternate;
}

.home-banner_circle_texts {
  width: 134px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: inherit;
}

.home-banner_circle_texts img {
  width: 100%;
  -webkit-animation: circle-texts 15s linear infinite;
          animation: circle-texts 15s linear infinite;
}

@media screen and (max-width: 1700px) {
  .home-banner_title {
    padding-left: calc((100vw - 1400px) / 2 + 20px);
  }
}

@media screen and (max-width: 1400px) {
  .home-banner_title {
    padding-left: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .home-banner_title {
    font-size: 64px;
  }
}

@media screen and (max-width: 991px) {
  .home-banner {
    padding-bottom: 64.27vw;
  }
  .home-banner_circle {
    display: none;
  }
  .home-banner_title {
    width: 100%;
    padding-top: 110px;
    padding-bottom: 60vw;
    border-radius: 0 0 0 27vw;
  }
  .home-banner_pic {
    width: calc(100% - 20px);
    padding-bottom: calc((100% - 20px) * 1.09);
    top: inherit;
    bottom: 0;
  }
  .home-banner_pic > img{
    -o-object-position: 30% center;
    object-position: 30% center;
  }
}

@media screen and (max-width: 575px) {
  .home-banner_title {
    padding-top: 29vw;
    font-size: 50px;
  }
}

@-webkit-keyframes arrow-opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes arrow-opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes circle-texts {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle-texts {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.home-about {
  padding: 75px 0 135px;
}

.home-about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-about_title {
  width: 45%;
}

.home-about_text {
  width: 55%;
  padding-top: 40px;
}

.home-about_text h3 {
  margin-bottom: 20px;
}

.home-about_text p {
  margin-bottom: 38px;
}

.home-about_text .row {
  margin-left: -17px;
  margin-right: -17px;
  margin-bottom: 60px;
}

.home-about_text .row > div {
  padding-left: 17px;
  padding-right: 17px;
}

.home-about_item {
  padding: 24px 10px;
  text-align: center;
}

.home-about_item h4 {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
  color: #FE624D;
}

.home-about_item h5 {
  font-size: 25px;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .home-about .container {
    display: block;
  }
  .home-about_title {
    width: 100%;
  }
  .home-about_text {
    width: 100%;
  }
  .home-about_item {
    width: 60%;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 575px) {
  .home-about {
    padding-top: 80px;
    padding-bottom: 110px;
  }
  .home-about_item {
    padding: 20px;
    width: 220px;
  }
  .home-about_item h4 {
    font-size: 33px;
  }
  .home-about_item h5 {
    font-size: 22px;
  }
  .home-about_text p {
    text-align: justify;
  }
  .home-about_text p br {
    display: none;
  }
  .home-about .btn {
    width: 220px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

.home-report {
  padding: 168px 0;
  background-image: url(../images/report_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10.4vw 1.6vw 10.4vw 1.6vw;
}

.home-report .row {
  margin-left: -22px;
  margin-right: -22px;
}

.home-report .row > div {
  padding-left: 22px;
  padding-right: 22px;
}

.home-report_title {
  background-color: #fff;
  border-radius: 20px;
  padding: 80px;
  height: 100%;
  background-image: url(../images/report_decoration.svg);
  background-size: 37%;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.home-report_title .title {
  margin-bottom: 40px;
}

.home-report_title .subtitle {
  margin-bottom: 20px;
}

.home-report_item {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #fff;
}

.home-report_item:last-child {
  margin-bottom: 0;
}

.home-report_item_text {
  width: calc(100% - 15px);
  padding-right: 18px;
}

.home-report_item_text p {
  font-size: 17px;
  margin-bottom: 5px;
  color: #767575;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home-report_item_text h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
}

.home-report_item_arrow {
  width: 15px;
  height: 32px;
}

.home-report_item_arrow path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: #424342;
}

.home-report_item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE624D), to(#FD8B48));
  background: linear-gradient(to bottom, #FE624D 0%, #FD8B48 100%);
  border-radius: 20px;
  border: 1px solid #FE8C4A;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.home-report_item:hover {
  -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
}

.home-report_item:hover::after {
  opacity: 1;
}

.home-report_item:hover .home-report_item_text p, .home-report_item:hover .home-report_item_text h4 {
  color: #fff;
}

.home-report_item:hover .home-report_item_arrow path {
  stroke: #fff;
}

@media screen and (max-width: 991px) {
  .home-report_title {
    margin-bottom: 40px;
    height: auto;
  }
}

@media screen and (max-width: 575px) {
  .home-report {
    border-radius: 27vw 8vw 27vw 8vw;
    padding: 21vw 0;
  }
  .home-report_title {
    padding: 40px 20px 143px;
  }
  .home-report_title p br {
    display: none;
    text-align: justify;
  }
  .home-report_item {
    padding: 20px;
  }
  .home-report_item_text p {
    font-size: 15px;
  }
  .home-report_item_text h4 {
    font-size: 24px;
    font-weight: 500;
  }
}

.home-product {
  padding: 130px 0 200px;
}

.home-product_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.home-product_title .title, .home-product_title .subtitle {
  margin: 0;
}

.home-product_title .title br {
  display: none;
}

.home-product_pic {
  width: 100%;
  padding-bottom: 143.54%;
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.home-product_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.home-product_hover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE624D), to(#FD8B48));
  background: linear-gradient(to bottom, #FE624D 0%, #FD8B48 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  top: 100%;
  left: 0;
}

.home-product_hover h4, .home-product_hover h5 {
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  padding: 0 15px;
}

.home-product_hover h5 {
  margin: 0;
}

.home-product_hover h4 {
  margin-bottom: 5px;
}

.home-product_hover_arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  bottom: 15%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.home-product_hover_arrow img {
  width: 10px;
}

.home-product_text {
  padding-top: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home-product_text h4 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 5px;
}

.home-product_text h5 {
  font-size: 18px;
  margin: 0;
  font-weight: normal;
}

.home-product_item:hover .home-product_hover {
  top: 0;
}

.home-product_item:hover .home-product_text {
  opacity: 0;
}

.home-product_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .home-product_hover h4, .home-product_hover h5 {
    font-size: 20px;
  }
  .home-product_hover_arrow {
    bottom: 8%;
  }
}

@media screen and (max-width: 991px) {
  .home-product_head {
    display: block;
    margin-bottom: 30px;
  }
  .home-product_title {
    margin-bottom: 40px;
  }
  .home-product_arrow .btn {
    padding: 9px 16px;
  }
}

@media screen and (max-width: 575px) {
  .home-product {
    padding: 110px 0 100px;
  }
  .home-product_title .title br {
    display: block;
  }
  .home-product_text h4 {
    font-size: 22px;
  }
  .home-product_text h5 {
    font-size: 16px;
  }
}

.about_intro {
  margin-bottom: 22px;
}

.about_intro .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about_intro_text .title {
  margin-bottom: 0;
}

.about_intro_text h2 {
  font-size: 50px;
  margin-bottom: 36px;
  font-weight: normal;
}

.about_intro_text .text {
  text-align: justify;
}

.about_intro_pic {
  width: 333px;
  margin-right: 95px;
  -webkit-transform: translateY(53px);
          transform: translateY(53px);
}

.about_core {
  margin-bottom: 140px;
}

.about_core_content {
  margin-top: -70px;
}

.about_core_pic {
  width: 100%;
  padding-bottom: 35.57%;
  position: relative;
  border-radius: 1.6vw 1.6vw 15.6vw 1.6vw;
  overflow: hidden;
}

.about_core_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.about_core_circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

.about_core_circle_item {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE624D), to(#FD8B48));
  background: linear-gradient(to bottom, #FE624D 0%, #FD8B48 100%);
  border: 1px solid #FFBC95;
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(254, 140, 74, 0.4);
          box-shadow: 0 10px 30px rgba(254, 140, 74, 0.4);
}

.about_core_circle_item h3 {
  font-size: 32px;
  margin-bottom: 1px;
  color: #fff;
  font-weight: 500;
}

.about_core_circle_item h4 {
  font-size: 25px;
  margin: 0;
  color: #fff;
  font-weight: normal;
}

.about_research {
  padding-bottom: 140px;
}

.about_research .row {
  margin-left: -16px;
  margin-right: -16px;
}

.about_research .row > div {
  padding-left: 16px;
  padding-right: 16px;
}

.about_research_item {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  background-color: #F5F5F5;
}

.about_research_pic {
  position: relative;
  width: 100%;
  padding-bottom: 65.62%;
}

.about_research_pic > img {
  position: absolute;
}

.about_research_pic > img.pic-main {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.about_research_pic > img.pic-mask {
  width: 100%;
  left: 0;
  bottom: 0;
}

.about_research_text {
  padding: 34px 50px 64px;
}

.about_research_text h3 {
  color: #FE624D;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.about_list li {
  margin-bottom: 5px;
  font-size: 20px;
  padding-left: 20px;
  position: relative;
}

.about_list li::before {
  position: absolute;
  content: "•";
  top: 3px;
  left: 6px;
}

.about_history {
  padding-bottom: 220px;
}

.about_history .swiper-slide {
  height: auto;
}

.about_history_swiper {
  margin-bottom: 50px;
  position: relative;
  z-index: 0;
}

.about_history_arrow {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.about_history_item {
  height: 100%;
  position: relative;
  z-index: 0;
  padding: 0 10px;
}

.about_history_item::after {
  position: absolute;
  content: "";
  width: calc(100% + 20px);
  height: 1px;
  background-color: #C0BDB9;
  top: 67px;
  z-index: -1;
  left: 0;
}

.about_history_item_inner {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  height: 100%;
}

.about_history_year {
  text-align: center;
  color: #FE8C4A;
  font-weight: normal;
  font-size: 50px;
  margin: 0;
}

.about_history_dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #FE8C4A;
  margin: 0 auto 12px;
}

.about_history_content {
  border-radius: 20px;
  padding: 30px 25px;
  background-color: #F5F5F5;
  height: 100%;
}

@media screen and (max-width: 1199px) {
  .about_intro .container {
    display: block;
  }
  .about_intro_pic {
    -webkit-transform: none;
            transform: none;
    margin-left: auto;
  }
}

@media screen and (max-width: 991px) {
  .about_research_text {
    padding: 12px 20px 50px;
  }
}

@media screen and (max-width: 767px) {
  .about_intro {
    margin: 0;
  }
  .about_intro_text {
    margin-bottom: 15px;
  }
  .about_intro_text .title {
    font-size: 50px;
  }
  .about_intro_text h2 {
    font-size: 30px;
  }
  .about_intro_text .text br {
    display: none;
  }
  .about_intro_pic {
    width: 190px;
    margin-right: 0;
  }
  .about_core {
    margin-bottom: 90px;
  }
  .about_core_content {
    margin-top: -17px;
  }
  .about_core_pic {
    border-radius: 8vw 8vw 40vw 8vw;
    padding-bottom: 61.79%;
  }
  .about_core_circle {
    gap: 10px;
  }
  .about_core_circle_item {
    width: 105px;
    height: 105px;
  }
  .about_core_circle_item h3 {
    font-size: 18px;
  }
  .about_core_circle_item h4 {
    font-size: 15px;
  }
  .about_research {
    padding-bottom: 90px;
  }
  .about_research_item {
    margin-bottom: 30px;
    height: auto;
  }
  .about_research_text {
    padding: 12px 20px 50px;
  }
  .about_research_text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .about_research .inner-title {
    margin-bottom: 30px;
  }
  .about_list li {
    font-size: 18px;
  }
  .about_history {
    padding-bottom: 100px;
  }
  .about_history_swiper {
    padding: 0 20px;
  }
  .about_history_swiper::after {
    display: none;
  }
  .about_history_swiper .swiper-wrapper {
    display: block !important;
  }
  .about_history_swiper .swiper-slide {
    padding: 0;
    width: 100%;
  }
  .about_history_swiper .swiper-slide:last-child .about_history_dot {
    display: none;
  }
  .about_history_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about_history_item::after {
    display: none;
  }
  .about_history_item_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about_history_year {
    font-size: 50px;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about_history_dot {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 40px;
    position: relative;
  }
  .about_history_dot::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 40px;
    background-color: #C0BDB9;
    bottom: 100%;
    left: 50%;
  }
  .about_history_content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .about_history_arrow {
    display: none;
  }
}

.text-marquee {
  white-space: nowrap;
  display: inline;
  -webkit-animation: 50s loop 0s linear infinite;
          animation: 50s loop 0s linear infinite;
  font-size: 180px;
  margin: 0;
}

.text-marquee-wrap {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.05;
}

@media screen and (max-width: 767px) {
  .text-marquee {
    font-size: 80px;
  }
}

@-webkit-keyframes loop {
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}

@keyframes loop {
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}

.product-detail {
  padding-bottom: 220px;
}

.product-detail .container {
  position: relative;
}

.product-detail .breadcrumb {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 10;
}

.product-detail .row {
  margin-left: -40px;
  margin-right: -40px;
}

.product-detail .row > div {
  padding-left: 40px;
  padding-right: 40px;
}

.product-detail_text {
  padding-top: 75px;
}

.product-detail_text .title {
  font-size: 65px;
  line-height: 1.22;
}

.product-detail_text .title-en {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 10px;
}

.product-detail_text .text {
  margin-bottom: 50px;
  color: #424342;
}

.product-detail_text .text .highlight {
  font-size: 28px;
}

.product-detail_text .row {
  margin-left: -8px;
  margin-right: -8px;
}

.product-detail_text .row > div {
  padding-left: 8px;
  padding-right: 8px;
}

.product-detail_list {
  margin-bottom: 40px;
}

.product-detail_list li {
  font-size: 20px;
  margin-bottom: 12px;
}
.product-detail_list .t1{
  font-size: 24px;
  color: #FE8C4A;
}

.product-detail_list li:last-child {
  margin-bottom: 0;
}

.product-detail_feat {
  padding: 30px 15px;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-detail_feat p {
  text-align: center;
  font-size: 22px;
  color: #FE624D;
}

.product-detail_pic {
  width: 100%;
  padding-bottom: 91.95%;
  position: relative;
  border-radius: 5.2vw 1.6vw 1.6vw 1.6vw;
  overflow: hidden;
  z-index: 0;
}

.product-detail_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.product-detail_pic-wrap {
  position: relative;
  width: 136%;
}
.product-detail_pic-wrap::after {
  position: absolute;
  content: "";
  width: 40%;
  padding-bottom: 40%;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE624D), to(#FD8B48));
  background: linear-gradient(to bottom, #FE624D 0%, #FD8B48 100%);
  bottom: -15px;
  right: -15px;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .product-detail .breadcrumb {
    position: static;
  }
  .product-detail_pic {
    border-radius: 18.7vw 5.3vw 5.3vw 5.3vw;
    margin-bottom: 45px;
  }
  .product-detail_pic-wrap::after {
    bottom: -5px;
    right: -5px;
    border-radius: 5.3vw;
  }
  .product-detail_text {
    padding-top: 0;
  }
  .product-detail_text .title {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .product-detail_text .title-en {
    font-size: 28px;
  }
 
  .product-detail_list li {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .product-detail {
    padding-bottom: 100px;
  }
  .product-detail_feat {
    padding: 20px;
    margin-bottom: 20px;
    height: auto;
    border-radius: 10px 30px 10px 30px;
  }
}

.report-detail_content {
  margin-bottom: 130px;
}

.report-detail_content h1 {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 55px;
  line-height: 1;
}

.report-detail_pic {
  position: relative;
  width: 100%;
  padding-bottom: 32.86%;
  border-radius: 1.6vw 1.6vw 15.6vw 1.6vw;
  margin-bottom: 55px;
  overflow: hidden;
}

.report-detail_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.report-detail_text {
  margin-bottom: 60px;
}

.report-detail_text .inner-title {
  margin-bottom: 25px;
}
.report-detail_text .subtitle{
  font-size: 22px;
  color: #FE8C4A;
  margin-bottom: 10px;
  font-weight: 400;
}
.report-detail_text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.report-detail_text .row {
  margin-left: -13px;
  margin-right: -13px;
  margin-top: 34px;
  margin-bottom: 30px;
}

.report-detail_text .row > div {
  padding-left: 13px;
  padding-right: 13px;
}
.report-detail_text ul li{
  list-style: disc;
  margin-bottom: 6px;
  margin-left: 1em;
  font-size: 18px;
    line-height: 1.7;
}
.report-detail_text ol.references li{
  list-style: decimal;
  margin-bottom: 6px;
  margin-left: 1em;
  font-size: 16px;
    line-height: 1.7;
}
.report-detail_feat {
  padding: 30px 30px 42px;
  height: 100%;
}

.report-detail_feat h3 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 15px;
  color: #FE624D;
}

.report-detail_feat p {
  line-height: 1.7;
  margin: 0;
  font-size: 18px;
}

.report-detail_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 200px;
  gap: 20px;
}

.report-detail_link .btn {
  gap: 15px;
  padding: 16px 25px;
  min-width: 355px;
  border: 1px solid #EEEEEE;
}

.report-detail_link_prev {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.report-detail_link_next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  .report-detail_text .row > div {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .report-detail_content {
    margin-bottom: 100px;
  }
  .report-detail_content h1 {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .report-detail_pic {
    padding-bottom: 89.55%;
    border-radius: 5.3vw 5.3vw 26.7vw 5.3vw;
  }
  .report-detail_link {
    margin-bottom: 100px;
  }
  .report-detail_link .btn {
    padding: 20px 30px;
    min-width: inherit;
  }
  .report-detail_link .btn span {
    display: none;
  }
}

.contact {
  margin-bottom: 200px;
  position: relative;
}

.contact .row {
  margin: 0;
}

.contact .row > div {
  padding: 0;
}

.contact .breadcrumb {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.contact_text {
  padding-left: calc((100vw - 1400px) / 2 + 20px);
  padding-right: 40px;
  padding-top: 75px;
}

.contact_text h1 {
  font-size: 69px;
  font-weight: 500;
  margin-bottom: 34px;
}

.contact_text h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
}

.contact_text h3 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 14px;
}

.contact_text > ul {
  margin-bottom: 87px;
}

.contact_text > ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact_text form h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact_text form .row {
  margin-left: -30px;
  margin-right: -30px;
}

.contact_text form .row > div {
  padding-left: 30px;
  padding-right: 30px;
}

.contact_text form .btn {
  margin-top: 60px;
}

.contact_pic {
  padding-left: 93px;
}

.contact_pic_inner {
  width: 100%;
  padding-bottom: 115.69%;
  position: relative;
  border-radius: 5.2vw 0 0 1.6vw;
  overflow: hidden;
}

.contact_pic_inner > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
}

.contact_form_item {
  margin-bottom: 20px;
}

.contact_form_item label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.contact_form_item input, .contact_form_item select, .contact_form_item textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #C0BDB9;
}

.contact_form_item input, .contact_form_item select {
  height: 50px;
  padding: 0 10px;
  font-size: 18px;
  color: #FE624D;
}

.contact_form_item textarea {
  height: 100px;
  padding: 10px;
  font-size: 18px;
  color: #FE624D;
}

.contact_form_item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/select-arrow.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: calc(100% - 19px) center;
}

.contact_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  gap: 20px;
}

.contact_radio_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.contact_radio_item input {
  width: 32px;
  height: 32px;
}

.contact_radio_item label {
  font-size: 18px;
}

.contact_verify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.contact_verify input {
  width: calc((100% - 50px - 20px) * 0.67);
}

.contact_verify_num {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  border: 1px solid #C0BDB9;
  border-radius: 5px;
}

.contact_verify_num img {
  /*width: 135px;*/
}

.contact_verify a {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 5px;
  background-color: #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact_verify a img {
  width: 22px;
}

@media screen and (max-width: 1400px) {
  .contact_text {
    padding-left: 20px;
  }
}

@media screen and (max-width: 991px) {
  .contact .breadcrumb {
    position: static;
  }
  .contact_pic {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .contact_pic_inner {
    padding-bottom: 93.43%;
    border-radius: 18.7vw 5.3vw 5.3vw 5.3vw;
  }
  .contact_text {
    padding-top: 0;
    padding-right: 20px;
  }
  .contact_text h1 {
    font-size: 46px;
    margin-bottom: 34px;
  }
  .contact_text h2 {
    font-size: 30px;
  }
  .contact_text h3 {
    font-size: 22px;
  }
  .contact_text > ul {
    margin-bottom: 83px;
  }
  .contact_text form h4 {
    font-size: 26px;
  }
  .contact_text form .btn {
    margin-top: 83px;
  }
  .contact_verify {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact_verify input {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact_verify_num {
    width: calc(100% - 60px);
  }
}
/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 1500px){
  .product-detail_pic-wrap {
          width: 100%;
      }
}
@media screen and (max-width: 1300px) {
  .product-detail_text .title br {
      display: none;
  }
}
.m-b25{
  margin-bottom: 25px !important;
}
.breadcrumb .container li:last-child a{
  cursor: default !important;
}
.breadcrumb .container li:last-child a:hover {
  color: #767575;
}