@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
}

header {
  position: absolute;
  width: 100%;
  z-index: 99;
  border-top: 4px solid rgb(108, 201, 45);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header.act {
  position: fixed;
  background-color: #fff;
  z-index: 99;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.384);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.384);
}

header.act .header .nav-bar .menu .menu-item {
  color: #000;
}

header.act .header .nav-bar .menu .menu-item .main_menu::after {
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

header.act .header .nav-bar .menu .menu-item .main_menu:hover {
  color: rgb(108, 201, 45);
}

header.act .header .nav-bar .menu .menu-item .main_menu:hover::after {
  border-right-color: rgb(108, 201, 45);
  border-bottom-color: rgb(108, 201, 45);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #ddd;
}

.block_item {
  width: 100%;
  background-color: #222A35;
  text-align: center;
  color: #fff;
  padding: 12px 0;
}

.block_item a {
  color: inherit;
  text-decoration: none;
  margin-right: 10px;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header.container {
  max-width: 1400px;
  padding: 0;
}

@media (min-width: 992px) {
  .header.container {
    width: 100%;
  }
}

.header.container::before,
.header.container::after {
  display: none;
}

.header .logo img {
  height: 55px;
}

@media (max-width: 992px) {
  .header .logo img {
    height: auto;
    width: 100%;
  }
}

.header .nav-bar .menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .nav-bar .menu .menu-item {
  position: relative;
  padding-right: 2vw;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 18px;
}

.header .nav-bar .menu .menu-item .main_menu {
  display: block;
  padding: 16px 12px;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.header .nav-bar .menu .menu-item .main_menu::after {
  top: 30%;
  right: -9px;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .nav-bar .menu .menu-item .main_menu.irr::after {
  display: none;
}

.header .nav-bar .menu .menu-item:hover {
  color: rgb(108, 201, 45);
}

.header .nav-bar .menu .menu-item:hover .main_menu::after {
  border-right-color: rgb(108, 201, 45);
  border-bottom-color: rgb(108, 201, 45);
}

.header .nav-bar .menu .menu-item .m2 {
  display: none;
  list-style: none;
  position: absolute;
  z-index: 8000;
  left: 0;
  top: 100%;
  background-color: rgba(30, 30, 30, 0.6509803922);
  line-height: 2em;
  padding: 0 20px;
  border-top: 3px solid rgb(108, 201, 45);
  margin: 0;
}

.header .nav-bar .menu .menu-item .m2 .m2-item {
  width: 205px;
}

.header .nav-bar .menu .menu-item .m2 .m2-item a {
  text-decoration: none;
  padding: 6px 20px;
  display: block;
  color: #fff;
}

.header .nav-bar .menu .menu-item .m2 .m2-item:hover a {
  color: #ddd;
}

.header .nav-bar .menu .menu-item:last-child .m2 {
  left: unset;
  right: 0;
}

.header .nav-bar .menu .menu-item.fortune_index {
  color: #fff;
  background-color: rgb(108, 201, 45);
  padding: 4px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 12px 0;
  border-radius: 200px;
}

.header .nav-bar .menu .menu-item.fortune_index a {
  text-decoration: none;
}

.header .nav-bar .menu .menu-item.fortune_index:hover a {
  color: #fff;
}

.header .nav-bar .menu .menu-item.about:hover .m2,
.header .nav-bar .menu .menu-item.service:hover .m2,
.header .nav-bar .menu .menu-item.news:hover .m2,
.header .nav-bar .menu .menu-item.performance:hover .m2,
.header .nav-bar .menu .menu-item.irr:hover .m2 {
  display: block;
}

@media (max-width: 992px) {
  .header .nav-bar {
    position: fixed;
    z-index: 9999;
    top: 97px;
    width: 80%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-height: 80vh;
    overflow: auto;
  }

  .header .nav-bar .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header .nav-bar .menu .menu-item {
    padding-right: 0;
    background-color: #888;
  }

  .header .nav-bar .menu .menu-item .main_menu:after {
    right: 24px;
  }

  .header .nav-bar .menu .menu-item a {
    color: #fff;
  }

  .header .nav-bar .menu .menu-item .m2 {
    display: block;
    position: relative;
  }

  .header .nav-bar .menu .menu-item .m2 .m2-item a {
    color: #fff;
    width: auto;
  }
}

.hanberger {
  display: none;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .hanberger {
    display: block;
  }
}

.hanberger span {
  display: block;
  height: 2px;
  position: relative;
  width: 30px;
  background-color: #000;
}

.hanberger span:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #000;
  top: 8px;
}

.hanberger span:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #000;
  top: -8px;
}

.hanberger.act span {
  background-color: #fff;
}

.hanberger.act span::before {
  background-color: #fff;
}

.hanberger.act span::after {
  background-color: #fff;
}

main {
  margin-top: 70px;
  margin-bottom: 70px;
}

.page-title {
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: rgb(108, 201, 45);
}

.page-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.block_title {
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  background-color: rgb(108, 201, 45);
}

.info-title {
  text-align: left;
  font-size: 30px;
  padding-left: 10px;
  position: relative;
  color: rgb(108, 201, 45);
}

.info-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: rgb(108, 201, 45);
}

.block_img {
  width: 100%;
}

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

.product-area {
  padding: 20px 10px;
}

.product-area .prod_item {
  -webkit-transition: 1s;
  transition: 1s;
  padding: 45px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.product-area .prod_item:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.233);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.233);
}

