﻿@charset "UTF-8";
/* --- import --- top block (logo navi menu search fonts) --- */
@import url("style_menu.css");
/* --- import --- footer block (fastmenu copyright) --- */
@import url("style_footer.css");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body, html {
  margin: 0px;
  padding: 0px; }

.wrapper {
  font-family: "微軟正黑體";
  width: 100%; }
  .wrapper h3 {
    font-weight: 400; }

/* ------------------------------------------ Aminate */
@-webkit-keyframes bannerFadeAminate {
  4% {
    opacity: 1;
    visibility: visible; }
  20% {
    opacity: 1; }
  24% {
    opacity: 0;
    visibility: hidden; } }
@keyframes bannerFadeAminate {
  4% {
    opacity: 1;
    visibility: visible; }
  20% {
    opacity: 1; }
  24% {
    opacity: 0;
    visibility: hidden; } }

/* ------------------------------------------ */
.banner_block {
  width: 1000px;
  height: 350px;
  margin: 0 auto;
  margin-top: 30px; }
  .banner_block .banner {
    width: 600px;
    height: 350px;
    display: inline-block;
    overflow: hidden;
    position: relative; }
    .banner_block .banner .long {
      width: 100%;
      height: auto;
      font-size: 0%; }
      .banner_block .banner .long .imgs {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: 0px;
        left: 0px;
        width: 600px;}

  .banner_block .b_right_block {
    float: right;
    width: 350px;
    height: 350px;
    display: inline-block; }
    .banner_block .b_right_block .infovdo_block {
      position: relative;
      width: 350px;
      height: 210px;
      background-image: url(../images/vdo_img@2x.jpg);
      background-repeat: no-repeat;
      background-size: contain;
      cursor: pointer; }
      .banner_block .b_right_block .infovdo_block:hover .vdo_play {
        width: 90px;
        height: 90px;
        bottom: 25px;
        -webkit-box-shadow: 10px 30px 40px -10px rgba(0, 0, 0, 0.4);
        box-shadow: 10px 30px 40px -10px rgba(0, 0, 0, 0.4); }
      .banner_block .b_right_block .infovdo_block .infotxt_block {
        width: 100%;
        height: 44px;
        background-color: #43B2FF;
        position: absolute;
        bottom: 0px;
        font-size: 112.5%;
        color: #fff;
        padding: 8px; }
      .banner_block .b_right_block .infovdo_block .vdo_play {
        width: 80px;
        height: 80px;
        background-image: url(../images/infovdoplay_icon.svg);
        background-repeat: no-repeat;
        position: absolute;
        right: 15px;
        bottom: 15px;
        border-radius: 50px;
        -webkit-box-shadow: 0px 20px 30px -15px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 20px 30px -15px rgba(0, 0, 0, 0.5);
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s; }
    .banner_block .b_right_block .publish_block {
      margin-top: 20px;
      width: 350px;
      height: 120px;
      background-color: #FF9FAE;
      background-image: url(../images/publish_icon.svg?v=20210125);
      background-repeat: repeat-x;
      background-size: cover;
      background-position: 0px 0px;
      cursor: pointer;
      -webkit-transition-duration: 0.2s;
      -o-transition-duration: 0.2s;
      transition-duration: 0.2s; }
      .banner_block .b_right_block .publish_block:hover {
        background-position: -150px 0px; }

