@charset "UTF-8";
@import url("vendor/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Noto+Sans+TC:wght@300;400;500;700;900&family=Potta+One&display=swap");
body, html {
  font-family: "Noto Sans TC", "Oswald", sans-serif;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  background-color: #fff;
  -webkit-text-size-adjust: none;
  color: #000;
}
@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    overflow: 1;
  }
}
/* Safari */
@keyframes prloader {
  0% {
    background-image: url(../images/loading/loading_00.svg);
  }
  30% {
    background-image: url(../images/loading/loading_01.svg);
  }
  40% {
    background-image: url(../images/loading/loading_02.svg);
  }
  60% {
    background-image: url(../images/loading/loading_03.svg);
  }
  80% {
    background-image: url(../images/loading/loading_04.svg);
  }
  90% {
    background-image: url(../images/loading/loading_05.svg);
  }
  100% {
    background-image: url(../images/loading/loading_06.svg);
  }
}
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloder .loader .img { /* Safari */
  animation: prloader 1s linear;
  width: 210px;
  height: 96px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/loading/loading_06.svg);
}
#preloder .loader .deco {
  border-top: 1px solid #000;
  margin-top: 15px;
  padding-top: 15px;
}
#preloder .loader .desc {
  font-size: 14px;
  text-align: center; /* Safari */
  animation: flash 0.5s linear infinite;
}

a {
  transition: 0.5s ease;
  text-decoration: none;
}

button {
  transition: 0.5s ease;
}

textarea, select, input, button {
  outline: none;
}

:focus {
  outline-color: transparent;
  outline-style: none;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

h3, p {
  text-align: justify;
  text-justify: inter-word;
}

.clear-fix {
  clear: both;
}

::-moz-placeholder {
  color: #D9D9D9;
}

::placeholder {
  color: #D9D9D9;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 10px;
  background: #E8E8E8;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #7A7A7A;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #343339;
}

@media all and (max-width: 640px) {
  #preloder .loader .img {
    width: 160px;
    height: 72px;
    background-size: contain;
  }
  #preloder .loader .deco {
    margin-top: 10px;
    padding-top: 10px;
  }
  #preloder .loader .desc {
    font-size: 12px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background-color: #fff;
}
header .header-div {
  position: relative;
  padding: 15px 0;
}
header .header-div .outer-div {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .header-div .outer-div .brand a {
  display: flex;
  justify-content: center;
}
header .header-div .outer-div .brand a img {
  height: 65px;
}
header .header-div .outer-div .navi ul {
  display: flex;
  flex-wrap: wrap;
}
header .header-div .outer-div .navi ul li {
  display: inline-block;
  margin-left: 20px;
}
header .header-div .outer-div .navi ul li a {
  display: block;
  color: #212529;
  font-size: 24px;
  padding: 10px 0;
}
header .header-div .outer-div .navi ul li a:hover {
  color: #708E8E;
}
header .header-div .outer-div .navi ul li a.had_submenu i {
  margin-left: 8px;
  display: inline-block;
  width: 16px;
  height: 12px;
  background-image: url(./../images/icon_arrow_down_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
}
header .header-div .outer-div .navi ul li .dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  min-width: 180px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
header .header-div .outer-div .navi ul li .dropdown .item a {
  display: block;
  color: #212529;
  font-size: 16px;
  padding: 8px 15px;
}
header .header-div .outer-div .navi ul li .dropdown .item a:hover {
  background-color: #ECF0F1;
}
header .header-div .outer-div .navi ul li:hover a {
  color: #708E8E;
}
header .header-div .outer-div .navi ul li:hover .dropdown {
  display: block;
}

.scroll header {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

main {
  margin-top: 95px;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 1390px) {
  header .header-div .outer-div .brand a img {
    height: 50px;
  }
  header .header-div .outer-div .navi ul li a {
    font-size: 20px;
  }
  header .header-div .outer-div .navi ul li .dropdown .item a {
    font-size: 14px;
  }
}
@media all and (max-width: 992px) {
  header .header-div .outer-div .navi {
    display: none;
  }
}
@media all and (max-width: 640px) {
  header .header-div {
    padding: 8px 0;
  }
  header .header-div .outer-div .brand a img {
    height: 40px;
  }
  header .header-div .outer-div .search {
    top: 65px;
  }
  header .header-div .outer-div .search .border {
    /*width: 45vw;*/
  }
  main {
    margin-top: 50px;
  }
}
footer {
  position: relative;
  z-index: 2;
}
footer .section-footer {
  background-color: #859e4d;
  padding: 0;
}
footer .section-footer .block-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}
footer .section-footer .block-outer .img img {
  max-width: 100%;
}
footer .section-footer .block-outer .img img.mobile {
  display: none;
}
footer .section-footer .block-outer .two-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
footer .section-footer .block-outer .two-cols .col01 {
  display: inline-flex;
  width: 65%;
}
footer .section-footer .block-outer .two-cols .col01 .sub-col01 {
  width: 40%;
}
footer .section-footer .block-outer .two-cols .col01 .sub-col01 h3 {
  font-size: 20px;
}
footer .section-footer .block-outer .two-cols .col01 .sub-col02 {
  width: 60%;
}
footer .section-footer .block-outer .two-cols .col01 .sub-col02 ul {
  display: flex;
  flex-wrap: wrap;
}
footer .section-footer .block-outer .two-cols .col01 .sub-col02 ul li {
  width: 50%;
}
footer .section-footer .block-outer .two-cols .col01 .sub-col02 ul li h4 {
  font-size: 20px;
}
footer .section-footer .block-outer .two-cols .col01 .sub-col02 ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
}
footer .section-footer .block-outer .two-cols .col02 {
  width: 35%;
}
footer .section-footer .block-outer .two-cols .col02 p {
  text-align: right;
}
footer .section-footer .block-outer h3 {
  font-size: 16px;
  font-weight: 700;
}
footer .section-footer .block-outer .company {
  font-size: 16px;
}
footer .section-footer .block-outer .info {
  margin: 20px 0;
}
footer .section-footer .block-outer .info .item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  line-height: 1.4;
  margin: 15px 0;
}
footer .section-footer .block-outer .info .item i {
  display: inline-flex;
  width: 30px;
}
footer .section-footer .block-outer .info .item i img {
  margin-top: 3px;
}
footer .section-footer .block-outer .info .item span {
  display: inline-block;
  width: calc(100% - 30px);
}
footer .section-footer .block-outer .info .item a {
  color: #fff;
}
footer .section-footer .block-outer .copyright {
  font-size: 14px;
  margin-top: 15px;
}
footer .section-footer .block-outer .copyright a {
  color: #fff;
}