.product-area .prod_item .pic {
  text-align: center;
}

.product-area .prod_item .pic img {
  max-height: 350px;
  width: auto;
}

@media (max-width: 992px) {
  .product-area .prod_item .pic img {
    width: 100%;
    max-height: unset;
  }
}

.product-area .prod_item .txt h4 span {
  background-color: rgb(108, 201, 45);
  color: #fff;
  padding: 5px;
  margin-right: 5px;
}

.product-area .prod_item .txt ul {
  color: #000;
  list-style: none;
}

.product-area .prod_item .txt .more_prd {
  display: inline-block;
  border-radius: 100px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  margin-top: 20px;
}

.product-area .prod_item .txt .more_prd:hover {
  background-color: rgb(108, 201, 45);
  color: #FFFFFF;
}

.banner {
  position: relative;
}

.banner .block_bg {
  max-height: 550px;
  overflow: hidden;
}

.banner .block_bg img {
  width: 100%;
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

.banner .videobox {
  position: absolute;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
  opacity: 1;
}

.banner .videobox .video_mesk {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0.46)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.46) 10%, rgba(255, 255, 255, 0));
  opacity: 0.3;
  display: block;
  z-index: 2;
}

.banner .video_item {
  position: absolute;
  z-index: 0;
  width: 2047px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: initial;
}

@media (max-width: 768px) {
  .banner .video_item {
    width: auto;
    height: 100%;
  }
}

.banner .swiper {
  width: 100%;
  height: 750px;
  position: relative;
  overflow: hidden;
  padding-left: 70px;
}

@media (max-width: 992px) {
  .banner .swiper {
    padding-left: 0;
    height: 500px;
  }
}

.banner video {
  position: absolute;
  width: 100%;
}

.banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-height: 750px;
  opacity: 0 !important;
}

.banner .swiper-slide:nth-child(1n).swiper-slide-active {
  opacity: 1 !important;
}

.banner .swiper-slide:nth-child(1n).swiper-slide-active .slide-top {
  -webkit-animation: slide-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.banner .swiper-slide.swiper-slide-prev,
.banner .swiper-slide.swiper-slide-next,
.banner .swiper-slide .swiper-slide {
  opacity: 0 !important;
}

.banner .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.banner .banner-link {
  display: inline-block;
  color: #FFFFFF;
  border: solid;
  border-width: 2px;
  border-color: #FFFFFF;
  background-color: RGBA(255, 255, 255, 0);
  padding-top: 20px;
  padding-right: 40px;
  padding-bottom: 20px;
  padding-left: 40px;
  margin-top: 20px;
  border-radius: 12px;
}

.banner .swiper-slide .title {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 992px) {
  .banner .swiper-slide .title {
    font-size: 32px;
  }
}

.banner .swiper-button-next {
  background: none;
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(50%);
  transform: rotate(-45deg) translateY(50%);
  top: 50%;
}

.banner .swiper-button-prev {
  background: none;
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(135deg) translateY(-50%);
  transform: rotate(135deg) translateY(-50%);
  top: 50%;
}

.banner .swiper-slide .subtitle {
  font-size: 24px;
  font-weight: 600;
  color: rgb(108, 201, 45);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.233);
}