.tab_block {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 50px;
  background-color: #F8FEFF; }
  .tab_block .tabline {
    position: absolute;
    width: 100%;
    height: 8px;
    border-top: solid 8px #93EAFC;
    top: 92px; }
  .tab_block .tabmenubg_block {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 93px;
    background-color: #fff; }
  .tab_block .tabul {
    width: 1000px;
    height: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    margin: 0 auto;
    padding-left: 180px; }
    .tab_block .tabul li {
      display: inline-block;
      width: 150px;
      height: 100px; }
      .tab_block .tabul li input[type="radio"] {
        opacity: 0;
        position: absolute;
        outline: none; }
        .tab_block .tabul li input[type="radio"]:checked ~ label {
          background: #F8FEFF;
          color: #454545;
          border: 8px solid #93EAFC;
          border-bottom: 0;
          width: 150px;
          height: 100px;
          font-size: 112.5%;
          cursor: default; }
        .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist {
          opacity: 1;
          width: 100%;
          height: 400px;
          padding-top: 80px;
          color: #43B2FF;
          letter-spacing: 0px;
          z-index: 1; }
          .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content {
            width: 100%;
            height: 300px; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_image {
              position: absolute;
              width: 270px;
              height: 200px;
              background-image: url(../images/tab_image1.svg);
              background-repeat: no-repeat; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more {
              position: absolute;
              bottom: 50px;
              width: 270px;
              height: 50px;
              border: solid 3px #93EAFC;
              color: #09559d;
              font-size: 125%;
              text-align: center;
              padding-top: 7px;
              cursor: pointer;
              -webkit-transition-duration: 0.2s;
              -o-transition-duration: 0.2s;
              transition-duration: 0.2s; }
              .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more:hover {
                bottom: 45px; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist {
              position: absolute;
              width: 650px;
              height: 350px;
              right: 0px; }
              .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul {
                padding: 0;
                margin: 0;
                list-style: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                -webkit-user-select: text;
                -moz-user-select: text;
                -ms-user-select: text;
                user-select: text;
                color: #454545; }
                .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tab_contentlist {
                  width: 100%;
                  height: auto;
                  padding-left: 10px;
                  margin-bottom: 20px;
                  border-left: solid 3px #000000; }
                  .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tab_contentlist .tab_date {
                    width: 100%;
                    height: auto;
                    color: #3654E3; }
                  .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tab_contentlist .flag {
                    padding-left: 30px;
                    background-image: url(../images/flag_icon.svg);
                    background-repeat: no-repeat;
                    background-size: 18px; }
                  .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tab_contentlist .tab_list_txt {
                    width: 100%;
                    height: auto;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden; }
                    .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tab_contentlist .tab_list_txt a {
                      color: #454545;
                      text-decoration: none; }
                    .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tab_contentlist .tab_list_txt a:hover {
                      color: #43B2FF; }
                .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tab_contentlist:nth-child(5) {
                  margin-bottom: 0px; }
                .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tb_color1 {
                  border-left: solid 3px #93EAFC; }
                .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tb_color2 {
                  border-left: solid 3px #FBE78D; }
                .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tb_color3 {
                  border-left: solid 3px #F4B3DB; }
                .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tb_color4 {
                  border-left: solid 3px #94E0C6; }
                .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist .tabcul .tb_color5 {
                  border-left: solid 3px #ADADFF; }
      .tab_block .tabul li label {
        display: block;
        width: 150px;
        height: 100px;
        color: #454545;
        line-height: 90px;
        text-align: center;
        cursor: pointer;
        font-size: 112.5%; }
        .tab_block .tabul li label:hover {
          border-color: #93EAFC;
          color: #43B2FF; }
      .tab_block .tabul li .sectionlist {
        opacity: 0;
        position: absolute;
        left: 0;
        color: #43B2FF; }

.block_title {
  width: 196px;
  height: 92px;
  margin: 0 auto;
  border-radius: 0 0 50px 50px;
  font-size: 125%;
  text-align: center;
  padding-top: 30px; }

.fastmenu_block {
  width: 100%;
  height: auto;
  border-top: solid 8px #FFEB91;
  background-color: #FFFDF2; }
  .fastmenu_block .fm_title {
    background-color: #FFEB91;
    color: #574700; }
  .fastmenu_block .fm_block {
    width: 1000px;
    height: auto;
    margin: 0 auto;
    padding: 50px 0px 70px 0px; }
    .fastmenu_block .fm_block ul {
      padding: 0;
      margin: 0;
      list-style: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .fastmenu_block .fm_block ul .fm_btn {
        display: inline-block;
        padding: 15px 25px;
        border-radius: 40px;
        border: solid 3px #555555;
        background-color: #a2a2a2;
        margin: 10px 20px;
        color: #454545;
        cursor: pointer;
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s; }
        .fastmenu_block .fm_block ul .fm_btn:hover {
          border-radius: 10px;
          padding: 25px 25px; }
      .fastmenu_block .fm_block ul .fm_btn_color1 {
        border: solid 3px #7A72FF;
        background-color: #e9e7ff; }
      .fastmenu_block .fm_block ul .fm_btn_color2 {
        border: solid 3px #40EA90;
        background-color: #aaf6cd; }
      .fastmenu_block .fm_block ul .fm_btn_color3 {
        border: solid 3px #49b9ff;
        background-color: #bee6ff; }
      .fastmenu_block .fm_block ul .fm_btn_color4 {
        border: solid 3px #ffe819;
        background-color: #fff48e; }
      .fastmenu_block .fm_block ul .fm_btn_color5 {
        border: solid 3px #FF8A53;
        background-color: #ffdac8; }
      .fastmenu_block .fm_block ul .fm_btn_color6 {
        border: solid 3px #EF7C89;
        background-color: #fce5e7; }
      .fastmenu_block .fm_block ul .fm_btn_color7 {
        border: solid 3px #EBB935;
        background-color: #f6dea0; }
      .fastmenu_block .fm_block ul .fm_btn_color8 {
        border: solid 3px #adadad;
        background-color: #e8e8e8; }
      .fastmenu_block .fm_block ul .fm_btn_color9 {
        border: solid 3px #3DCEC8;
        background-color: #9be6e3; }
      .fastmenu_block .fm_block ul .fm_btn_color10 {
        border: solid 3px #4BB0F0;
        background-color: #b7e0f9; }
    .fastmenu_block .fm_block a {
      color: #454545;
      text-decoration: none; }
    .fastmenu_block .fm_block a:hover {
      color: #43B2FF; }

.servicemenu_block {
  width: 100%;
  height: auto;
  border-top: solid 8px #FFB7C2;
  background-color: #FFF7F9; }
  .servicemenu_block .sm_title {
    background-color: #FFB7C2;
    color: #911138; }
  .servicemenu_block .sm_block {
    width: 1000px;
    height: auto;
    margin: 0 auto;
    padding: 50px 0px 70px 0px; }
    .servicemenu_block .sm_block ul {
      padding: 0;
      margin: 0;
      list-style: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .servicemenu_block .sm_block ul .sm_btn {
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        width: 150px;
        height: 150px;
        margin: 10px 5px;
        background-color: #fff;
        -webkit-box-shadow: 0px 20px 80px -20px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 20px 80px -20px rgba(0, 0, 0, 0.3);
        background-repeat: no-repeat;
        background-size: 70px;
        background-position: center 25px;
        color: #454545;
        text-align: center;
        padding-top: 110px;
        cursor: pointer;
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s; }
        .servicemenu_block .sm_block ul .sm_btn:hover {
          background-position: center 15px; }
    .servicemenu_block .sm_block a {
      color: #454545;
      text-decoration: none; }
    .servicemenu_block .sm_block a:hover {
      color: #43B2FF; }

.weblink_block {
  width: 100%;
  height: auto;
  border-top: solid 8px #43EACA;
  background-color: #F7FFFF; }
  .weblink_block .wl_title {
    background-color: #43EACA;
    color: #0B464E; }
  .weblink_block .wl_block {
    width: 1000px;
    height: 470px;
    margin: 0 auto;
    margin-top: 50px;
    position: relative; }
    .weblink_block .wl_block .wl_img {
      position: absolute;
      width: 350px;
      height: 200px;
      border: solid 3px #43EACA;
      background-image: url(../images/weblink_img@2x.jpg);
      background-repeat: no-repeat;
      background-size: 350px; }
    .weblink_block .wl_block .wl_more {
      position: absolute;
      top: 220px;
      width: 350px;
      height: 50px;
      border: solid 3px #43EACA;
      color: #0B464E;
      font-size: 125%;
      text-align: center;
      padding-top: 6px;
      cursor: pointer;
      -webkit-transition-duration: 0.2s;
      -o-transition-duration: 0.2s;
      transition-duration: 0.2s; }
      .weblink_block .wl_block .wl_more:hover {
        top: 225px; }
    .weblink_block .wl_block .wl_list {
      position: absolute;
      right: 0px;
      width: 600px;
      height: 270px; }
      .weblink_block .wl_block .wl_list ul {
        padding: 0;
        margin: 0;
        list-style: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; }
        .weblink_block .wl_block .wl_list ul .wlbtn {
          display: inline-block;
          width: 280px;
          height: 25px;
          margin-right: 10px;
          margin-bottom: 10px;
          padding: 0px 10px;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden; }
          .weblink_block .wl_block .wl_list ul .wlbtn a {
            color: #454545;
            text-decoration: none; }
          .weblink_block .wl_block .wl_list ul .wlbtn a:hover {
            color: #43EACA; }
    .weblink_block .wl_block .wl_rorobanner_block {
      position: absolute;
      bottom: 70px;
      width: 100%;
      height: auto;
      padding: 20px 0px;
      border: solid 3px #43EACA;
      font-size: 0%; }
      .weblink_block .wl_block .wl_rorobanner_block .arrowbtn {
        width: 5%;
        height: 50px;
        background-repeat: no-repeat;
        background-size: 15px;
        background-position: center center; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_left {
        display: inline-block;
        background-image: url(../images/arrow_left.svg);
        cursor: pointer;
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s; }
        .weblink_block .wl_block .wl_rorobanner_block .arrow_left:hover {
          background-position: 10px center; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_right {
        display: inline-block;
        background-image: url(../images/arrow_right.svg);
        cursor: pointer;
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s; }
        .weblink_block .wl_block .wl_rorobanner_block .arrow_right:hover {
          background-position: 25px center; }
      .weblink_block .wl_block .wl_rorobanner_block .roro_block {
        display: inline-block;
        width: 90%;
        height: 50px; }
        .weblink_block .wl_block .wl_rorobanner_block .roro_block ul {
          padding: 0;
          margin: 0;
          list-style: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          .weblink_block .wl_block .wl_rorobanner_block .roro_block ul .rorobtn {
            display: inline-block;
            width: 150px;
            height: 50px;
            margin: 0px 13px;
            background-repeat: no-repeat;
            background-size: 150px; }

/* ------------------------------------------------ @media screen */
@media screen and (max-width: 1000px) {
  .topnavi {
    padding: 10px 10px;
    width: 100%; }
  .top_block {
    width: 100%;
    padding: 0px 10px; }
  .menu_block {
    width: 100%;
    font-size: 87.5%;
    padding: 0px 10px; }
    .menu_block .fmenu {
      margin-right: 10px; }
    .menu_block .fmenu:nth-child(8) {
      margin-right: 0px; }
  .banner_block {
    width: 100%;
    height: 280px;
    padding: 0px 10px; }
    .banner_block .banner {
      width: 480px;
      height: 280px; }
      .banner_block .banner .long .imgs {
        width: 480px; }
    .banner_block .b_right_block {
      width: 250px;
      height: 280px; }
      .banner_block .b_right_block .infovdo_block {
        position: relative;
        width: 250px;
        height: 180px; }
        .banner_block .b_right_block .infovdo_block:hover .vdo_play {
          width: 80px;
          height: 80px; }
        .banner_block .b_right_block .infovdo_block .vdo_play {
          width: 70px;
          height: 70px; }
      .banner_block .b_right_block .publish_block {
        width: 250px;
        height: 80px; }
        .banner_block .b_right_block .publish_block:hover {
          background-position: -110px 0px; }
  .tab_block {
    width: 100%;
    height: 560px; }
    .tab_block .tabmenubg_block {
      top: 0px;
      width: 100%;
      height: 93px; }
    .tab_block .tabul {
      width: 100%;
      height: auto;
      padding-left: 100px; }
      .tab_block .tabul li {
        width: 150px;
        height: 100px; }
        .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content {
          width: 100%;
          height: 300px; }
          .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_image {
            width: 200px;
            height: 150px;
            left: 10px; }
          .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more {
            left: 10px;
            top: 250px;
            width: 200px;
            height: 50px; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more:hover {
              top: 255px; }
          .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist {
            position: absolute;
            width: 500px;
            height: 350px;
            left: 240px; }
  .fastmenu_block .fm_block {
    width: 100%;
    height: auto; }
    .fastmenu_block .fm_block ul .fm_btn {
      padding: 15px 15px; }
      .fastmenu_block .fm_block ul .fm_btn:hover {
        padding: 25px 15px; }
  .servicemenu_block .sm_block {
    width: 100%;
    height: auto; }
    .servicemenu_block .sm_block ul .sm_btn {
      margin: 10px 18px; }
  .weblink_block .wl_block {
    width: 100%;
    height: 470px; }
    .weblink_block .wl_block .wl_img {
      width: 250px;
      height: 180px;
      left: 10px;
      background-size: 250px; }
    .weblink_block .wl_block .wl_more {
      width: 250px;
      height: 50px;
      top: 200px;
      left: 10px; }
      .weblink_block .wl_block .wl_more:hover {
        top: 210px; }
    .weblink_block .wl_block .wl_list {
      position: absolute;
      right: 0px;
      width: 450px;
      height: 270px; }
      .weblink_block .wl_block .wl_list ul .wlbtn {
        width: 210px;
        height: 25px;
        margin-bottom: 8px;
        padding: 0px 5px; }
    .weblink_block .wl_block .wl_rorobanner_block {
      left: 10px;
      width: 748px;
      height: auto; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_left:hover {
        background-position: 5px center; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_right:hover {
        background-position: 18px center; }
      .weblink_block .wl_block .wl_rorobanner_block .roro_block {
        overflow: hidden; }
        .weblink_block .wl_block .wl_rorobanner_block .roro_block ul .rorobtn {
          display: inline-block;
          margin: 0px 8px; }
  .footer_block .ft_block {
    width: 100%;
    height: auto; }
    .footer_block .ft_block .ft_fast_menu_block {
      display: none; } }

@media screen and (max-width: 767px) {
  .topnavi {
    display: none; }
  .top_block {
    width: 100%;
    height: 80px;
    padding: 10px 10px; }
    .top_block .logo_block {
      width: 100%;
      height: 80px; }
      .top_block .logo_block .logo {
        width: 100%;
        height: 80px;
        background-image: url(../images/logo_mobile@2x.png); }
      .top_block .logo_block .font_block {
        display: none; }
  .search_block {
    width: 200px; }
    .search_block .search form {
      margin-top: 7px; }
    .search_block .keyword_block {
      display: none; }
  .mobile_menu_btn_block {
    display: block; }
  #mobile_menu:target {
    display: block; }
  .menu_block {
    display: none; }
  .banner_block {
    width: 100%;
    height: 580px;
    padding: 0px 10px; }
    .banner_block .banner {
      width: 100%;
      height: 380px; }
      .banner_block .banner .long .imgs {
        width: 100%; }
    .banner_block .b_right_block {
      position: static;
      width: 100%;
      height: 180px; }
      .banner_block .b_right_block .infovdo_block {
        display: inline-block;
        float: left;
        width: 48%;
        height: 150px;
        background-position: center center;
        background-size: cover; }
        .banner_block .b_right_block .infovdo_block:hover .vdo_play {
          width: 90px;
          height: 90px; }
        .banner_block .b_right_block .infovdo_block .vdo_play {
          width: 80px;
          height: 80px;
          right: 15px;
          top: 15px; }
      .banner_block .b_right_block .publish_block {
        float: right;
        width: 47%;
        height: 150px;
        background-image: url(../images/publish_icon_mobile.svg?v=20200129);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 0px; }
        .banner_block .b_right_block .publish_block:hover {
          background-position: center 10px; }
  .tab_block {
    width: 100%;
    height: 800px; }
    .tab_block .tabline {
      top: 230px; }
    .tab_block .tabmenubg_block {
      width: 100%;
      height: 230px; }
    .tab_block .tabul {
      width: 100%;
      height: auto;
      padding-left: 0px; }
      .tab_block .tabul li {
        width: 49%;
        height: 100px;
        margin-right: 0px; }
        .tab_block .tabul li input[type="radio"]:checked ~ label {
          width: 100%;
          height: 100px;
          border: 8px solid #93EAFC; }
        .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist {
          height: auto;
          padding-top: 60px; }
          .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content {
            width: 100%;
            height: auto;
            padding: 0 10px; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_image {
              position: static;
              width: 48%;
              height: 130px;
              display: inline-block;
              vertical-align: top;
              background-size: cover; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more {
              position: static;
              width: 48%;
              height: 130px;
              display: inline-block;
              vertical-align: top;
              padding-top: 50px;
              float: right; }
              .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more:hover {
                top: 255px; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist {
              position: static;
              width: 100%;
              height: 350px;
              margin-top: 50px; }
        .tab_block .tabul li label {
          width: 100%;
          height: 100px;
          z-index: 2; }
          .tab_block .tabul li label:hover {
            border-color: #93EAFC;
            color: #43B2FF; }
        .tab_block .tabul li .sectionlist {
          opacity: 0;
          position: absolute;
          height: auto;
          top: 200px;
          left: 0;
          color: #43B2FF; }
  .fastmenu_block .fm_block {
    width: 100%;
    height: auto; }
    .fastmenu_block .fm_block ul .fm_btn {
      padding: 15px 15px; }
      .fastmenu_block .fm_block ul .fm_btn:hover {
        padding: 25px 15px; }
  .servicemenu_block .sm_block {
    width: 100%;
    height: auto;
    padding: 40px 10px; }
    .servicemenu_block .sm_block ul .sm_btn {
      width: 30%;
      height: 150px;
      margin: 10px 5px; }
  .weblink_block .wl_block {
    width: 100%;
    height: 570px;
    padding: 0 10px; }
    .weblink_block .wl_block .wl_img {
      display: inline-block;
      vertical-align: top;
      position: static;
      width: 48%;
      height: 130px;
      left: 10px;
      background-size: cover; }
    .weblink_block .wl_block .wl_more {
      display: inline-block;
      vertical-align: top;
      float: right;
      position: static;
      width: 48%;
      height: 130px;
      padding-top: 50px; }
      .weblink_block .wl_block .wl_more:hover {
        top: 210px; }
    .weblink_block .wl_block .wl_list {
      position: static;
      width: 100%;
      height: 270px;
      margin-top: 20px; }
      .weblink_block .wl_block .wl_list ul .wlbtn {
        width: 45%;
        height: 25px;
        margin-bottom: 8px;
        padding: 0px 5px; }
    .weblink_block .wl_block .wl_rorobanner_block {
      position: static;
      width: 100%;
      height: auto; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_left:hover {
        background-position: 0px center; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_right:hover {
        background-position: 0px center; }
      .weblink_block .wl_block .wl_rorobanner_block .roro_block {
        overflow: hidden; }
        .weblink_block .wl_block .wl_rorobanner_block .roro_block ul .rorobtn {
          display: inline-block;
          width: 150px;
          height: 50px;
          margin: 0px 13px;
          background-size: 150px; }
  .footer_block .ft_block {
    width: 100%;
    height: auto; }
    .footer_block .ft_block .ft_fast_menu_block {
      display: none; } }

@media screen and (max-width: 550px) {
  .banner_block {
    width: 100%;
    height: 520px;
    padding: 0px 10px; }
    .banner_block .banner {
      width: 100%;
      height: 320px; } }

@media screen and (max-width: 425px) {
  .topnavi {
    display: none; }
  .top_block {
    width: 100%;
    height: 80px;
    padding: 0px 10px; }
    .top_block .logo_block {
      width: 100%;
      height: 80px; }
      .top_block .logo_block .logo {
        width: 100%;
        height: 80px;
        background-image: url(../images/logo_mobile@2x.png); }
      .top_block .logo_block .font_block {
        display: none; }
  .search_block {
    width: 200px; }
    .search_block .search form {
      margin-top: 7px; }
    .search_block .keyword_block {
      display: none; }
  .mobile_menu_btn_block {
    display: block; }
  #mobile_menu:target {
    display: block; }
  .menu_block {
    display: none; }
  .banner_block {
    width: 100%;
    height: 450px;
    padding: 0px 10px; }
    .banner_block .banner {
      width: 100%;
      height: 250px; }
      .banner_block .banner .long .imgs {
        width: 100%; }
    .banner_block .b_right_block {
      position: static;
      width: 100%;
      height: 180px; }
      .banner_block .b_right_block .infovdo_block {
        display: inline-block;
        float: left;
        width: 48%;
        height: 150px;
        background-position: center center;
        background-size: cover; }
        .banner_block .b_right_block .infovdo_block:hover .vdo_play {
          width: 90px;
          height: 90px; }
        .banner_block .b_right_block .infovdo_block .vdo_play {
          width: 80px;
          height: 80px;
          right: 15px;
          top: 15px; }
      .banner_block .b_right_block .publish_block {
        float: right;
        width: 47%;
        height: 150px;
        background-image: url(../images/publish_icon_mobile.svg?v=20200129);
        background-size: contain;
        margin-top: 0px; }
        .banner_block .b_right_block .publish_block:hover {
          background-position: 0px 10px; }
  .tab_block {
    width: 100%;
    height: 800px; }
    .tab_block .tabline {
      top: 230px; }
    .tab_block .tabmenubg_block {
      width: 100%;
      height: 230px; }
    .tab_block .tabul {
      width: 100%;
      height: auto;
      padding-left: 0px; }
      .tab_block .tabul li {
        width: 49%;
        height: 100px;
        margin-right: 0px; }
        .tab_block .tabul li input[type="radio"]:checked ~ label {
          width: 100%;
          height: 100px;
          border: 8px solid #93EAFC; }
        .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist {
          height: auto;
          padding-top: 60px; }
          .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content {
            width: 100%;
            height: auto;
            padding: 0 10px; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_image {
              position: static;
              width: 48%;
              height: 130px;
              display: inline-block;
              vertical-align: top;
              background-size: cover; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more {
              position: static;
              width: 48%;
              height: 130px;
              display: inline-block;
              vertical-align: top;
              padding-top: 50px;
              float: right; }
              .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_more:hover {
                top: 255px; }
            .tab_block .tabul li input[type="radio"]:checked ~ .sectionlist .tab_content .tab_clist {
              position: static;
              width: 100%;
              height: 350px;
              margin-top: 50px; }
        .tab_block .tabul li label {
          width: 100%;
          height: 100px;
          z-index: 2; }
          .tab_block .tabul li label:hover {
            border-color: #93EAFC;
            color: #43B2FF; }
        .tab_block .tabul li .sectionlist {
          opacity: 0;
          position: absolute;
          height: auto;
          top: 200px;
          left: 0;
          color: #43B2FF; }
  .fastmenu_block .fm_block {
    width: 100%;
    height: auto; }
    .fastmenu_block .fm_block ul .fm_btn {
      padding: 15px 15px; }
      .fastmenu_block .fm_block ul .fm_btn:hover {
        padding: 25px 15px; }
  .servicemenu_block .sm_block {
    width: 100%;
    height: auto;
    padding: 40px 10px; }
    .servicemenu_block .sm_block ul .sm_btn {
      width: 45%;
      height: 150px;
      margin: 10px 5px; }
  .weblink_block .wl_block {
    width: 100%;
    height: 570px;
    padding: 0 10px; }
    .weblink_block .wl_block .wl_img {
      display: inline-block;
      vertical-align: top;
      position: static;
      width: 48%;
      height: 130px;
      left: 10px;
      background-size: cover; }
    .weblink_block .wl_block .wl_more {
      display: inline-block;
      vertical-align: top;
      float: right;
      position: static;
      width: 48%;
      height: 130px;
      padding-top: 50px; }
      .weblink_block .wl_block .wl_more:hover {
        top: 210px; }
    .weblink_block .wl_block .wl_list {
      position: static;
      width: 100%;
      height: 270px;
      margin-top: 20px; }
      .weblink_block .wl_block .wl_list ul .wlbtn {
        width: 45%;
        height: 25px;
        margin-bottom: 8px;
        padding: 0px 5px; }
    .weblink_block .wl_block .wl_rorobanner_block {
      position: static;
      width: 100%;
      height: auto; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_left:hover {
        background-position: 0px center; }
      .weblink_block .wl_block .wl_rorobanner_block .arrow_right:hover {
        background-position: 0px center; }
      .weblink_block .wl_block .wl_rorobanner_block .roro_block {
        overflow: hidden; }
        .weblink_block .wl_block .wl_rorobanner_block .roro_block ul .rorobtn {
          display: inline-block;
          width: 40%;
          height: 50px;
          margin: 0px 13px;
          background-size: cover; }
  .footer_block .ft_block {
    width: 100%;
    height: auto; }
    .footer_block .ft_block .ft_fast_menu_block {
      display: none; } }

@media screen and (max-width: 320px) {
  .banner_block {
    width: 100%;
    height: 400px; }
    .banner_block .banner {
      width: 100%;
      height: 200px; } }
