html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

#header {
  position: fixed;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0;
  text-align: center;
  padding: 20px;
  background-color: white;
}
#preloader {
  /*   這是整個會蓋住畫面的底色色塊  */
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: #248cc7;
  z-index: 999;
}
/* div {
  border: 1px rgba(0, 0, 0, 0.2) dashed;
} */
.rwd_display {
  display: none !important;
}
.rwd_flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .rwd_none {
    display: none !important;
  }
  .rwd_display {
    display: block !important;
  }
  .rwd_flex {
    display: flex !important;
  }
}

.mobile_list{
  position: fixed;
  top:0;
  right:0;
  background: white;

  width:70vw;
  height:100vh;

  transform:translateX(100%);
  transition:.35s ease;

  background:#fff;
}
.mobile_list.active{
  transform:translateX(0);
}

.mobile_list p {
  padding: 20px;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.2s linear;
  border-bottom:1px rgba(0,0,0,0.2) solid

}
.mobile_list p:hover {
  color: #248cc7;
}
.language_list {
  position: absolute;
  right: 0px;
}

.product_list {
  position: absolute;
  right: 0px;
}
.header_list p {
  position: relative;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s linear;
}

/* 三角形（預設隱藏） */
.header_list p::after {
  content: "";
  position: absolute;
  top: -10px; /* 控制三角形高度 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #47a8d9;

  opacity: 0;
  transition: 0.3s;
}

/* hover 出現 */
.header_list p:hover::after {
  opacity: 1;
}

.header_list p:hover {
  color: #47a8d9;
}

.logo img {
  height: 90px;
}

.banner {
  position: relative;
  margin-top: 120px;
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #47a8d9 0%,
    #47a8d9 50%,
    #248cc7 50%,
    #248cc7 100%
  );
}
.banner_bg {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 50%;
  z-index: 0;
  opacity: 0.3;
}

.banner_text {
  padding: 0 20px;
  margin-left: 80px;
  z-index: 1;
}

.carousel-item img {
  padding: 5% 15%;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* 往上 */
  }
  100% {
    transform: translateY(0);
  }
}
.carousel-item p {
  color: white;
  width: 100%;
  text-align: center;
}

#carouselExample {
  background-image: url("../img/carousel/bg.svg");
  background-size: 100% auto;
  background-position: center 85%;
  background-repeat: no-repeat;
}

body {
  font-family: "Inter", sans-serif;
}

.banner_text p {
  font-size: 14px;
  font-weight: 600;
  max-width: 80%;
  line-height: 1.3;
}

.banner_text h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 0;
  line-height: 1.5;
}
.banner_text svg {
  fill: white;
}
button {
  background-color: #36374b;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  margin-top: 20px;
}
i {
  margin-left: 5px;
  padding-right: 5px;
  transition: all 0.2s linear;
}

button:hover i {
  margin-left: 10px;
  padding-right: 0px;
}

.index_block_1 h2 {
  font-size: 32px;
  font-weight: 600;
}

.index_block_1 h2 i {
  padding-right: 15px;
}

.index_block_1 p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  padding-top: 20px;
}
.index_block_1 img {
  padding: 150px 0;
}

.index_block_1_1 {
  padding-right: 30px;
}