.banner .swiper-slide .text {
  font-size: 14px;
  max-width: 400px;
  line-height: 1.3;
}

.banner .slide_fix {
  text-align: left;
}

@media (max-width: 992px) {
  .banner .slide_fix {
    padding: 50px;
  }
}

.about_area p {
  font-size: 18px;
  line-height: 1.6;
}

.about_area .about_img_box {
  position: relative;
}

.about_area .about_img_box img {
  width: 100%;
}

.about_area .about_img_box .imgbtn {
  background-color: rgba(0, 0, 0, 0.404);
  padding: 4px 24px;
  position: absolute;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about_area .about_img_box .imgbtn a {
  text-decoration: none;
}

.about_area .about_img_box .imgbtn a:focus {
  color: #fff;
}

.about_area .about_img_box .imgbtn a:hover {
  color: #000;
}

.about_area .about_img_box .imgbtn a .m_type {
  display: none;
}

@media (max-width: 992px) {
  .about_area .about_img_box .imgbtn a .t_type {
    display: none;
  }

  .about_area .about_img_box .imgbtn a .m_type {
    display: block;
    position: relative;
    top: 3px;
  }
}

@media (max-width: 992px) {
  .about_area .about_img_box .imgbtn {
    padding: 0;
    background-color: rgb(108, 201, 45);
    color: #FFFFFF;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 100%;
  }
}

.about_area .about_img_box .imgbtn:nth-child(2) {
  left: 22%;
  bottom: 40%;
}

.about_area .about_img_box .imgbtn:nth-child(3) {
  left: 35%;
  top: 65%;
}

.about_area .about_img_box .imgbtn:nth-child(4) {
  left: 50%;
  top: 28%;
}

.about_area .about_img_box .imgbtn:nth-child(5) {
  left: 80%;
  top: 55%;
}

.about_area .about_img_box .imgbtn:nth-child(6) {
  right: 28%;
  top: 80%;
}

.about_area .about_img_box .imgbtn:hover {
  background-color: rgb(108, 201, 45);
}

.about_area .about_img_box .imgbtn:hover a {
  color: #fff;
}

.about_area .about_img_box .imgbtn.act {
  background-color: rgb(108, 201, 45);
  color: #fff;
}

.about_area .about_group {
  width: 100%;
  padding: 10px 30px;
  background-color: rgb(108, 201, 45);
  color: #fff;
}

.about_area .about_group .about_group_txt ul {
  margin-left: 2rem;
}

@media (max-width: 992px) {
  .about_area .about_group {
    display: none;
  }
}

.about_area .about_table_eng {
  display: none;
  padding: 10px;
  background-color: rgb(108, 201, 45);
}

@media (max-width: 992px) {
  .about_area .about_table_eng {
    display: block;
  }
}

.about_area .about_table_eng table,
.about_area .about_table_eng th,
.about_area .about_table_eng td {
  border: 1px solid #fff;
}

.about_area .about_table_eng table {
  border-spacing: 0;
  width: 100%;
}

.about_area .about_table_eng table tr td:first-child {
  width: 30%;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_area .about_table_eng table tr td:first-child span {
  border-radius: 100%;
  width: 25px;
  height: 25px;
  display: inline-block;
  color: #fff;
  position: relative;
  top: -3px;
  text-align: center;
  border: 1px solid #fff;
}

.about_area .about_table_eng table tr td {
  padding: 5px;
}

.about_area .about_table_eng table tr td:first-child {
  white-space: nowrap;
}

.about_area .about_fix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_area .about_fix .about_box {
  width: 50%;
}

.about_area .about_fix .about_box p {
  display: block;
  font-size: 18px;
  padding: 0 50px 0 0;
  line-height: 2;
}

.about_area .about_fix .about_box img {
  width: 100%;
}

@media (max-width: 992px) {
  .about_area .about_fix {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about_area .about_fix .about_box {
    width: 100%;
  }

  .about_area .about_fix .about_box p {
    padding: 0;
  }
}

.about_area .about_item .center_txt {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.about_area .about_item_bg {
  background-color: #ddd;
  padding: 40px 0;
}

.about_area .about_row_item {
  border-radius: 20px;
  background-color: #fff;
  padding: 5px;
  margin-bottom: 10px;
}

.about_area .row_title {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about_area .row_title span {
  padding: 4px;
  background-color: #CCFF99;
}

.about_area .row_txt {
  font-size: 16px;
  padding: 10px 8px;
  line-height: 2;
}

.about_text_box {
  padding: 70px;
}

.about_text_box p {
  font-size: 18px;
  line-height: 1.6;
}

.evalue_img img {
  width: 100%;
}

.evalue_img .evalue_btn {
  text-align: center;
  display: block;
  position: absolute;
  bottom: 0;
  right: 15px;
  border-radius: 8px;
  background-color: rgb(108, 201, 45);
  padding: 8px 16px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.evalue_img .evalue_btn:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.548);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.548);
}

.parner-area .swiper {
  width: 100%;
}

.parner-area .swiper-slide {
  height: auto !important;
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.parner-area .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 30px 0;
}

.parner-area .parner-body {
  overflow: hidden;
}

.video-area {
  padding: 20px 0;
  background-color: #000;
}

.video-area h3 {
  color: #fff;
}

.service-area {
  position: relative;
}

.service-area .service_box {
  padding: 30px 0;
}

.service-area .swiper {
  width: 100%;
  height: 100%;
}

.service-area .swiper-slide {
  text-align: center;
  font-size: 18px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service-area .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-area .service-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service-area .service-body .service-item {
  width: 32.3333%;
  margin: 0.5%;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e7f3ea;
  position: relative;
  overflow: hidden;
  -webkit-transition: 1s;
  transition: 1s;
}

.service-area .service-body .service-item a {
  text-decoration: none;
}

.service-area .service-body .service-item:hover .service-text {
  opacity: 1;
}

.service-area .service-body .service-item .service-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.service-area .service-body .service-item .service-bg img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 992px) {
  .service-area .service-body .service-item {
    width: 100%;
    margin-right: 0;
  }
}

.service-area .service-body .service-item .service-pic a {
  display: inline-block;
  position: relative;
}

.service-area .service-body .service-item .service-pic a img {
  width: 100px;
  margin: auto;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.service-area .service-body .service-item .service-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.service-area .service-body .service-item .service-text {
  font-size: 16px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /*行數*/
  -webkit-box-orient: vertical;
  white-space: normal;
}

.solution-area {
  padding: 40px 10px;
  background-color: #ddd;
}

.solution-area .solution_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.solution-area .solution_box a {
  text-decoration: none;
}

.solution-area .solution_box .solution_item {
  background: #fff;
  padding: 60px 40px;
  border: 1px solid #ddd;
  width: 33.33333%;
  text-align: center;
}

.solution-area .solution_box .solution_item img {
  width: 100px;
}

@media (max-width: 992px) {
  .solution-area .solution_box .solution_item {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .solution-area .solution_box .solution_item {
    width: 100%;
  }
}

.news-area .news-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .news-area .news-body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.news-area .news-body .news-item {
  width: 29%;
  margin-right: 6.5%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .news-area .news-body .news-item {
    width: 100%;
    margin-right: 0;
  }
}

.news-area .news-body .news-item:nth-child(3n) {
  margin-right: 0;
}

.news-area .news-body .news-item a {
  display: block;
}

.news-area .news-body .news-item a:hover {
  color: #1E1E1E;
  text-decoration: unset;
}

.news-area .news-body .news-item .news-pic {
  margin: -20px -20px 20px;
  position: relative;
}

.news-area .news-body .news-item .news-pic img {
  width: 100%;
}

.news-area .news-body .news-item .news-title {
  font-size: 18px;
}

.news-area .news-body .news-item .news-text {
  font-size: 16px;
  text-align: justify;
}

.news-area .viewmorenews {
  margin: 24px auto 160px;
  text-align: center;
}

.news-area .viewmorenews a {
  border-radius: 4px;
  font-size: 24px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 20px 30px;
  background-color: #1E1E1E;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.news-area .viewmorenews a:hover {
  background-color: rgb(108, 201, 45);
}

.gotop {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 20px;
  bottom: 37px;
  background-color: rgb(24, 94, 24);
  width: 50px;
  height: 50px;
  color: #fff;
  z-index: 60;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
}

.irr-area a img {
  width: 100%;
}

footer {
  padding: 30px 0 0;
  background-color: #1E1E1E;
}

footer ul {
  margin: 0;
}

footer .container {
  max-width: 1400px;
  margin: auto;
  padding: 0;
}

footer .footer-body .footer-logo {
  padding: 0;
}

footer .footer-body .webmap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .footer-body .webmap .webmap-item a {
  color: #fff;
  font-weight: bold;
  padding: 2px 0px;
  display: block;
  text-decoration: none;
}

footer .footer-body .webmap .m2 {
  list-style: none;
}

footer .footer-body .webmap .m2 a {
  color: #888;
  font-weight: 500;
  text-decoration: none;
}

footer .footer-bottom {
  max-width: 1080px;
  margin: 50px auto;
}

footer .footer-bottom .search-bar input {
  width: 400px;
  padding: 6px;
  border: none;
  border-radius: 4px 0px 0 4px;
}

@media (max-width: 992px) {
  footer .footer-bottom .search-bar {
    text-align: center;
    margin-bottom: 10px;
  }

  footer .footer-bottom .search-bar input {
    width: 60%;
  }
}

footer .footer-bottom .search-bar .search-btn {
  position: relative;
  left: -5px;
  top: 0px;
  display: inline;
  background-color: rgb(108, 201, 45);
  color: #fff;
  border: none;
  padding: 4px;
  height: 30px;
}

footer .footer-bottom .footer-olink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer-bottom .footer-olink .btn_item {
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 35px;
  height: 35px;
  text-decoration: none;
  font-size: 20px;
  vertical-align: text-bottom;
  font-weight: bold;
  color: #fff;
  background-color: rgb(108, 201, 45);
  margin-right: 10px;
}

footer .footer-bottom .footer-olink a {
  margin-right: 5px;
}

footer .footer-bottom .footer-olink img {
  height: 35px;
}

@media (max-width: 992px) {
  footer .footer-bottom .footer-olink {
    text-align: center;
  }
}

footer .copyright {
  width: 100%;
  text-align: center;
  background: #000;
  padding: 8px;
  color: #fff;
}

footer .copyright a {
  color: inherit;
}

.service_group p {
  font-size: 18px;
  text-align: justify;
}

.service_group .service_row {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service_group .service_row .col-md-6 {
  border: 1px dashed #ddd;
}

@media (max-width: 992px) {
  .service_group .service_row .service_row_box {
    width: 100%;
  }
}

.service_group .service_row .service_fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service_group .service_row .service_fixed .pic {
  padding: 50px;
  width: 45%;
}

.service_group .service_row .service_fixed .pic img {
  width: 100px;
}

@media (max-width: 992px) {
  .service_group .service_row .service_fixed .pic {
    padding: 50px 30px;
  }
}

.service_group .service_row .service_fixed .txt .stitle {
  padding: 8px 12px;
  background-color: rgb(108, 201, 45);
  display: inline-block;
  width: 105px;
  text-align: center;
  border-radius: 8px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.service_group .service_row .service_fixed .txt ul {
  margin-left: 2rem;
}

.service_group .service_box .center_txt {
  text-align: center;
  font-size: 18px;
}

.service_group .service_box img {
  width: 100%;
}

.service_group .service_box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 992px) {
  .service_group .service_box .row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.service_group .service_box .service_right {
  font-size: 20px;
}

.service_group .service_box .service_right ol {
  margin-left: 2rem;
}

.service_group .service_box .service_right ul {
  margin-left: 2rem;
}

.service_group .service_box .service_right ol>li {
  font-weight: 600;
}

.service_group .service_box .service_right ol>li ul>li {
  font-weight: 300;
  list-style-type: disc;
}

.service_box_table {
  overflow: scroll;
}

.service_box_table .service_table {
  border-spacing: 0;
  width: 100%;
}

@media (max-width: 992px) {
  .service_box_table .service_table {
    width: 900px;
  }
}

.service_box_table .service_table thead tr th {
  color: #fff;
  padding: 4px;
  text-align: center;
  background-color: rgb(108, 201, 45);
}

.service_box_table .service_table tbody td {
  padding: 10px;
  text-align: center;
}

.service_box_table .service_table tbody td:last-child {
  text-align: left;
}

.service_map {
  width: 100%;
  text-align: center;
  background-color: rgb(108, 201, 45);
}

.service_map a {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
}

.service_map a:hover {
  color: #ddd;
}

.swiper-slide img {
  width: 100%;
}

.irr_area .irr_img {
  width: 100%;
}

.irr_area .irr_fix {
  max-width: 750px;
  margin: auto;
  padding-top: 70px;
}

.irr_area .irr_fix .irr_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.irr_area .irr_fix .irr_tag a {
  text-decoration: none;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  display: inline-block;
  width: 50%;
  color: #fff;
  font-weight: 900;
  background-color: #C5E0B5;
}

.irr_area .irr_fix .irr_tag a:first-child {
  margin-right: 5px;
}

.irr_area .irr_fix .irr_tag a.act {
  background-color: #92D14F;
}

.irr_area .irr_fix .irr_body {
  padding: 30px;
  border-radius: 25px;
  background-color: #92D14F;
}

.irr_area .irr_fix .irr_body .irr_h3 {
  text-align: center;
  margin: 50px 0;
  font-weight: 900;
}

.irr_area .irr_fix .irr_body .irr_info {
  background-color: #fff;
  padding: 1px 80px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .irr_area .irr_fix .irr_body .irr_info {
    padding: 20px;
  }
}

.irr_area .irr_fix .irr_body .irr_info .irr_tips {
  margin: 29.5px 0;
  text-align: center;
}

.irr_area .irr_fix .irr_body .irr_info .irr_tips a {
  text-decoration: none;
}

.irr_area .irr_fixed {
  padding: 0 80px;
}

@media (max-width: 650px) {
  .irr_area .irr_fixed {
    padding: 0;
  }
}

.irr_area .irr_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.irr_area .irr_item .irr_title {
  display: block;
  width: 90px;
  white-space: nowrap;
}

.irr_area .irr_item .irr_box {
  margin-right: 30px;
}

@media (max-width: 650px) {
  .irr_area .irr_item .irr_box {
    margin-right: 10px;
  }
}

.irr_area .irr_item input[type=text] {
  margin-right: 5px;
  padding: 10px 4px;
  font-size: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: calc(100% - 90px);
}

.irr_area .irr_item p {
  width: 30px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.irr_area .irr_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 20px;
  margin-left: 50px;
}

.irr_area .irr_btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 30px;
}

.privacy p,
.privacy ul li {
  line-height: 2;
  font-size: 16px;
  text-align: justify;
}

.pri_title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.privacy ul {
  margin-left: 2rem;
}

figure.center {
  text-align: center;
}

.hr {
  border: 0.45rem dashed rgba(215, 214, 216, 0.5);
  width: 60%;
  margin: 8rem auto 2rem;
  border-radius: 1rem;
}