@charset "utf-8";
/* CSS Document */
/* topp */
/* 共通 css開始  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: blue solid 1px; */
}
.container {
  padding: 0;
}
/* 100%	540px	720px	960px	1140px	1320px */
@media screen and (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
}
img {
  image-rendering: -moz-crisp-edges; /* Firefox        */
  image-rendering: -o-crisp-edges; /* Opera          */
  image-rendering: -webkit-optimize-contrast; /* Safari         */
  image-rendering: optimize-contrast; /* CSS3 Proposed  */
  -ms-interpolation-mode: nearest-neighbor; /* IE8+           */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "微軟正黑體";
  line-height: 1.5em;
  margin: 0;
  /* background-image: url("../img/body_top_index.png"), url("../img/body_bottom_index.png"); */
  /* background-position: center top 22rem, bottom; */
  background-image: url("../img/body_bottom_index.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 106% auto;
  overflow-x: hidden;
}
/* 首頁上方背景 */
.w_topbgi {
  background: url("../img/body_top_index.png") no-repeat center / contain;
  background-position: center top;
  background-size: 102% auto;
  position: absolute;
  top: 18vw;
  z-index: -1;
  height: 100%;
  /* 這高度100%是哪個的100% */
  width: 100%;
}
/* 內頁上方共用背景 */
.page_top_bgimg {
  background: url("../img/body_top_index.png") no-repeat center / contain;
  background-position: center top;
  background-size: 102% auto;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  body {
    background-image: none;
  }
  .w_topbgi,
  .page_top_bgimg {
    /* top: 25vw; */
    display: none;
  }
}
:root {
  --line: #3d3c3c;
  --bg2: #e5e5e5;
  --bg1: #f7c566;
  --bg12: #f7c566;
  --bg13: #f7c566;
  --icon: #000;
  --icon2: #fff8dc;
  --divbg: #707070;
  --dot: #dc000c;
  --tag: #959595;
}
a {
  text-decoration: none;
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
}

a img {
  border: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}
.html_edit img {
  max-width: 100%;
  height: auto !important;
}
/* ===============編輯器============== */
.htmledit img {
  max-width: 100%;
  height: auto !important;
}
.htmledit iframe {
  max-width: 100%;
}
.about_page_html {
  padding-bottom: 10%;
}
/* ===============icon start============== */
/* .fat.fa-888 {
  font-size: 14px;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  .fat.fa-888 {
    font-size: 12px;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  .fat.fa-888 {
    font-size: 10px;
    vertical-align: middle;
  }
}
@media screen and (max-width: 575px) {
  .fat.fa-888 {
    font-size: 8px;
    vertical-align: middle;
  }
} */
/* ===============icon end============== */
/* ===============p_title start============== */
.p_title {
  height: 18vw;
  clip-path: polygon(100% 0, 100% 35%, 50% 100%, 0 35%, 0 0);
}
.p_title h1,
.p_title h2 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: 45%;
  margin: 0;
  width: fit-content;
}
.p_title h1 {
  color: white;
  font-size: 3.4vw;
  line-height: 3.4vw;
  margin-bottom: 1.5vw;
}
.p_title h2 {
  color: #fff8dc;
  font-size: 2.8vw;
  line-height: 2.8vw;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .p_title {
    clip-path: polygon(100% 0, 100% 50%, 50% 100%, 0 50%, 0 0);
    height: 120px;
  }
  .p_title h1,
  .p_title h2 {
    top: 30%;
    width: fit-content;
  }
  .p_title h1 {
    margin-bottom: 0.2rem;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 0.5rem;
  }
  .p_title h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
/* ===============p-title end============== */

/* ===============p-tag start============== */
.p_tag {
  color: var(--tag);
  margin: 20px 0;
}
.p_tag a {
  color: gray;
}

@media screen and (max-width: 575px) {
  .p_tag {
    font-size: 14px;
  }
}
/* ===============p-tag end============== */

/* ===============more start============== */
.more {
  position: absolute;
  color: #000;
  width: 80%;
  height: 80%;
  background-color: var(--bg12);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.more:hover {
  color: #000;
}
@media screen and (max-width: 991px) {
  .more {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .more {
    font-size: 16px;
  }
}
/* ===============more end============== */

/* ===============page_backlink start============== */
.page_backlink {
  text-align: end;
  margin: 2rem 0;
  color: #000;
}
.page_backlink a {
  color: #000;
  font-size: 20px;
  cursor: pointer;
}
.page_backlink2 {
  font-size: 20px;
  color: #000;
  min-width: 120px;
  transition: all 0.3s;
}
.page_backlink2:hover {
  color: #000;
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .page_backlink a {
    font-size: 18px;
  }
  .page_backlink2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .page_backlink {
    text-align: center;
  }
  .page_backlink a {
    font-size: 16px;
  }
  .page_backlink2 {
    font-size: 16px;
  }
}
/* ===============page_backlink end============== */
/* ===============pagelink start============== */
/* ========== 分頁 ========== */
.gs_pagination {
  width: 100%;
  padding: 10px 0;
  clear: both;
  text-align: center;
  background: none;
  box-shadow: none;
  margin: 0;
  margin-top: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs_pagination a.pag_btn {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  margin: 0;
  font-size: 30px;
  color: #f7c566;
  font-weight: bolder;
  transition: all 0.5s ease;
  margin-right: 10px;
}
.gs_pagination a.pag_btn2 {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.gs_pagination a.pag_btn:hover {
  opacity: 0.5;
}
.gs_pagination a.other_page {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #f7c566;
  border: 1px solid #f7c566;
  font-size: 20px;
  margin: 0;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  font-weight: bold;
  background-color: #fff;
  margin-right: 10px;
}

.gs_pagination strong {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: #f7c566;
  border: 1px solid #f7c566;
  color: #000;
  font-size: 20px;
  margin: 0;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}

.gs_pagination a.other_page:hover,
.gs_pagination strong:hover {
  background: #f7c566;
  color: #000;
}
@media screen and (max-width: 991px) {
  .gs_pagination strong,
  .gs_pagination a.other_page {
    font-size: 18px;
  }
  .gs_pagination a.pag_btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gs_pagination {
    margin-top: 30px;
  }
  .gs_pagination a.pag_btn,
  .gs_pagination a.other_page,
  .gs_pagination strong {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 5px;
  }
}
/* ===============pagelink end============== */
/* ===============itemmmm start============== */

/* ===============item end============== */

/* ===============headerr start============== */
.din {
  height: 114px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .din {
    height: 90px;
  }
}
header {
  background-color: var(--bg1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  border-top: #fff8dc solid 23px;
}
header i {
  padding-right: 2px;
}
.header {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.header_logo {
  position: relative;
  padding: 17px 0;
}
.header_logo img {
  width: 220px;
  /* height: 76px; */
  object-fit: contain;
}
.header_link {
  position: relative;
  display: flex;
}
.head_link {
  color: #000;
  font-size: 20px;
  line-height: 20px;
  height: 50px;
  position: relative;
}
.head_link:hover {
  color: #000;
}
.head_link::before {
  position: absolute;
  background: linear-gradient(90deg, var(--dot) 50%, transparent 50%);
  background-repeat: repeat-x;
  background-size: 12px 6px;
  background-position: 0px 33px;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.2s ease;
}

.head_link.active::before {
  opacity: 1;
}
.head_link:hover::before {
  opacity: 1;
}
.head_link + a {
  margin-left: 1.3rem;
}
.head_link i {
  color: var(--icon);
  font-size: 18px;
  vertical-align: bottom;
}
.dropdown_listdiv {
  align-self: center;
}
.dropdown_listbtn {
  border: none;
  background-color: transparent;
  color: white;
  font-size: 40px;
}
.dropdown_listbtn i {
  color: #000;
}
@keyframes enlarge {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.3);
  }
}
@keyframes ensmall {
  from {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}

/* 電腦版搜尋 */
#pc_head_search_wrap {
  padding-left: 1.2em;
  position: relative;
  width: 6em;
  height: 1.3em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

#pc_head_search_wrap .head_search_input {
  font-size: 18px;
  line-height: 1.2em;
  height: 1.3em;
  width: 6em;
  border: none;
  padding-top: 0px;
  padding-bottom: 0px;
}

#pc_head_search_wrap .head_search_button {
  z-index: 1;
  height: 1.5em;
  width: 1.5em;
  color: var(--bg1);
  border: 1px solid var(--bg1);
  background: white;
}

/* 手機版搜尋 */
#mobile_head_search_wrap {
  position: relative;
  width: 10em;
  height: 1.3em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0 auto;
}

#mobile_head_search_wrap .head_search_input {
  font-size: 18px;
  line-height: 1.2em;
  height: 1.5em;
  width: 10em;
  border: 1px solid var(--bg1);
  padding-top: 0px;
  padding-bottom: 0px;
}

#mobile_head_search_wrap .head_search_button {
  z-index: 1;
  height: 1.65em;
  width: 1.65em;
  color: transparent;
  text-shadow: 0 0 0 var(--bg1);
  border: 1px solid var(--bg1);
  background: white;
  box-sizing: border-box;
}

/* dropdown_list */
.header_logo2 {
  text-align: center;
}
.header_logo2 img {
  width: 220px;
  object-fit: contain;
}
.dropdown_list {
  display: flex;
  flex-direction: column;
  background-color: var(--bg1);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
}
@media (min-width: 1181px) {
  .dropdown_list {
    display: none !important;
  }
}
.dropdown_list a {
  padding: 1rem 0;
  text-align: center;
  color: #000;
  border-bottom: rgba(255, 255, 255, 0.65) solid 0.5px;
  font-size: 20px;
}
.dropdown_list a i {
  color: var(--icon);
}
.dropdown_list a:hover {
  background-color: white;
  color: #000;
}
.dropdown_list a.active {
  background-color: white;
  color: #000;
}
.dropdown_list > div {
  padding: 2rem 0;
}
.dropdown_btn {
  margin: auto;
  display: block;
  border: none;
  border-radius: 5px;
  background-color: white;
  font-size: 18px;
  color: #000;
  width: 110px;
  height: 39px;
}
.dropdown_listdiv {
  display: none;
}
@media screen and (max-width: 1366px) {
  .header {
    width: 90%;
  }
  .header_logo img {
    width: 180px;
  }
  .head_link {
    font-size: 18px;
    line-height: 20px;
    height: 40px;
  }
  .head_link::before {
    background-position: 0px 28px;
  }
  .head_link + a {
    margin-left: 1rem;
  }
  .head_link i {
    color: var(--icon);
    font-size: 16px;
    vertical-align: baseline;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    width: 100%;
  }
  .header_logo {
    padding: 14px 0;
  }
  .head_link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1180px) {
  .dropdown_listdiv {
    display: block;
  }
  .header_link {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .header_logo {
    margin-left: 2rem;
  }
  .header_logo img {
    width: 140px;
  }
  .dropdown_listdiv {
    margin-right: 2rem;
  }
  .dropdown_listbtn {
    font-size: 30px;
  }
  header {
    border-top: var(--icon) solid 12px;
  }
  .dropdown_list a {
    padding: 15px 0;
    font-size: 18px;
  }
  .dropdown_list > div {
    padding: 1rem 0;
  }
}

.dropdown {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media (max-width: 1645px) {
  .dropdown {
    position: absolute;
    top: 0;
    right: 5%;
    transform: translate(0, 0);
  }
}
@media (max-width: 1180px) {
  .dropdown {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translate(0, -50%);
  }
}
.dropdown .dropbtn {
  font-size: 18px;
  border: none;
  outline: none;
  color: #000;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  transition: all 0.3s;
  padding: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .dropdown .dropbtn {
    font-size: 16px;
  }
}
.dropbtn i {
  font-size: 10px;
  margin-left: 5px;
  transform: rotate(180deg);
}
.dropdown:hover .dropbtn {
  color: #dc000c;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
/* .dropdown-content.active{
display: block;
} */
.dropdown-content .nav-link {
  color: #dc000c;
}
.dropdown-content .nav-link:hover::after,
.dropdown-content .nav-link.active::after {
  display: none;
}
.dropdown:hover .dropdown-content {
  display: block;
}
/* ===============headerr end============== */

/* ===============welcomee start============== */
/* 輪播---------- */
section#slide-frame {
  height: 31.25vw;
  width: 100%;
  margin-bottom: 50px;
}
.main_slider {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 575px) {
  section#slide-frame {
    height: 35.25vw;
  }
}
/*slick dots*/
.main_slider .slick-dots {
  position: absolute;
  bottom: -50px;
}
.main_slider .slick-dots li.slick-active button:before {
  color: transparent;
  background-color: #dc000c;
  opacity: 1;
}
.main_slider .slick-dots li button:before {
  color: transparent;
  background-color: #46c7d8;
  transition: all 0.5s ease;
  opacity: 1;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1200px) {
  .main_slider .slick-dots li button:before {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 991px) {
  .main_slider .slick-dots {
    bottom: -3.6vw;
  }
}
@media screen and (max-width: 575px) {
  .main_slider .slick-dots {
    bottom: -30px;
  }
  .main_slider .slick-dots li button:before {
    width: 12px;
    height: 12px;
    /* font-size: 16px; */
  }
}
.main_slider .slick-dots li:hover button:before {
  background-color: #dc000c;
}
.main_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slide_textbox {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.slide_text1 {
  font-size: 3vw;
  line-height: 1.2;
  margin-bottom: 1.5vw;
}
.slide_text2 {
  font-size: 2.5vw;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .slide_textbox {
    transform: translate(-50%, -90%);
  }
  .slide_text1 {
    font-size: 22px;
  }
  .slide_text2 {
    font-size: 18px;
  }
}
.slide-images {
  width: 500%;
  display: flex;
  height: 100%;
}

.slide-images input {
  display: none;
}

.img-container {
  clip-path: polygon(100% 0, 100% 60%, 50% 100%, 0 60%, 0 0);
  width: 100%;
}

.img-container img {
  height: 31.25vw;
  width: 100%;
  object-position: 50% 50%;
  object-fit: cover;
}
@media screen and (max-width: 575px) {
  .img-container img {
    height: 32.25vw;
  }
}

.pointer {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.point {
  background-color: var(--bg1);
  width: 16px;
  height: 16px;
  margin: 0 10px;
  transition: 0.2s linear;
}

.point:hover {
  cursor: pointer;
  /* background-color: var(--dot); */
}
.point.active {
  background-color: var(--dot);
}
#r1[checked] ~ .s1 {
  margin-left: 0;
}

#r2[checked] ~ .s1 {
  margin-left: -20%;
}

#r3[checked] ~ .s1 {
  margin-left: -40%;
}

#r4[checked] ~ .s1 {
  margin-left: -60%;
}

#r5[checked] ~ .s1 {
  margin-left: -80%;
}
@media screen and (max-width: 575px) {
  .pointer {
    margin-top: 1.5rem;
  }
  .point {
    width: 14px;
    height: 14px;
    margin: 0 6px;
  }
}

