.light-primay-btn {
  background-color: #82bf84;
  color: #fff;
}

.mitsui-nav-link {
  color: #487c58 !important;
  font-weight: bold !important;
  position: relative;
  font-size: large !important;
}

#change_password:hover {
  color: #1b4827;
  cursor: pointer;
}

.change_password_title {
  color: #1b4827;
}

.btn-green {
  background: #82bf84 !important;
  color: #fff !important;
  border: 0px !important;
}

.btn-green:hover {
  background: #67a67a !important;
  color: #fff !important;
}

.dropdown-toggle::after {
  display: none !important;
}

.menu-icon {
  font-size: 9pt;
  font-weight: bold;
  padding-left: 5px;
}

.mitsui-dropdown-menu {
  list-style: none;
  text-align: center;
  border: solid #487c58;
  padding: 0;
  transform: translateY(10px) translateX(-20%);
  background-color: white;
  position: absolute;
  display: none;
  z-index: 999;
}
.mitsui-dropdown-menu .block {
  position: relative;
}
.mitsui-dropdown-menu a {
  text-decoration: none;
  color: #487c58;
  cursor: pointer;
}
.mitsui-dropdown-menu a:hover {
  color: #82bf84;
}
.mitsui-dropdown-menu .mitsui-dropdown-item {
  display: flex;
}
.mitsui-dropdown-menu .mitsui-dropdown-item span {
  margin: auto;
}
.mitsui-dropdown-menu .mitsui-dropdown-main-type-label {
  line-height: 3.5rem;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  position: relative;
}
.mitsui-dropdown-menu .mitsui-dropdown-main-type-label span {
  margin: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
.mitsui-dropdown-menu .mitsui-dropdown-main-type-label::before {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #82bf84;
  position: absolute;
  top: 0;
}
.mitsui-dropdown-menu .mitsui-dropdown-main-type-label:not(.no-bottom-border):after {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #82bf84;
  position: absolute;
  bottom: 0;
}
.mitsui-dropdown-menu .mitsui-dropdown-child-type {
  list-style: none;
  padding: 0;
  line-height: 2.5rem;
}
.mitsui-dropdown-menu.show {
  display: block;
}

.mitsui-badge {
  background-color: #487c58;
  color: #fff;
}

.menu-btn {
  background-color: #487c58 !important;
  color: #fff !important;
  border-radius: unset !important;
  padding: 5rem;
}

.dropdown-menu.show {
  left: unset !important;
  right: 0.5%;
}

.banner-bottom {
  transform: translateY(-10px);
  height: 15vh;
  background-color: #82bf84;
  position: relative;
}
.banner-bottom .half-moon-area {
  width: 100%;
  background-color: white;
  position: absolute;
  height: inherit;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  transform: translateY(10%);
}

.banner {
  width: 100%;
  background-color: #82bf84;
  position: relative;
  overflow: hidden;
}
.banner .banner-title {
  text-align: center;
  padding-top: 1.6%;
  margin-bottom: 1.1%;
  color: white;
}
.banner .banner-title .main-title {
  font-size: 36pt;
  margin-bottom: -0.8rem;
}
.banner .img-carousel {
  width: 100%;
  height: 100%;
  max-width: 75vw;
  max-height: 42.1875vw;
  display: flex;
  margin: auto;
  position: relative;
  justify-content: center;
}
.banner .img-carousel .media-box {
  border-top-left-radius: 15% 20%;
  border-bottom-right-radius: 15% 20%;
  max-width: 75vw;
  max-height: 42.1875vw;
  overflow: hidden;
  position: absolute;
  display: none;
}
.banner .img-carousel .media-box iframe {
  width: 75vw;
  height: 42.1875vw;
}
.banner .img-carousel .media-box img {
  width: 75vw;
  height: 42.1875vw;
}
.banner .img-carousel .media-box video {
  width: 75vw;
  height: 42.1875vw;
}
.banner .img-carousel .media-box.active {
  display: block;
}
.banner .img-carousel .media-box.end {
  -webkit-animation: fadeOut 1s linear forwards;
          animation: fadeOut 1s linear forwards;
}
.banner .img-carousel .media-box.start {
  -webkit-animation: fadeIn 1s linear forwards;
          animation: fadeIn 1s linear forwards;
}
.banner .img-carousel .img-index {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  bottom: 0.4rem;
  text-align: center;
  width: 100%;
}
.banner .img-carousel .img-index .dot {
  height: 10px;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.5607843137);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.banner .img-carousel .img-index .dot.active {
  height: 13px;
  width: 13px;
  background-color: #82bf84;
  transform: translate(-5%, 10%);
}
.banner .img-carousel .img-box {
  display: none;
}
.banner .img-carousel .img-box.active {
  display: block;
}
.banner .img-carousel .img-box.end {
  -webkit-animation: fadeOut 1s linear forwards;
          animation: fadeOut 1s linear forwards;
}
.banner .img-carousel .img-box.start {
  -webkit-animation: fadeIn 1s linear forwards;
          animation: fadeIn 1s linear forwards;
  position: absolute;
  top: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes slide-bottom-to-top {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slide-bottom-to-top {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide-top-to-bottom {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
    display: none;
  }
}
@keyframes slide-top-to-bottom {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
    display: none;
  }
}
.center-area {
  height: 45vh;
}
.center-area .quarterly_highlight {
  margin-bottom: 5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 30vh;
}
.center-area .quarterly_highlight .quarterly_slogan {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #4B7D5C;
  margin-bottom: 1rem;
  margin-top: 2.2rem;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80vw;
}
.center-area .quarterly_highlight .quarterly_summary {
  line-height: 2rem;
  font-size: 18px;
  letter-spacing: 0.1rem;
  word-break: break-all;
  width: 50%;
  margin: auto;
}

.detail {
  text-align: center;
  color: #487c58;
  border: solid 1px #487c58;
  border-radius: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  margin: auto;
  margin-top: 1rem;
  font-size: xx-small;
  cursor: pointer;
}
.detail:hover {
  background-color: rgba(72, 124, 88, 0.7294117647);
  border: solid 1px rgba(72, 124, 88, 0.7294117647);
  color: #fff;
}

.main-content {
  width: 100%;
  min-height: 150vh;
  background-color: #d6e4d7;
  background-image: url(/image/index_main_content.png), url(/image/index_main_content_repeat.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat, repeat;
  background-position-y: inherit;
  display: flex;
  overflow-x: hidden;
}
.main-content .content {
  margin: auto;
  padding-bottom: 25vh;
  display: inline-grid;
  position: relative;
  margin-top: 0;
}
.main-content .content .select-row {
  display: inline-flex;
}
.main-content .content .select-row .mitsui-dropdown {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main-content .content .select-row .mitsui-dropdown .btn {
  padding-left: 1.2rem;
  padding-top: 0.5rem;
  padding-right: 1.2rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
  font-size: 24px;
}
.main-content .content .artical-area {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  min-width: 100vw;
}
.main-content .content .artical-area .artical-box {
  background-image: url("/image/leaf.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 30vh;
  width: 25vw;
  position: relative;
  display: flex;
  justify-content: center;
}
.main-content .content .artical-area .artical-box .tag {
  position: absolute;
  background-color: #487c58;
  padding: 0.25rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  font-size: 14px;
  color: #ececec;
}
.main-content .content .artical-area .artical-box .title {
  margin: auto;
  text-overflow: ellipsis;
  word-wrap: break-word;
  max-width: 18ch;
  color: white;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
}
.main-content .content .artical-area .artical-box .detail {
  bottom: 9vh;
  text-align: center;
  color: #487c58;
  border: solid 1px #487c58;
  border-radius: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  margin: auto;
  margin-top: 1rem;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  justify-content: center;
}
.main-content .content .artical-area .artical-box .detail:hover {
  background-color: rgba(72, 124, 88, 0.7294117647);
  border: solid 1px rgba(72, 124, 88, 0.7294117647);
  color: #fff;
}

footer {
  width: 100%;
  background-color: #82bf84;
  color: #fff;
  min-height: 10vh;
  display: flex;
  flex-direction: column;
}
footer span {
  margin: auto;
}

.back-to-top {
  background-color: #d6e4d7;
  color: #fff;
  width: 100%;
  cursor: pointer;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;
}
.back-to-top img {
  max-width: 15%;
}

@media screen and (max-width: 426px) {
  .banner {
    height: 284px;
    overflow: unset;
  }
  .banner .banner-title .main-title {
    font-size: xx-large;
  }
  .banner .banner-title small {
    font-size: xx-small;
  }
  .banner .img-carousel {
    max-width: 85vw;
    max-height: 47.8125vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 85vw;
    max-height: 47.8125vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 85vw;
    height: 47.8125vw;
  }
  .banner .img-carousel .media-box img {
    width: 85vw;
    height: 47.8125vw;
  }
  .banner .img-carousel .media-box video {
    width: 85vw;
    height: 47.8125vw;
  }
  .mitsui-dropdown-menu .mitsui-dropdown-main-type-label span {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-brand img {
    max-height: 1.8vh !important;
  }
  .mitsui-nav-link {
    color: #487c58 !important;
    font-weight: bold !important;
    position: relative;
    font-size: 9px !important;
    line-height: 30px !important;
  }
  .main-content {
    background-image: url(/image/index_main_content_phone.png), url(/image/index_main_content_phone_repeat.png);
    background-position: center;
    background-size: cover, contain;
    background-repeat: no-repeat, repeat;
    background-position-y: inherit;
  }
  .main-content .content .select-row {
    position: relative;
    z-index: 99999;
    bottom: 0;
    width: 100%;
  }
  .main-content .content .select-row .mitsui-dropdown {
    margin-left: unset;
    margin-right: unset;
    flex-grow: 0.34;
  }
  .main-content .content .select-row .mitsui-dropdown .btn {
    width: 100%;
    padding-left: unset;
    padding-right: unset;
    font-size: 14px;
  }
  .main-content .content .select-row .mitsui-dropdown .mitsui-dropdown-menu {
    width: 100%;
  }
  .main-content .content .select-row .mitsui-dropdown .mitsui-dropdown-menu.show {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    transform: unset;
    z-index: 999;
    -webkit-animation: slide-bottom-to-top 0.25s linear forwards;
            animation: slide-bottom-to-top 0.25s linear forwards;
  }
  .main-content .content .select-row .mitsui-dropdown .mitsui-dropdown-menu.reverse.show {
    position: unset;
  }
  .main-content .content .select-row.fixed {
    position: fixed;
  }
  .main-content .content .artical-area {
    max-width: 100vw;
    min-width: 100vw;
    justify-content: unset;
  }
  .main-content .content .artical-area .artical-box {
    width: 83vw;
    margin: auto;
    margin-bottom: 2.5rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: small;
    left: 8%;
    top: 22%;
  }
  .main-content .content .artical-area .artical-box .title {
    font-size: 14px;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 25%;
    font-size: 10px !important;
  }
  footer {
    min-height: 25vh;
  }
  footer .back-to-top img {
    max-width: 100%;
  }
  #search-form {
    position: absolute;
    right: 0%;
    top: 100%;
    z-index: 99;
  }
  .center-area .quarterly_highlight .quarterly_summary {
    width: 75%;
  }
  .center-area {
    height: 40vh;
  }
  .center-area .quarterly_slogan {
    font-size: 13pt !important;
    letter-spacing: 0.1rem !important;
    margin-bottom: 0.5rem !important;
    margin-top: 1rem !important;
    max-width: 90vw !important;
  }
  .center-area .quarterly_summary {
    width: 90% !important;
    line-height: 1.5rem !important;
    font-size: 0.8rem !important;
  }
}
@media screen and (min-width: 426px) and (max-width: 576px) {
  .banner {
    height: 384px;
    overflow: unset;
  }
  .banner .banner-title .main-title {
    font-size: xx-large;
  }
  .banner .banner-title small {
    font-size: xx-small;
  }
  .banner .img-carousel {
    max-width: 85vw;
    max-height: 47.8125vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 85vw;
    max-height: 47.8125vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 85vw;
    height: 47.8125vw;
  }
  .banner .img-carousel .media-box img {
    width: 85vw;
    height: 47.8125vw;
  }
  .banner .img-carousel .media-box video {
    width: 85vw;
    height: 47.8125vw;
  }
  .mitsui-dropdown-menu .mitsui-dropdown-main-type-label span {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-brand img {
    max-height: 2.5vh !important;
  }
  .mitsui-nav-link {
    color: #487c58 !important;
    font-weight: bold !important;
    position: relative;
    font-size: 12px !important;
    line-height: 30px !important;
  }
  .main-content {
    background-image: url(/image/index_main_content_phone.png), url(/image/index_main_content_phone_repeat.png);
    background-position: center;
    background-size: cover, contain;
    background-repeat: no-repeat, repeat;
    background-position-y: inherit;
  }
  .main-content .content .select-row {
    position: relative;
    z-index: 99999;
    bottom: 0;
    width: 100%;
  }
  .main-content .content .select-row .mitsui-dropdown {
    margin-left: unset;
    margin-right: unset;
    flex-grow: 0.34;
  }
  .main-content .content .select-row .mitsui-dropdown .btn {
    width: 100%;
    padding-left: unset;
    padding-right: unset;
    font-size: 20px;
  }
  .main-content .content .select-row .mitsui-dropdown .mitsui-dropdown-menu {
    width: 100%;
  }
  .main-content .content .select-row .mitsui-dropdown .mitsui-dropdown-menu.show {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    transform: unset;
    z-index: 999;
    -webkit-animation: slide-bottom-to-top 0.25s linear forwards;
            animation: slide-bottom-to-top 0.25s linear forwards;
  }
  .main-content .content .select-row .mitsui-dropdown .mitsui-dropdown-menu.reverse.show {
    position: unset;
  }
  .main-content .content .select-row.fixed {
    position: fixed;
  }
  .main-content .content .artical-area {
    max-width: 100vw;
    min-width: 100vw;
    justify-content: unset;
  }
  .main-content .content .artical-area .artical-box {
    width: 72vw;
    margin: auto;
    margin-bottom: 2.5rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: large;
    left: 8%;
    top: 18%;
  }
  .main-content .content .artical-area .artical-box .title {
    font-size: 20px;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 25%;
    font-size: 10px !important;
  }
  footer {
    min-height: 25vh;
  }
  footer .back-to-top img {
    max-width: 50%;
  }
  #search-form {
    position: absolute;
    right: 0%;
    top: 100%;
    z-index: 99;
  }
  .center-area .quarterly_highlight .quarterly_summary {
    width: 75%;
  }
  .center-area {
    height: 60vh;
  }
}
@media screen and (min-width: 576px) and (max-width: 760px) {
  .banner {
    height: 475px;
  }
  .banner .banner-title .main-title {
    font-size: xx-large;
  }
  .banner .banner-title small {
    font-size: xx-small;
  }
  .banner .img-carousel {
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box img {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box video {
    width: 75vw;
    height: 42.1875vw;
  }
  .main-content {
    background-image: url(/image/index_main_content_phone.png), url(/image/index_main_content_phone_repeat.png);
    background-position: center;
    background-size: cover, contain;
    background-repeat: no-repeat, repeat;
    background-position-y: inherit;
  }
  .main-content .content .artical-area {
    max-width: 100vw;
    min-width: 100vw;
  }
  .main-content .content .artical-area .artical-box {
    width: 72vw;
    margin: 1rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: large;
    left: 18%;
    top: 18%;
  }
  .main-content .content .artical-area .artical-box .title {
    font-size: 22px;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 25%;
    font-size: 10px !important;
  }
  .center-area .quarterly_highlight .quarterly_summary {
    width: 75%;
  }
  .mitsui-nav-link {
    color: #487c58 !important;
    font-weight: bold !important;
    position: relative;
    font-size: small !important;
  }
  .center-area {
    height: 75vh;
    margin-top: 4rem;
  }
  .center-area .quarterly_slogan {
    font-size: 24pt !important;
    margin-bottom: 0.3rem !important;
    margin-top: 2.1rem !important;
  }
  .center-area .quarterly_summary {
    width: 70% !important;
    line-height: 2.4rem !important;
    font-size: 1rem !important;
  }
  footer .back-to-top img {
    max-width: 50%;
  }
}
@media screen and (min-width: 760px) and (max-width: 992px) {
  .banner {
    height: 675px;
  }
  .banner .img-carousel {
    max-width: 70vw;
    max-height: 39.375vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 70vw;
    max-height: 39.375vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 70vw;
    height: 39.375vw;
  }
  .banner .img-carousel .media-box img {
    width: 70vw;
    height: 39.375vw;
  }
  .banner .img-carousel .media-box video {
    width: 70vw;
    height: 39.375vw;
  }
  .main-content .content .artical-area {
    max-width: 85vw;
    min-width: 85vw;
  }
  .main-content .content .artical-area .artical-box {
    width: 34vw;
    margin: 1.5rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: medium;
    left: 8%;
    top: 25%;
  }
  .main-content .content .artical-area .artical-box .title {
    font-size: 18px;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 25%;
    font-size: 14px !important;
  }
  .main-content .content .select-row {
    width: 75%;
    margin: auto;
  }
  .mitsui-nav-link {
    color: #487c58 !important;
    font-weight: bold !important;
    position: relative;
    font-size: medium !important;
  }
  .center-area {
    height: 29vh;
    margin-top: -2.5rem !important;
  }
  .center-area .quarterly_slogan {
    font-size: 16pt !important;
    margin-bottom: 0.3rem !important;
    margin-top: 2.1rem !important;
  }
  .center-area .quarterly_summary {
    width: 90% !important;
    line-height: 1.5rem !important;
    font-size: 0.8rem !important;
  }
  footer {
    min-height: 25vh;
  }
  footer .back-to-top img {
    max-width: 25%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1350px) {
  .banner {
    height: 675px;
  }
  .banner .img-carousel {
    max-width: 70vw;
    max-height: 39.375vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 70vw;
    max-height: 39.375vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 70vw;
    height: 39.375vw;
  }
  .banner .img-carousel .media-box img {
    width: 70vw;
    height: 39.375vw;
  }
  .banner .img-carousel .media-box video {
    width: 70vw;
    height: 39.375vw;
  }
  .main-content .content .artical-area {
    max-width: 75vw;
    min-width: 75vw;
  }
  .main-content .content .artical-area .artical-box {
    width: 20vw;
    margin: 1.5rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: 14px;
    left: 2.2vw;
    top: 5vw;
  }
  .main-content .content .artical-area .artical-box .title {
    font-size: 16px;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 25%;
    font-size: 8px !important;
  }
  .main-content .content .select-row {
    width: 70%;
    margin: auto;
  }
  .mitsui-nav-link {
    color: #487c58 !important;
    font-weight: bold !important;
    position: relative;
    font-size: large !important;
  }
  .center-area {
    height: 35vh;
    margin-top: -2.5rem;
  }
  .center-area .quarterly_slogan {
    font-size: 40px !important;
    margin-bottom: 0.4rem !important;
    margin-top: 2.2rem !important;
  }
  .center-area .quarterly_summary {
    width: 75% !important;
    line-height: 1.8rem !important;
    font-size: 18px !important;
  }
}
@media screen and (min-width: 1350px) and (max-width: 1669px) {
  .banner {
    height: 843.75px;
  }
  .banner .img-carousel {
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box img {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box video {
    width: 75vw;
    height: 42.1875vw;
  }
  .main-content .content .artical-area {
    max-width: 75vw;
    min-width: 75vw;
  }
  .main-content .content .artical-area .artical-box {
    width: 20vw;
    margin: 1.5rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: 14px;
    left: 2.2vw;
    top: 4vw;
  }
  .main-content .content .artical-area .artical-box .title {
    font-size: 18px;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 25%;
    font-size: 8px !important;
  }
  .main-content .content .select-row {
    width: 50%;
    margin: auto;
  }
  .center-area {
    height: 45vh;
    margin-top: -2.5rem;
  }
}
@media screen and (min-width: 1669px) and (max-width: 2200px) {
  .banner {
    height: 1112.6666666667px;
  }
  .banner .img-carousel {
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box img {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box video {
    width: 75vw;
    height: 42.1875vw;
  }
  .main-content .content .artical-area {
    max-width: 75vw;
    min-width: 75vw;
  }
  .main-content .content .artical-area .artical-box {
    width: 22vw;
    margin: 1.5rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: 14px;
    left: 2.2vw;
    top: 3.34vw;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 23%;
  }
  .main-content .content .select-row {
    width: 50%;
    margin: auto;
  }
  .center-area {
    height: 50vh;
  }
}
@media screen and (min-width: 2200px) {
  .banner {
    height: 1466.6666666667px;
  }
  .banner .banner-title .main-title {
    font-size: 90px;
    margin-bottom: -0.8rem;
  }
  .banner .banner-title .sub-title {
    font-size: 30px;
  }
  .banner .img-carousel {
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box {
    border-top-left-radius: 15% 20%;
    border-bottom-right-radius: 15% 20%;
    max-width: 75vw;
    max-height: 42.1875vw;
  }
  .banner .img-carousel .media-box iframe {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box img {
    width: 75vw;
    height: 42.1875vw;
  }
  .banner .img-carousel .media-box video {
    width: 75vw;
    height: 42.1875vw;
  }
  .main-content .content .artical-area {
    max-width: 75vw;
    min-width: 75vw;
    min-height: unset;
  }
  .main-content .content .artical-area .artical-box {
    width: 22vw;
    margin: 1.5rem;
  }
  .main-content .content .artical-area .artical-box .tag {
    font-size: 14px;
    left: 2.2vw;
    top: 5vw;
  }
  .main-content .content .artical-area .artical-box .detail {
    bottom: 23%;
  }
  .main-content .content .select-row {
    width: 50%;
    margin: auto;
  }
  .center-area {
    height: 50vh;
  }
}
.artical-desc {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  margin: auto;
  min-width: 26ch;
}
.artical-desc .tag {
  position: relative !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  top: unset !important;
  left: unset !important;
  margin-bottom: 15px;
}
.artical-desc .detail {
  position: relative !important;
  bottom: unset !important;
}

html,
body {
  width: 100%;
  height: 100vh !important;
  background-color: white;
}

.content {
  overflow-x: hidden;
  height: inherit;
}
.content .first-bar {
  background-color: #fff;
  height: 6vh;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.content .first-bar .img-fluid {
  max-width: 17vh;
}
.content .second-bar {
  background-color: #82bf84;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  height: 15vh;
  color: white;
}
.content .second-bar .title {
  font-size: 3.5rem !important;
  margin-bottom: -0.5rem;
}
.content .third-bar {
  height: 65vh;
}
.content .third-bar #login-form {
  width: 23vw !important;
  box-shadow: 0 0 5px white;
  background: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.content .third-bar #login-form .form-title {
  color: #487c58;
  font-size: x-large;
  padding-bottom: 1rem;
}
.content .third-bar #login-form .form-control {
  padding-top: 1.8rem;
  padding-bottom: 1.6rem;
  background: #ececec;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px inset;
}
.content .third-bar #login-form .form-control-position {
  top: 0.5rem !important;
  font-size: 1.3rem;
}
.content .third-bar #login-form .form-label-group ::-webkit-input-placeholder {
  font-size: 1.2rem;
  font-weight: bold;
  top: 1rem !important;
}
.content .login-btn {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.8rem 3.5rem 2rem 3.5rem !important;
}
.content .login-btn:hover {
  color: #ffffff;
  background: #589c5a;
}

@media screen and (max-width: 426px) {
  #pjax-container {
    background: url("/image/login_bg_phone.png");
    background-position: center;
  }
  .content .title {
    font-size: 2.7rem !important;
  }
  .content .third-bar #login-form {
    width: 80vw !important;
  }
}
@media screen and (min-width: 426px) and (max-width: 576px) {
  #pjax-container {
    background: url("/image/login_bg_phone.png");
    background-position: center;
  }
  .content .third-bar #login-form {
    width: 75vw !important;
  }
}
@media screen and (min-width: 576px) and (max-width: 760px) {
  #pjax-container {
    background: url("/image/login_bg_phone.png");
    background-position: center;
  }
  .content .third-bar #login-form {
    width: 75vw !important;
  }
}
@media screen and (min-width: 760px) and (max-width: 992px) {
  #pjax-container {
    background: url("/image/login_bg_phone.png");
    background-position: center;
  }
  .content .third-bar #login-form {
    width: 50vw !important;
  }
}
@media screen and (min-width: 992px) {
  #pjax-container {
    background: url("/image/login_bg.png");
    background-position: center;
  }
}