.toggle-btn {
  position: fixed;
  right: 20px;
  top: 30px;
  z-index: 88;
  background-color: transparent;
  display: none;
}
.toggle-btn span {
  display: block;
  background-color: #708E8E;
  height: 2px;
  width: 24px;
  margin: 5px 0;
}

.body-toggle-open {
  overflow: hidden;
}
.body-toggle-open .toggle-btn span:nth-child(1) {
  transform: rotate(45deg);
  margin-bottom: 1px;
}
.body-toggle-open .toggle-btn span:nth-child(2) {
  transform: rotate(135deg);
  margin-top: -3px;
}
.body-toggle-open .toggle-btn span:nth-child(3) {
  display: none;
}

#mobile-nav {
  position: fixed;
  left: 0;
  top: 56px;
  width: 100%;
  height: calc(100% - 56px);
  background-color: #fff;
  z-index: 99;
  display: none;
  background-color: #ECF0F1;
}
#mobile-nav .navi {
  padding: 0 20px;
  border-top: 2px solid #708E8E;
  max-height: calc(var(--vh, 1vh) * 100);
  overflow-y: auto;
}
#mobile-nav .navi ul li {
  display: block;
  border-bottom: 1px solid #708E8E;
}
#mobile-nav .navi ul li a {
  display: block;
  width: 100%;
  font-size: 17px;
  color: #000;
  padding: 8px 0;
}
#mobile-nav .navi ul li a.had_submenu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#mobile-nav .navi ul li a.had_submenu span {
  display: inline-block;
  width: calc(100% - 20px);
}
#mobile-nav .navi ul li a.had_submenu i {
  display: inline-block;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(./../images/icon_arrow_down_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
}
#mobile-nav .navi ul li .dropdown {
  display: none;
}
#mobile-nav .navi ul li .dropdown a {
  display: block;
  color: #000;
}
#mobile-nav .navi ul li .dropdown a:hover {
  color: #708E8E;
}
#mobile-nav .navi ul li.active .had_submenu i {
  transform: rotate(-90deg);
}
#mobile-nav .navi ul li.active .dropdown {
  display: block;
}

.body-toggle-open #mobile-nav {
  display: block;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media all and (max-width: 992px) {
  .toggle-btn {
    display: block;
  }
}
@media all and (max-width: 820px) {
  footer .section-footer {
    padding: 20px 0;
  }
  footer .section-footer .block-outer {
    padding: 0;
    font-size: 14px;
  }
  footer .section-footer .block-outer .img img.web {
    display: none;
  }
  footer .section-footer .block-outer .img img.mobile {
    display: flex;
  }
  footer .section-footer .block-outer .two-cols .col01 {
    width: 100%;
  }
  footer .section-footer .block-outer .two-cols .col01 .sub-col01 h3 {
    font-size: 18px;
  }
  footer .section-footer .block-outer .two-cols .col01 .sub-col02 ul li h4 {
    font-size: 18px;
  }
  footer .section-footer .block-outer .two-cols .col01 .sub-col02 ul li a {
    font-size: 14px;
  }
  footer .section-footer .block-outer .two-cols .col02 {
    width: 100%;
    margin-top: 30px;
  }
}
@media all and (max-width: 640px) {
  .toggle-btn {
    top: 15px;
    transition: 0s ease;
  }
  .body-toggle-open .toggle-btn {
    top: 20px;
  }
  footer .section-footer {
    padding: 10px 0;
  }
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid #000;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  /*background-color: #000;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container input:checked ~ .checkmark:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 16px;
  height: 16px;
  background-color: #000;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-blue {
  min-width: 180px;
  background-color: #000;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
}
.btn-blue a {
  color: #fff;
  display: block;
}
.btn-blue:hover {
  background-color: #000;
  border: 1px solid #000;
}
.btn-blue:active {
  background-color: #000;
  border: 1px solid #000;
}
.btn-blue:disabled {
  opacity: 0.6;
}