/* 輪播---------- */
/* w_about_title---------- */
.w_about {
  margin-top: 6rem;
}
.w_about_title {
  display: flex;
  justify-content: start;
  align-items: flex-end;
}
.w_about_title span:first-child {
  /* color: #46c7d8; */
  font-size: 90px;
  line-height: 90px;
}
.w_about_title span:nth-child(2) {
  color: #000;
  background-color: var(--bg1);
  font-size: 24px;
  line-height: 24px;
  padding: 0.3rem 0.5rem;
  margin: 0 0 0.5rem 1rem;
}
@media screen and (max-width: 1200px) {
  .w_about_title span:first-child {
    font-size: 75px;
    line-height: 75px;
  }
  .w_about_title span:nth-child(2) {
    font-size: 22px;
    line-height: 22px;
  }
}
@media screen and (max-width: 991px) {
  .w_about {
    margin-top: 2rem;
  }
  .w_about_title span:first-child {
    font-size: 65px;
    line-height: 65px;
  }
  .w_about_title span:nth-child(2) {
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (max-width: 575px) {
  .w_about {
    margin-top: 0;
  }
  .w_about_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
  }
  .w_about_title span:first-child {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0.5rem;
  }
  .w_about_title span:nth-child(2) {
    color: #000;
    background-color: var(--bg1);
    font-size: 20px;
    line-height: 20px;
    padding: 0.3rem 1rem;
    margin: 0;
  }
}
/* w_about_title---------- */
/* w_about_text---------- */
.w_about_text {
  background-image: linear-gradient(
    90deg,
    var(--tag) 78%,
    rgba(0, 0, 0, 0) 78%
  );
  /* background-color: tomato; */
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 406px;
  padding: 1.5rem 0 1.5rem 2rem;
}
.w_about_text_div1 {
  align-self: start;
  height: 80%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  line-height: 1.5;
  font-size: 20px;
  margin-top: 20px;
}
.w_about_text_div1.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/*===滾動條開始===*/
.w_about_text_div1::-webkit-scrollbar {
  width: 2px;
  height: 1px;
}
.w_about_text_div1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #535353;
}
.w_about_text_div1::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
/*===滾動條結束===*/

