.home {
  display: block;
  width: 100%;
  background-color: #ffffff;
  min-height: calc(100vh - 250px); }
  .home .home_banner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    background-color: #008000;
    padding: 50px 0; }
    @media (max-width: 768px) {
      .home .home_banner {
        flex-wrap: wrap; } }
    .home .home_banner .home_logo {
      display: block;
      width: 40%; }
      @media (max-width: 768px) {
        .home .home_banner .home_logo {
          width: 100%; } }
      .home .home_banner .home_logo img {
        display: block;
        width: 90%;
        max-width: 300px;
        margin: auto; }
    .home .home_banner .home_bannerRight {
      display: block;
      width: 60%; }
      @media (max-width: 768px) {
        .home .home_banner .home_bannerRight {
          width: 100%;
          text-align: center;
          margin-top: 30px; } }
      .home .home_banner .home_bannerRight h1 {
        color: #ffffff;
        font-size: 80px;
        font-weight: 700;
        margin: 0;
        padding: 0; }
        @media (max-width: 768px) {
          .home .home_banner .home_bannerRight h1 {
            font-size: 30px; } }
      .home .home_banner .home_bannerRight h3 {
        color: #ffffff;
        font-size: 19px;
        font-weight: 500; }
      .home .home_banner .home_bannerRight a {
        color: #000000;
        font-size: 19px;
        font-weight: 500;
        background-color: #e5ff00;
        text-decoration: none;
        border: 1px solid #000000;
        border-radius: 4px;
        padding: 4px 20px;
        cursor: pointer;
        transition-duration: 0.3s; }
        .home .home_banner .home_bannerRight a:hover {
          color: #ffffff;
          background-color: #800080;
          transition-duration: 0.3s; }
  .home .home_centralSection {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: auto; }
    .home .home_centralSection p {
      display: block;
      color: #000000;
      font-size: 19px;
      font-weight: 500; }
    .home .home_centralSection ul {
      display: block;
      width: 100%; }
      .home .home_centralSection ul li {
        color: #000000;
        font-size: 16px;
        font-weight: 600; }
  .home .home_bottom {
    display: block;
    width: 100%; }
    .home .home_bottom img {
      display: block;
      width: 90%;
      max-width: 500px;
      margin: auto; }
    .home .home_bottom a {
      display: block;
      width: fit-content;
      color: #ffffff;
      font-size: 19px;
      font-weight: 500;
      background-color: #008000;
      text-decoration: none;
      border: 1px solid #000000;
      border-radius: 4px;
      padding: 4px 20px;
      cursor: pointer;
      margin: 20px auto;
      transition-duration: 0.3s; }
      .home .home_bottom a:hover {
        color: #000000;
        background-color: #e5ff00;
        transition-duration: 0.3s; }
      @media (max-width: 576px) {
        .home .home_bottom a {
          font-size: 16px; } }
