@charset "UTF-8";
body {
  line-height: 1;
  color: #000;
}

*,
::backdrop,
:after,
:before {
  margin: 0;
  padding: 0;
  border: 0 solid;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

input, textarea, select {
  outline: none;
  box-shadow: none;
}

textarea {
  resize: none;
}

select {
  cursor: pointer;
}

.line_clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line_clamp_1 {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.line_clamp_2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

footer .footer_container, .listinvestor_container, .investor_menu, .download_container, .medianav_container, .shownews_container, .listnews_wrapper .listnews_container, .contact_wrapper .contact_container, .honor .honor_container, .development .development_container, .team_wrapper .team_container, .company_section .company_values, .company_intro .company_intro_container, .solution_wrapper .solution_container, .breadcrumb .breadcrumb_container, .listproduct_specs .listproduct_specs_container, .oneloop_wrapper .oneloop_container, .AVDC_wrapper .AVDC_container, .AVOS_wrapper .AVOS_container, .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs, .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards, .channelbrain_wrapper .channelbrain_container, .channelnav_wrapper nav, .homebusiness .homebusiness_tabs, .homebusiness .homebusiness_cards, .homeintro, .homebanner .homebanner_brain .homebanner_brain_video, .homebanner .homebanner_brain .homebanner_brain_img {
  width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  footer .footer_container, .listinvestor_container, .investor_menu, .download_container, .medianav_container, .shownews_container, .listnews_wrapper .listnews_container, .contact_wrapper .contact_container, .honor .honor_container, .development .development_container, .team_wrapper .team_container, .company_section .company_values, .company_intro .company_intro_container, .solution_wrapper .solution_container, .breadcrumb .breadcrumb_container, .listproduct_specs .listproduct_specs_container, .oneloop_wrapper .oneloop_container, .AVDC_wrapper .AVDC_container, .AVOS_wrapper .AVOS_container, .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs, .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards, .channelbrain_wrapper .channelbrain_container, .channelnav_wrapper nav, .homebusiness .homebusiness_tabs, .homebusiness .homebusiness_cards, .homeintro, .homebanner .homebanner_brain .homebanner_brain_video, .homebanner .homebanner_brain .homebanner_brain_img {
    width: 95%;
  }
}
.hometitle_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hometitle_box .hometitle_text h2 {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 36px;
  line-height: 36px;
}
.hometitle_box .hometitle_description p {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
}
.hometitle_box .hometitle_gradient {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hometitle_box .hometitle_gradient .gradient_left,
.hometitle_box .hometitle_gradient .gradient_right {
  width: 130px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(270deg, #F18D00 0%, rgba(241, 141, 0, 0) 100%);
}
.hometitle_box .hometitle_gradient .gradient_right {
  transform: rotate(180deg);
}

.button_more {
  width: 160px;
  border: 1px solid #191919;
  border-radius: 46px;
  position: relative;
  transition: all .3s;
}
.button_more a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 8px 0 27px;
}
.button_more a span {
  font-size: 16px;
  color: #191919;
  transition: all .3s;
}
.button_more:hover{
  background: #F18D00;
  border-color: #F18D00;
}
.button_more:hover a span {
    color: #fff;
}
.button_more:hover a .rotation_grey{
  background: url(../images/rotation_white.svg) no-repeat center;
  background-size: contain;
}

header {
  height: 100px;
  padding: 0 60px;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
  transition: all 0.5s ease;
}
header .header_logo {
  margin-right: auto;
  height: 60px;
}
header .header_logo img {
  width: auto;
  height: 100%;
}
header .header_nav .nav_list {
  display: flex;
  gap: 65px;
}
header .header_nav .nav_list .nav_item {
  position: relative;
}
header .header_nav .nav_list .nav_item > a {
  white-space: nowrap;
  font-family: PingFang SC;
  display: inline-block;
  font-size: 16px;
  height: 100px;
  line-height: 100px;
  color: #FFFFFF;
}
header .header_nav .nav_list .nav_item > a:hover {
  color: #F18D00;
}
header .header_nav .nav_list .nav_item > a:hover::after {
  width: 100%;
}
header .header_nav .nav_list .nav_item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #F18D00;
  transition: all 0.5s ease;
}
header .header_nav .nav_list .nav_item .nav_sublist {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: fit-content;
  height: 100%;
  transition: all 0.3s ease;
}
header .header_nav .nav_list .nav_item .nav_sublist .nav_subitem {
  text-align: center;
}
header .header_nav .nav_list .nav_item .nav_sublist .nav_subitem a {
  font-family: PingFang SC;
  white-space: nowrap;
  font-size: 16px;
  line-height: 40px;
  color: #333;
  transition: all 0.5s ease;
  position: relative;
}
header .header_nav .nav_list .nav_item .nav_sublist .nav_subitem a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #F18D00;
  transition: all 0.5s ease;
}
header .header_nav .nav_list .nav_item .nav_sublist .nav_subitem a:hover {
  color: #F18D00;
}
header .header_nav .nav_list .nav_item .nav_sublist .nav_subitem a:hover::after {
  width: 100%;
}
header .header_nav .nav_list .nav_item .nav_sublist.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(30px);
  transition-delay: 0.2s;
}
header .header_operations {
  margin-left: 70px;
  display: flex;
  align-items: center;
  gap: 80px;
}
header .header_operations > div {
  position: relative;
}
header .header_operations > div:not(:last-child)::after {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 16px;
  margin-left: 40px;
  background-color: #fff;
}
header .header_operations .operation_language a {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .header_operations .operation_language a span {
  font-size: 16px;
  color: #FFF;
}
header.shadow {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
}
header.active {
  background-color: #fff;
}
header.active nav .nav_list .nav_item a {
  color: #333;
}
header.active .header_operations > div:not(:last-child)::after {
  background-color: #333;
}
header.active .header_operations .operation_language a span {
  color: #333;
}

@media (max-width: 1799px) {
  header .header_nav .nav_list {
    gap: 50px;
  }
  header .header_operations {
    margin-left: 50px;
    gap: 60px;
  }
  header .header_operations > div:not(:last-child)::after {
    margin-left: 30px;
  }
}
@media (max-width: 1599px) {
  header {
    padding: 0 40px;
  }
  header .header_nav .nav_list {
    gap: 40px;
  }
  header .header_operations {
    margin-left: 40px;
    gap: 40px;
  }
  header .header_operations > div:not(:last-child)::after {
    margin-left: 20px;
  }
}
.header_overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 330px;
  background: rgba(255, 255, 255, 0.8980392157);
  backdrop-filter: blur(9px);
  z-index: 2;
  transform: translateY(-100%);
  transition: all 0.5s ease;
}
.header_overlay.active {
  transform: translateY(0);
}