#w_about_text_div1_more_button {
  font-size: 20px;
  color: white;
  position: absolute;
  left: 520px;
  bottom: 30px;
  z-index: 1;
  transition: all 0.5s ease;
}
#w_about_text_div1_more_button:hover {
  color: #f7c566;
}
.w_about_text_div1 + div {
  height: 100%;
  width: 530px;
}
.w_about_text_div1 + div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1200px) {
  .w_about_text_div1 {
    width: 450px;
  }
  .w_about_text_div1 + div {
    width: 450px;
    height: 300px;
  }
  .w_about_text {
    height: 335px;
  }
  #w_about_text_div1_more_button {
    left: 320px;
  }
}
@media screen and (max-width: 991px) {
  .w_about_title {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
  }
  .w_about_title span:first-child {
    font-size: 50px;
    line-height: 50px;
    margin: 1rem;
  }
  .w_about_title span:nth-child(2) {
    font-size: 25px;
    line-height: 25px;
    padding: 0.3rem 1rem;
    margin: 0;
  }
  .w_about_text {
    background-color: var(--tag);
    flex-direction: column;
    height: auto;
    padding: 0;
  }
  .w_about_text_div1 {
    width: 100%;
    order: 2;
    padding: 5% 20px 15% 20px;
  }
  .w_about_text_div1 p {
    font-size: 16px;
    line-height: 20px;
  }
  .w_about_text_div1 a {
    text-align: center;
    font-size: 16px;
    margin-top: 2rem;
  }
  .w_about_text_div1 + div {
    height: 190px;
    order: 1;
    width: 100%;
  }

  .w_about_text img {
    width: 100%;
    height: 486px;
  }
}
@media screen and (max-width: 768px) {
  .w_about_text img {
    width: 100%;
    height: 365px;
  }
  #w_about_text_div1_more_button {
    left: 30vw;
    /* font-size: 18px; */
  }
  .w_about_text_div1 {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .w_about_text img {
    height: calc(100vw / 575 * 388);
  }
  .w_about_title span:first-child {
    font-size: 40px;
    line-height: 40px;
  }
  .w_about_title span:nth-child(2) {
    font-size: 20px;
    line-height: 20px;
  }
  .w_about_text_div1 {
    padding-bottom: 100px;
  }
  .w_about_text_div1 p {
    font-size: 14px;
    line-height: 18px;
  }
  #w_about_text_div1_more_button {
    left: 35vw;
  }
}
/* w_about_text---------- */
.index_about_img {
  /* 530*358 */
  width: 530px;
  height: 358px;
  object-fit: cover;
}
.index_about_img.animation {
  animation-name: ani_slideTop;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 1300px) {
  .index_about_img {
    width: 500px;
    height: 340px;
  }
}
@media screen and (max-width: 1200px) {
  .index_about_img {
    width: 450px;
    height: 305px;
  }
}
/* w_news---------- */

.w_news_outside {
  background-color: #f8f8f8;
  padding-bottom: 5rem;
}
.w_news {
  width: 100%;
  padding-top: 1.5rem;
  margin-top: 3rem;
}
.w_news_title {
  text-align: end;
  display: flex;
  justify-content: end;
  align-items: flex-end;
}
.w_news_title span:first-child {
  color: var(--icon);
  font-size: 90px;
  line-height: 90px;
}
.w_news_title span:nth-child(2) {
  color: #000;
  background-color: var(--bg1);
  font-size: 24px;
  line-height: 24px;
  padding: 0.3rem 0.5rem;
  margin: 0 0 0.5rem 1rem;
}