.btn-white {
  min-width: 180px;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #000;
}
.btn-white:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-white:active {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-white:disabled {
  opacity: 0.6;
}
.btn-white.btn-transparent {
  background-color: transparent;
}
.btn-white.btn-transparent:hover {
  color: #fff;
  border-color: #fff;
}

.btn-darkBlue {
  min-width: 180px;
  background-color: #000;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
}
.btn-darkBlue a {
  color: #fff;
  display: block;
}
.btn-darkBlue:hover {
  background-color: #000;
  border: 1px solid #000;
}
.btn-darkBlue:active {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
}
.btn-darkBlue:disabled {
  opacity: 0.6;
}

.form-div .item {
  margin: 10px 0;
}
.form-div .item .label {
  font-size: 12px;
  color: #686868;
  font-weight: 700;
}
.form-div .item .label.wid-label {
  width: -moz-max-content;
  width: max-content;
}
.form-div .item .label sup {
  color: #96C83E;
}
.form-div .item .controller {
  margin-top: 5px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form-div .item .controller input {
  width: calc(100% - 22px);
  padding: 0 10px;
  border: 1px solid #B1B1B1;
  line-height: 43px;
  border-radius: 5px;
  font-size: 14px;
}
.form-div .item .controller input::-webkit-outer-spin-button,
.form-div .item .controller input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-div .item .controller input[type=number] {
  -moz-appearance: textfield;
}
.form-div .item .controller .checkbox-container input {
  width: auto;
}
.form-div .item .controller .checked-container input {
  width: auto;
}
.form-div .item .controller select {
  border: 1px solid #B1B1B1;
  line-height: 43px;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  padding: 0 10px;
  height: 45px;
  background-color: #fff;
  color: #686868;
}
.form-div .item .controller textarea {
  resize: none;
  border: 1px solid #B1B1B1;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 10px;
  width: calc(100% - 22px);
  height: 184px;
}
.form-div .item .controller .desc p {
  color: #B1B1B1;
  font-size: 10px;
  margin-bottom: 15px;
}
.form-div .item .controller .desc p:last-child {
  margin-bottom: 0;
}
.form-div .item .controller .file-container {
  position: relative;
}
.form-div .item .controller .file-container label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .controller .file-container label input {
  width: calc(100% - 22px - 132px - 10px);
}
.form-div .item .controller .file-container label input:disabled {
  background-color: #fff;
}
.form-div .item .controller .file-container label button {
  min-width: 132px;
  background-color: #96C83E;
  border: 1px solid #96C83E;
  border-radius: 5px;
  font-size: 12px;
  line-height: 43px;
  text-align: center;
  color: #fff;
}
.form-div .item .controller .file-container label button:hover {
  background-color: #cbe49f;
}
.form-div .item .controller .file-container .file-upload {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.form-div .item .two-col {
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  flex-wrap: wrap;
}
.form-div .item .two-col .col {
  width: calc(50% - 10px);
  margin: 0 5px;
}
.form-div .item .three-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .three-col .col {
  width: calc(33.3333333333% - 7.5px);
}
.form-div .item .keyin-item:hover .label {
  color: #96C83E;
}
.form-div .item .keyin-item:hover .controller input {
  border-color: #96C83E;
}
.form-div .item .keyin-item:hover .controller select {
  border-color: #96C83E;
  color: #96C83E;
}
.form-div .item .keyin-item:hover .controller textarea {
  border-color: #96C83E;
}
.form-div .item .city-State {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .city-State .keyin-item:nth-child(1) {
  width: 196px;
}
.form-div .item .city-State .keyin-item:nth-child(2) {
  width: 108px;
}
.form-div .item .city-State .keyin-item:nth-child(2) select {
  width: 100%;
}
.form-div .item .col-2-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .col-2-3 .keyin-item:nth-child(1) {
  width: 110px;
}
.form-div .item .col-2-3 .keyin-item:nth-child(2) {
  width: calc(100% - 110px - 10px);
}
.form-div .item .col-3-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .col-3-2 .keyin-item:nth-child(1) {
  width: calc(100% - 110px - 10px);
}
.form-div .item .col-3-2 .keyin-item:nth-child(2) {
  width: 110px;
}
.form-div .item .qty {
  width: 196px;
}
.form-div .item .qty .controller select {
  width: 100%;
}
.form-div .item .ups-ffdex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form-div .item .ups-ffdex .col01 {
  width: calc(100% - 540px);
}
.form-div .item .ups-ffdex .col01 .radio-container {
  margin-top: 15px;
}
.form-div .item .ups-ffdex .col02 {
  width: 540px;
}
.form-div .item .keep-forgot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.form-div .item .keep-forgot .col01 {
  width: 50%;
}
.form-div .item .keep-forgot .col02 {
  width: 50%;
  text-align: right;
  font-size: 12px;
  color: #B1B1B1;
}
.form-div .item .keep-forgot .col02 a {
  color: #96C83E;
}
.form-div .item.or {
  margin: 20px 0;
}
.form-div .item.or .or-div {
  color: #686868;
  font-size: 12px;
  position: relative;
  text-align: center;
}
.form-div .item.or .or-div span {
  background-color: #fff;
  padding: 0 10px;
}
.form-div .item.or .or-div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #F5F5F7;
}
.form-div .item.remark {
  margin: 20px 0;
}
.form-div .item.action {
  margin-top: 20px;
  margin-bottom: 0;
}
.form-div .item.action button {
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #96C83E;
  font-size: 12px;
  line-height: 45px;
  color: #fff;
  margin: 0 auto;
}
.form-div .item.action button:hover {
  opacity: 0.3;
}
.form-div .item.action button a {
  color: #fff;
  display: block;
}
.form-div .item .apply-account {
  text-align: center;
  color: #B1B1B1;
  font-size: 12px;
}
.form-div .item .apply-account span {
  display: block;
}
.form-div .item .apply-account .green {
  color: #96C83E;
}

.form-item .box-div {
  background-color: #fff;
  padding: 20px 55px 50px 55px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.form-item .desc h3 {
  font-size: 14px;
  color: #96C83E;
  font-weight: 700;
  margin-left: -30px;
}
.form-item .item-desc p {
  font-size: 10px;
  color: #B1B1B1;
}

@media all and (max-width: 640px) {
  .form-div .item .two-col {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .form-div .item .two-col .col {
    margin: 0;
    width: 100%;
  }
  .form-div .item .two-col .col:nth-child(2) {
    margin-top: 10px;
  }
  .form-div .item .col-3-2 .keyin-item:nth-child(1) {
    width: calc(65% - 10px);
  }
  .form-div .item .col-3-2 .keyin-item:nth-child(2) {
    width: 35%;
  }
  .form-div .item .col-2-3 .keyin-item:nth-child(1) {
    width: 35%;
  }
  .form-div .item .col-2-3 .keyin-item:nth-child(2) {
    width: calc(65% - 10px);
  }
  .form-div .item .keep-forgot {
    display: block;
  }
  .form-div .item .keep-forgot .col01 {
    width: 100%;
  }
  .form-div .item .keep-forgot .col02 {
    margin-top: 5px;
    width: 100%;
    text-align: left;
  }
  .form-div .item .three-col {
    display: block;
  }
  .form-div .item .three-col .col {
    width: 100%;
    margin: 10px 0;
  }
}
.block-outer {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.section-home-banner .block-outer {
  padding: 0 0px;
  max-width: 100%;
}
.section-home-banner .block-outer a {
  display: flex;
}
.section-home-banner .block-outer img {
  width: 100%;
}

.section-banner .block-outer {
  padding: 0 0px;
  max-width: 100%;
  position: relative;
}
.section-banner .block-outer .img {
  display: flex;
}
.section-banner .block-outer .img img {
  max-width: 100%;
}
.section-banner .block-outer .info {
  position: absolute;
  width: 1200px;
  left: calc(50% - 600px);
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.section-banner .block-outer .info h2 {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
}
.section-banner .block-outer .info h2.color_4C4948 {
  color: #4C4948;
}

.section-home {
  /*padding-top: 50px;*/
}
.section-home .block-title {
  text-align: center;
  font-size: 48px;
  color: #2C2D2D;
  font-weight: 700;
  margin-bottom: 30px;
}
.section-home .news-tab-list .tab-links {
  display: flex;
  flex-wrap: wrap;
}
.section-home .news-tab-list .tab-links a {
  display: inline-block;
  width: 50%;
  font-size: 32px;
  text-align: center;
  position: relative;
  color: #000;
  padding: 10px 0;
}
.section-home .news-tab-list .tab-links a:hover {
  color: #708E8E;
}
.section-home .news-tab-list .tab-links a.active {
  color: #708E8E;
  font-weight: 600;
}
.section-home .news-tab-list .tab-links a.active:before {
  height: 2px;
  background-color: #708E8E;
}
.section-home .news-tab-list .tab-links a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.section-home .news-tab-list .tab-content {
  margin-top: 15px;
}
.section-home .news-tab-list .tab-content .content {
  display: none;
}
.section-home .news-tab-list .tab-content .content.active {
  display: block;
}
.section-home .news-tab-list .tab-content .list-items .item {
  border-bottom: 1px solid #708E8E;
}
.section-home .news-tab-list .tab-content .list-items .item a {
  display: flex;
  flex-wrap: wrap;
  font-size: 24px;
  color: #252525;
  padding: 10px 0;
}
.section-home .news-tab-list .tab-content .list-items .item a .datetime {
  width: 30%;
  text-align: center;
}
.section-home .news-tab-list .tab-content .list-items .item a .desc {
  width: 70%;
}
.section-home .news-tab-list .tab-content .list-items .item a:hover {
  color: #708E8E;
}
.section-home .more {
  margin-top: 30px;
  text-align: center;
}
.section-home .more a {
  font-size: 24px;
  color: #fff;
  background-color: #71A04A;
  border-radius: 4px;
  display: inline-block;
  min-width: 184px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-home .more a:hover {
  background-color: #000;
}
.section-home .block-01 {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url(./../images/home_news_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-home .block-02 {
  /*margin-top: 30px;*/
  background-color: #ECF0F1;
  padding: 100px 0;
  background-image: url(./../images/home_video_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-home .block-03 {
  padding: 50px 0;
  background-image: url(./../images/home_active_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-home .block-04 {
  background-color: #ECF0F1;
  padding: 100px 0;
  background-image: url(./../images/home_case_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-home .case-list .list-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.section-home .case-list .list-items .item {
  margin: 20px;
  width: calc(50% - 40px);
}
.section-home .case-list .list-items .item .box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
}
.section-home .case-list .list-items .item .box a {
  display: flex;
  flex-wrap: wrap;
}
.section-home .case-list .list-items .item .box a .img {
  width: 35%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-home .case-list .list-items .item .box a .img img {
  width: 100%;
}
.section-home .case-list .list-items .item .box a .info {
  width: calc(65% - 20px);
  padding: 10px 10px;
}
.section-home .case-list .list-items .item .box a .info .desc h3 {
  font-size: 16px;
  color: #1D2026;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 55px;
}
.section-home .case-list .list-items .item .box a .info .desc p {
  font-size: 16px;
  color: #1D2026;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 15px;
  min-height: 55px;
}
.section-home .case-list .list-items .item .box a .info .datetime {
  font-size: 14px;
  color: #8C94A3;
  border-top: 1px solid #E9EAF0;
  padding: 15px 10px 10px 10px;
  margin-top: 15px;
}
.section-home .case-list .list-items .item .box a:hover .info .desc h3 {
  color: #2d465e;
}
.section-home .case-list .list-items .item .box a:hover .info .desc p {
  color: #2d465e;
}

.videos-list .list-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.videos-list .list-items .item {
  width: calc(33.3333333333% - 40px);
  margin: 20px;
}
.videos-list .list-items .item .box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.videos-list .list-items .item .box a {
  display: block;
}
.videos-list .list-items .item .box a:hover .video-img i img {
  filter: grayscale(0%);
}
.videos-list .list-items .item .box a:hover .info {
  opacity: 0.5;
}
.videos-list .list-items .item .box .video-img {
  position: relative;
}
.videos-list .list-items .item .box .video-img span {
  display: flex;
}
.videos-list .list-items .item .box .video-img span img {
  width: 100%;
  height: 210px;
}
.videos-list .list-items .item .box .video-img i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.videos-list .list-items .item .box .video-img i img {
  filter: grayscale(100%);
  width: 48px;
}
.videos-list .list-items .item .box .info {
  padding: 10px 20px;
  color: #2d465e;
  background-color: #fff;
}
.videos-list .list-items .item .box .info .datetime {
  font-size: 16px;
}
.videos-list .list-items .item .box .info h3 {
  font-size: 22px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  min-height: 61px;
}

.block-search.block-fixed-margin {
  margin-top: -50px;
  padding-bottom: 50px;
}
.block-search.block-only-search .box {
  padding-left: 100px;
  padding-right: 100px;
}
.block-search .box {
  background-color: #fff;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 20px;
}
.block-search .box .two-cols {
  display: flex;
  flex-wrap: wrap;
}
.block-search .box .two-cols .col01 {
  width: 140px;
}
.block-search .box .two-cols .col02 {
  padding-left: 20px;
  width: calc(100% - 140px - 20px);
}
.block-search .box .dropdown-select-div {
  position: relative;
}
.block-search .box .dropdown-select-div select {
  display: none;
}
.block-search .box .dropdown-select-div button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  border-radius: 4px;
}
.block-search .box .dropdown-select-div button i {
  display: inline-block;
  width: 35px;
  height: 20px;
  background-image: url(./../images/icon_calendar_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.block-search .box .dropdown-select-div button span {
  display: inline-block;
  width: calc(100% - 35px);
  font-size: 16px;
  color: #565656;
}
.block-search .box .dropdown-select-div .select-div {
  display: none;
  position: absolute;
  z-index: 99;
  padding-top: 10px;
}
.block-search .box .dropdown-select-div .select-div .list-items {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  min-width: 180px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.block-search .box .dropdown-select-div .select-div .item {
  color: #212529;
  font-size: 16px;
  padding: 8px 15px;
  cursor: pointer;
}
.block-search .box .dropdown-select-div .select-div .item:hover {
  background-color: #ECF0F1;
}
.block-search .box .dropdown-select-div:hover .select-div {
  display: block;
}
.block-search .box .search-div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #EAEAEA;
  padding: 10px 15px;
}
.block-search .box .search-div input {
  background-color: transparent;
  width: calc(100% - 35px);
  color: #000;
  font-size: 15px;
  padding: 0;
  border: none;
}
.block-search .box .search-div input::-moz-placeholder { /* CSS 3 標準 */
  color: #626466;
}
.block-search .box .search-div input::placeholder { /* CSS 3 標準 */
  color: #626466;
}
.block-search .box .search-div input::-webkit-input-placeholder { /* Chrome, Safari */
  color: #626466;
}
.block-search .box .search-div input:-ms-input-placeholder { /* IE 10+ */
  color: #626466;
}
.block-search .box .search-div input::-moz-placeholder { /* Firefox 19+ */
  color: #626466;
  opacity: 1;
}
.block-search .box .search-div button {
  background-color: transparent;
  width: 35px;
}

.news-active-div .hot-div .box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 4px;
}
.news-active-div .hot-div .box a {
  display: flex;
  flex-wrap: wrap;
}
.news-active-div .hot-div .box a .img {
  width: 35%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 240px;
}
.news-active-div .hot-div .box a .img img {
  width: 100%;
}
.news-active-div .hot-div .box a .info {
  width: calc(65% - 20px);
  padding: 10px 10px;
}
.news-active-div .hot-div .box a .info .desc h3 {
  font-size: 16px;
  color: #1D2026;
  font-weight: 600;
}
.news-active-div .hot-div .box a .info .desc p {
  font-size: 16px;
  color: #1D2026;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-top: 15px;
}
.news-active-div .hot-div .box a .info .datetime {
  font-size: 14px;
  color: #8C94A3;
  border-top: 1px solid #E9EAF0;
  padding: 15px 10px 10px 10px;
  margin-top: 15px;
}
.news-active-div .hot-div .box a:hover .info .desc h3 {
  color: #2d465e;
}
.news-active-div .hot-div .box a:hover .info .desc p {
  color: #2d465e;
}
.news-active-div .list-items {
  border-top: 1px solid #708E8E;
  margin-top: 20px;
}
.news-active-div .list-items .item {
  border-bottom: 1px solid #708E8E;
}
.news-active-div .list-items .item a {
  display: block;
  padding: 20px;
}
.news-active-div .list-items .item a .info h3 {
  font-size: 17px;
  color: #1D2026;
  font-weight: 600;
}
.news-active-div .list-items .item a .info p {
  font-size: 16px;
  color: #1D2026;
  margin-top: 5px;
}
.news-active-div .list-items .item a .datetime {
  font-size: 14px;
  color: #8C94A3;
  margin-top: 5px;
}
.news-active-div .list-items .item a:hover .info h3 {
  color: #2d465e;
}
.news-active-div .list-items .item a:hover .info p {
  color: #2d465e;
}

.pagination-div {
  text-align: center;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-div a {
  font-size: 14px;
  color: #1D2026;
  min-width: 48px;
  min-height: 48px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
}
.pagination-div a:hover, .pagination-div a.active {
  background-color: #708E8E;
  color: #fff;
}
.pagination-div a.prev, .pagination-div a.next {
  background-color: #ECF0F1;
}

.section-news-detail {
  padding: 50px 0;
}
.section-news-detail .block-news-detail .editor-detail-div .box {
  border-radius: 4px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.section-news-detail .block-news-detail .editor-detail-div .box .title h3 {
  font-size: 36px;
  color: #2D465E;
  font-weight: 600;
  line-height: 1.3;
}
.section-news-detail .block-news-detail .editor-detail-div .box .datetime {
  font-size: 24px;
  color: #000;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail {
  margin-top: 50px;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail img {
  max-width: 100%;
  max-height: -moz-max-content;
  max-height: max-content;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail big {
  font-size: larger;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail strong {
  font-weight: 700;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail em {
  font-style: italic;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail h4 {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail h5 {
  display: block;
  font-size: 0.83em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail h6 {
  display: block;
  font-size: 0.67em;
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}
.section-news-detail .block-news-detail .editor-detail-div .box .detail ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

.back-div {
  padding: 30px 0;
  text-align: center;
}
.back-div a {
  font-size: 24px;
  color: #fff;
  background-color: #71A04A;
  border-radius: 4px;
  display: inline-block;
  min-width: 184px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.back-div a:hover {
  background-color: #000;
}

.section-plan-detail {
  background-color: #ECF0F1;
  padding-bottom: 50px;
}
.section-plan-detail.bg_color_fffff3 {
  background-color: #fffff3;
}
.section-plan-detail .block-plan-tab {
  background-color: #fff;
}
.section-plan-detail .block-plan-tab .tab-links {
  display: flex;
  flex-wrap: wrap;
}
.section-plan-detail .block-plan-tab .tab-links a {
  display: inline-block;
  text-align: center;
  width: 14.2857142857%;
  color: #000;
  font-size: 16px;
  padding: 15px 0;
  position: relative;
}
.section-plan-detail .block-plan-tab .tab-links a.active, .section-plan-detail .block-plan-tab .tab-links a:hover {
  color: #708E8E;
}
.section-plan-detail .block-plan-tab .tab-links a.active:after, .section-plan-detail .block-plan-tab .tab-links a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #708E8E;
}
.section-plan-detail .block-plan-detail {
  margin-top: 50px;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box {
  border-radius: 4px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}
.section-plan-detail .block-plan-detail .editor-detail-div .box.remove-box {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box.remove-box .detail {
  text-align: center;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box.remove-box .detail img {
  margin: 0 auto;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .title h3 {
  font-size: 36px;
  color: #2D465E;
  font-weight: 600;
  line-height: 1.3;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail {
  margin-top: 50px;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail img {
  max-width: 100%;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail big {
  font-size: larger;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail strong {
  font-weight: 700;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail em {
  font-style: italic;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail h4 {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail h5 {
  display: block;
  font-size: 0.83em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail h6 {
  display: block;
  font-size: 0.67em;
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}
.section-plan-detail .block-plan-detail .editor-detail-div .box .detail ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}
.section-plan-detail .block-search {
  margin: 30px 0;
}
.list-download .item {
  border-bottom: 1px solid #708E8E;
  padding: 20px;
}
.list-download .item a {
  display: block;
}
.list-download .item a:hover {
  opacity: 0.5;
}
.list-download .item .two-cols {
  display: flex;
  flex-wrap: wrap;
}
.list-download .item .two-cols .col01 {
  width: 60px;
}
.list-download .item .two-cols .col02 {
  width: calc(100% - 60px);
}
.list-download .item .two-cols .col02 .desc {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.list-download .item .two-cols .col02 .datetime {
  font-size: 13px;
  color: #708E8E;
}
.list-download .item .two-cols .col02 .sub-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.list-download .item .two-cols .col02 .sub-cols .sub-col01 {
  width: calc(100% - 280px);
}
.list-download .item .two-cols .col02 .sub-cols .sub-col02 {
  width: 280px;
}
.list-download .item .two-cols .col02 .sub-cols .sub-col02 .download-list {
  display: flex;
  flex-wrap: wrap;
}
.list-download .item .two-cols .col02 .sub-cols .sub-col02 .download-list a {
  font-size: 13px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  padding-right: 10px;
  margin: 0 5px;
  line-height: 1;
}
.list-download .item .two-cols .col02 .sub-cols .sub-col02 .download-list a img {
  margin-left: -1px;
  margin-right: 5px;
}
.list-download .item .two-cols .col02 .sub-cols .sub-col02 .download-list a.red-download {
  color: #BF2626;
  border: 1px solid #BF2626;
}
.list-download .item .two-cols .col02 .sub-cols .sub-col02 .download-list a.blue-download {
  color: #1D56B9;
  border: 1px solid #1D56B9;
}
.list-download .item .two-cols .col02 .sub-cols .sub-col02 .download-list a.gray-download {
  color: #708E8E;
  border: 1px solid #708E8E;
}
.list-download.list-related-links .item {
  padding-top: 8px;
  padding-bottom: 8px;
}
.list-download.list-related-links .item .two-cols {
  align-items: center;
}
.list-download.list-related-links .item .two-cols .col01 {
  width: 180px;
  display: inline-flex;
}
.list-download.list-related-links .item .two-cols .col01 img {
  max-width: 160px;
}
.list-download.list-related-links .item .two-cols .col02 {
  width: calc(100% - 180px);
}
.list-download.list-related-links .item .two-cols .col02 .link {
  font-size: 13px;
  color: #708E8E;
  word-break: break-all;
}
.list-download.list-related-links .item .two-cols .col02 .link a {
  color: #708E8E;
}

.list-img-info.three-items {
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}
.list-img-info.three-items .item {
  width: calc(33.3333333333% - 40px);
  border-bottom: none;
  padding: 20px;
}
.list-img-info.three-items .item .box {
  background-color: #fff;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.list-img-info.three-items .item .box .img img {
  width: 100%;
}
.list-img-info.three-items .item .box .info {
  padding: 10px 20px;
  line-height: 1.4;
}
.list-img-info.three-items .item .box .info .desc {
  color: #2d465e;
  font-size: 22px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 62px;
}
.list-img-info.three-items .item .box .info .datetime {
  color: #2d465e;
  font-size: 16px;
}
.list-img-info.three-items .item .box:hover {
  opacity: 0.5;
}

.section-special-list .block-search.block-fixed-margin {
  padding-bottom: 20px;
}

.section-special-detail {
  background-color: #ECF0F1;
  padding: 50px 0;
}
.section-special-detail .block-special-detail .editor-detail-div .box {
  border-radius: 4px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}
.section-special-detail .block-special-detail .editor-detail-div .box .title h3 {
  font-size: 36px;
  color: #2D465E;
  font-weight: 600;
  line-height: 1.3;
}
.section-special-detail .block-special-detail .editor-detail-div .box .video + .detail {
  margin-top: 30px;
}
.section-special-detail .block-special-detail .editor-detail-div .box .video {
  margin-top: 30px;
}
.section-special-detail .block-special-detail .editor-detail-div .box .video iframe {
  width: 100%;
  height: 640px;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail {
  margin-top: 50px;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail img {
  max-width: 100%;
  max-height: -moz-max-content;
  max-height: max-content;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail big {
  font-size: larger;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail strong {
  font-weight: 700;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail em {
  font-style: italic;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail h4 {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail h5 {
  display: block;
  font-size: 0.83em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail h6 {
  display: block;
  font-size: 0.67em;
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}
.section-special-detail .block-special-detail .editor-detail-div .box .detail ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

.section-related-links-list {
  background-color: #ECF0F1;
}

@media all and (max-width: 1366px) {
  .section-home .block-title {
    font-size: 36px;
  }
  .section-home .news-tab-list .tab-links a {
    font-size: 24px;
  }
  .section-home .news-tab-list .tab-content .list-items .item a {
    font-size: 20px;
  }
  .section-home .more a {
    font-size: 20px;
  }
  .videos-list .list-items .item .box .info .datetime {
    font-size: 14px;
  }
  .videos-list .list-items .item .box .info h3 {
    font-size: 18px;
    min-height: 52px;
  }
  .section-banner .block-outer .info h2 {
    font-size: 30px;
  }
  .back-div a {
    font-size: 20px;
  }
  .list-img-info.three-items .item .box .info .datetime {
    font-size: 14px;
  }
  .list-img-info.three-items .item .box .info .desc {
    font-size: 18px;
    min-height: 53px;
  }
}
@media all and (max-width: 1240px) {
  .section-banner .block-outer .info {
    width: calc(100% - 40px);
    left: 20px;
  }
  .videos-list .list-items .item .box .video-img span img {
    height: 18vw;
  }
}
@media all and (max-width: 1024px) {
  .block-search.block-only-search .box {
    padding-left: 15px;
    padding-right: 15px;
  }
  .block-search .box {
    padding: 15px;
  }
  .block-search .box .dropdown-select-div button {
    padding: 8px 10px;
  }
  .block-search .box .dropdown-select-div button span {
    font-size: 14px;
  }
  .block-search .box .dropdown-select-div .select-div .item {
    font-size: 14px;
    padding: 5px 10px;
  }
  .block-search .box .search-div {
    padding: 6px 10px;
  }
  .block-search .box .search-div input {
    font-size: 14px;
  }
  .block-search.block-fixed-margin {
    margin-top: -10px;
    padding-bottom: 10px;
  }
  .section-news-list .block-search.block-fixed-margin + .block-news-active {
    margin-top: 30px;
  }
  .section-special-detail .block-special-detail .editor-detail-div .box {
    padding: 15px;
  }
}
@media all and (max-width: 992px) {
  .list-download .item .two-cols .col02 .sub-cols {
    display: block;
  }
  .list-download .item .two-cols .col02 .sub-cols .sub-col01 {
    width: 100%;
  }
  .list-download .item .two-cols .col02 .sub-cols .sub-col02 {
    width: 100%;
    margin-top: 10px;
  }
  .list-download .item .two-cols .col02 .sub-cols .sub-col02 .download-list a:nth-child(1) {
    margin-left: 0;
  }
}
@media all and (max-width: 820px) {
  .section-home .block-02 {
    padding: 50px 0;
  }
  .videos-list .list-items .item .box .info .datetime {
    font-size: 13px;
  }
  .videos-list .list-items .item .box .info h3 {
    font-size: 16px;
    min-height: 48px;
  }
  .section-banner .block-outer .info h2 {
    font-size: 24px;
  }
  .section-news-detail .block-news-detail .editor-detail-div .box {
    padding: 20px;
  }
  .section-news-detail .block-news-detail .editor-detail-div .box .title h3 {
    font-size: 24px;
    line-height: 1.3;
  }
  .section-news-detail .block-news-detail .editor-detail-div .box .detail {
    margin-top: 30px;
  }
  .section-news-detail .block-news-detail .editor-detail-div .box .datetime {
    font-size: 18px;
  }
  .section-plan-detail .block-plan-tab .tab-links {
    justify-content: center;
  }
  .section-plan-detail .block-plan-tab .tab-links a {
    font-size: 14px;
    width: 25%;
    padding: 10px 0;
  }
  .section-plan-detail .block-plan-detail .editor-detail-div .box {
    padding: 20px;
  }
  .section-plan-detail .block-plan-detail .editor-detail-div .box.remove-box {
    padding: 0;
  }
  .section-plan-detail .block-plan-detail .editor-detail-div .box.remove-box .detail {
    margin-top: 0;
  }
  .section-plan-detail .block-plan-detail .editor-detail-div .box .title h3 {
    font-size: 24px;
  }
  .section-plan-detail .block-plan-detail .editor-detail-div .box .detail {
    margin-top: 30px;
  }
  .list-download.list-related-links .item {
    padding-left: 0;
    padding-right: 0;
  }
  .list-download.list-related-links .item .two-cols .col01 img {
    height: auto;
  }
  .list-download .item .two-cols .col01 {
    width: 40px;
  }
  .list-download .item .two-cols .col01 img {
    height: 32px;
    margin-top: 8px;
  }
  .list-download .item .two-cols .col02 {
    width: calc(100% - 40px);
  }
  .list-download .item .two-cols .col02 .desc {
    font-size: 16px;
  }
  .section-special-detail .block-special-detail .editor-detail-div .box .title h3 {
    font-size: 24px;
  }
  .section-special-detail .block-special-detail .editor-detail-div .box .detail {
    margin-top: 30px;
  }
  .section-special-detail .block-special-detail .editor-detail-div .box .video iframe {
    height: 55vw;
  }
}
@media all and (max-width: 750px) {
  .section-home .block-title {
    font-size: 28px;
  }
  .section-home .case-list .list-items .item .box a .info .desc p {
    margin-top: 8px;
  }
  .section-home .case-list .list-items .item .box a .info .datetime {
    padding: 10px 5px 5px 5px;
    margin-top: 10px;
  }
  .videos-list .list-items {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .videos-list .list-items .item {
    width: 100%;
    margin: 20px 0;
  }
  .videos-list .list-items .item .box .video-img span img {
    height: 55vw;
  }
  .section-home .case-list .list-items {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  .section-home .case-list .list-items .item {
    margin: 20px 0;
    width: 100%;
  }
  .section-home .news-tab-list .tab-links a {
    font-size: 20px;
  }
  .section-home .news-tab-list .tab-content .list-items .item a {
    font-size: 16px;
    padding: 8px 0;
  }
  .block-search .box {
    padding: 10px;
  }
  .block-search.block-only-search .box {
    padding-left: 10px;
    padding-right: 10px;
  }
  .news-active-div .hot-div .box a {
    display: block;
  }
  .news-active-div .hot-div .box a .img {
    width: 100%;
    height: 55vw;
  }
  .news-active-div .hot-div .box a .info {
    width: calc(100% - 20px);
  }
  .news-active-div .hot-div .box a .info .desc p {
    font-size: 14px;
  }
  .news-active-div .list-items .item a {
    padding: 15px 0;
  }
  .news-active-div .list-items .item a .info h3 {
    font-size: 16px;
  }
  .news-active-div .list-items .item a .info p {
    font-size: 14px;
  }
  .pagination-div a {
    min-width: 36px;
    min-height: 36px;
  }
  .list-img-info.three-items {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  .list-img-info.three-items .item {
    padding: 20px 0;
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .section-plan-detail .block-plan-tab .tab-links a {
    width: auto;
    margin: 0 8px;
  }
  .back-div a {
    font-size: 16px;
  }
  .more a {
    font-size: 16px;
  }
  .list-download .item {
    padding-left: 0;
    padding-right: 0;
  }
  .list-download.list-related-links .item .two-cols {
    display: block;
  }
  .list-download.list-related-links .item .two-cols .col01 {
    width: 100%;
  }
  .list-download.list-related-links .item .two-cols .col01 img {
    max-width: 80%;
  }
  .list-download.list-related-links .item .two-cols .col02 {
    width: 100%;
    margin-top: 0px;
  }
}/*# sourceMappingURL=main.css.map */