.homebanner {
  width: 100%;
  height: 100vh;
}
.homebanner .homebanner_carousel {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  min-height: 900px;
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide {
  position: relative;
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_video {
  width: 100%;
  height: 100vh;
  position: relative;
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 13.5%), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_video video {
  width: 100%;
  height: calc(100vh - 1px);
  object-fit: cover;
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text h2 {
  font-family: PingFang SC;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.4;
  background: linear-gradient(90deg, #F18D00 0%, #FFFFFF 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text span {
  font-family: PingFang SC;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.4;
  color: #fff;
  display: inline-block;
  margin: 7px 0 47px;
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_more a {
  display: flex;
  align-items: center;
  gap: 9px;
}
.homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_more a span {
  font-family: PingFang SC;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}
.homebanner .homebanner_carousel .homebanner_carousel_actions {
  position: absolute;
  left: 10%;
  bottom: 28%;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 61px;
  z-index: 2;
}
.homebanner .homebanner_overlay {
  pointer-events: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-image: url("/static/images/banner_overlay.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: 50% 37%;
}
.homebanner .homebanner_content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  background-image: url("/static/images/logo_big.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.homebanner .homebanner_content h2 {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.4;
  margin: 382px 0 35px;
}
.homebanner .homebanner_content p {
  font-family: PingFang SC;
  font-size: 18px;
  line-height: 2;
  color: #666;
}
.homebanner .homebanner_brain {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 70px 0;
    opacity: 0;
}
.homebanner .homebanner_brain .homebanner_brain_video, .homebanner .homebanner_brain .homebanner_brain_img {
  border-radius: 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  margin-top: 50px;
  width: max-content;
  text-align: center;
  max-width: 100%;
}
.homebanner .homebanner_brain img,
.homebanner .homebanner_brain video {
    width: auto;
  /*width: 100%;*/
  height: calc(100vh - 282px);
  /*object-fit: cover;*/
  border-radius: 50px;
}
.homebanner .homebanner_brain .homebanner_brain_video {
  position: absolute;
  top: 0;
  left: 50%;
}
.homebanner .homebanner_brain .homebanner_brain_video .button_more {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.unfold_nav {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: url(/static/images/unfold_bg.png);
  backdrop-filter: blur(85px);
}
.unfold_nav .unfold_nav_head {
  display: flex;
  justify-content: space-between;
}

.homeintro {
  padding: 70px 0 44px;
}
.homeintro .homeintro_content {
  margin-top: 44px;
  display: flex;
  gap: 90px;
  justify-content: space-between;
}
.homeintro .homeintro_content .homeintro_stats {
  width: 300px;
  padding: 20px 0 66px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}
.homeintro .homeintro_content .homeintro_stats .homeintro_stat h4 {
  font-weight: 500;
  font-size: 20px;
}
.homeintro .homeintro_content .homeintro_stats .homeintro_stat p {
  font-family: PingFang SC;
  line-height: 1.5;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.homeintro .homeintro_content .homeintro_stats .homeintro_stat p span {
  display: inline-block;
  font-weight: 700;
  font-size: 42px;
  color: #FF7700;
  padding-right: 7px;
}
.homeintro .homeintro_content .homeintro_map {
  flex: 1;
  display: flex;
  align-items: center;
}
.homeintro .homeintro_content .homeintro_map img {
  width: 100%;
}
.homeintro .homeintro_features {
  width: 100%;
  height: 100px;
  padding: 0 80px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
}
.homeintro .homeintro_features .homeintro_feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.homeintro .homeintro_features .homeintro_feature>img{
      transition: all .5s;
}
.homeintro .homeintro_features .homeintro_feature:hover>img{
    transform: rotateY(360deg);
    transition: all .5s;
}
.homeintro .homeintro_features .homeintro_feature h3 {
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: justify;
}

.homebusiness {
  width: 100%;
  background-color: #F7F7F7;
  padding: 70px 0 40px;
}
.homebusiness .homebusiness_cards .homebusiness_card {
  /* display: none; */
  gap: 10%;
  justify-content: space-between;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  height: 0;
  overflow: hidden;
}
.homebusiness .homebusiness_cards .homebusiness_card.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  height: auto;
}
.homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_left {
  width: 40%;
}
.homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_left h3 {
  margin-top: 42px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
}
.homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_left p {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  margin: 20px 0 70px;
}
.homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_right {
  width: 50%;

  opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_right {
            opacity: 1;
            transform: translateX(0);
        }
.homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_right img {
  width: 100%;
}
.homebusiness .homebusiness_tabs {
  display: flex;
  gap: 17px;
  justify-content: space-between;
  margin-top: 30px;
}
.homebusiness .homebusiness_tabs .homebusiness_tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  height: 172px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.homebusiness .homebusiness_tabs .homebusiness_tab:nth-child(1) {
  background: url(/static/images/homebusiness_tab_safety.png) no-repeat;
  background-size: cover;
}
.homebusiness .homebusiness_tabs .homebusiness_tab:nth-child(2) {
  background: url(/static/images/homebusiness_tab_service.png) no-repeat;
  background-size: cover;
}
.homebusiness .homebusiness_tabs .homebusiness_tab:nth-child(3) {
  background: url(/static/images/homebusiness_tab_ai.png) no-repeat;
  background-size: cover;
}
.homebusiness .homebusiness_tabs .homebusiness_tab.active, .homebusiness .homebusiness_tabs .homebusiness_tab:hover {
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  transform: translateY(-10px);
}
.homebusiness .homebusiness_tabs .homebusiness_tab h3 {
  font-weight: 600;
  font-size: 24px;
  color: #000;
}
.homebusiness .homebusiness_tabs .homebusiness_tab p {
  font-weight: 400;
  font-size: 14px;
  color: #333;
  margin: 8px 0 18px;
}

.homenews {
  width: 100%;
  padding-top: 70px;
}
.homenews .homenews_list {
  margin-top: 14px;
  height: 600px;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item {
  max-width: 460px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #F4F4F4;
  transition: all 0.5s ease;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_thumbnail {
  height: 260px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content {
  padding: 31px 26px 47px;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #000;
  min-height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
  -webkit-line-clamp: 2;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content p {
  font-size: 14px;
  line-height: 24px;
  color: #999;
  margin: 16px 0 22px;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content .homenews_item_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content .homenews_item_meta time {
  font-weight: 500;
  font-size: 16px;
  color: #B7B7B7;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item:hover {
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.1019607843);
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item:hover a .homenews_item_thumbnail img {
  transform: scale(1.2);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 32px));
  }
}
.homepartner {
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
.homepartner::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 106px;
  z-index: 2;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 60%);
  left: 0;
  top: 80px;
}
.homepartner::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 106px;
  background: linear-gradient(-270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
  right: 0;
  top: 80px;
}
.homepartner .homepartner_container {
  display: flex;
}
.homepartner .homepartner_container .homepartner_list {
  width: fit-content;
  display: flex;
  gap: 32px;
  margin-right: 32px;
  flex-wrap: nowrap;
  animation: marquee-left var(--t) linear infinite;
}
.homepartner .homepartner_container .homepartner_list .homepartner_item {
  width: 260px;
  height: 86px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homepartner .homepartner_container .homepartner_list .homepartner_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.channel_banner {
  position: relative;
  height: 550px;
}
.channel_banner .channel_banner_media {
  width: 100%;
  height: 100%;
  position: relative;
}
.channel_banner .channel_banner_media::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 30%);
}
.channel_banner .channel_banner_media img,
.channel_banner .channel_banner_media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel_banner .channel_banner_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}
.channel_banner .channel_banner_title h2 {
  font-weight: 600;
  font-size: 64px;
  color: #fff;
  line-height: 1.4;
}
.channel_banner .channel_banner_title h2.shadows {
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
.channel_banner .channel_banner_title span {
  font-weight: 500;
  font-size: 24px;
  background: linear-gradient(90deg, #F18D00 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  margin-bottom: 45px;
}
.channel_banner .channel_banner_title span::after {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 5px;
  background-color: #F18D00;
  border-radius: 5px 0 5px 0;
}
.channel_banner .channel_banner_title p {
  font-size: 20px;
  color: #fff;
}
.channel_banner .channel_language {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.channel_banner .channel_language a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.channel_banner .channel_language a.active {
  color: #FFFFFF;
}
.channel_banner .channel_language a:not(:last-child)::after {
  content: "｜";
  color: rgba(255, 255, 255, 0.6);
  padding: 0 20px;
}

.channelnav_wrapper {
  width: 100%;
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #EDEDED;
}
.channelnav_wrapper nav .channelnav_list {
  display: flex;
  gap: 75px;
}
.channelnav_wrapper nav .channelnav_list li {
  text-align: center;
  position: relative;
}
.channelnav_wrapper nav .channelnav_list li a {
  font-size: 16px;
  line-height: 80px;
  color: #333333;
}
.channelnav_wrapper nav .channelnav_list li.active a {
  color: #F18D00;
}
.channelnav_wrapper nav .channelnav_list li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F18D00;
  border-radius: 2px;
}

.core_technology_title {
  text-align: center;
}
.core_technology_title h3 {
  font-weight: 500;
  font-size: 36px;
  color: #000;
}
.core_technology_title p:nth-of-type(1) {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  color: #666666;
  margin-top: 10px;
}
.core_technology_title .AVOS_description {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #666666;
  margin-top: 5px;
}

.channelbrain_wrapper {
  width: 100%;
}
.channelbrain_wrapper .channelbrain_container {
  padding: 50px 0 110px;
}
.channelbrain_wrapper .channelbrain_container .core_technology_title {
  margin-bottom: 75px;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item {
  flex: 1;
  border: 1px solid #CECECE;
  border-radius: 20px;
  padding: 58px 54px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_icon img {
  width: 64px;
  height: 64px;
  transition: all .5s;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item:hover .channelbrain_item_icon img{
  transform: rotateY(360deg);
  transition: all .5s;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_text {
  text-align: left;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_text p {
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
  color: #000;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_text span {
  font-size: 16px;
  line-height: 34px;
  color: #999999;
}

.IDRIVERBRAIN_wrapper {
  width: 100%;
  padding-bottom: 90px;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container {
  width: 100%;
  padding-top: 68px;
  background-color: #F7F7F7;
  position: relative;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards {
  margin-top: 30px;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card {
  /* display: none; */
  gap: 20px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  height: 0;
  overflow: hidden;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_left {
  width: 45%;
  padding-top: 50px;

  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card.active .IDRIVERBRAIN_card_left{
  opacity: 1;
            transform: translateX(0);
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_left abbr {
  font-weight: 600;
  font-size: 32px;
  color: #000;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_left p {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin: 10px 0 60px;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
  -webkit-line-clamp: 5;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_right {
  width: 55%;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_right img {
  width: 100%;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card.active {
  display: flex;

  opacity: 1;
  transform: translateY(0);
  height: auto;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab {
  flex: 1;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 20px;
  padding: 24px 30px;
  transition: all 0.5s ease;
  cursor: pointer;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab abbr {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  display: inline-block;
  margin-top: 20px;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab .title_zh {
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin: 15px 0;
  transition: all 0.5s ease;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab .title_en {
  font-size: 16px;
  color: rgba(102, 102, 102, 0.8);
  transition: all 0.5s ease;
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab.active {
  transform: translateY(-10px);
}
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab.active abbr,
.IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab.active .title_zh {
  color: #F18D00;
  transition: all 0.5s ease;
}

.AVOS_wrapper {
  width: 100%;
  background-color: #fff;
}
.AVOS_wrapper .AVOS_container {
  padding: 115px 0 60px;
}
.AVOS_wrapper .AVOS_container .AVOS_list {
  margin-top: 75px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
.AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item {
  flex: 1;
  background-color: #fff;
  border-radius: 20px;
}
.AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item .AVOS_item_thumb {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item .AVOS_item_thumb img {
  width: 100%;
}
.AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item .AVOS_item_content {
  min-height: 255px;
  border-radius: 0 0 20px 20px;
  padding: 28px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0784313725);
}
.AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item .AVOS_item_content h4 {
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}
.AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item .AVOS_item_content p {
  font-size: 14px;
  line-height: 26px;
  color: #666666;
  text-align: justify;
}

.core_technology_content {
  margin-top: 40px;
  text-align: center;
}
.core_technology_content img {
  width: 100%;
}

.AVDC_wrapper {
  background: url(/static/images/avdc_bg.png) no-repeat center bottom;
  background-size: cover;
  padding: 80px 0 90px;
}
.oneloop_wrapper {
  padding: 95px 0 115px;
}
.listproduct_advantages {
  width: 100%;
}
.listproduct_advantages img {
  width: 100%;
}

.listproduct_title {
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  color: #000;
}

.listproduct_specs {
  background: url(/static/images/product_bg.png) no-repeat center bottom;
  background-size: cover;
}
.listproduct_specs .listproduct_specs_container {
  padding: 70px 0 20px;
  z-index: 0;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-top: 70px;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section .listproduct_specs_thumb {
  width: 50%;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section .listproduct_specs_thumb img {
  max-width: 100%;
  max-height: 470px;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table {
  width: 50%;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table caption {
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  text-align: left;
  margin-bottom: 24px;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5px;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr {
  height: 52px;
  line-height: 52px;
  display: flex;
  padding: 0 15px;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr:nth-child(4n-3), .listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr:nth-child(4n-2) {
  background-color: #fff;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr:nth-child(4n-1), .listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr:nth-child(4n) {
  background-color: rgba(248, 248, 248, 0.8);
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr td {
  white-space: nowrap;
  flex: 1;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr td:first-child {
  color: #666;
  font-weight: 400;
}
.listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody tr td:last-child {
  font-weight: 600;
}
.listproduct_specs .listproduct_specs_container .listproduct_category_list {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}
.listproduct_specs .listproduct_specs_container .listproduct_category_list .listproduct_category_item {
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
}
.listproduct_specs .listproduct_specs_container .listproduct_category_list .listproduct_category_item img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
.listproduct_specs .listproduct_specs_container .listproduct_category_list .listproduct_category_item p {
  font-size: 14px;
  line-height: 24px;
  color: #09091C;
  margin-top: 5px;
}
.listproduct_specs .listproduct_specs_container .listproduct_category_list .listproduct_category_item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #FF9500;
  border-radius: 2px 0 2px 0;
}

.listproduct_case {
  padding: 70px 0 140px;
}
.listproduct_case .listproduct_case_list {
  margin-top: 65px;
  position: relative;
  z-index: 0;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide {
  text-align: center;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide img {
  transform: scaleY(0.9);
  transform-origin: bottom;
  transition: all 0.5s ease;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  height: 495px;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide.case_slide_active img{
  height: 550px;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide h4 {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin: 25px 10px;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide p {
  font-size: 14px;
  line-height: 150%;
  color: #333333;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide h4,
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide p {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.listproduct_case .listproduct_case_list .swiper-wrapper {
  /* 选中的 slide */
}
.listproduct_case .listproduct_case_list .swiper-wrapper .case_slide_active img,
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide-duplicate-active img {
  transform: scaleY(1) !important;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .case_slide_active h4,
.listproduct_case .listproduct_case_list .swiper-wrapper .case_slide_active p,
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide-duplicate-active h4,
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide-duplicate-active p {
  opacity: 1 !important;
  visibility: visible !important;
}
.listproduct_case .listproduct_case_list .listproduct_case_prev,
.listproduct_case .listproduct_case_list .listproduct_case_next {
  position: absolute;
  top: 40%;
  width: 150px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 70px;
  z-index: 1;
}
.listproduct_case .listproduct_case_list .listproduct_case_prev {
  left: 5%;
}
.listproduct_case .listproduct_case_list .listproduct_case_next {
  right: 5%;
}

.breadcrumb {
  margin-top: 100px;
}
.breadcrumb .breadcrumb_container .breadcrumb_list {
  height: 90px;
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb_container .breadcrumb_list .breadcrumb_item a {
  font-size: 16px;
  color: #999999;
}
.breadcrumb .breadcrumb_container .breadcrumb_list .breadcrumb_item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("/static/images/icon_breadcrumb.svg") no-repeat center;
  margin: 0 9px;
}

.solution_wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution_wrapper .solution_container {
  text-align: center;
  /* width: 1300px; */
}
.solution_wrapper .solution_container .solution_text{
  width: 1300px;
  margin: auto;
}
.solution_wrapper .solution_container .solution_title {
  font-weight: 500;
  font-size: 36px;
  color: #FFFFFF;
}
.solution_wrapper .solution_container .solution_cont {
  color: #FFF;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */
  margin: 33px 0 45px;
}
.solution_wrapper .solution_container .solution_description {
  font-size: 18px;
  line-height: 34px;
  color: #FFFFFF;
  margin: 33px 0 45px;
}
.solution_wrapper .solution_container .solution_list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.solution_wrapper .solution_container .solution_list .solution_item {
  width: 210px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 20px;
  padding: 23px 14px;
  text-align: center;
}
.solution_wrapper .solution_container .solution_list .solution_item img {
  width: 36px;
  height: 36px;
}
.solution_wrapper .solution_container .solution_list .solution_item p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.4;
}

.company_intro {
  padding: 60px 0 105px;
  scroll-margin-top: 100px;
  overflow: hidden;
}
.company_intro .company_intro_container {
  display: flex;
  gap: 45px;
}
.company_intro .company_intro_container .company_intro_left {
  width: 50%;
}
.company_intro .company_intro_container .company_intro_left img {
  border-radius: 20px;
  width: 100%;
}
.company_intro .company_intro_container .company_intro_right {
  width: 50%;
}

.about_title {
  font-weight: 500;
  font-size: 36px;
  color: #000000;
  text-align: center;
}

.company_section {
  width: 100%;
  background-color: #f6f5f5;
}
.company_section .company_vision {
  padding-top: 80px;
  height: 390px;
  background: url(/static/images/vision_bg.svg) no-repeat center bottom;
  background-size: cover;
}
.company_section .company_vision p {
  margin-top: 64px;
  font-weight: 500;
  font-size: 36px;
  line-height: 52px;
  color: #F18D00;
  text-align: center;
  position: relative;
}
.company_section .company_vision p::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 5px;
  background-color: #F18D00;
  border-radius: 5px 0 5px 0;
}
.company_section .company_values {
  padding: 60px 0 105px;
}
.company_section .company_values .company_values_list {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}
.company_section .company_values .company_values_list .company_values_item {
  padding: 60px;
  flex: 1;
  background-color: #fff;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border-bottom: 5px solid transparent;
  transition: all 0.5s ease;
}
.company_section .company_values .company_values_list .company_values_item img {
  width: 64px;
  height: 64px;
}
.company_section .company_values .company_values_list .company_values_item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
  color: #000000;
}
.company_section .company_values .company_values_list .company_values_item:hover {
  cursor: pointer;
  transform: translateY(-16px);
  border-bottom-color: #F18D00;
}

.team_wrapper {
  scroll-margin-top: 100px;
  padding: 95px 0 94px;
}
.team_wrapper .team_container .team_list {
  margin-top: 55px;
  display: flex;
  flex-wrap: wrap;
}
.team_wrapper .team_container .team_list .team_item {
  /* flex: 1; */
  flex-shrink: 0;
  /* max-width: 342px; */
  width: 25%;
}
.team_wrapper .team_container .team_list .team_item .team_info_name {
  font-weight: 500;
  font-size: 28px;
  line-height: 45px;
  color: #F18D00;
  margin-bottom: 8px;
}
.team_wrapper .team_container .team_list .team_item .team_info_position {
  font-size: 16px;
  color: #333333;
}
.team_wrapper .team_container .team_list .team_item .team_link {
  display: block;
  background: url(../images/team_wrapper_icon_link.svg) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-top: 60px;
}
.team_wrapper .team_container .team_list .team_item .team_item_main {
  display: flex;
  gap: 52px;
  height: 330px;
  justify-content: space-between;
}
.team_wrapper .team_container .team_list .team_item:nth-child(odd) .team_item_main {
  background-color: #F2F2F2;
}
.team_wrapper .team_container .team_list .team_item:nth-child(even) .team_item_main {
  background-color: #F9F9F9;
}
.team_wrapper .team_container .team_list .team_item .team_item_main .team_info {
  flex: 1;
  padding-left: 30px;
  margin-top: 120px;
}
.team_wrapper .team_container .team_list .team_item .team_item_main .team_avatar {
  width: 160px;
  height: 169px;
  position: relative;
}
.team_wrapper .team_container .team_list .team_item .team_item_main .team_avatar img {
  width: 100%;
  height: 100%;
}
.team_wrapper .team_container .team_list .team_item .team_item_main .team_avatar::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  transform: translate(-25px, 25px);
  background: url(/static/images/icon_about_team.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.team_wrapper .team_container .team_list .team_item .team_item_main:hover {
  cursor: pointer;
}
.team_wrapper .team_container .team_list .team_item .team_item_main:hover .team_avatar::after {
  transform: translate(0, 0);
}

.popup_wrapper {
  display: none;
}
.popup_wrapper.active {
  display: block;
}
.popup_wrapper .popup_bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.popup_wrapper .popup_container {
  width: 768px;
  position: fixed;
  top: 50%;
  left: 50%;
  min-height: auto;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 9;
  padding-bottom: 55px;
}
.popup_wrapper .popup_container .popup_main {
  display: flex;
}
.popup_wrapper .popup_container .popup_main .popup_avatar {
  width: 182px;
  height: 192px;
  position: relative;
}
.popup_wrapper .popup_container .popup_main .popup_avatar img {
  width: 100%;
  height: 100%;
}
.popup_wrapper .popup_container .popup_main .popup_content {
  flex: 1;
  padding: 0 60px;
}
.popup_wrapper .popup_container .popup_main .popup_content .popup_content_info {
  padding: 35px 0;
  border-bottom: 1px solid #E9ECF0;
  margin-bottom: 35px;
}
.popup_wrapper .popup_container .popup_main .popup_content .popup_content_intro{
  padding-left: 6px;
}
.popup_wrapper .popup_container .popup_main .popup_content .popup_content_intro p {
  font-size: 14px;
  line-height: 2;
  color: #626767;
  position: relative;
}
.popup_wrapper .popup_container .popup_main .popup_content .popup_content_intro p::before{
  content: none;
}
.popup_wrapper .popup_container .popup_main .popup_content .popup_content_intro p::after {
  content: "·";
  left: -8px;
  position: absolute;
  top: 13px;
  width: 2px;
  height: 2px;
  background: #626767;
  border-radius: 50%;
  overflow: hidden;
}
.popup_wrapper .popup_container .icon_company {
  position: absolute;
  top: 25px;
  right: 140px;
}
.popup_wrapper .popup_container .icon_close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.patent_container .patent_certificate {
  margin-top: 40px;
  width: 100%;
  height: 700px;
  background: url(/static/images/patent.svg) no-repeat center center;
  position: relative;
}
.patent_container .patent_certificate .patent_number_list {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}
.patent_container .patent_certificate .patent_number_list::after{
  content: "项";
  position: absolute;
  bottom: 0;
  right: -42px;
  color: #666;
  font-family: "PingFang SC";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item {
  width: 90px;
  height: 140px;
  border-radius: 15px;
  border: 1px solid #F18D00;
  position: relative;
  perspective: 1000px;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item .patent_number {
  position: absolute;
  width: 100%;
  height: 50%;
  font-weight: 700;
  font-size: 120px;
  line-height: 140px;
  text-align: center;
  color: #F18D00;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  backface-visibility: hidden;
  transition: all 0.2s ease;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item .patent_number.patent_number_1 {
  background-color: #FFF1DD;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item .patent_number.patent_number_2 {
  top: 50%;
  line-height: 0;
  background-color: #FFF5E7;
  border-radius: 0 0 15px 15px;
  transform: rotateX(180deg);
  transform-origin: center top;
  z-index: 2;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item .patent_number.patent_number_3 {
  background-color: #FFF1DD;
  transform-origin: center bottom;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item .patent_number.patent_number_4 {
  top: 50%;
  line-height: 0;
  background-color: #FFF5E7;
  border-radius: 0 0 15px 15px;
}
.patent_container .patent_certificate .patent_number_list .patent_number_item.flipping .patent_number_2 {
  transform: rotateX(0);
}
.patent_container .patent_certificate .patent_number_list .patent_number_item.flipping .patent_number_3 {
  transform: rotateX(-180deg);
}

.development {
  scroll-margin-top: 100px;
  padding: 80px 0;
}
.development .development_container .development_main {
  width: 100%;
  display: flex;
  gap: 10%;
  justify-content: space-between;
}
.development .development_container .development_main .development_main_left {
  height: 800px;
  position: sticky;
  top: 80px;
}
.development .development_container .development_main .development_main_left .development_title {
  width: fit-content;
}
.development .development_container .development_main .development_main_left .development_title .about_title {
  text-align: left;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 5px;
}
.development .development_container .development_main .development_main_left .development_title .about_title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 28px;
  height: 5px;
  border-radius: 5px 0 5px 0;
  background-color: #F18D00;
}
.development .development_container .development_main .development_main_left .development_year_wrapper {
  overflow: hidden;
  height: 100%;
  display: flex;
  padding-right: 66px;
}
.development .development_container .development_main .development_main_left .development_year_wrapper .development_swiper {
  margin-left: 0;
  height: 200px;
  overflow: visible;
}
.development .development_container .development_main .development_main_left .development_year_wrapper .development_swiper .swiper-slide {
  height: 100%;
}
.development .development_container .development_main .development_main_left .development_year_wrapper .development_swiper .swiper-slide .development_year {
  opacity: 0.1;
  transition: all 0.5s ease;
}
.development .development_container .development_main .development_main_left .development_year_wrapper .development_swiper .swiper-slide.swiper-slide-active .development_year {
  opacity: 1;
}
.development .development_container .development_main .development_main_left .development_year_wrapper .development_swiper .development_swiper_arrow {
  position: absolute;
  bottom: 0;
  right: -30px;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.development .development_container .development_main .development_main_left .development_year_wrapper .development_year {
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  background: linear-gradient(178.29deg, #F18D00 14.11%, #FFCA80 81.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.development .development_container .development_main .development_main_list {
  padding-top: 51px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.development .development_container .development_main .development_main_list .development_main_item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 21px;
  padding-top: 20px;
  border-bottom: 1px solid #E5E5E5;
}
.development .development_container .development_main .development_main_list .development_main_item span {
  font-size: 20px;
  line-height: 1;
  color: #999999;
}
.development .development_container .development_main .development_main_list .development_main_item p {
  padding-left: 27px;
  font-size: 18px;
  line-height: 2;
  color: #333333;
  position: relative;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.development .development_container .development_main .development_main_list .development_main_item p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #333333;
  /* transform: translateY(-50%); */
  transform: inherit;
  margin: 0 10px;
}

.honor {
  scroll-margin-top: 100px;
  background: url(/static/images/honor_bg.png) no-repeat top right;
  background-size: cover;
  padding: 90px 0 290px;
}
.honor .honor_container {
  position: relative;
}
.honor .honor_container .honor_list {
  margin-top: 63px;
}
.honor .honor_container .honor_list .honor_item {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
.honor .honor_container .honor_list .honor_item span {
  display: inline-block;
  font-size: 18px;
  line-height: 40px;
  color: #666666;
  padding: 0 40px;
  border-bottom: 1px solid #D9D9D9;
}
.honor .honor_container .honor_list .honor_item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #492D26;
  margin-top: 10px;
  white-space: wrap;
}
.honor .honor_container .honor_list .swiper-wrapper .swiper-slide {
  margin-bottom: 50px;
  padding: 0 20px;
}
.honor .honor_container .honor_list .swiper-wrapper {
  margin-bottom: 50px;
}
.honor .honor_container .honor_list_progressbar {
  width: 50%;
  height: 10px;
  border-radius: 10px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.honor .honor_container .honor_list_progressbar .swiper-pagination-progressbar-fill {
  background: linear-gradient(90deg, #F18D00 0%, #FFA72A 100%);
  border-radius: 10px;
}

.contact_wrapper {
  margin-top: 100px;
  padding: 80px 0 135px;
}
.contact_wrapper .contact_container .contact_title {
  text-align: center;
}
.contact_wrapper .contact_container .contact_title h2 {
  font-weight: 500;
  font-size: 36px;
  color: #000;
}
.contact_wrapper .contact_container .contact_title p {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  color: #666666;
  margin-top: 10px;
}
.contact_wrapper .contact_container .contact_list {
  width: max-content;
  height: 80px;
  margin: 40px auto 0;
  display: flex;
  background-color: #F18D00;
  border-radius: 20px;
  overflow: hidden;
}
.contact_wrapper .contact_container .contact_list .contact_item {
  line-height: 80px;
  padding: 0 107px;
  transition: all 0.5s ease;
}
.contact_wrapper .contact_container .contact_list .contact_item a {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  transition: all 0.5s ease;
}
.contact_wrapper .contact_container .contact_list .contact_item.active {
  background-color: #F3C91E;
}
.contact_wrapper .contact_container .contact_list .contact_item.active a {
  color: #3E290B;
}
.contact_wrapper .contact_container .contact_list .contact_item:hover {
  cursor: pointer;
}
.contact_wrapper .contact_container .contact_content {
  display: flex;
  margin-top: 83px;
}
.contact_wrapper .contact_container .contact_content .contact_info {
  width: 50%;
}
.contact_wrapper .contact_container .contact_content .contact_info h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  color: #000;
}
.contact_wrapper .contact_container .contact_content .contact_info > p {
  font-size: 18px;
  line-height: 2;
  color: #606168;
  margin: 11px 0 35px;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_detail .contact_detail_text p {
  font-size: 16px;
  color: #999;
  line-height: 22px;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_detail .contact_detail_text a {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_qrcodes {
  display: flex;
  gap: 26px;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_qrcodes .contact_qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_qrcodes .contact_qrcode .contact_qrcode_label {
  display: flex;
  border: 1px solid #DEDEDE;
  border-radius: 25px;
  height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  gap: 8px;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_qrcodes .contact_qrcode .contact_qrcode_label a {
  font-size: 16px;
  color: #000;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_qrcodes .contact_qrcode .contact_qrcode_img {
  width: 110px;
  height: 110px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 7px;
  position: relative;
  border-radius: 10px;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_qrcodes .contact_qrcode .contact_qrcode_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact_wrapper .contact_container .contact_content .contact_info .contact_qrcodes .contact_qrcode:first-child .contact_qrcode_label a {
  color: #00C800;
}
.contact_wrapper .contact_container .contact_content .contact_form {
  width: 50%;
  display: none;
  flex-direction: column;
  gap: 18px;
}
.contact_wrapper .contact_container .contact_content .contact_form.active{
  display: flex;
}
.contact_wrapper .contact_container .contact_content .contact_form input {
  width: 100%;
  height: 53px;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 16px;
}
.contact_wrapper .contact_container .contact_content .contact_form input::placeholder {
  color: #BDBDBD;
  font-weight: 500;
  font-size: 16px;
}
.contact_wrapper .contact_container .contact_content .contact_form textarea {
  flex: 1;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  padding: 9px 18px;
  font-size: 16px;
  font-family: sans-serif;
  resize: none;
}
.contact_wrapper .contact_container .contact_content .contact_form textarea::placeholder {
  font-family: sans-serif;
  color: #BDBDBD;
  font-weight: 500;
  font-size: 16px;
}
.contact_wrapper .contact_container .contact_content .contact_form button {
  height: 53px;
  background: #F18D00;
  border-radius: 10px;
  text-align: center;
  line-height: 53px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
.contact_wrapper .contact_container .contact_content .contact_form button:hover {
  cursor: pointer;
}

.listnews_wrapper {
  padding: 40px 0 60px;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item {
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 26px;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item:hover .listnews_item_more {
  opacity: 1;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item:last-child {
  margin-bottom: 55px;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a {
  display: flex;
  align-items: center;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date {
  padding: 0 40px;
  white-space: nowrap;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date p {
  font-family: Arial;
  font-weight: 700;
  font-size: 48px;
  color: #000;
  margin-top: 7px;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date span {
  font-family: Arial;
  font-size: 18px;
  color: #000;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_thumb {
  width: 230px;
  padding: 26px 0;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_text {
  flex: 1;
  padding: 0 7% 0 3%;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_text h3 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 14px;
}
.listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_text p {
  font-size: 14px;
  line-height: 2;
  color: #666666;
}

.shownews_container {
  max-width: 1000px;
  padding-bottom: 130px;
}
.shownews_container .shownews_head {
  padding-bottom: 10px;
  border-bottom: 1px solid #D0D4E4;
}
.shownews_container .shownews_head h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}
.shownews_container .shownews_head .shownews_meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.shownews_container .shownews_head .shownews_meta p {
  font-size: 16px;
  line-height: 2;
  color: #666;
}
.shownews_container .shownews_head .shownews_meta .shownews_meta_date,
.shownews_container .shownews_head .shownews_meta .shownews_meta_view {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shownews_container .shownews_content {
  margin-top: 40px;
}

.medianav_container .medianav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 75px;
  padding-top: 35px;
}
.medianav_container .medianav_list li {
  text-align: center;
  position: relative;
  padding: 5px 0 10px;
}
.medianav_container .medianav_list li a {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
.medianav_container .medianav_list li.active a {
  color: #F18D00;
}
.medianav_container .medianav_list li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F18D00;
  border-radius: 2px;
}

.download_container {
  padding: 42px 0 130px;
}
.download_container .download_list .download_item {
  height: 285px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.download_container .download_list .download_item .download_item_thumb {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.download_container .download_list .download_item .download_item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download_container .download_list .download_item .download_item_action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  height: 75px;
  background-color: #F8F8F8;
  border-radius: 0 0 20px 20px;
}
.download_container .download_list .download_item .download_item_action p {
  font-weight: 700;
  font-size: 20px;
  color: #333;
}
.download_container .download_list .download_item .download_item_action a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.download_container .download_list .download_item .download_item_action a span {
  font-size: 16px;
  color: #F18D00;
}

.investor_menu {
  padding: 40px 0;
}
.investor_menu .investor_menu_list {
  display: flex;
  gap: 14px;
}
.investor_menu .investor_menu_list div {
  padding: 5px 18px;
}
.investor_menu .investor_menu_list div a {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}
.investor_menu .investor_menu_list div.active {
  background-color: #F18D00;
  border-radius: 25px;
}
.investor_menu .investor_menu_list div.active a {
  color: #FFFFFF;
}

.listinvestor_container .listinvestor_list{
  padding-bottom: 60px;
  padding-top: 30px;
}
.listinvestor_container .listinvestor_list .listinvestor_item {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 0;
  margin-bottom: 25px;
}
.listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date {
  padding: 35px 60px 35px 100px;
  text-align: center;
  border-right: 1px solid #D9D9D9;
}
.listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date p {
  font-family: Arial;
  font-weight: 700;
  font-size: 65px;
  color: #000;
}
.listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date span {
  font-family: Arial;
  font-size: 20px;
  color: #000;
  white-space: nowrap;
}
.listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text {
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text h3 {
  font-weight: 700;
  font-size: 24px;
  color: #000;
  line-height: 180%;
}
.listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text p {
  font-size: 14px;
  line-height: 1.6;
  color: #999999;
}

footer {
  width: 100%;
  background: url(/static/images/footer_bg.png) no-repeat;
  background-size: cover;
  margin-top: 200px;
}
footer .footer_container {
  position: relative;
  padding-top: 270px;
}
footer .footer_container .footer_message {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 400px;
  background: url(/static/images/footer_message_bg.png) no-repeat;
    background-size: cover;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 55px 64px;
}
footer .footer_container .footer_message .footer_message_info p {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: #000000;
}
footer .footer_container .footer_message .footer_message_info p:nth-child(2) {
  color: #F18D00;
}
footer .footer_container .footer_message .footer_message_info span {
  display: inline-block;
  font-size: 16px;
  color: #666666;
  margin: 20px 0 55px;
  line-height: 120%;
}
footer .footer_container .footer_message .footer_message_info .icon_more_contact a {
  display: inline-block;
  background: url(../images/foot_msg_icon_link.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 32px;
}
footer .footer_container .footer_message .footer_message_form {
  width: 45%;
  text-align: right;
}
footer .footer_container .footer_message .footer_message_form .footer_message_group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
footer .footer_container .footer_message .footer_message_form .footer_message_group select {
  flex: 1;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  padding: 0 19px;
  font-family: sans-serif;
  color: #999999;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url('data:image/svg+xml;utf8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.2731 8.23059C6.6677 8.64827 7.3323 8.64827 7.7269 8.23059L13.2007 2.43674C13.8031 1.79905 13.351 0.75 12.4738 0.75H1.52623C0.648952 0.75 0.196867 1.79905 0.79933 2.43674L6.2731 8.23059Z" fill="%23B3B3B3"/></svg>') no-repeat right 19px center;
}
footer .footer_container .footer_message .footer_message_form .footer_message_group input {
  flex: 1;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  padding: 0 19px;
  font-size: 16px;
}
footer .footer_container .footer_message .footer_message_form .footer_message_group input::placeholder {
  font-family: sans-serif;
  color: #999999;
  font-size: 16px;
}
footer .footer_container .footer_message .footer_message_form .footer_message_group textarea {
  width: 100%;
  height: 110px;
  border-radius: 10px;
  padding: 14px 19px;
  font-size: 16px;
  font-family: sans-serif;
}
footer .footer_container .footer_message .footer_message_form .footer_message_group textarea::placeholder {
  font-family: sans-serif;
  color: #999999;
  font-size: 16px;
}
footer .footer_container .footer_message .footer_message_form button {
  width: 160px;
  height: 45px;
  background: linear-gradient(102.21deg, #FEBE0D 20.09%, #FF5001 65.28%);
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
footer .footer_container .footer_main .footer_box {
  display: flex;
  justify-content: space-between;
}
footer .footer_container .footer_main .footer_box:first-child {
  margin-bottom: 65px;
}
footer .footer_container .footer_main .footer_box:first-child .footer_logo {
  height: 70px;
}
footer .footer_container .footer_main .footer_box:first-child .footer_logo img {
  height: 100%;
  width: auto;
}
footer .footer_container .footer_main .footer_box:first-child .footer_contact {
  text-align: right;
}
footer .footer_container .footer_main .footer_box:first-child .footer_contact p {
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  margin-bottom: 10px;
}
footer .footer_container .footer_main .footer_box:first-child .footer_contact a {
  font-size: 40px;
  color: #fff;
}
/*footer .footer_container .footer_main .footer_box:last-child {*/
/*  gap: 145px;*/
/*}*/
footer .footer_container .footer_main .footer_box:last-child .footer_nav {
  flex: 1;
  display: flex;
  /*justify-content: space-between;*/
  margin-bottom: 60px;
    gap: 13.5%;
}
footer .footer_container .footer_main .footer_box:last-child .footer_nav .header_nav_list .header_nav_title {
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 26px;
    white-space: nowrap;
}
footer .footer_container .footer_main .footer_box:last-child .footer_nav .header_nav_list .header_nav_item a {
  font-size: 18px;
  line-height: 40px;
  color: #AAADAB;
}
footer .footer_container .footer_main .footer_box:last-child .footer_nav .header_nav_list a {
  transition: all 0.5s ease;
}
footer .footer_container .footer_main .footer_box:last-child .footer_nav .header_nav_list a:hover {
  color: #F18D00;
}
footer .footer_container .footer_main .footer_box:last-child .footer_qrcode {
  display: flex;
  gap: 35px;
}
footer .footer_container .footer_main .footer_box:last-child .footer_qrcode .footer_qrcode_box {
  text-align: center;
}
footer .footer_container .footer_main .footer_box:last-child .footer_qrcode .footer_qrcode_box .footer_qrcode_pic {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 12px;
}
footer .footer_container .footer_main .footer_box:last-child .footer_qrcode .footer_qrcode_box .footer_qrcode_pic img {
  width: 100%;
  height: 100%;
}
footer .footer_container .footer_main .footer_box:last-child .footer_qrcode .footer_qrcode_box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
footer .footer_container .footer_copyright {
  border-top: 1px solid rgba(206, 206, 206, 0.2);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_container .footer_copyright p {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 130%;
}
footer .footer_container .footer_copyright p a {
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: underline;
}
footer .footer_container .footer_copyright span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
}
footer .footer_container .footer_copyright span a{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
}

/*# sourceMappingURL=base.css.map */

/* 移动端导航 */
.headMob {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: none;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
    height: 80px;
}
.headMob .mob-box {
  height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}
.headMob .mob-box .box-left .logo-white{
    max-width: 160px;
}
.headMob .box-right-warp {
    display: flex;
    align-items: center;
}
.headMob .box-right-warp .laug-box {
    margin-right: 30px;
}
.headMob .box-right-warp .laug-box a {
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #383C45;
    opacity: .5;
    line-height: 20px;
    vertical-align: middle;
}
.headMob .box-right-warp .laug-box a.active {
    opacity: 1;
}
.headMob .box-right img {
    width: 30px;
}
.headMob .logo{
    display: none;
}
.headMob .box-right .cd2{
    display: none;
}
.mob-bg {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 7;
    left: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}
.headMob.headMob-active .mob-bg {
    opacity: 1;
    visibility: inherit;
}
.mob-list {
    position: fixed;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;
    right: -100%;
    z-index: 8;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    box-shadow: 0 -8px 16px 0 rgb(0 0 0 / 16%);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}
.headMob.headMob-active .mob-list {
    right: 0;
    opacity: 1;
    visibility: inherit;
}
.mob-list .list-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mob-list .top-left {
    float: left;
}
.mob-list .top-left img{
    width: 65%;
}
.mob-list .top-right {
    float: right;
}
.mob-list .top-right .clone {
    display: inline-block;
    background: url(../images/icon-phone-guanbi-white.svg) no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
}
.mob-list .list-cent {
    margin-top: 30px;
}
.mob-list .box-list>li {
    padding: 15px 10px;
    position: relative;
}
.mob-list .box-list>li:not(:last-child) {
    border-bottom: 1px solid #eaecf2;
}
.mob-list .box-list > li > a {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #333;
}
.mob-list .box-list > li > a.active {
    color: #CD001E;
}
.mob-list .list-cent .con-laug{
    margin-top: 30px;
}
.mob-list .list-cent .login-box{
    margin-top: 20px;
}
.mob-list .list-cent .login-box .link_login {

}
.mob-list .list-cent .login-box i {
    background: url(../images/head_login_b.svg) no-repeat center;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
.mob-list .list-cent .login-box span {
    color: #333;
    text-align: center;
    font-family: "Source Han Sans CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 5px;
    vertical-align: middle;
}
.mob-list .list-cent .login-box a {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #383C45;
    opacity: .5;
    line-height: 20px;
    vertical-align: middle;
}
.mob-list .list-cent .laug-box a.active {
    opacity: 1;
}
.mob-list .search-input{
    margin-top: 30px;
}
.mob-list .left-search {
    display: flex;
    margin: 20px 0;
    border: 1px solid #165790;
    padding-left: 15px;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
}
.mob-list .left-search input {
    flex: 1;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
    line-height: 20px;
    background: #fff;
    font-family: PingFangSC-Regular, PingFang SC;
}
.mob-list .left-search button {
    outline: none;
    border: none;
    background: #165790;
    padding: 6px 20px;
}
.mob-list .left-search button span {
    font-size: 15px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    vertical-align: middle;
    padding-left: 5px;
}
.mob-list.mob-listEn .box-list .two-list>li {
    width: 100%;
    float: left;
}

.mob-list .box-list .icon-bottom{
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/phone-icon-bottom.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 16px;
}
.mob-list .box-list > li.active .icon-bottom {
    background: url(../images/phone-icon-top.svg) no-repeat center;
    background-size: contain;
}
.mob-list .box-list .two-list {
    margin: 10px 0;
    display: none;
}
.mob-list .box-list .two-list>li {
    width: 100%;
}
.mob-list .box-list .two-list>li>a {
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #252931;
}
.mob-list .box-list .two-list>li>a.active{
    color: #F18D00;
}
.mob-list.mob-listEn .box-list .two-list>li {
    width: 100%;
    float: left;
}
/* 移动端导航 */
/* 分页 */
.text-center{
    z-index: 2;
    position: relative;
}
.pager .pagination{
    margin: 25px 0;
    display: flex;
}
.pager ul{
    justify-content: center;
}
.pager li {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    margin: 0 5px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #222;
}
.pager li.active {
    background: #F18D00;
    color: #fff;
}
.pager li:hover {
    background: #F18D00;
    color: #fff;
}
.pager li:hover a {
    color: #fff;
}
.pager li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #7F7F7F;
}
.loadmore{
    text-align: center;
    margin: 25px 0;
}
.loadmore .loadmore-tips{
    font-size: 22px;
    font-weight: 400;
    color: #F18D00;
    line-height: 30px;
}
/* 分页 */
.indSide-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}
.indSide-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #004381;
    background: url(../images/indSide_bg.png) no-repeat center;
    background-size: cover;
    transition: all .6s ease;
}
.indSide::before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../images/indSide_bg_xian.png) no-repeat center;
    background-size: contain;
    height: 443px;
    /* width: 795px; */
    width: 0;
    transition: all .6s ease;
}
.indSide {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.indSide .container{
  width: 100%;
  height: 100%;
  padding: 30px 86px;
}
.indSide-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.indSide-logo, .indSide-close, .indSide-menu span, .indSide-drop-title span, .indSide-drop-text .item span {
    display: flex;
    transform: translateY(100%);
    opacity: 0;
    transition: all .6s ease;
}
.indSide-close {
    user-select: none;
    cursor: pointer;
    width: 87px;
    height: 22px;
    background: url(../images/indSide_icon_clone.png) no-repeat center;
    background-size: contain;
}
.indSide-menu{
    margin-bottom: 40px;
}
.indSide-menu a{
  color: #000;
  font-family: "PingFang SC";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.indSide-drop-text{
    margin-top: 14px;
}
.indSide-drop-text a{
    color: #AAADAB;
    font-family: "PingFang SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.indSide-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6rem;
}
.indSide-list dl{
    flex: 1;
    padding: 20px 10px;
}
.indSide-box.active {
    opacity: 1;
    pointer-events: auto;
}
.indSide-box.active .indSide::before {
    width: 795px;
}
.indSide-box.active::after {
    width: 100%;
}
.indSide-box.active .indSide-logo, .indSide-box.active .indSide-close, .indSide-box.active .indSide-menu span, .indSide-box.active .indSide-drop-title span, .indSide-box.active .indSide-drop-text .item span {
    transition-delay: .3s;
    opacity: 1;
    transform: translateY(0);
}

.notify_price{
    padding: 50px 0;
}
.notify_price .notify_container{
    width: 1440px;
    margin: 0 auto;
    max-width: 100%;
}
.notify_price .list_warp{
    border-radius: 20px;
    background: #FFF5E8;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notify_price .list_top p{
    color: #000;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.notify_price .list_top .topRi span{
    color: #848484;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.notify_price .list_top .topRi a{
    display: inline-block;
    color: #FFF;
    font-family: "Source Han Sans CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 43px;
    background: #19397E;
    padding: 9px 36px;
    margin-left: 15px;
}
.notify_price .list_ul{
    display: flex;
    align-items: center;
}
.notify_price .list_ul li{
    position: relative;
    margin: 0 50px;
}
.notify_price .list_top .box_tit p{
  color: #000;
  font-family: "Source Han Sans CN";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.notify_price .list_top .box1 span{
    color: #000;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.notify_price .list_top .box1 i{
    color: #000;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.notify_price .list_top .box2 span{
    color: #00B33C;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.notify_price .list_top .box2 span.up{
    color: #d60a22;
}
.notify_price .list_top .box2 span.down{
    color: #00B33C;
}
.notify_price .list_top .box2 i{
    font-style: normal;
}
.notify_price .list_ul .box3 p{
  color: #666;
  font-family: "Source Han Sans CN";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.notify_price .list_ul .box3 i{
    color: #E00D12;
    font-family: "Source Han Sans CN";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 1500px){
  .channel_banner .channel_banner_title h2 {
      font-size: 50px;
  }
  .indSide-menu a {
    font-size: 22px;
  }
  .indSide .container {
      padding: 30px 65px;
  }
  .notify_price .notify_container{
    padding: 0 20px;
  }
}
@media (max-width: 1400px){
  .team_wrapper .team_container .team_list .team_item .team_info_name {
      font-size: 24px;
      line-height: 40px;
  }
  .team_wrapper .team_container .team_list .team_item .team_item_main .team_info {
    padding-left: 20px;
    margin-top: 116px;
  }
  .team_wrapper .team_container .team_list .team_item .team_item_main .team_avatar {
    width: 135px;
    height: 142px;
  }
  .team_wrapper .team_container .team_list .team_item .team_item_main .team_avatar::after {
    width: 40px;
    height: 40px;
    transform: translate(-18px, 17px);
  }
  .team_wrapper .team_container .team_list .team_item .team_item_main {
    gap: 40px;
    height: 300px;
  }
  .development .development_container .development_main .development_main_left .development_year_wrapper .development_year {
    font-size: 160px;
  }
  .development .development_container .development_main {
    gap: 9%;
  }
  header .header_logo img {
      max-width: 145px;
  }
  header .header_nav .nav_list {
      gap: 26px;
  }
  .indSide-drop-text a {
    font-size: 16px;
  }
  .indSide-menu a {
      font-size: 19px;
  }
  .indSide .container {
    padding: 30px 38px;
  }
  .contact_wrapper .contact_container .contact_content .contact_info h3 {
      font-size: 30px;
      line-height: 45px;
  }
  .channel_banner .channel_banner_title h2 {
      font-size: 40px;
  }
  .channel_banner {
      height: 500px;
  }
  .company_section .company_vision p {
    font-size: 30px;
    line-height: 42px;
  }
  .about_title {
      font-size: 32px;
  }
  .honor .honor_container .honor_list .honor_item p {
    font-size: 18px;
  }
    footer .footer_container .footer_message .footer_message_info p {
      font-size: 30px;
      line-height: 42px;
  }
  footer .footer_container .footer_message .footer_message_info .icon_more_contact a {
    width: 28px;
    height: 28px;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide.case_slide_active img {
    height: 460px;
}
.listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide img {
    height: 435px;
}
.listproduct_case .listproduct_case_list .listproduct_case_prev, .listproduct_case .listproduct_case_list .listproduct_case_next {
    width: 120px;
    height: 55px;
}
.listproduct_title {
    font-size: 30px;
}
.core_technology_title h3 {
    font-size: 30px;
}
.core_technology_title p:nth-of-type(1) {
    font-size: 16px;
    line-height: 30px;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item {
    padding: 40px 45px;
}
.channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_icon img {
    width: 50px;
    height: 50px;
}
.hometitle_box .hometitle_text h2 {
    font-size: 32px;
}
.hometitle_box .hometitle_description p {
    font-size: 16px;
    line-height: 30px;
}
.hometitle_box {
    gap: 15px;
}
.homeintro .homeintro_content .homeintro_stats .homeintro_stat p span {
    font-size: 36px;
}
}
@media (max-width: 1200px) {
  .development .development_container .development_main .development_main_left .development_year_wrapper .development_year {
    font-size: 130px;
  }
  .team_wrapper .team_container .team_list .team_item {
      width: 33%;
  }
    header .header_nav .nav_list {
        gap: 12px;
    }
    header .header_logo img {
      max-width: 120px;
  }
  footer .footer_container .footer_main .footer_box:first-child .footer_contact a {
      font-size: 30px;
  }
  footer .footer_container .footer_main .footer_box:last-child .footer_nav .header_nav_list .header_nav_item a {
    font-size: 15px;
    line-height: 35px;
  }
  footer .footer_container .footer_main .footer_box:last-child .footer_nav .header_nav_list .header_nav_title {
      font-size: 18px;
      margin-bottom: 20px;
  }
  footer .footer_container .footer_main .footer_box:first-child .footer_logo img {
      max-width: 190px;
  }
  footer .footer_container .footer_main .footer_box:last-child .footer_qrcode .footer_qrcode_box .footer_qrcode_pic {
      width: 110px;
      height: 110px;
      padding: 10px;
  }
  .channel_banner {
    height: 460px;
  }
  .channel_banner .channel_banner_title h2 {
      font-size: 34px;
  }
    .channel_banner {
        height: 410px;
    }
    .channelnav_wrapper nav .channelnav_list {
      gap: 55px;
  }
  .company_section .company_vision p {
              font-size: 26px;
        line-height: 36px;
            margin-top: 45px;
  }
  .about_title {
      font-size: 32px;
  }
  .company_section .company_values .company_values_list .company_values_item img {
      width: 50px;
      height: 50px;
  }
  .rice_ears_front, .rice_ears_back {
    width: 35px;
    height: 80px;
  }
  .honor .honor_container .honor_list .honor_item p {
      font-size: 16px;
  }
  .honor .honor_container .honor_list .honor_item span {
    font-size: 16px;
    line-height: 32px;
  }
  .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date p {
      font-size: 50px;
  }
  .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date span {
    font-size: 18px;
  }
  .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date {
      padding: 35px 60px 35px 77px;
  }
  footer .footer_container .footer_message .footer_message_info p {
    font-size: 26px;
    line-height: 38px;
  }
  .channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item {
    padding: 30px 35px;
  }
  .core_technology_title h3 {
    font-size: 32px;
  }
  .core_technology_title p:nth-of-type(1) {
    font-size: 16px;
    line-height: 30px;
  }
  .channelbrain_wrapper .channelbrain_container .core_technology_title {
    margin-bottom: 55px;
  }
  .AVOS_wrapper .AVOS_container .AVOS_list {
      gap: 30px;
  }
  .AVOS_wrapper .AVOS_container {
    padding: 170px 0 60px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_left p {
      margin: 10px 0 40px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs {
      gap: 30px;
      bottom: -160px;
    }
    .listproduct_title {
      font-size: 32px;
    }
    .listproduct_case .listproduct_case_list .listproduct_case_prev, .listproduct_case .listproduct_case_list .listproduct_case_next {
    width: 100px;
    height: 50px;
    }
    .homeintro .homeintro_features {
    padding: 0 40px;
    }
    .homeintro .homeintro_features .homeintro_feature h3 {
    font-size: 22px;
    }
    .homeintro .homeintro_content .homeintro_stats .homeintro_stat p span {
      font-size: 32px;
  }
  .hometitle_box .hometitle_text h2 {
    font-size: 32px;
  }
  header {
      padding: 0 20px;
  }
  header .header_nav .nav_list .nav_item > a {
    font-size: 14px;
  }
    header .header_operations {
        margin-left: 30px;
        gap: 35px;
    }
    .contact_wrapper .contact_container .contact_title h2 {
      font-size: 30px;
  }
  .contact_wrapper .contact_container .contact_title p {
    font-size: 16px;
    line-height: 30px;
  }
  .notify_price .list_ul li {
    margin: 0 35px;
}
.notify_price .list_warp {
    padding: 40px 35px;
}
    .listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide.case_slide_active img {
        height: 400px;
    }
        .listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide img {
        height: 380px;
    }
        .listproduct_title {
        font-size: 28px;
    }
}
@media (max-width: 1000px) {
  .popup_wrapper .popup_container {
      max-width: 95%;
  }
  .development .development_container .development_main .development_main_left .development_year_wrapper .development_year {
    font-size: 100px;
  }
  .development .development_container .development_main {
      gap: 6%;
  }
  .development .development_container .development_main .development_main_list .development_main_item p {
    font-size: 17px;
  }
  .development .development_container .development_main .development_main_list .development_main_item span {
    font-size: 18px;
  }
  .team_wrapper .team_container .team_list .team_item {
      width: 50%;
  }
    header{
      display: none;
    }
    .headMob {
        display: block;
    }
    footer .footer_container .footer_main .footer_box:last-child {
      gap: 20px;
    }
    footer .footer_container .footer_main .footer_box:last-child .footer_qrcode {
      display: flex;
      gap: 20px;
    }
    footer .footer_container .footer_main .footer_box:last-child .footer_qrcode .footer_qrcode_box .footer_qrcode_pic {
      width: 100px;
      height: 100px;
    }
    .contact_wrapper .contact_container .contact_list .contact_item {
        line-height: 70px;
        padding: 0 70px;
    }
    .contact_wrapper .contact_container .contact_list {
        height: 70px;
    }
    .contact_wrapper .contact_container .contact_list .contact_item a {
        font-size: 16px;
    }
    .contact_wrapper .contact_container .contact_content .contact_info h3 {
        font-size: 28px;
        line-height: 45px;
    }
    .contact_wrapper .contact_container .contact_content .contact_info > p {
        font-size: 15px;
    }
    .contact_wrapper .contact_container .contact_title h2 {
        font-size: 32px;
    }
    .channel_banner .channel_banner_title {
      top: 56%;
    }
    .channel_banner .channel_banner_title h2 {
      font-size: 36px;
    }
    .channelnav_wrapper nav .channelnav_list {
        gap: 50px;
    }
    .company_section .company_values .company_values_list .company_values_item {
      padding: 40px 20px;
    }
    .company_section .company_values .company_values_list .company_values_item p {
      font-size: 18px;
      line-height: 32px;
    }
    .company_section .company_vision p {
        font-size: 26px;
        line-height: 40px;
    }
    .about_title {
      font-size: 30px;
    }
    .company_section .company_values .company_values_list {
      gap: 40px;
  }
  .company_section .company_vision {
    padding-top: 65px;
    height: 350px;
  }
  .patent_container .patent_certificate {
      height: 585px;
      background-size: cover;
  }
  .patent_container .patent_certificate .patent_number_list .patent_number_item {
      width: 80px;
      height: 125px;
  }
  .patent_container .patent_certificate .patent_number_list .patent_number_item .patent_number {
      font-size: 95px;
      line-height: 125px;
  }
  .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text h3 {
      font-size: 22px;
  }
  .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date p {
      font-size: 45px;
  }
  .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date {
      padding: 35px 55px 35px 65px;
  }
  .investor_menu .investor_menu_list {
      gap: 12px;
  }
  footer .footer_container .footer_message {
      padding: 50px 25px;
  }
    footer .footer_container .footer_message .footer_message_info p {
      font-size: 25px;
      line-height: 36px;
  }
  footer .footer_container .footer_message .footer_message_form {
    width: 50%;
  }
  .channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_icon img {
    width: 48px;
    height: 48px;
  }
  .channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_text span {
    line-height: 28px;
  }
  .channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item .channelbrain_item_text p {
      line-height: 30px;
  }
  .channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item {
      padding: 20px 23px;
  }
  .core_technology_title h3 {
      font-size: 28px;
  }
  .core_technology_title p:nth-of-type(1) {
      line-height: 28px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs {
      gap: 25px;
      bottom: -190px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container {
      padding-bottom: 80px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab {
      padding: 20px 20px;
  }
  .listproduct_specs .listproduct_specs_container .listproduct_specs_section table caption {
      font-size: 22px;
      margin-bottom: 20px;
  }
  .listproduct_title {
      font-size: 30px;
  }
  .homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text span {
    font-size: 45px;
  }
  .homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text h2 {
    font-size: 38px;
  }
  .notify_price .list_ul li {
    margin: 0 25px;
}
.notify_price .list_top .box_tit p {
    font-size: 18px;
}
.notify_price .list_top .box1 span {
    font-size: 35px;
}
.notify_price .list_ul .box3 i {
    font-size: 22px;
}
}
@media (max-width: 768px){
  .development .development_container .development_main .development_main_list .development_main_item p::before {
    top: 12px;
  }
    footer .footer_container .footer_main .footer_box:first-child .footer_logo img {
        max-width: 150px;
    }
  .popup_wrapper .popup_container .popup_main .popup_avatar {
      width: 160px;
      height: 168px;
  }
  .popup_wrapper .popup_container .popup_main .popup_content {
      padding: 0 60px 0 30px;
  }
  .honor {
      padding: 90px 0 408px;
  }
  .development .development_container .development_main .development_main_left .development_year_wrapper .development_year {
    font-size: 60px;
  }
  footer .footer_container .footer_message .footer_message_info span {
      margin: 12px 0 20px;
      font-size: 15px;
  }
  footer .footer_container .footer_message .footer_message_info .icon_more_contact a {
    width: 24px;
    height: 24px;
}
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date p {
    font-size: 32px;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date span {
    font-size: 16px;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date {
    padding: 0 25px;
  }
  .listnews_item_more {
      width: 6%;
      height: 175px;
      background-size: 30px 30px;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_text {
    padding: 0 5% 0 3%;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_thumb {
      width: 180px;
  }
  .team_wrapper .team_container .team_list .team_item {
      width: 100%;
  }
    footer .footer_container .footer_main .footer_box:last-child .footer_nav {
        display: none;
    }
    footer .footer_container .footer_main .footer_box {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .footer_main{
      padding-bottom: 35px;
    }
    footer .footer_container .footer_copyright {
      height: auto;
      padding: 13px 0;
    }
    footer .footer_container .footer_copyright p {
      margin-bottom: 12px;
  }
  .contact_wrapper .contact_container .contact_content {
      flex-direction: column;
  }
  .contact_wrapper .contact_container .contact_content .contact_info {
    width: 100%;
  }
  .contact_wrapper .contact_container .contact_content .contact_form {
    width: 100%;
    margin-top: 25px;
  }
  .contact_wrapper .contact_container .contact_content .contact_info h3 {
        font-size: 25px;
        line-height: 40px;
  }
  .contact_wrapper .contact_container .contact_list .contact_item {
      line-height: 60px;
      padding: 0 42px;
  }
  .contact_wrapper .contact_container .contact_list {
      height: 60px;
  }
  .contact_wrapper .contact_container .contact_list .contact_item a {
      font-size: 15px;
  }
  .channelnav_wrapper nav .channelnav_list li a {
    font-size: 15px;
    line-height: 70px;
  }
  .channelnav_wrapper {
    height: 70px;
  }
  .channelnav_wrapper nav .channelnav_list {
        gap: 40px;
    }
    .company_intro .company_intro_container {
      flex-direction: column;
  }
  .company_intro .company_intro_container .company_intro_left {
        width: 100%;
    }
    .company_intro .company_intro_container .company_intro_right {
        width: 100%;
    }
    .listinvestor_container .listinvestor_list .listinvestor_item {
      padding: 15px 0;
      margin-bottom: 25px;
  }
  .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text {
      padding: 22px 25px;
    }
    .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date span {
        font-size: 16px;
    }
    .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date p {
        font-size: 38px;
    }
    .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date {
        padding: 26px 30px 22px 28px;
    }
    .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text h3 {
      font-size: 20px;
    }
    .investor_menu {
        padding: 30px 0;
    }
    .investor_menu .investor_menu_list div {
      padding: 3px 12px;
    }
    .investor_menu .investor_menu_list div a {
      font-size: 13px;
    }
      footer .footer_container .footer_message .footer_message_form {
        width: 100%;
                margin-top: 12px;
    }
    footer .footer_container .footer_message {
        height: 555px;
    }
    footer .footer_container .footer_message{
      flex-direction: column;
    }
    footer .footer_container .footer_message {
      top: -328px;
    }
    footer {
        margin-top: 310px;
    }
    .channelbrain_wrapper .channelbrain_container .channelbrain_list {
      gap: 30px;
      flex-direction: column;
    }
    .channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item {
      width: 80%;
    }
    .AVOS_wrapper .AVOS_container .AVOS_list {
      flex-direction: column;
    }
    .AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item .AVOS_item_content {
      min-height: auto;
    }
    .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card.active {
        flex-direction: column;
    }
    .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_left {
          width: 100%;
      }
      .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_right {
          width: 100%;
      }
      .listproduct_specs .listproduct_specs_container .listproduct_specs_section {
        gap: 30px;
        margin-top: 35px;
        flex-direction: column;
      }
      .medianav_container .medianav_list {
          gap: 50px;
      }
      .homebusiness .homebusiness_cards .homebusiness_card {
        flex-direction: column;
    }
    .homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_left {
        width: 100%;
    }
    .homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_right {
        width: 100%;
        margin-top: 20px;
    }
    .homebusiness .homebusiness_tabs {
        flex-direction: column;
    }
    .homebusiness .homebusiness_tabs .homebusiness_tab {
      padding: 20px 30px;
    }
    .hometitle_box .hometitle_text h2 {
      font-size: 30px;
    }
    .homeintro .homeintro_content {
      flex-direction: column;
      gap: 20px;
    }
    .homeintro .homeintro_content .homeintro_stats .homeintro_stat{
      width: 50%;
    }
    .homeintro .homeintro_content .homeintro_stats {
      width: 100%;
      flex-direction: initial;
      gap: 40px 0;
      flex-wrap: wrap;
        padding: 20px 20px 66px;
  }
      .homeintro .homeintro_features {
        padding: 20px 40px;
        height: auto;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .homeintro .homeintro_features .homeintro_feature{
      width: 50%;
      margin: 8px 0;
    }
    .homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box {
        width: 83%;
    }
    .homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text span {
        font-size: 38px;
    }
    .homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text h2 {
        font-size: 32px;
    }
      .notify_price .list_warp {
        flex-direction: column;
    }
    .notify_price .list_ul {
      margin-top: 20px;
  }
      .notify_price .list_warp {
        padding: 30px 30px;
      }
          .notify_price .list_ul li {
        margin: 0 18px;
    }
}
@media (max-width: 576px){
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_thumb {
      width: 90px;
      padding: 20px 0;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date p {
    font-size: 28px;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date span {
    font-size: 14px;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_date {
    padding: 0 10px;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item .listnews_item_more {
    display: none;
  }
    .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_text {
        padding: 0 3% 0 3%;
    }
    .listnews_wrapper .listnews_container .listnews_list .listnews_item a {
    padding: 15px 0;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_text h3 {
      font-size: 16px;
      margin-bottom: 4px;
      -webkit-line-clamp: 2;
      line-height: 25px;
  }
  .listnews_wrapper .listnews_container .listnews_list .listnews_item a .listnews_item_text p {
      font-size: 12px;
      line-height: 1.6;
  }
  .development .development_container .development_main .development_main_left .development_year_wrapper .development_year {
    font-size: 40px;
  }
  .development .development_container .development_main .development_main_left .development_year_wrapper {
    padding-right: 55px;
            margin-top: 20px;
  }
  .development .development_container .development_main .development_main_left .development_year_wrapper .development_swiper .development_swiper_arrow {
      right: -15px;
              bottom: -24px;
  }
  .development_swiper_next, .development_swiper_prev {
    width: 30px;
    height: 30px;
  }
  .development .development_container .development_main .development_main_list .development_main_item p::before {
      left: -5px;
          top: 7px;
  }
  .development .development_container .development_main .development_main_list .development_main_item p {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 3;
}
  .development .development_container .development_main .development_main_list .development_main_item span {
    font-size: 16px;
  }
  .development .development_container .development_main .development_main_left .development_year_wrapper .development_swiper {
    height: 75px;
  }
  .development .development_container .development_main .development_main_left {
    height: 550px;
  }
  .popup_wrapper .popup_container .popup_main .popup_avatar {
      width: 115px;
      height: 120px;
  }
  .team_wrapper .team_container .team_list .team_item .team_info_name {
      font-size: 20px;
      line-height: 32px;
  }
  .team_wrapper .team_container .team_list .team_item .team_info_position {
      font-size: 14px;
  }
  .popup_wrapper .popup_container .popup_main .popup_content .popup_content_info {
      padding: 25px 0;
      margin-bottom: 18px;
  }
  .popup_wrapper .popup_container .popup_main .popup_content {
      padding: 0 30px 0 20px;
  }
    .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date span {
        font-size: 14px;
    }
        .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date p {
        font-size: 30px;
    }
        .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_date {
        padding: 26px 15px 22px 15px;
    }
    .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text {
        padding: 17px 15px;
    }
        .listinvestor_container .listinvestor_list .listinvestor_item .listinvestor_item_text h3 {
        font-size: 18px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 130%;
    }
    .channel_banner .channel_language a {
    font-size: 15px;
    }
        .notify_price .list_ul .box3 i {
        font-size: 16px;
    }
    .notify_price .list_ul .box3 p {
    font-size: 12px;
    }
        .notify_price .list_ul li {
        margin: 0 10px;
    }
        .notify_price .list_top .box1 span {
        font-size: 28px;
    }
        .notify_price .list_top .box_tit p {
        font-size: 16px;
    }
}
@media (max-width: 500px){
  .headMob .mob-box .box-left .logo-white {
      max-width: 140px;
  }
    .contact_wrapper .contact_container .contact_title h2 {
        font-size: 28px;
    }
    .contact_wrapper .contact_container .contact_title p {
      font-size: 16px;
      line-height: 30px;
      margin-top: 8px;
  }
  .contact_wrapper .contact_container .contact_list .contact_item {
      line-height: 50px;
      padding: 0 20px;
  }
  .contact_wrapper .contact_container .contact_list {
      height: 50px;
  }
  .contact_wrapper .contact_container .contact_list .contact_item a {
      font-size: 14px;
  }
  .contact_wrapper .contact_container .contact_content {
      margin-top: 40px;
  }
  .contact_wrapper .contact_container .contact_content .contact_info h3 {
      font-size: 23px;
      line-height: 36px;
  }
  .contact_wrapper {
    padding: 30px 0 70px;
  }
  .channel_banner .channel_banner_title {
      width: 80%;
      top: 61%;
  }
  .channel_banner .channel_banner_title h2 {
      font-size: 25px;
  }
  .channel_banner {
      height: 320px;
  }
  .channelnav_wrapper nav .channelnav_list {
      gap: 15px;
  }
  .channelnav_wrapper nav .channelnav_list li a {
      font-size: 13px;
  }
  .company_section .company_vision p {
      font-size: 22px;
      line-height: 34px;
  }
  .about_title {
      font-size: 26px;
  }
  .company_section .company_vision {
      padding-top: 50px;
      height: 290px;
  }
  .company_section .company_values .company_values_list {
      gap: 15px;
  }
  .company_section .company_values .company_values_list .company_values_item img {
      width: 40px;
      height: 40px;
  }
  .company_section .company_values .company_values_list .company_values_item p {
      font-size: 16px;
      line-height: 26px;
      margin-top: 10px;
  }
  .company_section .company_values .company_values_list .company_values_item {
      padding: 30px 20px;
  }
  .patent_container .patent_certificate .patent_number_list .patent_number_item {
      width: 60px;
      height: 90px;
  }
  .patent_container .patent_certificate .patent_number_list .patent_number_item .patent_number {
      font-size: 60px;
      line-height: 90px;
  }
  .patent_container .patent_certificate {
      height: 425px;
  }
  .rice_ears_front, .rice_ears_back {
      width: 32px;
  }
  .honor {
      padding: 60px 0 388px;
  }
  .investor_menu .investor_menu_list {
      gap: 0px;
  }
  .investor_menu .investor_menu_list div {
      padding: 3px 10px;
  }
  footer .footer_container .footer_message {
      padding: 30px 20px;
  }
  footer .footer_container .footer_message .footer_message_info p {
    font-size: 24px;
  }
  .core_technology_title p:nth-of-type(1) {
    line-height: 24px;
    font-size: 14px;
  }
  .channelbrain_wrapper .channelbrain_container .channelbrain_list .channelbrain_item {
      width: 88%;
  }
  .core_technology_title .AVOS_description {
    font-size: 14px;
    line-height: 28px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs {
      flex-direction: column;
      bottom: -388px;
  }
  .A_active {
    width: 40px;
    height: 30px;
  }
  .A {
    width: 40px;
    height: 30px;
  }
  .B {
    width: 28px;
    height: 30px;
  }
  .B_active {
    width: 28px;
    height: 30px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab .title_zh {
      font-size: 16px;
      margin: 8px 0;
    }
    .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab abbr {
      font-size: 16px;
      margin-top: 10px;
  }
  .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_tabs .IDRIVERBRAIN_tab .title_en {
    font-size: 14px;
  }
    .AVOS_wrapper .AVOS_container {
        padding: 345px 0 60px;
    }
    .channel_banner .channel_banner_title p {
      font-size: 16px;
  }
  .channel_banner .channel_banner_title span {
      font-size: 20px;
      margin-bottom: 40px;
  }
  .channel_banner .channel_banner_title span::after {
    width: 25px;
    height: 3px;
  }
  .listproduct_specs .listproduct_specs_container .listproduct_specs_section table {
      width: 95%;
  }
  .listproduct_specs .listproduct_specs_container .listproduct_specs_section table tbody {
      grid-template-columns: repeat(1, 1fr);
  }
  .listproduct_title {
      font-size: 26px;
  }
      .listproduct_case .listproduct_case_list .listproduct_case_prev, .listproduct_case .listproduct_case_list .listproduct_case_next {
        width: 85px;
        height: 43px;
        top: 30%;
    }
        .medianav_container .medianav_list {
        gap: 20px;
    }
    .medianav_container .medianav_list li a {
    font-size: 14px;
    }
    .hometitle_box .hometitle_text h2 {
      font-size: 28px;
    }
    .hometitle_box .hometitle_description p {
        font-size: 16px;
        line-height: 30px;
    }
    .hometitle_box {
        gap: 10px;
    }
    .homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_left h3 {
                margin-top: 20px;
        font-size: 24px;
    }
    .homebusiness .homebusiness_cards .homebusiness_card .homebusiness_card_left p {
      margin: 12px 0 35px;
      font-size: 14px;
    }
    .homepartner {
      padding: 20px 0 90px 0;
      overflow: hidden;
      position: relative;
  }
  .homeintro .homeintro_features {
        padding: 10px 10px;
  }
  .homeintro .homeintro_features .homeintro_feature img{
    width: 30px;
  }
  .homeintro .homeintro_features .homeintro_feature h3 {
        font-size: 18px;
    }
    .homeintro .homeintro_content .homeintro_stats .homeintro_stat h4 {
      font-size: 14px;
  }
  .homeintro .homeintro_content .homeintro_stats .homeintro_stat p span {
        font-size: 24px;
    }
        .homeintro .homeintro_content .homeintro_stats .homeintro_stat {
        width: 44%;
    }
    .homeintro .homeintro_content .homeintro_stats .homeintro_stat p {
      font-size: 14px;
  }
  .homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text span {
        font-size: 30px;
    }
    .homebanner .homebanner_carousel .swiper-wrapper .swiper-slide .homebanner_carousel_box .homebanner_carousel_text h2{
        font-size: 28px;
    }
        .listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide.case_slide_active img {
        height: 280px;
    }
    .case_button_next {
    width: 22px;
    height: 22px;
    }
    .case_button_prev{
    width: 22px;
    height: 22px;
    }
        .listproduct_case .listproduct_case_list .listproduct_case_prev, .listproduct_case .listproduct_case_list .listproduct_case_next {
        width: 75px;
        height: 36px;
                top: 30%;
        }
        .listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide h4 {
    font-weight: 600;
    font-size: 20px;
        }
        .listproduct_case .listproduct_case_list {
    margin-top: 40px;
        }
            .listproduct_case .listproduct_case_list .swiper-wrapper .swiper-slide img {
        height: 280px;
    }
    .listproduct_case {
    padding: 50px 0 90px;
}
    .core_technology_title h3 {
        font-size: 26px;
    }
    .AVOS_wrapper .AVOS_container .AVOS_list .AVOS_item .AVOS_item_content h4 {
    font-size: 22px;
    }
    .AVOS_wrapper .AVOS_container .AVOS_list {
    margin-top: 45px;
    } 
    .IDRIVERBRAIN_wrapper .IDRIVERBRAIN_container .IDRIVERBRAIN_cards .IDRIVERBRAIN_card .IDRIVERBRAIN_card_left abbr {
    font-size: 28px;
    }
    .channelbrain_wrapper .channelbrain_container {
    padding: 50px 0 70px;
}
.oneloop_wrapper {
    padding: 55px 0px 80px;
}
.AVDC_wrapper {
    padding: 55px 0 70px;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_thumbnail {
    height: 200px;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content {
    padding: 25px 20px 40px;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content h4 {
    font-size: 18px;
}
.homenews .homenews_list .swiper-wrapper .swiper-slide .homenews_item a .homenews_item_content p {
    font-size: 14px;
    line-height: 24px;
    margin: 8px 0 15px;
}
.homenews .homenews_list {
    height: 550px;
}
.homebusiness .homebusiness_tabs .homebusiness_tab h3 {
    font-size: 20px;
}
.rotation_grey {
    width: 30px;
    height: 30px;
}
.button_more {
    width: 140px;
}
.button_more a span {
    font-size: 14px;
}
.button_more a {
    height: 40px;
}
.homebanner .homebanner_content h2 {
    font-size: 30px;
}
.homebanner .homebanner_content p {
    font-size: 16px;
    line-height: 1.7;
}
.homebanner .homebanner_content {
    padding: 0 20px;
}
}