.w_news_more {
  margin-top: 1rem;
  text-align: center;
}
.w_news_more i {
  transition: all 0.5s ease;
}
.w_news_more:hover i {
  transform: translateX(10px);
}
.w_news_more a {
  color: #000;
  font-size: 20px;
}
@media screen and (max-width: 1200px) {
  .w_news_outside {
    padding-bottom: 4rem;
  }
  .w_news {
    padding-top: 1rem;
  }
  .w_news_title span:first-child {
    font-size: 75px;
    line-height: 75px;
  }
  .w_news_title span:nth-child(2) {
    font-size: 22px;
    line-height: 22px;
  }
}
@media screen and (max-width: 991px) {
  .w_news_outside {
    padding-bottom: 3rem;
  }
  .w_news_title span:first-child {
    font-size: 65px;
    line-height: 65px;
  }
  .w_news_title span:nth-child(2) {
    font-size: 20px;
    line-height: 20px;
  }
  .w_news_item_text {
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .w_news_outside {
    background-color: transparent;
    padding-bottom: 2rem;
  }
  .w_news {
    width: 100%;
    padding: 0;
    margin-top: 3rem;
  }
  .w_news_title {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
  }
  .w_news_title span:first-child {
    font-size: 50px;
    line-height: 50px;
    margin: 1rem;
  }
  .w_news_title span:nth-child(2) {
    font-size: 25px;
    line-height: 25px;
    padding: 0.3rem 1rem;
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  .w_news_title span:first-child {
    font-size: 40px;
    line-height: 40px;
  }
  .w_news_title span:nth-child(2) {
    font-size: 20px;
    line-height: 20px;
  }
}
/* w_news---------- */
/* w_mid---------- */
.w_mid {
  background: url("../img/welcome/w_product_bigimg.jpg") no-repeat center /
    cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 24.48vw;
}
.w_mid p {
  color: white;
  font-size: 65px;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .w_mid p {
    font-size: 55px;
  }
}
@media screen and (max-width: 991px) {
  .w_mid p {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .w_mid p {
    font-size: 35px;
  }
}
@media screen and (max-width: 575px) {
  .w_mid {
    height: 45vw;
  }
  .w_mid p {
    font-size: 22px;
    padding-left: 2rem;
  }
}
/* w_mid---------- */
/* w_product---------- */
#products_list_has_no_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  font-size: 22px;
}
.w_product {
  margin-bottom: 22rem;
}
.w_product_title {
  text-align: end;
  display: flex;
  align-items: flex-end;
  margin: 3rem 0;
}
.w_product_title span:first-child {
  color: var(--icon);
  font-size: 90px;
  line-height: 90px;
}
.w_product_title span:nth-child(2) {
  color: #000;
  background-color: var(--bg1);
  font-size: 24px;
  line-height: 24px;
  padding: 0.3rem 0.5rem;
  margin: 0 0 0.5rem 1rem;
}
.w_product_item {
  width: 25%;
}
.w_product_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_intro_wrap p.animation {
  animation-name: ani_slideLeft;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/* .w_product_item:hover img{
	opacity: 0.8;
} */

.w_product_item_text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /*x 值代表要在第幾行的時候將後面的文字隱藏並出現 ...*/
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  height: 60px;
  /* 注意這層的高度要固定 */
}
@media screen and (max-width: 1200px) {
  .w_product_title span:first-child {
    font-size: 75px;
    line-height: 75px;
  }
  .w_product_title span:nth-child(2) {
    font-size: 22px;
    line-height: 22px;
  }
}
@media screen and (max-width: 991px) {
  .w_product {
    margin-bottom: 8rem;
  }
  .w_product_item_text {
    height: 60px;
  }
  .w_product_title {
    margin: 2rem 0;
  }
  .w_product_title span:first-child {
    font-size: 65px;
    line-height: 65px;
  }
  .w_product_title span:nth-child(2) {
    font-size: 20px;
    line-height: 20px;
  }
  .w_product_item {
    width: 33.333%;
  }
}
@media screen and (max-width: 767px) {
  .w_product_title {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .w_product_title span:first-child {
    font-size: 50px;
    line-height: 50px;
    margin: 1rem;
  }
  .w_product_title span:nth-child(2) {
    font-size: 25px;
    line-height: 25px;
    padding: 0.3rem 1rem;
    margin: 0;
  }
  .w_product_item p:first-of-type {
    font-size: 18px;
  }
  .w_product_item p:nth-of-type(2) {
    font-size: 16px;
  }
  .w_product_item_text {
    height: 55px;
  }
}
@media screen and (max-width: 575px) {
  .w_product {
    margin-bottom: 8rem;
  }
  .w_product_title span {
    margin: 0;
    padding: 0;
  }
  .w_product_title span:first-child {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 1rem;
  }
  .w_product_title span:nth-child(2) {
    font-size: 20px;
    line-height: 20px;
    margin: 0;
  }
  .w_product_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 0.5rem;
  }
  .w_product_item > div {
    margin-bottom: 0.5rem;
  }
  .w_product_item {
    padding: 0.5rem;
    width: 50%;
  }
  .w_product_item p:first-of-type {
    /* font-size: 14px; */
    margin-bottom: 0.5rem;
  }
  .w_product_item p:nth-of-type(2) {
    /* font-size: 12px; */
    margin-bottom: 0.5rem;
  }
}
/* w_product---------- */
/* ===============welcomee end============== */

/* ===============aboutt start============== */
.all_section {
  padding-bottom: 20%;
}
.p_about_title {
  background: url("../img/about/p_about_topimg.jpg") no-repeat center / cover;
}
.p_about p {
  line-height: 1.2;
}
.p_about div img {
  width: 50%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p_about {
    padding: 0 1.5rem;
  }
  .p_about div img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .p_about .html_edit {
    margin-bottom: 8rem;
  }
}
/* ===============aboutt end============== */

/* ===============newss start============== */
.p_news_title {
  background: url("../img/news/p_news_topimg.jpg") no-repeat center / cover;
}
.p_news_item {
  width: 33.33%;
}
.news_list_wrap {
  display: block;
  transition: all 0.5s ease;
  padding-bottom: 10px;
}
.news_list_wrap:hover {
  background-color: rgba(247, 197, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .p_news > p {
    padding: 0 1rem;
  }
  .p_news_item {
    width: 33.333%;
  }
}
@media screen and (max-width: 575px) {
  .p_news_item {
    width: 50%;
  }
}

/* ===============newss end============== */

/* ===============newss_content start============== */
.p_news_content_title {
  background: url("../img/news_content/p_news_content_topimg.jpg") no-repeat
    center / cover;
}
.p_news_content_top {
  display: flex;
  justify-content: space-between;
  color: #000;
  background-color: var(--bg1);
  border-radius: 10px;
  padding: 1.5rem 1rem;
}
.p_news_content_top div:first-of-type {
  font-size: 20px;
  line-height: 1.5;
}
.p_news_content_top div:nth-of-type(2) {
  border-left: #000 solid 2px;
  padding-left: 1rem;
  font-size: 16px;
  line-height: 1.5;
}
.p_news_content_mid {
  display: flex;
  margin: 1.5rem 0;
}
.p_news_content_mid > p {
  width: 50%;
  font-size: 25px;
  color: var(--tag);
  margin: 0;
}
.p_news_content_mid > div {
  width: 45%;
  margin-right: 5%;
}
.p_news_content_mid .news_content_intro_wrap {
  width: 50%;
  margin-right: 0;
  height: 540px;
  overflow-y: auto;
  line-height: 1.5;
  font-size: 20px;
  padding-right: 5px;
}
.news_content_intro_wrap::-webkit-scrollbar {
  width: 2px;
}

.news_content_intro_wrap::-webkit-scrollbar-track {
  background: #ddd;
}

.news_content_intro_wrap::-webkit-scrollbar-thumb {
  background: #666;
}
.p_news_content_mid > div > div {
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.p_news_content_mid > div img {
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1200px) {
  .p_news_content_mid .news_content_intro_wrap {
    height: 425px;
  }
}
@media screen and (max-width: 991px) {
  .p_news_content_top {
    padding: 1rem 1rem;
  }
  .p_news_content_top div:first-of-type {
    font-size: 18px;
  }
  .p_news_content_top div:nth-of-type(2) {
    font-size: 16px;
  }
  .p_news_content_mid > p {
    font-size: 20px;
  }
  .p_news_content_mid > div {
    width: 47%;
    margin-right: 3%;
  }
  .p_news_content_mid .news_content_intro_wrap {
    height: 325px;
  }
}
@media screen and (max-width: 767px) {
  .p_news_content_mid > p {
    font-size: 18px;
  }
  .p_news_content_mid .news_content_intro_wrap {
    font-size: 16px;
    height: 240px;
  }
}
@media screen and (max-width: 575px) {
  .p_news_content {
    padding: 0 1.5rem;
  }
  .p_news_content_top {
    padding: 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
  }
  .p_news_content_top div:first-of-type {
    font-size: 14px;
    padding-bottom: 0.1rem;
  }
  .p_news_content_top div:nth-of-type(2) {
    border-left: #000 solid 1px;
    padding-left: 0.2rem;
    font-size: 12px;
  }
  .p_news_content_mid .news_content_intro_wrap {
    font-size: 14px;
    height: calc(100vw / 575 * 230);
  }
  .p_news_content_mid > p {
    font-size: 12px;
  }
}
/* ===============newss_content end============== */

/* ===============productt start============== */
.p_product {
  margin-bottom: 2rem;
}
.p_product_title {
  /* background: url("../img/product/p_product_topimg.jpg") no-repeat center /
    cover; */
}
.p_product_item {
  width: 25%;
}
.p_product_item_text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /*x 值代表要在第幾行的時候將後面的文字隱藏並出現 ...*/
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  height: 60px;
  /* 注意這層的高度要固定 */
}
@media screen and (max-width: 991px) {
  .p_product_item {
    width: 33%;
  }
  .p_product_item_text {
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 767px) {
  .p_product > p {
    padding: 0 1rem;
  }
  .p_product_item_text {
    height: 55px;
  }
}
@media screen and (max-width: 575px) {
  .p_product {
    margin-bottom: 7rem;
  }

  .p_product_item {
    width: 50%;
  }
}
/* ===============productt end============== */

/* ===============productt_content1.2.3 start============== */
.p_product_content1_title {
  /* background: url("../img/product/p_product_topimg.jpg") no-repeat center /
    cover; */
}
.p_product_content_tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.p_product_content_tag p {
  margin: 0;
}
/* p_product_content_top */
.p_product_content_top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  min-height: 240px;
}
.p_product_content_top_div1 {
  margin-right: 1rem;
}
.p_product_content_top_div1 img {
  height: 240px;
  width: 240px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #f7c566;
}
.p_product_content_top_div2 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p_product_content_top_div2 div p {
  margin: 0;
}
.p_product_content_top_div2 div:first-child {
  padding: 0.6rem 0;
  padding-left: 16px;
  /* text-align: center; */
  background-color: var(--bg1);
  color: #000;
  font-size: 20px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.p_product_content_top_div2_text_scroll {
  padding: 1rem 0.5rem;
  font-size: 20px;
  background-color: #fff8dc;
  border-radius: 10px;
  min-height: 180px;
  max-height: 180px;
  line-height: 1.5;
  overflow-y: auto;
}
.p_product_content_top_div2_text_scroll::-webkit-scrollbar {
  width: 2px;
}

.p_product_content_top_div2_text_scroll::-webkit-scrollbar-track {
  background: #ddd;
}

.p_product_content_top_div2_text_scroll::-webkit-scrollbar-thumb {
  background: #666;
}
.p_product_content_item_text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /*x 值代表要在第幾行的時候將後面的文字隱藏並出現 ...*/
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  height: 60px;
  /* 注意這層的高度要固定 */
}
.p_product_content1_list .item,
.p_product_content2_list .item,
.p_product_content3_list .item {
  width: 25%;
}

.p_product_content1_list .item_imgbox,
.p_product_content2_list .item_imgbox,
.p_product_content3_list .item_imgbox {
  border: var(--bg1) solid 1px;
}
.p_product_content,
.p_product_content4 {
  padding-bottom: 20%;
}
@media screen and (max-width: 991px) {
  .p_product_content_top_div2 div:first-child {
    padding: 0.5rem 0;
    font-size: 18px;
  }
  .p_product_content_top_div2 div:nth-child(2) {
    font-size: 18px;
    min-height: 184px;
  }
  .p_product_content1_list .item,
  .p_product_content2_list .item,
  .p_product_content3_list .item {
    width: 33.33%;
  }
}
@media screen and (max-width: 767px) {
  .p_product_content .html_edit {
    padding: 0 1rem;
    font-size: 16px;
  }
  .p_product_content_top_div1 img {
    height: 220px;
    width: 220px;
  }
  .p_product_content_top_div1 {
    margin: 0 0 1rem 0;
  }
  .p_product_content_top_div2 {
    width: 100%;
  }
  .p_product_content_top_div2 div:first-child {
    padding: 0.6rem 0;
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
  .p_product_content_top_div2 div:nth-child(2) {
    padding: 1rem 0.5rem;
    font-size: 16px;
    min-height: fit-content;
  }
  .p_product_content_top {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    height: auto;
  }
  .p_product_content_tag {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  .p_product_content_item_text {
    height: 55px;
  }
  .p_product_content_top_div2_text_scroll {
    max-height: none;
  }
}
@media screen and (max-width: 575px) {
  .p_product_content .html_edit {
    /* font-size: 12px; */
  }
  .p_product_content_top_div1 img {
    height: 200px;
    width: 200px;
  }
  .p_product_content_top_div2 div:first-child {
    font-size: 16px;
  }
  .p_product_content_top_div2 div:nth-child(2) {
    /* font-size: 14px; */
  }
  /* .p_product_content_item_text {
    height: 50px;
  } */
  .p_product_content1_list .item,
  .p_product_content2_list .item,
  .p_product_content3_list .item {
    width: 50%;
  }
}
.contact_link {
  display: inline-block;
  border-radius: 10px;
  background-color: #d10c18;
  border: 1px solid #d10c18;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  transition: all 0.3s;
}
.contact_link:hover {
  background-color: #ffffff;
  color: #d10c18;
}
.contact_link i {
  font-size: 20px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .contact_btn_wrap {
    padding-left: 16px;
  }
}
/* ===============productt_content1.2.3 end============== */

/* ===============productt_content4 start============== */
.p_protent4 {
  display: flex;
  margin-bottom: 2rem;
}
.p_protent4 > div {
  width: 50%;
}
.p_protent4_imgbox {
  border: var(--bg1) solid 1px;
  height: 100%;
}
.p_protent4_imgbox img {
  /* 598*598 */
  width: 100%;
  height: 598px;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 1200px) {
  .p_protent4_imgbox img {
    height: 478px;
  }
}
@media screen and (max-width: 991px) {
  .p_protent4_imgbox img {
    height: 358px;
  }
}
@media screen and (max-width: 767px) {
  .p_protent4_imgbox img {
    height: 506px;
  }
}
@media screen and (max-width: 575px) {
  .p_protent4_imgbox img {
    height: calc(100vw / 575 * 540);
  }
}
.p_protent4_des {
  width: 50%;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  line-height: 1.5;
}
.p_protent4_des p:first-of-type {
  background-color: var(--bg1);
  border-radius: 10px;
  padding: 0.6rem 0;
  padding-left: 16px;
  /* text-align: center; */
  color: #000;
}
.p_protent4_content {
  background-color: var(--icon2);
  border-radius: 10px;
  padding: 1rem 0.5rem;
  height: fit-content;
  max-height: 140px;
  overflow-y: auto;
  line-height: 1.5;
  margin: 20px 0;
}
.html_edit.html_edit_product_intro {
  overflow-y: auto;
  max-height: 260px;
}
.p_protent4_content::-webkit-scrollbar,
.html_edit.html_edit_product_intro::-webkit-scrollbar {
  width: 2px;
}

.p_protent4_content::-webkit-scrollbar-track,
.html_edit.html_edit_product_intro::-webkit-scrollbar-track {
  background: #ddd;
}

.p_protent4_content::-webkit-scrollbar-thumb,
.html_edit.html_edit_product_intro::-webkit-scrollbar-thumb {
  background: #666;
}
.p_protent4_des div:last-child {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-grow: 1;
}
.cart_btn {
  border: none;
  color: white;
  border-radius: 29px;
  height: 58px;
  width: 190px;
  font-size: 20px;
  background-color: var(--divbg);
}

@media screen and (max-width: 1200px) {
  .p_protent4_content {
    max-height: 120px;
    margin: 10px 0;
  }
  .html_edit.html_edit_product_intro {
    max-height: 147px;
  }
}
@media screen and (max-width: 991px) {
  .p_protent4_des {
    padding-left: 1rem;
    font-size: 18px;
    line-height: 22px;
  }
  .p_protent4_content {
    padding: 1rem 0.5rem;
    max-height: 90px;
  }
  .cart_btn {
    border-radius: 24px;
    height: 48px;
    width: 160px;
    font-size: 18px;
    margin-top: 1rem;
  }

  .p_protent4_des p:first-of-type {
    margin-bottom: 0px;
  }
  .html_edit.html_edit_product_intro {
    max-height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p_product_content4 {
    padding: 1rem;
  }
  .p_protent4 {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .p_protent4 > div {
    width: 100%;
  }
  .p_protent4 > div + div {
    width: 100%;
  }
  .p_protent4_des {
    padding-left: 0;
  }
  .p_protent4_des .html_edit {
    font-size: 16px;
  }
  .p_protent4_imgbox {
    margin-bottom: 1rem;
    width: 100%;
  }
  /* .p_protent4_imgbox img {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
  } */
  .p_protent4_des p:first-of-type {
    margin: 0;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
  .p_protent4_content {
    margin: 0;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0.5rem;
    max-height: none;
  }
  .p_protent4_des .download {
    font-size: 14px;
  }
  .p_protent4_des div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
  }
  .cart_btn {
    border-radius: 21px;
    height: 42px;
    width: 138px;
  }
  .html_edit.html_edit_product_intro {
    max-height: none;
  }
}
@media screen and (max-width: 575px) {
  .p_protent4_des p:first-of-type {
    font-size: 16px;
  }
  .p_protent4_content {
    line-height: 18px;
  }
}

/* ===============productt_content4 end============== */

/* ===============cartt start============== */
.p_cart_title {
  background: url("../img/cart/p_cart_topimg.jpg") no-repeat center / cover;
}

.p_cart_item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--bg1);
  color: #000;
  /* height: 215px; */
  border-radius: 10px;
  margin-bottom: 1rem;
  position: relative;
}
.p_cart_item_div1 {
  display: flex;
  width: 45%;
  align-items: center;
  height: 100%;
}
.p_cart_item_div1 span {
  font-size: 20px;
  width: 10%;
}
.p_cart_item_imgbox {
  height: 100%;
}
.p_cart_item_imgbox img {
  width: 183px;
  height: 183px;
  object-fit: contain;
  object-position: center;
}
.select_type {
  margin-top: 12px;
  text-align: center;
}
.p_cart_item_title {
  align-self: stretch;
  width: 10%;
  padding: 1rem;
  font-size: 20px;
  flex-grow: 1;
}
.delete_icon_wrap {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p_cart_item_text {
  width: 53%;
  align-self: flex-start;
  margin: 10px 0;
  padding: 0 10px;
  border-left: #000 1px solid;
  height: 100%;
  flex-grow: 1;
  font-size: 20px;
  height: 170px;
  line-height: 1.5;
  overflow-y: auto;
}
.p_cart_item_text::-webkit-scrollbar {
  width: 2px;
}

.p_cart_item_text::-webkit-scrollbar-track {
  background: #ddd;
}

.p_cart_item_text::-webkit-scrollbar-thumb {
  background: #666;
}
.p_cart_item div:nth-child(5) {
  width: 10%;
}
.p_cart_item button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: #000 solid 1px;
  font-size: 30px;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  color: #000;
  background-color: transparent;
}

.p_cart_formbox {
  display: flex;
  justify-content: space-between;
}
.p_cart_formbox .html_edit {
  width: 48%;
  border-radius: 10px;
  background-color: var(--icon2);
  padding: 1.5rem 1rem;
  height: fit-content;
  margin-top: 57px;
}
.p_cart_form {
  width: 48%;
  /* display: flex; */
  /* flex-direction: column; */
  margin-bottom: 10rem;
}
#form1 {
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
#form1 label {
  margin-top: 1.5rem;
}
#form1 input {
  padding: 0 0.5rem;
  height: 50px;
  border-radius: 10px;
  border: var(--tag) 1px solid;
  font-size: 20px;
}
#form1 textarea {
  padding: 0.5rem;
  border: var(--tag) 1px solid;
  border-radius: 10px;
  height: 200px;
  resize: none;
}
#notBot {
  height: 100px;
  width: 70%;
  margin: 1rem 0 3rem;
  background-color: var(--divbg);
}
#notBot + div {
  text-align: end;
}
button[for="form1"] {
  background-color: var(--divbg);
  border-radius: 29px;
  width: 190px;
  height: 58px;
  border: none;
  color: white;
  font-size: 20px;
  transition: all 0.5s ease;
}
button[for="form1"]:hover {
  opacity: 0.5;
}
.contact_recaptcha {
  margin: 20px 0 30px;
  padding-bottom: 0;
}
.google_recaptcha_wrap {
  height: 80px;
}
.bot_btn {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .p_cart_item_imgbox img {
    width: 110px;
    height: 110px;
  }
  .p_cart_item {
    /* height: 160px; */
  }
  .p_cart_item_div1 span {
    font-size: 18px;
  }
  .p_cart_item_title {
    font-size: 18px;
    padding: 0.5rem;
  }
  .delete_icon_wrap {
    width: 60px;
  }
  .p_cart_item_text {
    font-size: 18px;
    height: 90px;
    margin: 10px 0;
    padding: 0 5px;
  }
  .p_cart_item button {
    font-size: 24px;
    height: 40px;
    width: 40px;
  }
  .p_cart_formbox .html_edit {
    margin-top: 40px;
  }
  .p_cart_form {
    margin-bottom: 8rem;
  }
  #form1 {
    display: flex;
    flex-direction: column;
    font-size: 20px;
  }
  #form1 label {
    margin-top: 0.5rem;
  }
  #form1 input {
    height: 40px;
    font-size: 18px;
  }
  #notBot {
    height: 60px;
    margin: 1rem 0 1.5rem;
  }
  button[for="form1"] {
    border-radius: 24px;
    width: 160px;
    height: 48px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .contact_recaptcha_btn_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .p_cart {
    padding: 1.5rem;
  }
  .p_cart_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    height: auto;
    margin-bottom: 1rem;
    position: relative;
  }
  .p_cart_item_div1 {
    width: 88%;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
  }
  .p_cart_item_div1 span {
    font-size: 20px;
    width: 10%;
  }
  .p_cart_item_imgbox {
    height: 100%;
  }
  .p_cart_item_title {
    padding: 0.5rem;
    font-size: 16px;
    width: 42%;
  }
  .p_cart_item_text {
    width: 100%;
    align-self: flex-start;
    padding: 0;
    border-left: none;
    border-top: #000 solid 1px;
    height: auto;
    max-height: 180px;
    flex-grow: 1;
    margin-top: 15px;
    padding: 1rem 0 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .p_cart_item button {
    position: absolute;
    font-size: 20px;
    height: 35px;
    width: 35px;
    left: 88%;
    top: 45px;
  }

  .p_cart_formbox {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 7rem;
  }
  .p_cart_formbox .html_edit {
    width: 100%;
    padding: 1.5rem 1rem;
    margin-top: 1rem;
  }
  .p_cart_form {
    width: 100%;
    margin-bottom: 0;
  }

  #form1 {
    font-size: 16px;
  }
  #form1 label {
    margin-top: 1rem;
  }
  #form1 input {
    font-size: 16px;
  }
  #notBot {
    height: 46px;
    width: 40%;
    margin: 0;
  }

  button[for="form1"] {
    width: 130px;
    height: 46px;
    font-size: 16px;
    border-radius: 23px;
  }
}
@media screen and (max-width: 575px) {
  .p_cart_item_imgbox img {
    width: 100px;
    height: 100px;
  }
  .p_cart_item_text {
    /* font-size: 12px; */
    /* line-height: 16px; */
  }

  #form1 {
    font-size: 14px;
  }
  #form1 input {
    font-size: 14px;
  }
  #notBot {
    height: 40px;
    width: 38%;
  }
  button[for="form1"] {
    width: 130px;
    height: 40px;
    font-size: 18px;
    border-radius: 20px;
  }
}
/* ===============cartt end============== */

