@charset "UTF-8";
@font-face {
  font-family: "DFHeiStd-W7";
  src: url("../font/DFHeiStd-W7.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "DFHeiStd-W9";
  src: url("../font/DFHeiStd-W9.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  font-family: "DFHeiStd-W7";
}
* .W9 {
  font-family: "DFHeiStd-W9";
}

html {
  font-size: 16px; /*根尺寸*/
}
@media (min-width: 1800px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 1800px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 10px;
  }
}

h3 {
  font-family: "DFHeiStd-W9";
}

.overlay {
  display: none;
  position: absolute;
  top: 0vw;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000; /* 保證圖片位於最上層，可以根據需求調整 */
  pointer-events: none; /* 這樣可以讓用戶互動不會被圖片阻擋 */
}
.overlay img {
  width: 100%;
  height: auto;
  opacity: 0.2; /* 背景參考圖片設置透明度 */
  -o-object-fit: cover;
     object-fit: cover; /* 保持圖片比例並覆蓋整個視口 */
  margin-top: 0;
}

main section.carousel {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  height: auto;
  overflow: hidden;
}
main section.carousel .carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
main section.carousel .carousel-container .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}
main section.carousel .carousel-container .carousel-track .carousel-slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}
main section.carousel .carousel-container .carousel-track .carousel-slide .desktop {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.carousel .carousel-container .carousel-track .carousel-slide .mobile {
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 768px) {
  main section.carousel .carousel-container .carousel-track .carousel-slide .desktop {
    display: none;
  }
  main section.carousel .carousel-container .carousel-track .carousel-slide .mobile {
    display: block;
  }
}
main section.carousel .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
}
main section.carousel .carousel-button-left {
  left: 20px;
}
main section.carousel .carousel-button-right {
  right: 20px;
}
main section.carousel .carousel-button:hover {
  background: rgba(0, 0, 0, 0.7);
}
main section.midware {
  height: auto;
}
@media (max-width: 768px) {
  main section.midware {
    display: none;
  }
}
main section.midware div.boxes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 80px 0 80px;
  padding-top: 30px;
  padding-bottom: 30px;
}
main section.midware div.box {
  z-index: 1;
  margin: 0;
  transition: transform 0.3s ease; /* 添加變換的過渡效果 */
  transform: scale(1);
}
main section.midware div.box.active {
  transform: scale(1.1);
  z-index: 2;
}
main section.midware div.box img {
  width: 34vw;
  max-width: 600px;
}
main section.midware .b1 {
  position: relative;
  left: 80px;
}
main section.midware .b3 {
  position: relative;
  right: 70px;
}
main section.midware_mobile {
  display: none;
  height: auto;
}
@media (max-width: 768px) {
  main section.midware_mobile {
    display: block;
  }
}
main section.midware_mobile div.boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  position: relative;
  top: -3rem;
}
main section.midware_mobile div.boxes .box {
  width: 100%;
  display: flex;
  justify-content: center;
}
main section.midware_mobile div.boxes .box img {
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
main section.midware-2 {
  font-family: "DFHeiStd-W9";
}
main section.midware-2 .box-mid2 {
  height: 90vh;
  margin-top: -1rem;
  display: flex;
}
main section.midware-2 .box-mid2 .left {
  flex: 0 0 66%;
  display: flex;
  align-items: center;
}
main section.midware-2 .box-mid2 .left .box-text {
  width: 80%;
  margin-left: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.midware-2 .box-mid2 .left .box-text h1 {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  color: rgb(255, 113, 0);
  font-weight: bold;
  position: relative;
  top: 22vh;
}
main section.midware-2 .box-mid2 .left .box-text p {
  font-size: 1.2rem;
  color: rgb(255, 113, 0);
  font-weight: bold;
  position: relative;
  top: 22.5vh;
}
main section.midware-2 .box-mid2 .left .box-text div {
  margin: 0 4vw 0 4vw;
  line-height: 2.6rem;
  font-size: 1.7rem;
  font-weight: bold;
}
main section.midware-2 .box-mid2 .left .box-text div.p1 {
  position: relative;
  top: 27vh;
}
main section.midware-2 .box-mid2 .left .box-text div.p2 {
  position: relative;
  top: 31vh;
}
main section.midware-2 .box-mid2 .right {
  flex: 0 0 34%;
}
main section.midware-2 .box-mid2 .right img {
  width: 100%;
  height: 92%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: visible;
}
main section.midware-2 .box-mid2 .right img.mobile {
  display: none;
}
@media (max-width: 768px) {
  main section.midware-2 .box-mid2 {
    height: 82rem;
    width: 100%;
    justify-content: center;
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
  main section.midware-2 .box-mid2 .left {
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
  }
  main section.midware-2 .box-mid2 .left .box-text {
    width: 80%;
    margin-right: auto;
  }
  main section.midware-2 .box-mid2 .left .box-text h1 {
    font-size: 3.5rem;
    top: 0;
  }
  main section.midware-2 .box-mid2 .left .box-text p {
    font-size: 1.5rem;
    top: 1rem;
  }
  main section.midware-2 .box-mid2 .left .box-text div {
    margin: 0 0 0 0;
    line-height: 3.6rem;
    font-size: 2.2rem;
  }
  main section.midware-2 .box-mid2 .left .box-text div.p1 {
    position: relative;
    top: 32rem;
  }
  main section.midware-2 .box-mid2 .left .box-text div.p2 {
    position: relative;
    top: 36rem;
  }
  main section.midware-2 .box-mid2 .right {
    position: absolute;
    height: 36rem;
    right: 0;
  }
  main section.midware-2 .box-mid2 .right img.mobile {
    display: block;
  }
  main section.midware-2 .box-mid2 .right img.desktop {
    display: none;
  }
}
main section.midware-3 {
  margin-top: -4.5rem;
  height: auto;
  display: flex;
  flex-direction: column;
}
main section.midware-3 .box,
main section.midware-3 .box2 {
  display: flex;
  height: 58vh;
}
main section.midware-3 .box .left,
main section.midware-3 .box2 .left {
  flex: 0 0 50%;
  display: flex;
}
main section.midware-3 .box .left img,
main section.midware-3 .box2 .left img {
  width: 60%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
}
main section.midware-3 .box .mid,
main section.midware-3 .box2 .mid {
  flex: 0 0 6%;
}
main section.midware-3 .box .mid img,
main section.midware-3 .box2 .mid img {
  width: 70%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  position: relative;
  top: 19vh;
  left: -1.8rem;
}
main section.midware-3 .box .right,
main section.midware-3 .box2 .right {
  flex: 0 0 44%;
  display: flex;
}
main section.midware-3 .box .right .box-text,
main section.midware-3 .box2 .right .box-text {
  width: 60%;
  height: 80%;
  margin-right: auto;
}
main section.midware-3 .box .right .box-text img,
main section.midware-3 .box2 .right .box-text img {
  width: 25%;
  height: 20%;
  max-width: 80px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  margin-left: auto;
}
main section.midware-3 .box .right .box-text h1,
main section.midware-3 .box2 .right .box-text h1 {
  font-size: 2.4rem;
  letter-spacing: 0rem;
  color: rgb(4, 112, 92);
  font-weight: bold;
  font-family: "DFHeiStd-W9";
  position: relative;
  top: 0.5rem;
}
main section.midware-3 .box .right .box-text div,
main section.midware-3 .box2 .right .box-text div {
  margin-right: 10%;
  line-height: 2.6rem;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  top: 1.5vh;
}
main section.midware-3 .box .right .box-text div p,
main section.midware-3 .box2 .right .box-text div p {
  font-size: 1.3rem;
  line-height: 1.5rem;
}
main section.midware-3 .box .right .box-text button,
main section.midware-3 .box2 .right .box-text button {
  font-family: "DFHeiStd-W9";
  background: transparent;
  border: 3px solid rgb(4, 112, 92);
  border-radius: 40px;
  color: rgb(4, 112, 92);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.4vw;
  padding: 0.2rem 0.6rem 0.2rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  position: relative;
  top: 7.6vh;
  left: 18%;
}
main section.midware-3 .box .right .box-text button:hover,
main section.midware-3 .box2 .right .box-text button:hover {
  background: linear-gradient(to right, rgb(4, 112, 92), rgb(4, 148, 100));
  color: white;
  border: 3px solid transparent;
}
main section.midware-3 .box2 > .right > .box-text button {
  top: 4vh;
}
main section.midware-3 .box_reverse {
  display: flex;
  height: 58vh;
}
main section.midware-3 .box_reverse .left {
  flex: 0 0 50%;
  display: flex;
}
main section.midware-3 .box_reverse .left img {
  width: 60%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: auto;
}
main section.midware-3 .box_reverse .mid {
  flex: 0 0 6%;
}
main section.midware-3 .box_reverse .mid img {
  width: 70%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  position: relative;
  top: 20vh;
  right: -2.5rem;
}
main section.midware-3 .box_reverse .right {
  flex: 0 0 44%;
  display: flex;
}
main section.midware-3 .box_reverse .right .box-text {
  width: 60%;
  height: 80%;
  margin-left: auto;
  margin-right: -4.3rem;
}
main section.midware-3 .box_reverse .right .box-text img {
  width: 25%;
  height: 20%;
  max-width: 80px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  margin-left: auto;
}
main section.midware-3 .box_reverse .right .box-text h1 {
  font-size: 2.4rem;
  letter-spacing: 0rem;
  color: rgb(4, 112, 92);
  font-weight: bold;
  font-family: "DFHeiStd-W9";
  position: relative;
  top: 0.5rem;
}
main section.midware-3 .box_reverse .right .box-text div {
  margin-right: 10%;
  line-height: 2.6rem;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  top: 1.5vh;
}
main section.midware-3 .box_reverse .right .box-text button {
  font-family: "DFHeiStd-W9";
  background: transparent;
  border: 3px solid rgb(4, 112, 92);
  border-radius: 40px;
  color: rgb(4, 112, 92);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.4vw;
  padding: 0.2rem 0.6rem 0.2rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  position: relative;
  top: 10vh;
  left: 18%;
}
main section.midware-3 .box_reverse .right .box-text button:hover {
  background: linear-gradient(to right, rgb(4, 112, 92), rgb(4, 148, 100));
  color: white;
  border: 3px solid transparent;
}
@media (max-width: 768px) {
  main section.midware-3 {
    display: none;
  }
  main section.midware-3 .box {
    border: 1px solid red;
    height: 70rem;
    flex-direction: column;
    align-items: center;
  }
  main section.midware-3 .box .left {
    border: 3px solid rgb(17, 0, 255);
    flex: initial;
    width: 25rem;
    display: flex;
    justify-content: center;
  }
  main section.midware-3 .box .left img {
    border: 3px solid rgb(255, 0, 0);
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: auto;
  }
  main section.midware-3 .box .mid {
    border: 1px solid rgb(17, 0, 255);
    flex: 1 1 10%;
    width: 4rem;
    margin-bottom: 2rem;
  }
  main section.midware-3 .box .mid img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    position: static;
    margin-top: -2.5rem;
    transform: rotate(90deg);
  }
  main section.midware-3 .box .right {
    border: 1px solid rgb(17, 0, 255);
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    width: 70%;
  }
  main section.midware-3 .box .right .box-text {
    border: 1px solid rgb(255, 196, 0);
    width: 100%;
    height: 80%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
  }
  main section.midware-3 .box .right .box-text img {
    border: 3px solid rgb(255, 0, 0);
    display: none;
    width: 6rem;
    -o-object-fit: contain;
       object-fit: contain;
    position: relative;
    top: 0;
  }
  main section.midware-3 .box .right .box-text h1 {
    border: 3px solid rgb(0, 255, 106);
    width: 100%;
    text-align: center;
    font-size: 3rem;
    letter-spacing: 0rem;
    color: rgb(4, 112, 92);
    font-weight: bold;
    position: relative;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main section.midware-3 .box .right .box-text h1 img {
    display: block;
    position: relative;
    left: 0;
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
    border: 3px solid rgb(98, 0, 255);
  }
  main section.midware-3 .box .right .box-text div {
    text-align: center;
    margin-right: 10%;
    line-height: 2.6rem;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    top: 1.5rem;
  }
  main section.midware-3 .box .right .box-text button {
    background: transparent;
    border: 2px solid rgb(4, 112, 92);
    border-radius: 40px;
    color: rgb(4, 112, 92);
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.5rem;
    padding-left: 1rem;
    padding-right: 0.8rem;
    padding-top: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    position: relative;
    top: 4rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  main section.midware-3 .box .right .box-text button:hover {
    background: linear-gradient(to right, rgb(4, 112, 92), rgb(4, 148, 100));
    color: white;
    border: 3px solid transparent;
  }
  main section.midware-3 .box2,
  main section.midware-3 .box_reverse {
    display: none;
  }
}
main section.midware-3_mobile div.box {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  main section.midware-3_mobile div.box {
    display: flex;
  }
}
main section.midware-3_mobile div.box .image {
  width: 70vw;
}
main section.midware-3_mobile div.box .image img {
  width: 100%;
}
main section.midware-3_mobile div.box .icon {
  width: 10vw;
  margin-top: -5vw;
  margin-bottom: 5.5vw;
}
main section.midware-3_mobile div.box .icon img {
  transform: rotate(90deg);
  width: 100%;
}
main section.midware-3_mobile div.box .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.midware-3_mobile div.box .text .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2vw;
}
main section.midware-3_mobile div.box .text .title img {
  width: 10vw;
  margin-right: 2.5vw;
}
main section.midware-3_mobile div.box .text .title h1 {
  font-size: 6vw;
  color: rgb(4, 112, 92);
  font-weight: bold;
  font-family: "DFHeiStd-W9";
}
main section.midware-3_mobile div.box .text .innerText {
  line-height: 7vw;
  font-size: 4.8vw;
  font-weight: bold;
  text-align: center;
}
main section.midware-3_mobile div.box .text .innerText p {
  font-size: 4vw;
  line-height: 6vw;
}
main section.midware-3_mobile div.box .text .btn button {
  background: transparent;
  border: 2px solid rgb(4, 112, 92);
  border-radius: 40px;
  color: rgb(4, 112, 92);
  font-size: 5vw;
  font-weight: bold;
  font-family: "DFHeiStd-W9";
  letter-spacing: 0.6vw;
  padding: 0 3.5vw 0 4.5vw;
  margin-top: 3vw;
  margin-bottom: 15vw;
}
main section.carousel2 .box-carousel2 {
  margin-top: -4rem;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  background-image: url(../image/首頁300ppi/card_bk.png);
}
main section.carousel2 .left-side {
  flex: 0 0 35%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
main section.carousel2 .left-side h1 {
  width: 50%;
  margin-left: auto;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "DFHeiStd-W9";
  line-height: 4.6rem;
  color: rgb(4, 112, 92);
  /* 添加其他左侧文字样式 */
}
main section.carousel2 .right-side {
  height: 100%;
  flex: 0 0 65%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* 轮播图样式 */
}
main section.carousel2 .right-side .carousel {
  height: 100%;
  position: relative;
  overflow: hidden;
  /* 轮播按钮样式 */
}
main section.carousel2 .right-side .carousel .carousel-track-container {
  overflow: hidden;
  height: 100%;
  margin-right: 9vw;
  margin-left: 3.5vw;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin-left: 0;
  margin-right: 0px;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide {
  min-width: 50%; /* 桌面版显示两个卡片 */
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card {
  margin: 0 1.56vw;
  background-color: #fff;
  border: 0px;
  position: relative;
  text-align: center;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* 添加图片样式 */
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card img.desktop {
  display: block;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card img.mobile {
  display: none;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card div.text_area {
  height: 21vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.3rem;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card div.text_area h1 {
  width: 90%;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  font-family: "DFHeiStd-W9";
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card div.text_area p {
  margin-top: 1rem;
  width: 90%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: start;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card button {
  border: 0px;
  background-color: rgba(0, 0, 0, 0);
  width: 6.5rem;
  position: absolute;
  bottom: 2.5%;
  right: 8%;
}
main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card button:hover {
  opacity: 0.8;
}
main section.carousel2 .right-side .carousel .carousel-button {
  position: absolute;
  top: 48%;
  background: rgba(0, 0, 0, 0);
  border: none;
  padding: 0.5rem;
  color: rgb(4, 112, 92);
  cursor: pointer;
  z-index: 1;
  display: flex;
}
main section.carousel2 .right-side .carousel .carousel-button img {
  width: 1.2rem;
}
main section.carousel2 .right-side .carousel .carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.1176470588);
}
main section.carousel2 .right-side .carousel .carousel-button-left {
  left: 0.9375rem;
}
main section.carousel2 .right-side .carousel .carousel-button-left .d_arL {
  display: block;
}
main section.carousel2 .right-side .carousel .carousel-button-left .m_arL {
  display: none;
}
main section.carousel2 .right-side .carousel .carousel-button-right {
  right: 5.9375rem;
}
main section.carousel2 .right-side .carousel .carousel-button-right .d_arR {
  display: block;
}
main section.carousel2 .right-side .carousel .carousel-button-right .m_arR {
  display: none;
}
@media (max-width: 768px) {
  main section.carousel2 .box-carousel2 {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding-bottom: 7vw;
    padding-top: 7vw;
  }
  main section.carousel2 .left-side {
    flex: 0 0 100%;
    justify-content: center;
  }
  main section.carousel2 .left-side h1 {
    text-align: center;
    width: 85%;
    font-size: 7.5vw;
    line-height: 9vw;
    margin: 0;
  }
  main section.carousel2 .right-side {
    flex: 0 0 100%;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container {
    margin: 0;
    margin-left: 16vw;
    margin-right: 16vw;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track {
    margin: 0;
    margin-top: 4vw;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide {
    min-width: 100%; /* 移动端显示一个卡片 */
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card {
    height: 100%;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card img.desktop {
    display: none;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card img.mobile {
    display: block;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card div.text_area {
    height: auto;
    margin-top: 1.3rem;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card div.text_area h1 {
    font-size: 7vw;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card div.text_area p {
    margin-top: 1rem;
    margin-bottom: 15vw;
    width: 80%;
    font-size: 4.66vw;
    line-height: 1.8;
  }
  main section.carousel2 .right-side .carousel .carousel-track-container .carousel-track .carousel-slide .card button {
    width: 20vw;
    right: 30%;
    bottom: 6%;
  }
  main section.carousel2 .right-side .carousel .carousel-button:hover {
    background-color: unset;
  }
  main section.carousel2 .right-side .carousel .carousel-button img {
    width: 6.8vw;
  }
  main section.carousel2 .right-side .carousel .carousel-button-left {
    left: 4.5vw;
  }
  main section.carousel2 .right-side .carousel .carousel-button-left .d_arL {
    display: none;
  }
  main section.carousel2 .right-side .carousel .carousel-button-left .m_arL {
    display: block;
  }
  main section.carousel2 .right-side .carousel .carousel-button-right {
    right: 4.5vw;
  }
  main section.carousel2 .right-side .carousel .carousel-button-right .d_arR {
    display: none;
  }
  main section.carousel2 .right-side .carousel .carousel-button-right .m_arR {
    display: block;
  }
}
main section.midware-4 .box-mid4 {
  height: auto;
  display: flex;
  align-items: center;
  margin-top: -2rem;
}
main section.midware-4 .box-mid4 .right {
  height: calc(50vh + 30rem);
  flex: 0 0 66%;
  display: flex;
  align-items: center;
}
main section.midware-4 .box-mid4 .right .box-text {
  font-family: "DFHeiStd-W9";
  width: 80%;
  margin-right: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.midware-4 .box-mid4 .right .box-text h1 {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  color: rgb(255, 113, 0);
  font-weight: bold;
  position: relative;
  top: 15vh;
}
main section.midware-4 .box-mid4 .right .box-text p {
  font-size: 1.2rem;
  color: rgb(255, 113, 0);
  font-weight: bold;
  position: relative;
  top: 15.5vh;
}
main section.midware-4 .box-mid4 .right .box-text img.m {
  display: none;
}
main section.midware-4 .box-mid4 .right .box-text div {
  margin: 0 0 0 2vw;
  line-height: 2.7rem;
  font-size: 1.65rem;
  font-weight: bold;
}
main section.midware-4 .box-mid4 .right .box-text div.p1 {
  position: relative;
  top: 22vh;
}
main section.midware-4 .box-mid4 .right .box-text div.p2 {
  position: relative;
  top: 26vh;
}
main section.midware-4 .box-mid4 .right .box-text div.p3 {
  position: relative;
  top: 30vh;
}
main section.midware-4 .box-mid4 .left {
  flex: 0 0 34%;
  margin-top: -7rem;
}
main section.midware-4 .box-mid4 .left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  main section.midware-4 .box-mid4 {
    height: 256vw;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  main section.midware-4 .box-mid4 .right {
    width: 100%;
    height: 100%;
    flex: initial;
    display: flex;
    align-items: center;
  }
  main section.midware-4 .box-mid4 .right .box-text {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main section.midware-4 .box-mid4 .right .box-text h1 {
    font-size: 7.4vw;
    top: 10vw;
  }
  main section.midware-4 .box-mid4 .right .box-text p {
    font-size: 3.5vw;
    top: 12vw;
  }
  main section.midware-4 .box-mid4 .right .box-text img.m {
    display: block;
    width: 100%;
    position: relative;
    top: -2vw;
  }
  main section.midware-4 .box-mid4 .right .box-text div {
    margin: 0;
    width: 86%;
    line-height: 8vw;
    font-size: 4.5vw;
  }
  main section.midware-4 .box-mid4 .right .box-text div.p1 {
    position: relative;
    top: 7.5vw;
  }
  main section.midware-4 .box-mid4 .right .box-text div.p2 {
    position: relative;
    top: 13vw;
  }
  main section.midware-4 .box-mid4 .right .box-text div.p3 {
    position: relative;
    top: 18vw;
  }
  main section.midware-4 .box-mid4 .left {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */