@charset "utf-8";

/* -------------------------------------------------------------------------- */
.fullMenu {
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0 auto;
  pointer-events: none;
}

.fullMenu .menu-box {
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10vh;
  left: 0;
  /*pointer-events: none;*/
  z-index: 100;
}

.fullMenu .menu-box .menu-item {
  display: none;
}

.fullMenu .menu-box .menu-item .menu-list {
  color: #000;
  font-family: word;
  font-size: 24px;
  opacity: 1;
  display: block;
  margin: 0.25em 0;
  pointer-events: auto;
}

.menu-list a {
  color: #fff;
  display: block;
  line-height: 2;
}

.menu-list>a>i {
  font-size: 18px;
}

.menu-list>a {
  font-size: 30px;
}

.menu-list>div {
  display: none;
}

.menu-list>div>a {
  font-size: 24px;
  line-height: 2;
}

.fullMenu .menu-box .menu-item.is-opened {
  display: block;
  text-align: center;
  width: 100%;
}

.fullMenu .shape-overlays {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}

.fullMenu .shape-overlays .shape-overlays__path:nth-of-type(1) {
  fill: #000;
}

.fullMenu .shape-overlays .shape-overlays__path:nth-of-type(2) {
  fill: #1d1d1f;
}

.fullMenu .shape-overlays .shape-overlays__path:nth-of-type(3) {
  /* fill: #00653b; */
  fill: #1a7937;
}

/*animate补充动画*/
@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------------ */
.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, -10px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownSmall {
  animation-name: fadeInDownSmall;
}

@keyframes fadeOutDownSmall {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }
}