/* ===============contractt start============== */
.p_contact_title {
  background: url("../img/contract/p_contract_topimg.jpg") no-repeat center /
    cover;
}
.p_contract_formbox {
  display: flex;
  justify-content: space-between;
}
.contact_wrap_data {
  border-radius: 10px;
  background-color: var(--icon2);
  padding: 1.5rem 1rem;
  height: fit-content;
}
.p_contract_formbox > div {
  width: 48%;
}
.p_contract_formbox .html_edit {
  border-radius: 10px;
  background-color: var(--icon2);
  padding: 1.5rem 1rem;
  height: fit-content;
  color: black;
  font-size: 20px;
}
.contract_logo {
  display: flex;
  align-items: flex-start;
  margin-top: 1rem;
}
.contract_logo_des {
  margin-left: 0.5rem;
}
.contract_logo_des p {
  color: var(--tag);
  margin-bottom: 0.5rem;
  font-size: 18px;
}
.contract_logo_des p:first-child {
  font-size: 20px;
}
.contract_logo_des a {
  color: var(--tag);
  margin-bottom: 0.5rem;
  font-size: 18px;
  line-height: 1.2;
}
.contract_logo_img {
  flex-shrink: 0;
  width: 150px;
}
.contract_logo_img img {
  height: 100%;
  width: 100%;
}
#form2 {
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
#form2 label:not(:first-child) {
  margin-top: 1.5rem;
}
#form2 input {
  height: 50px;
  border-radius: 10px;
  border: var(--tag) 1px solid;
  padding: 0.5rem;
  font-size: 20px;
}
#form2 textarea {
  border: var(--tag) 1px solid;
  border-radius: 10px;
  height: 200px;
  resize: none;
  padding: 0.5rem;
}
#notBot2 {
  height: 100px;
  width: 70%;
  margin: 1rem 0 3rem;
  background-color: var(--divbg);
}
#notBot2 + div {
  text-align: end;
}
button[for="form2"] {
  background-color: var(--divbg);
  border-radius: 29px;
  width: 190px;
  height: 58px;
  border: none;
  color: white;
  font-size: 20px;
}
.googlemap {
  width: 100%;
  height: 700px;
  margin-top: 5rem;
}
iframe {
  /* width: 100%; */
  /* height: 100%; */
}
@media screen and (max-width: 991px) {
  .p_contract_formbox .html_edit {
    padding: 1rem 1rem;
    font-size: 18px;
  }
  .contract_logo_des {
    margin-left: 0.5rem;
  }
  .contract_logo_des p {
    margin-bottom: 0.3rem;
    font-size: 16px;
  }
  .contract_logo_des p:first-child {
    font-size: 18px;
  }
  #form2 {
    font-size: 18px;
  }
  #form2 label:not(:first-child) {
    margin-top: 1rem;
  }
  #form2 input {
    height: 40px;
    font-size: 18px;
  }
  #notBot2 {
    height: 60px;
    margin: 1rem 0 2rem;
  }
  button[for="form2"] {
    border-radius: 24px;
    width: 130px;
    height: 48px;
    font-size: 18px;
  }
  .googlemap {
    height: 500px;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p_contract_formbox {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .p_contract_formbox > div {
    width: 100%;
  }
  .p_contract_formbox .html_edit {
    padding: 1.5rem 1rem;
    font-size: 16px;
  }
  .contract_logo_img {
    width: 100px;
  }

  .contract_logo_des p {
    margin-bottom: 0.5rem;
    font-size: 16px;
    line-height: 16px;
  }
  .contract_logo_des p:first-child {
    line-height: 18px;
    font-size: 18px;
  }
  #form2 {
    font-size: 18px;
    margin-top: 1rem;
  }
  #form2 label:not(:first-child) {
    margin-top: 1rem;
  }
  #form2 input {
    font-size: 16px;
  }
  #notBot2 {
    height: 46px;
    width: 40%;
    margin: 0;
  }
  button[for="form2"] {
    width: 130px;
    height: 46px;
    font-size: 16px;
    border-radius: 23px;
  }
  .googlemap {
    height: 350px;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .p_contract_formbox .html_edit {
    font-size: 14px;
  }
  .contract_logo_img {
    height: 80px;
    width: 80px;
  }
  .contract_logo_des p {
    font-size: 12px;
    line-height: 12px;
  }
  .contract_logo_des p:first-child {
    line-height: 12px;
    font-size: 14px;
  }
  #form2 {
    font-size: 14px;
  }
  #form2 input {
    font-size: 14px;
  }
  #notBot2 {
    height: 40px;
  }
  button[for="form2"] {
    width: 120px;
    height: 40px;
    font-size: 14px;
    border-radius: 20px;
  }
  .googlemap {
    height: 250px;
  }
}
/* ===============contractt end============== */