.index_block_2 {
  background-image: url("../img/index_img2.png");
  background-size: auto auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.index_block_2 i {
  font-size: 5vw;
  padding: 10px;
  color: white;
  width: 100%;
  text-align: center;
}
.index_block_2 .p1 {
  font-size: 20px;
  font-weight: 500;
  color: #47a8d9;
  padding: 20px 0;
  width: 100%;
  text-align: center;
}

.index_block_2 .p2 {
  font-size: 16px;
  font-weight: 500;
  color: white;
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
}

.privacy {
  background-color: #d9d9d9;
}

.privacy p {
  color: #232323;
  font-size: 14px;
  width: 100%;
  text-align: center;
  padding: 10px;
}

.footer_infor {
  background-image: url("../img/footer_img2.png");
  background-size: auto auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.footer_infor .row {
  background-color: rgba(217, 217, 217, 0.6);
}

.footer_infor h4 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 15px;
}
.footer_infor p {
  font-weight: 500;
  padding: 5px 0;
}

.footer_infor a {
  color: #232323;
}

.footer_infor img {
  width: 50%;
  padding: 20px 0;
}

.page_title h2 {
  font-size: 32px;
  font-weight: 600;
  padding: 70px 0;
}
.page_title i {
  padding-right: 5px;
}

.page_second_title h3 {
  font-size: 24px;
  font-weight: 600;
}
.page_second_title i {
  padding-right: 5px;
}

.page_second_title {
  padding: 30px 0 60px;
}

@media (max-width: 1024px) {
  .banner_text {
    padding: 50px 30px 0 30px;
    margin: 0;
  }
  .banner_text h1 {
    font-size: 24px;
  }
  .index_block_1_1 {
    padding: 30px;
  }
  .index_block_1 img {
    padding: 0px 0;
  }
  .index_block_2 i {
    font-size: 25vw;
  }
  .index_block_2 {
    background-size: auto 100%;
  }
  .footer_infor {
    background-size: auto 100%;
  }

  .index_block_2 .row div {
    padding: 30px 0;
  }
}

.machine-table {
  width: 100%;
  max-width: 1200px;
  border: 1px solid #cfcfcf;
  color: #555;
  margin-bottom: 30px;
}

.table-title {
  background: #202833;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 24px;
  border: 1.5px solid #c9c9c9;
}

.machine-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.machine-table th,
.machine-table td {
  border: 1.5px solid #c9c9c9;
  padding: 8px 24px;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.machine-table th {
  background: #5d6070;
  color: #fff;
  font-weight: 700;
}

.machine-table tbody tr:nth-child(even) {
  background: #e7edf6;
}

.machine-table tbody tr:nth-child(odd) {
  background: #f7f7f7;
}

.machine-table th:nth-child(1),
.machine-table td:nth-child(1),
.machine-table th:nth-child(2),
.machine-table td:nth-child(2),
.machine-table th:nth-child(3),
.machine-table td:nth-child(3) {
  width: 33.333%;
}

.equipment img {
  width: 100%;
  box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.2);
}

.equipment div {
  padding: 20px;
}

.mold_text h4 {
  color: #248cc7;
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 15px;
}

.mold_text p {
  padding-bottom: 40px;
  line-height: 1.5;
  font-weight: 500;
}

.mold_text2 {
  padding-top: 50px;
}
.mold_text2 p {
  color: white;
  width: 100%;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

.mold_text2 h5 {
  color: white;
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
}

.mold_text2 .cardd div {
  background-color: #248cc7;
  padding: 30px 0;
}

.mold_text2 hr {
  margin: 15px;
  color: white;
}
.product_iconlist {
  padding-top: 60px;
}
.product_iconlist i {
  width: 100%;
  font-size: 60px;
  text-align: center;
}

.product_iconlist p {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
.product_card {
  padding: 20px;
}
.product_card img {
  width: 100%;
  border-radius: 10px;
}

.country {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  position: relative;
  top: 80px;
  z-index: 999;
}
.country span {
  color: white;
  padding: 0 10px;
  border-right: 2px white solid;
}

@media (max-width: 768px) {
  .country span {
    padding: 10px;
  }
  .country {
    margin-bottom: 30px;
  }
}

.map-wrap {
  position: relative;
  width: 100%;
  margin: auto;
}

.map-wrap img {
  width: 100%;
  display: block;
}

.pin {
  position: absolute;
  transform: translate(-50%, -100%);
  color: red;
  font-size: 24px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.pin span {
  font-size: 18px;
  color: inherit;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
}

.pin span {
  opacity: 0;
  transform: translateX(-5px);
  transition: 0.3s;
}

.pin:hover span {
  opacity: 1;
  transform: translateX(0);
}

.pin:hover {
  color: #1e90ff;
}
.contr li{
  padding:10px 0;
  text-align:center;
}



@media (max-width: 768px) {
  .banner_text h1 {
      font-size: 20px;
  }
  .machine-table th, .machine-table td {
    padding:8px;
  }
  .logo img {
    height: auto;
    max-width: 80%;
}
}