.fadeOutDownSmall {
  animation-name: fadeOutDownSmall;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.scaleIn {
  animation-name: scaleIn;
}

.fadeIn {
  animation-delay: 0.3s;
  animation-timing-function: linear;
}


/*基础结构*/

header {
  position: fixed;
  width: 100%;
  height: 5rem;
  /* height: auto; */
  line-height: 1.6rem;
  top: 0;
  z-index: 1005;
  background-color: transparent;
  pointer-events: none;

}

header .pul_logo {
  position: absolute;
  height: 54px;
  left: 1.5vw;
  top: 1.5vh;
  pointer-events: auto;
  display: block;
  transition: all .5s ease;
}

.pul_logo img {
  height: 100%;
  display: block;
}

header .nav_con .pul_logo {
  top: 23px;
  /* left: 3vw; */
  pointer-events: auto;
}

header .nav {
  position: absolute;
  top: 0;
  height: 100%;
  right: 5vw;
  transition: all .5s ease;
}

.full-menu {
  background-image: url(../images/menu.svg);
  background-repeat: no-repeat;
  width: 33px;
  height: 33px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 2.5vh;
  right: 0;
  z-index: 110;
  border-radius: 50%;
  /* background-color: #fff; */
  pointer-events: auto;
  color: #00653b;
  text-align: center;
  line-height: 33px;
  /* font-size: 33px; */
  text-indent: 2px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* header .nav .full-menu:after {
  width: 64px;
  height: 64px;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border: 4px solid #a2bccc;
  border-radius: 50%;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-name: menu_circle;
  animation-name: menu_circle;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
} */
@keyframes menu_circle {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  80% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}

/*导航*/
.full-menu_m {
  display: none;
}

.pul_now>div {
  /* -webkit-border-radius: 20px; */
  /* -moz-border-radius: 20px; */
  /* border-radius: 20px; */
  background-color: rgba(255, 255, 255, 0);
  /* margin: 20px 50px 0 50px; */
  overflow: inherit;
  max-height: 100px;
  transition: all 0.3s ease;
  position: absolute;
  /* -webkit-box-shadow: 0px 0 90px rgba(19,53,80,.5); */
  /* -moz-box-shadow: 0px 0 90px rgba(19,53,80,.5); */
  /* box-shadow: 0px 0 90px rgba(19,53,80,.5); */
  width: 100%;
  opacity: 0.8;
}

header.on .pul_now>div {
  opacity: 1;
}

.nav_box,
.search_box,
.language_change,
.language_box {
  float: right;
  line-height: 100px;
  font-size: 16px;
}
.language_change {
  margin: 0 1vw 0 1.5vw;
  margin-left: 0 !important;
  text-align: center;
  position: relative;
  /* width: 16.15%; */
  pointer-events: auto;
}

.language_box {
  font-size: 0;
  text-align: center;
  position: relative;
  /* width: 16.15%; */
  pointer-events: auto;
}

/* .language_box::after{
  content: '';
  display: block;
  position: absolute;
  height: 16px;
  width: 1px;
  background-color: #c1c2c4;
  left: 0;
  top: 50%;
  margin-top: -8px;
} 
.language_box > a{
  font-size: 16px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  color: #7f7f7f;
  cursor: pointer;
  text-transform: uppercase;
  width: 30px;
  margin: 0 10px;
  opacity: 0.5;
}
.language_box > a img{
  display: block;
  width: 100%;
}

.language_box > a.on{
  opacity: 1;
  cursor: auto;
}
*/

.menu-list>div>a img {
  width: 30px;
  margin: 0 auto;
  opacity: 0.5;
}

.menu-list>div>a.on img {
  opacity: 1;
}

.pul_initial .language_box {
  font-size: 0;
  width: 16.15%;
  float: left;
  margin-top: 120px;
  line-height: 3;
  margin-left: 5vw;
  text-align: left;
}

.pul_initial .language_box>a {
  font-size: 16px;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  width: 47px;
  margin: 0 4px;
}

.pul_initial .language_box>a:first-child {
  margin-left: 0;
}

.language_box>a.on {
  color: #0d1c27;
  font-weight: 700;
  cursor: auto;
}

.pul_initial .language_box>a.on {
  color: rgba(255, 255, 255, 1);
}

.pul_initial .language_box::after {
  display: none;
}

.search_box {
  position: relative;
  /* margin: 0 3.78vw 0 1.5vw; */
  margin: 0 1vw 0 1.5vw;
  font-size: 16px;
  font-weight: 700;
  color: #0d1c27;
  text-align: center;
  z-index: 2;
  pointer-events: auto;
}

.search_case {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  /* padding:.2rem .3rem; */
  /* max-width: calc(100vw - 30px); */
  /* width: 400px; */
  /* min-height: 200px; */
  position: absolute;
  right: -61px;
  top: 95px;
  opacity: 0;
  transform: translateY(50px);
  transition: all .5s ease;
  -webkit-box-shadow: 0 0 99px rgba(29, 56, 75, .4);
  -moz-box-shadow: 0 0 99px rgba(29, 56, 75, .4);
  box-shadow: 0 0 99px rgba(29, 56, 75, .4);
  pointer-events: none;

}

.pul_initial .search_case {
  top: 64px;
}

.search_case::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  top: -8px;
  right: 60px;
  background-color: #fff;
  position: absolute;

}

.sea_inp_box {
  border-bottom: 1px solid #e1e1e1;
  font-size: 14px;
}

.sea_inp_box>input {
  background-color: transparent;
  border: none;
  display: block;
  float: left;
  width: calc(100% - 30px);
  padding-right: 10px;
  line-height: 50px;
  height: 50px;
  box-shadow: 0 0 100px 46px #fff inset;
}

.sea_inp_box>span {
  cursor: pointer;
  width: 30px;
  display: block;
  float: right;
  text-align: right;
  line-height: 50px;
  height: 50px;
  color: #e1e1e1;
}

.sea_inp_box>span button {
  border: none;
  display: block;
  height: 100%;
  background-color: transparent;
}

.sea_inp_box>span i {
  font-size: 18px;
  vertical-align: middle;
}

.sea_lab_box {
  margin: 10px -5px;
}

.sea_lab_box a {
  display: inline-block;
  float: left;
  margin: 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #e1e1e1;
  color: #999999;
  line-height: 1;
  padding: 10px;
  font-weight: 400;
  transition: all .5s ease .3s;
  position: relative;
  overflow: hidden;
  display: none;
}

input::-ms-clear {
  display: none;
}

.search_box:hover .sea_lab_box a {
  display: block;
}

.sea_lab_box a span {
  position: relative;
  z-index: 1;
}

.sea_lab_box a:before {
  content: '';
  display: block;
  width: 0;
  transition: width .5s ease-out;
  height: 100%;
  background-color: #00653b;
  position: absolute;
  top: 0;
  left: 0;
}

.sea_lab_box a:hover {
  color: #fff;
  /*background-color: #00653b;*/
}

.sea_lab_box a:hover:before {
  width: 100%;
}

.pul_initial .search_box:hover .btn_sea {
  color: rgba(255, 255, 255, 1);
}

.search_box:hover .search_case {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}




.pul_initial .search_box {
  color: rgba(255, 255, 255, .5);
  /* margin-right: calc(5vw + 110px); */
  margin-right: 14%;
  line-height: 64px;
  margin-top: 1.2vh;
  padding: 0;
  z-index: 1;
}

.pul_initial .btn_sea i {
  font-size: 27px;
}

.btn_sea {
  cursor: pointer;
}

.btn_sea i {
  font-size: 22px;
  vertical-align: middle;
  margin-right: -5px;
}

.nav_box {
  /* width: 46.875vw; */
  width: 55%;
}

.nav_case {
  font-size: 0;
  position: relative;
  pointer-events: none;
}

header.on .nav_case {
  pointer-events: auto;
}
.nav_case > .mainlevel {
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  /* width: 13%; */
  width: auto;
  padding: 0 15px;
}
.nav_case > .mainlevel > a {
  color: #333333;
  white-space: nowrap;
}
.nav_case > .mainlevel > a:hover {
    color: #00653b;
    white-space: nowrap;
}
.nav_case > .mainlevel > .on {
  color: #00653b;
}
.nav_case > .mainlevel > ul {
  display: none;
  position: absolute;
  background-color: #fff;
  padding-left: 0;
  border-top: 3px solid #38a38d;
}
.nav_case > .mainlevel > ul > li {
  margin: 10px 30px;
  min-width: 60px;
}
.nav_case > .mainlevel > ul > li > a {
  color: #74787c;
  font-size: 14px;
  text-decoration: none;
  line-height: 32px;
  display: block;
  /* padding: 0 20px; */
  /* width: 100px; */
}
.nav_case > .mainlevel > ul > li > a:hover {
  color: #00653b;

}
.nav_case > .mainlevel > ul > li > .on {
  color: #00653b;

}
.nav_case>a {
  cursor: pointer;
  color: #333333;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  width: 14%;
  /* padding: 0 1rem; */
  /* width: auto; */
  /* padding-right: 5px; */
}

.nav_case>a:nth-child(3),
.nav_sed_box>div:nth-child(3) {
  /* width: 15%; */
  /* padding: 0 1rem; */
}

.nav_case>a:nth-child(5),
.nav_sed_box>div:nth-child(5) {
  width: 15.4%;
  /* padding: 0 1rem; */
}

.nav_case>a:nth-child(5) {
  /* width: 15.4%; */
  /* padding: 0 1rem;; */
}

.nav_sed_box>div:nth-child(3) {
  /* width: 14%; */
  /* padding: 0 1rem;; */
}

.nav_case>a:hover,
.nav_case>a.on {
  color: #00653b;
}

.nav_sed_box {
  /* border-top: 1px solid #dddede; */
  /* padding-top: 28px; */
  /* padding-bottom: .75rem; */
  position: relative;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  width: 100% !important;

}

.nav_sed_box>span {
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 20px;
  height: 5px;
  background-color: #00653b;
  transition: all .5s ease;
}

.nav_sed_box>div {
  float: left;
  width: 20%;
  /* margin-top: -20px; */
  padding: 0 1.5rem;
  margin-left: -1.5rem;
  /* padding-right: 5px; */
}

.nav_sed_box>div a {
  display: block;
  margin: 20px 0;
  line-height: 20px;
  color: #74787c;
  font-size: 14px;
  position: relative;
  margin-right: 10px;
}

.nav_sed_box>div a::after {
  content: '';
  display: block;
  height: 0;
  width: 2px;
  position: absolute;
  left: -5px;
  top: 3px;
  background-color: #00653b;
  transition: height .5s ease;
}

.nav_sed_box>div a:hover,
.nav_sed_box>div a.on {
  color: #00653b;
}

.nav_sed_box>div a:hover::after {
  height: 14px;
}
.nav_con {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.pul_initial {
  opacity: 1;
  transition: opacity .5s ease;
}


header.on .pul_initial {
  opacity: 0;
}

.pul_now {
  opacity: 0;
  transition: opacity .5s ease;
}

header.on .pul_initial .pul_logo {
  opacity: 0;
}

header.on .pul_initial .nav {
  opacity: 0;
}



header.on .pul_now {
  opacity: 1;
}

.header_on .pul_now>div {
  /* background-color: rgba(255, 255, 255, 1); */
  /* background-image: url(../images/nav-foot-bg.png); */
  /* background-size: 100% 100%; */
  /* background-repeat: no-repeat; */
  /* background-position: left bottom; */
  max-height: 9999px;
  height: auto;
  transition-timing-function: cubic-bezier(.5, 0, 1, 0);
  overflow: hidden;
}

.header_on .bg_gb {
  bottom: 0;
  transition: all 1s ease;
  opacity: 1;
}

.header_on .bg_layer {
  background-position: 0 0;
  transition: all .5s ease .5s;
}

.header_on .nav_sed_box {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------------------------------------- */

@keyframes alpha {
  0% {
    transform: rotate(0);
  }

  25% {}

  50% {
    border-radius: 50%;
  }

  75% {}

  100% {
    transform: rotate(360deg);
  }
}


@media screen and (max-width:1600px) {
  .com_title {
    font-size: 34px;
  }
.language_change {
  margin-right: 10px;
}
  .hon_tab_nav_box>div {
    padding-bottom: .3rem;
  }

  .new_tex_box>div {
    width: 70.6666%;
  }

  .new_title,
  .new_info {
    margin-top: 25px;
  }

  .cul_title {
    line-height: 100px;
  }

  .pul_now>div {
    max-height: 90px;
  }

  .nav_box,
  .search_box,
  .language_box {
    line-height: 90px;
  }

  header .nav_con .pul_logo {
    top: 18px;
    /* left: 3vw; */
    left: 1vw;
  }

}

@media screen and (max-width:1440px) {
  .pul_initial .language_box {
    margin-top: 110px;
  }

}

@media screen and (max-width:1366px) {
  .f-60 {
    font-size: 48px;
  }

  .f-50 {
    font-size: 42px;
  }

  .f-48 {
    font-size: 40px;
  }

  .f-46 {
    font-size: 40px;
  }

  .f-44 {
    font-size: 38px;
  }

  .f-42 {
    font-size: 36px;
  }

  .f-40 {
    font-size: 34px;
  }

  .f-38 {
    font-size: 32px;
  }

  .f-36 {
    font-size: 30px;
  }

  .f-34 {
    font-size: 28px;
  }

  .f-32 {
    font-size: 26px;
  }

  .f-30 {
    font-size: 26px;
  }

  .f-28 {
    font-size: 26px;
  }

  .f-26 {
    font-size: 24px;
  }

  .f-24 {
    font-size: 22px;
  }

  .f-22 {
    font-size: 20px;
  }

  .f-20 {
    font-size: 18px;
  }

  .f-18 {
    font-size: 16px;
  }

  .f-16 {
    font-size: 14px;
  }

  .f-14 {
    font-size: 14px;
  }

  .f-12 {
    font-size: 12px;
  }

  .tea_mem_case {
    margin-top: 1rem;
  }

  .member_box>div {
    padding-left: 34%;
  }

  .member_info {
    padding: .35rem 6% .4rem 34%;
  }

  .tal_title_box>div {
    width: 80%;
  }

  .tal_tab_name {
    padding: 20px 8% 20px 0;
  }

  .tal_title_box>span {
    letter-spacing: 30px;
  }

  .com_img_case .swiper-button-prev {
    margin-right: 30px;
  }

  .com_img_case .swiper-button-next {
    margin-left: 30px;
  }

  .com_title {
    font-size: 28px;
  }

  .hon_tab_nav_box>div {
    padding-bottom: .4rem;
  }

  .hon_tab_num {
    font-size: 30px;
  }

  .hon_tab_name {
    line-height: 48px;
  }

  .new_title {
    margin-top: 0;
  }

  .mar_data_box {
    margin-top: 1.8rem;
  }

  .scr1_img_box {
    width: 50%;
    margin-top: 0;
  }

  .pul_initial .language_box {
    margin-top: 100px;
  }

}

@media screen and (max-width:1024px) {
  .full-menu_m {
    display: block;
  }

  .full-menu_pc {
    display: none;
  }

  .pul_now {
    display: none;
  }

  .ins_banner {
    height: 40vh;
  }

  .tea_case {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .com_con .tea_case {
    width: 100%;
  }

  .pul_initial .language_box {
    display: none;
  }

  header {
    /* height: auto; */
    /* height: 11vh; */
  }

  .com_img_case {
    width: 76.2%;
    margin-left: 10%;
    padding-right: calc(13.8% + 30px);
  }

  .sha_imgBox {
    width: calc(14.78% + 30px);
  }

  .com_img_case .swiper-button-prev {
    margin-right: 20px;
  }

  .com_img_case .swiper-button-next {
    margin-left: 20px;
  }

  .com_img_case .swiper-pagination .on {
    font-size: 20px;
  }

  .com_img_case .swiper-pagination {
    font-size: 16px;
  }

  .com_title {
    left: 88.5%;
  }

  .com_img_case {
    margin-top: .6rem;
    margin-bottom: .6rem;
  }

  .hon_name {
    font-size: 18px;
  }

  .hon_name_text {
    font-size: 14px;
  }

  .hon_name_box .active-nav .hon_name_text {
    font-size: 16px;
    box-shadow: 0 0 30px rgba(29, 56, 75, .17);
  }

  .new_tex_box {
    margin-right: 0;
    width: 75%;
  }

  .scr1_img_box {
    width: 100%;
    float: none;
    margin-left: 0;
  }

  .scr1_text_box {
    float: none;
    width: 100%;
    margin-top: 0;
  }

  .cul_src2_line {
    padding-top: .6rem;
    margin-bottom: 10px;
  }

  .cul_info_case {
    padding-left: 50px;
  }

  .cul_src3_con_box>.cul_info_case:nth-child(odd) {
    padding-right: 50px;
  }

  .cen_img_0 {
    display: none;
  }

  .img_center_box {
    background: transparent;
    top: 0;
    bottom: auto;
  }

  .loop_box {
    display: none;
  }

  .scr3_title::before {
    display: none;
  }

  .cul_info_case {
    height: auto;
  }

  .src3_case {
    padding-top: 1.5rem;
  }

  .scr3_title {
    margin-top: 50px;
  }

  #bloc footer .web-msg>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #bloc footer .web-msg span a {
    display: block;
  }

  #bloc footer .f-main .max-wid>ul>li i {
    vertical-align: baseline;
  }
}

@media screen and (max-width: 768px) {
  .f-60 {
    font-size: 24px;
  }

  .f-50 {
    font-size: 22px;
  }

  .f-48 {
    font-size: 22px;
  }

  .f-46 {
    font-size: 20px;
  }

  .f-44 {
    font-size: 20px;
  }

  .f-42 {
    font-size: 20px;
  }

  .f-40 {
    font-size: 18px;
  }

  .f-38 {
    font-size: 18px;
  }

  .f-36 {
    font-size: 18px;
  }

  .f-34 {
    font-size: 16px;
  }

  .f-32 {
    font-size: 16px;
  }

  .f-30 {
    font-size: 16px;
  }

  .f-28 {
    font-size: 16px;
  }

  .f-26 {
    font-size: 14px;
  }

  .f-24 {
    font-size: 14px;
  }

  .f-22 {
    font-size: 14px;
  }

  .f-20 {
    font-size: 14px;
  }

  .f-18 {
    font-size: 12px;
  }

  .f-16 {
    font-size: 12px;
  }

  .f-14 {
    font-size: 12px;
  }

  .f-12 {
    font-size: 12px;
  }

  .pre_box {
    min-width: 140px;
  }

  .sen_link_box {
    padding-bottom: .35rem;
  }

  .post_case {
    padding-top: .6rem;
  }

  .page_case {
    padding-top: .45rem;
  }

  #bloc footer .f-main .max-wid {
    padding: .6rem 0 .3rem 0;
  }

  .max-wid {
    width: auto;
    margin: 0 15px;
  }

  .sta_img_box {
    margin-top: .8rem;
  }

  .sta_tab_con_box {
    margin-bottom: -.8rem;
  }

  .tal_info {
    width: 200%;
  }

  .hon_con_box {
    width: 100%;
  }

  .hon_con .tea_case {
    width: 100%;
  }

  .hon_name_box {
    width: 100%;
    top: -100px;
    padding: 0;
  }

  .hon_name_box .swiper-button-prev,
  .hon_name_box .swiper-button-next {
    display: none;
  }

  .hon_name_box .swiper-container {
    height: auto;
  }

  .pro_list_box>a {
    padding: 15px;
  }

  .med_list_box>a {
    padding: 40px 65px 45px 65px;
  }

  .med_list_case>span {
    top: 33px;
    font-size: 14px;
    line-height: 42px;
  }

  .med_time {
    line-height: 20px;
    font-size: 20px;
    top: 41px;
    width: 43px;
  }

  .med_time span {
    font-size: 12px;
  }

  .med_list_box>a:hover>span {
    padding: 0 35px;
  }

  .med_list_box>a:hover .med_time {
    width: 65px;
  }

  .new_time {
    line-height: 20px;
    font-size: 20px;
  }

  .new_time span {
    font-size: 12px;
  }

  .con_case_b {
    padding-top: .75rem;
    padding-bottom: .8rem;
  }

  .cul_title {
    font-size: 20px;
    line-height: .7rem;
  }

  .cul_src2_line {
    padding-top: .3rem;
  }

  .cul_info {
    line-height: 2.5;
  }

  .scr3_info {
    line-height: 2.5;
  }

  .scr2_title {
    margin-top: 0;
  }

  .case_bg>.scr2_title_box {
    font-size: 28px;
  }

  .scr3_title {
    font-size: 18px;
  }

  .at_time {
    font-size: 200px;
  }
}

@media screen and (max-width: 640px) {
  .tea_case {
    padding: 60px 15px 70px 15px;
  }

  .tea_mem_case .swiper-button-next,
  .tea_mem_case .swiper-button-prev {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }

  .carousel .swiper-button-next,
  .carousel .swiper-button-prev {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }

  .member_info>img {
    bottom: 100%;
  }

  .member_box>.member_info {
    padding-left: 6%;
  }

  .sen_link_box {
    padding-bottom: .1rem;
  }

  .post_box {
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .joi_hint>span {
    line-height: 1.5;
    padding: 20px 0;
  }

  .page_case>div:first-child {
    margin-right: 0;
    width: 100%;
  }

  .page_case>div:last-child {
    margin-left: 0;
    width: 100%;
  }

  .post_name i {
    margin-right: 10px;
  }

  .post_num i {
    margin-left: 10px;
  }

  .full-menu {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 2vh;
    font-size: 20px;
  }

  header .nav .full-menu:after {
    width: 40px;
    height: 40px;
  }

  .max-wid li {
    display: block;
    margin-bottom: 30px;
  }

  #bloc footer .f-main .max-wid>ul {
    display: block;
  }

  .sty_line,
  .sen_link_con {
    display: none;
  }

  .pul_initial .search_box {
    margin-right: calc(5vw + 50px);
    margin-top: 2vh;
    line-height: 40px;
  }

  .menu-list>a {
    font-size: 18px;
  }

  .menu-list>div>a {
    font-size: 14px;
  }

  header .pul_logo {
    /* top: 2vh; */
  }

  .pul_initial .search_case {
    top: calc(2vh + 40px);
  }

  .sta_tab_box>span {
    width: 25%;
    font-size: 12px;
  }

  .sta_tab_box>span.on span {
    transform: scale(1.4) translateZ(0);
  }

  .sta_tab_box {
    padding-bottom: 0.15rem;
  }

  .sta_tab_con_box .swiper-slide.active .sta_img_box>img {
    -webkit-box-shadow: 0 0 50px rgba(40, 80, 104, .55);
    -moz-box-shadow: 0 0 50px rgba(40, 80, 104, .55);
    box-shadow: 0 0 50px rgba(40, 80, 104, .55);
  }

  .tal_tab_box {
    float: none;
    width: 100%;
    height: auto;
  }

  .tal_img_box {
    float: none;
    width: 100%;
    padding-bottom: 145%;
    margin-top: .4rem;
  }

  .tal_con_box {
    padding-top: .5rem;
  }

  .tal_info {
    width: 100%;
  }

  .tal_info_m {
    display: block;
    position: relative;
    margin-top: .4rem;

  }

  .tal_info_pc {
    display: none;
  }

  .tal_title_box>div {
    width: 100%;
  }

  .com_img_case {
    -webkit-box-shadow: 0 0 30px rgba(30, 46, 63, .36);
    -moz-box-shadow: 0 0 30px rgba(30, 46, 63, .36);
    box-shadow: 0 0 30px rgba(30, 46, 63, .36);
    margin-top: .3rem;
    margin-bottom: .3rem;
  }

  .com_img_case .swiper-button-prev,
  .com_img_case .swiper-button-next {
    display: none;
  }

  .com_info_case p {
    padding-top: 15px;
    line-height: 1.8;
  }

  .com_info_case {
    margin-bottom: 0;
  }

  .com_title {
    left: 60.5%;
  }

  .com_img_case {
    padding-right: calc(13.8% + 15px);
  }

  .sha_imgBox {
    width: calc(14.78% + 14px);
  }

  .sen_manifesto {
    line-height: 1.5;
    bottom: 100%;
  }

  .hon_tab_nav_box {
    float: none;
    width: 100%;
  }

  .hon_tab_nav_box>div {
    width: 25%;
    float: left;
    text-align: center;
  }

  .hon_con_case {
    float: none;
    width: 100%;
  }

  .hon_name_box {
    position: relative;
    top: 0;
  }

  .hon_name {
    display: none;
  }

  .hon_con_box .swiper-container {
    padding-bottom: 0;
  }

  .hon_con .tea_case {
    padding: 60px 15px 70px 15px;
  }

  .hon_tab_num {
    font-size: 24px;
  }

  .hon_tab_name {
    line-height: 40px;
    font-size: 14px;
  }

  .hon_tab_name::after {
    height: 3px;
  }

  .inv_left_box {
    width: 100%;
    float: none;
  }

  .inv_right_box {
    width: 100%;
    float: none;
    padding-left: 0;
  }

  .inv_right_box::after {
    display: none;
  }

  .inv_title {
    font-size: 20px;
    line-height: 56px;
  }

  .inv_code {
    margin-top: 0;
  }

  .inv_stock_box {
    padding: 20px 0;
  }

  .sto_contrast {
    margin-bottom: 20px;
  }

  .ann_box>a {
    padding: 20px 0;
    padding-right: 32px;
  }

  .sty_bottom_sty {
    margin-bottom: .15rem;
  }

  .showreel_box .btn_img_prev,
  .showreel_box .btn_img_next {
    width: 40px;
  }

  .showreel_box {
    padding: 0 40px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 25px;
  }

  .showreel_box .list_u_img_box>a.on {
    font-size: 20px;
  }

  .showreel_box .list_u_img_box>a {
    width: 70px;
    font-size: 14px;
  }

  .not_con .ann_box>a {
    padding: 30px 32px 20px 0;
  }

  .not_con .ann_box>a>i {
    right: 0;
  }

  .time_year {
    font-size: 18px;
  }

  .ann_title {
    font-size: 14px;
  }

  .pro_list_box>a {
    width: 48%;
    margin-right: 4%;
    margin-bottom: .4rem;
    font-size: 12px;
  }

  .pro_list_box>a:nth-child(3n) {
    margin-right: 4%;
  }

  .pro_list_box>a:nth-child(2n) {
    margin-right: 0;
  }

  .pro_intersperse {
    margin-bottom: 15px;
  }

  .pro_title {
    margin: .25rem 0 .5rem 0;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
  }

  .btn_pro_det {
    line-height: 40px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 40px;
    margin-left: -20px;
    bottom: -20px;
  }

  .pro_box:hover .btn_pro_det {
    width: 100%;
    transform: translateX(-50%);
    margin-left: 0;
  }

  .lit_list_box>a {
    padding: 20px 0;
    padding-right: 40px;
  }

  .lit_list_case>img {
    width: 40px;
    margin-left: 0;
  }

  .lit_tex_box {
    width: calc(100% - 40px);
    padding-right: 10px;
    padding-left: 0;
  }

  .lit_title {
    font-size: 16px;
  }

  .lit_member {
    font-size: 14px;
  }

  .lit_info {
    margin-top: 15px;
    font-size: 12px;
  }

  .lit_provenance {
    font-size: 12px;
    margin-top: 10px;
  }

  .icon_bg {
    width: 40px;
  }

  .med_list_box>a {
    padding: 34px 10px 45px 10px;
  }

  .med_list_box>a:hover .med_tex_box {
    margin-left: 0;
  }

  .med_tex_box {
    width: 100%;
    margin-top: 55px;
  }

  .med_title {
    font-size: 16px;
    margin-top: 8px;
  }

  .new_title {
    font-size: 16px;
  }

  .new_tex_box {
    width: 90%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .new_tex_box>img {
    float: none;
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .new_tex_box>div {
    width: 100%;
  }

  .new_list_box>a:hover .new_tex_box>img {
    margin-left: 0;
  }

  .new_time {
    position: relative;
    z-index: 1;
  }

  .new_info {
    margin-top: 15px;
  }

  .new_list_box>a {
    margin-bottom: 0;
  }

  .scr_box {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .mar_title {
    margin-top: 0;
    font-size: 26px;
    text-align: center;
  }

  .scr0_box .mar_map_box_in {
    position: relative;
    width: 100%;
    margin-top: 20px;
    top: 0;
  }

  .mar_data_box {
    margin-top: 0.5rem;
  }

  .mar_data_box>div {
    margin-right: 45px;
    font-size: 30px;
  }

  .mar_info {
    margin-top: 35px;
  }

  .scr2_box .mar_data_box {
    width: 100%;
    float: none;
    margin-top: 0.5rem;
  }

  .scr2_box .mar_map_box_in {
    margin-top: 20px;
    width: 100%;
    float: none;
  }

  .det_left_box {
    width: 100%;
    float: none;
  }

  .det_right_box {
    float: none;
    width: 100%;
    margin-top: 50px;
  }

  .go_top {
    right: -33px;
  }

  .new_d_title {
    font-size: 18px;
  }

  .new_d_info {
    font-size: 12px;
    margin-top: 10px;
  }

  .new_d_text_box {
    margin-top: 30px;
    padding: 15px;
  }

  .new_d_text_box p,
  .new_d_text_box>img,
  .new_d_text_box h2,
  .con_box {
    padding-bottom: .25rem;
  }

  .text_line {
    margin-bottom: .25rem;
  }

  .go_back {
    margin-top: 40px;
  }

  .con_box>div:last-child {
    float: left;
  }

  .det_hot_box {
    font-size: 18px;
    padding-bottom: 0.15rem;
  }

  .det_recommend>a {
    padding: 16px 0;
  }

  .rec_title {
    font-size: 14px;
  }

  .rec_time {
    font-size: 12px;
  }

  .cul_info_case {
    float: none;
    width: 100%;
    padding-left: 15px;
  }

  .scr3_title {
    margin-top: 15px;
    padding-bottom: 20px;
    margin-bottom: 18px;
  }

  .cul_src3_con_box>.cul_info_case:nth-child(odd) {
    padding-right: 15px;
  }

  .con_case_b {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .cul_info,
  .scr3_info {
    line-height: 1.8;
  }

  .sr2_con_box {
    width: 100%;
    margin-top: 30px;
  }

  .case_bg>.src2_img_box {
    position: relative;
    bottom: 0;
    right: 0;
    width: 80%;
  }

  .at_time {
    font-size: 100px;
  }

  .time_line_box>div {
    font-size: 14px;
  }

  .btn_time>span {
    margin-left: -16px;
    top: -35px;
  }

  .time_line_box>div:nth-child(odd) .btn_time>span {
    bottom: -35px;
    top: auto;
  }

  .titie_box_bg {
    width: 60px;
    margin: -30px 0 0 -30px;
  }

  .time_line_box .on .btn_time>span {
    font-size: 20px;
  }

  .time_line_case {
    margin-top: -.2rem;
  }

  .time_title_case {
    padding-bottom: .6rem;
  }

  .dev_tex_box>div {
    width: 100%;
    float: none;
  }

  .wave {
    top: auto;
    bottom: -40%;
  }
}

@media screen and (max-width: 375px) {
  .wave {
    width: 160%;
    margin-left: -25%;
  }
}

@media screen and (max-width: 320px) {
  .com_title {
    left: 48%;
  }

  .sen_manifesto {
    font-size: 12px;
    bottom: 83%;
  }

  .hon_name_text {
    font-size: 14px;
  }

  .hon_name_text {
    line-height: 40px;
  }

}