/* ===============footerr start============== */
footer {
  background-color: var(--bg1);
  color: #000;
  padding: 2.5rem 0 0.5rem;
  border-bottom: #fff8dc solid 23px;
  position: relative;
}
footer p {
  margin: 0;
}
.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.maker1 {
  font-size: 16px;
}
.maker1 a {
  color: #000;
}
.footer_logo > div {
  display: flex;
  align-items: center;
}
.footer_counter_div1 {
  margin-left: 0.5rem;
}
.footer_counter_div1 a {
  color: #000;
}
.footer_logo_img img {
  width: 135px;
  object-fit: contain;
}
.f_p1 {
  font-size: 20px;
}
.footer_logo_img + div > p + p {
  font-size: 18px;
  margin-top: 0.5rem;
}
.footer_counter {
  text-align: center;
}
.footer_counter p {
  font-size: 18px;
}
.footer_counter span {
  background-color: white;
  color: black;
  width: 16px;
  margin: 0 0.1rem;
  font-size: 14px;
  display: inline-block;
}
.footer_link {
  position: fixed;
  right: 50px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
}

.footer_link a:hover {
  opacity: 0.8;
}

/* .footer_link a {
  height: 65px;
  width: 65px;
} */
/* .footer_link a img {
  width: 100%;
  height: 100%;
} */
.footer_link a {
  margin-top: 0.8rem;
  color: #000;
}
.foot_slide_wrap {
  display: none;
}
.foot_link_wrap {
  display: flex;
  flex-direction: column;
}
.foot_right_link {
  display: inline-block;
  position: relative;
  height: 65px;
  width: 65px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .foot_right_link {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 991px) {
  .foot_right_link {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 767px) {
  .foot_right_link {
    height: 45px;
    width: 45px;
  }
}
.foot_right_link img {
  width: 100%;
  height: 100%;
}
.foot_right_link span {
  background: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 3px;
  /* font-size: 12px; */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .foot_right_link span {
    width: 17px;
    height: 17px;
  }
}
#link_open_btn {
  margin-top: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  background-color: var(--icon);
  border-radius: 10px;
  border: 1px solid var(--icon);
}
#link_open_btn:hover {
  background-color: var(--icon);
  opacity: 1;
}
#link_open_btn i {
  transition: all 0.3s;
}
#link_open_btn.active i {
  transform: rotate(45deg);
}

.maker2 {
  display: none;
}

@media screen and (max-width: 1200px) {
  .footer_link a {
    height: 60px;
    width: 60px;
  }

  .footer_link2 span {
    font-size: 11px;
  }
}
@media screen and (max-width: 991px) {
  footer {
    padding: 1.5rem 0 0.5rem;
    border-bottom: var(--icon) solid 18px;
  }
  .footer_logo_img img {
    width: 100px;
  }
  .f_p1 {
    font-size: 16px;
  }
  .footer_logo_img + div > p + p {
    font-size: 16px;
    margin-top: 0.2rem;
  }
  .footer_counter p {
    font-size: 16px;
  }
  .footer_counter span {
    width: 12px;
    font-size: 10px;
    margin: 0 0.05rem;
  }
  .footer_link a {
    height: 50px;
    width: 50px;
  }
  .footer_link a img {
    width: 100%;
    height: 100%;
  }
  .maker1 {
    font-size: 14px;
  }

  .footer_link2 span {
    left: 20px;
    font-size: 8px;
    width: 2em;
    height: 2em;
    top: 1px;
  }
}
@media screen and (max-width: 767px) {
  .footer_link2 span {
    left: 20px;
    font-size: 8px;
    width: 2em;
    height: 2em;
    top: 1px;
  }

  footer {
    background-color: var(--bg13);
    padding: 1rem 0 0;
    border-bottom: none;
    margin-top: 0;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer_logo > p:first-of-type {
    font-size: 16px;
  }
  .footer_logo > div {
    flex-direction: column;
  }
  .footer_counter_div1 {
    text-align: center;
  }
  .footer_logo_img {
    margin-bottom: 0.5rem;
  }
  .footer_logo_img img {
    width: 80px;
  }
  .footer_logo_img + div > .f_p1 {
    /* font-size: 12px; */
    line-height: 1.5;
    margin: 0.2rem 0;
  }
  .footer_logo_img + div > p + p {
    margin-top: 0.2rem;
    /* font-size: 12px; */
    line-height: 1.5;
  }
  .footer_counter {
    margin-top: 0.5rem;
    text-align: center;
  }
  .footer_counter p {
    /* font-size: 12px; */
  }
  .footer_counter span {
    width: 14px;
    /* font-size: 12px; */
  }
  .maker1 {
    display: none;
  }
  .maker2 {
    display: block;
    height: auto;
    margin-top: 0.5rem;
    background-color: var(--icon);
    padding: 15px 0;
  }
  .footer_counter_div1 {
    margin-left: 0;
  }
  .maker2 p {
    color: #fff;
    padding: 0.2rem 0;
    /* font-size: 12px; */
    line-height: 16px;
    text-align: center;
  }
  .footer_link {
    right: 20px;
    bottom: 80px;
  }
  .footer_link a {
    height: 45px;
    width: 45px;
  }
  .footer_link a + a {
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 575px) {
  .maker2 p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* ===============footerr end============== */
/* ===============bottommmmmm============== */
.item_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.item {
  padding: 1rem;
}
.item_imgbox {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 1rem;
}
.item_imgbox img {
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid #f7c566;
}
.p_news_item .p_tag.item_time {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  color: #959595;
}
.item_title {
  font-size: 20px;
  height: 25px;
  /* text-align: center; */
  color: #000;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.item_hr {
  margin: 10px 0;
  background-color: #f7c566;
}
.item_text {
  margin-top: 10px;
  font-size: 18px;
  height: 70px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  color: #000;
  /* text-align: center; */
}
@media screen and (max-width: 991px) {
  .item_text {
    font-size: 16px;
  }
}
.item_news_title {
  color: #000;
  font-size: 18px;
  height: 50px;
  /* font-size: 22px; */
  /* height: 56px; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  margin: 8px 0;
  line-height: 1.5;
  text-align: left;
}

.item_news_imgbox {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .item_title {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .item_list {
    margin: 0 0.5rem;
  }
  .item {
    padding: 0.5rem;
  }
  .item_imgbox {
    margin-bottom: 0.5rem;
  }
  .item_time {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
  .item_hr {
    margin: 0.5rem 0;
  }
  .item_news_title {
    font-size: 16px;
  }
  .item_news_imgbox {
    margin-bottom: 0.25rem;
  }
}
.index_class_title_wrap {
  display: flex;
  align-items: center;
}
.index_class_list {
  margin-top: 50px;
  position: relative;
}

.index_class_item {
  /* width: 90%; */
  /* display: inline-block; */
  padding: 20px;
  transition: all 0.5s ease;
}
.index_class_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 991px) {
  .index_class_item {
    padding: 10px;
  }
  .index_class_title_wrap {
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  .index_class_item {
    padding: 5px;
  }
}
@media screen and (max-width: 400px) {
  .index_class_title_wrap {
    justify-content: flex-start;
  }
  .index_class_title_wrap .index_title_wrap img {
    left: 95%;
    width: 75px;
  }
}
.index_class_block {
  position: relative;
  width: 90%;
  margin: auto;
  transition: all 0.5s ease;
}
.index_class_item:hover .index_class_block {
  background-color: rgba(247, 197, 102, 0.2);
}
/* .index_class_mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	background-color: rgba(0, 0, 0, 0.1);
	opacity: 0;
	transition: all 0.5s ease;
}
.index_class_block:hover .index_class_mask {
	opacity: 1;
} */
.index_class_img_wrap img {
  /* 360*360 */
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .index_class_img_wrap img {
    height: 288px;
  }
}
@media screen and (max-width: 991px) {
  .index_class_img_wrap img {
    height: 324px;
  }
}
@media screen and (max-width: 767px) {
  .index_class_img_wrap img {
    height: 243px;
  }
}
@media screen and (max-width: 575px) {
  .index_class_img_wrap img {
    height: 74.08vw;
  }
}
@media screen and (max-width: 500px) {
  .index_class_img_wrap img {
    height: 72vw;
  }
}
@media screen and (max-width: 400px) {
  .index_class_img_wrap img {
    height: 67.5vw;
  }
}
.index_class_text_wrap {
  padding: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .index_class_text_wrap {
    padding: 0 0 15px;
  }
}
.index_class_title {
  color: #000;
  font-size: 18px;
  height: 50px;
  /* font-size: 22px; */
  /* height: 56px; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  margin: 8px 0;
  line-height: 1.5;
}
.index_class_title_line {
  height: 1px;
  width: 100%;
  margin: 5px 0;
  background-color: #f7c566;
}
.index_class_date {
  color: #959595;
  margin-top: 8px;
  /* text-align: right; */
}
.index_class_content {
  margin-top: 10px;
  font-size: 18px;
  height: 70px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  color: #000;
}
@media screen and (max-width: 991px) {
  .index_class_content {
    font-size: 16px;
  }
}

/*slick arrows*/
.index_class_slider_arrow_prev,
.index_class_slider_arrow_next {
  position: absolute;
  top: -20px;
  font-size: 18px;
  transition: all 0.5s ease;
  cursor: pointer;
  color: #46c7d8;
}
.index_class_slider_arrow_prev {
  left: 2px;
}
.index_class_slider_arrow_next {
  right: 2px;
}
.index_class_slider_arrow_prev:hover,
.index_class_slider_arrow_next:hover {
  opacity: 0.5;
}

.head_link .head_link_TAF4246 {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  margin-bottom: 4px;
}
