@charset "UTF-8";
:export {
  menuText: #1D2129;
  menuActiveText: #409EFF;
  subMenuActiveText: #409EFF;
  menuBg: #fff;
  menuHover: #fff;
  subMenuBg: #fff;
  subMenuHover: #fff;
  sideBarWidth: 210px;
}

/* fade */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.28s;
}

.fade-enter,
.fade-leave-active {
  opacity: 0;
}

/* fade-transform */
.fade-transform-leave-active,
.fade-transform-enter-active {
  transition: all 0.5s;
}

.fade-transform-enter {
  opacity: 0;
  transform: translateX(100%);
}

.fade-transform-leave-to {
  opacity: 0;
  transform: translateX(100%);
}

/* fade-transform-down */
.fade-transform-down-leave-active,
.fade-transform-down-enter-active {
  transition: all 0.5s;
}

.fade-transform-down-enter {
  opacity: 0;
  transform: translateY(100%);
}

.fade-transform-down-leave-to {
  opacity: 0;
  transform: translateY(100%);
}

/* fade-transform-left */
.fade-transform-left-leave-active,
.fade-transform-left-enter-active {
  transition: all 0.5s;
}

.fade-transform-left-enter {
  opacity: 0;
  transform: translateX(-100%);
}

.fade-transform-left-leave-to {
  opacity: 0;
  transform: translateX(-100%);
}

/* breadcrumb transition */
.breadcrumb-enter-active,
.breadcrumb-leave-active {
  transition: all 0.5s;
}

.breadcrumb-enter,
.breadcrumb-leave-active {
  opacity: 0;
  transform: translateX(20px);
}

.breadcrumb-move {
  transition: all 0.5s;
}

.breadcrumb-leave-active {
  position: absolute;
}

* {
  font-family: "微软雅黑";
}
*::-webkit-scrollbar-track-piece {
  background: #d3dce6;
}
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-thumb {
  background: #99a9bf;
  border-radius: 20px;
}

body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

label {
  font-weight: 700;
}

html {
  height: 100%;
  box-sizing: border-box;
}

#app {
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

div:focus {
  outline: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

body, h1, h2, h3, p, ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style-type: none;
}

[v-cloak] {
  display: none;
}

.app-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.8rem;
  background: #F7F8FA;
}

.container {
  width: 48rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #app main {
    padding-top: 4rem;
  }
  #app .container {
    width: 100%;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.25rem;
  background-color: #fff;
  z-index: 999;
}
#header .page_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.25rem;
}
#header .page_header .header_right {
  display: flex;
  align-items: center;
}
#header .page_header .header_right .menu_list {
  display: flex;
  justify-content: space-around;
}
#header .page_header .header_right .menu_list .menu_item {
  height: 3.25rem;
  padding: 1.1rem 0;
  margin-right: 2.05rem;
}
#header .page_header .header_right .menu_list .menu_item a {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666666;
  line-height: 1rem;
}
#header .page_header .header_right .menu_list .menu_item:hover a, #header .page_header .header_right .menu_list .menu_item.menu_active a {
  color: #333;
  font-weight: 600;
}
#header .page_header .header_right .menu_list .menu_item:hover {
  border-bottom: 0.1rem solid #0762CB;
}
#header .page_header .header_right .language_list {
  display: flex;
  align-items: center;
}
#header .page_header .header_right .language_list img {
  margin-right: 0.2rem;
}
#header .page_header .header_right .language_list .language_item {
  padding: 0 0.35rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #999999;
  line-height: 1rem;
  cursor: pointer;
}
#header .page_header .header_right .language_list .language_item.active {
  color: #333;
}
#header .page_header .header_right .language_list .language_item:last-child {
  position: relative;
  padding-right: 0;
}
#header .page_header .header_right .language_list .language_item:last-child:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.05rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  background-color: #E9E9E9;
}

@media (max-width: 768px) {
  #header {
    height: 4rem;
  }
  #header .page_header {
    height: 4rem;
    padding: 0 1rem;
    align-items: center;
  }
  #header .page_header img.page_logo {
    width: 5.57rem !important;
  }
  #header .page_header .header_right {
    flex-direction: row-reverse;
  }
  #header .page_header .header_right .language_list {
    margin-right: 0.5rem;
  }
  #header .page_header .header_right nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 999;
  }
  #header .page_header .header_right nav.is_show_bg {
    background: rgba(0, 0, 0, 0.7);
  }
  #header .page_header .header_right .menu_list {
    flex-direction: column;
    justify-content: flex-start;
    width: 14.75rem;
    height: 100%;
    padding: 1.6rem 1.2rem;
    background: #fff;
    overflow: auto;
  }
  #header .page_header .header_right .menu_list .el-icon-close {
    margin-bottom: 2.1rem;
    font-size: 0.8rem;
    color: #000;
  }
  #header .page_header .header_right .menu_list .menu_item {
    height: initial;
    padding: 0;
    padding-left: 1.3rem;
    margin-right: 0;
  }
  #header .page_header .header_right .menu_list .menu_item a {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.05rem;
  }
  #header .page_header .header_right .menu_list .menu_item + .menu_item {
    margin-top: 2.5rem;
  }
  #header .page_header .header_right .menu_list .menu_item:hover {
    border: none;
  }
}
#footer {
  background-color: #272727;
  color: #fff;
}
#footer .page_footer {
  display: flex;
  justify-content: space-between;
  padding: 2.05rem 0 1.75rem 0;
  font-size: 0.5rem;
  font-weight: 400;
  color: #999;
  line-height: 0.65rem;
}
#footer .page_footer .contact_info .contact_list {
  margin-top: 1rem;
}
#footer .page_footer .contact_info .contact_list .contact_detail + .contact_detail {
  margin-top: 0.4rem;
}
#footer .page_footer .footer_menu {
  display: flex;
}
#footer .page_footer .footer_menu .foot_list + .foot_list {
  margin-left: 2.45rem;
}
#footer .page_footer .footer_menu .foot_list.column_2 {
  margin-left: 0.8rem;
}
#footer .page_footer .footer_menu .foot_list h2 {
  min-height: 0.95rem;
  padding-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 0.75rem;
}
#footer .page_footer .footer_menu .foot_list .sub_list li {
  margin-top: 0.4rem;
}
#footer .page_footer .footer_menu .foot_list .foot_sub_list + .foot_sub_list {
  margin-top: 1.05rem;
}
#footer .page_footer .qr_code {
  height: fit-content;
  padding: 0.6rem;
  padding-bottom: 0.45rem;
  background: #181D24;
  border-radius: 0.15rem 0.15rem 0.15rem 0.15rem;
}
#footer .page_footer .qr_code p {
  margin-top: 0.5rem;
  font-size: 0.5rem;
  font-weight: 500;
  color: #7A808F;
  line-height: 0.65rem;
  text-align: center;
}
#footer #copyright {
  background-color: #111;
}
#footer #copyright .copyright_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer #copyright .copyright {
  padding: 0.65rem 0;
  font-size: 0.5rem;
  font-weight: 400;
  color: #999999;
  line-height: 0.65rem;
}

@media (max-width: 768px) {
  #footer .page_footer {
    flex-direction: column;
    padding: 1.6rem 2.05rem 2rem 2rem;
    font-size: 0.6rem;
    line-height: 0.8rem;
  }
  #footer .page_footer .contact_info img {
    width: 8.25rem !important;
  }
  #footer .page_footer .contact_info .contact_list {
    margin-top: 1.2rem;
  }
  #footer .page_footer .contact_info .contact_list .contact_detail + .contact_detail {
    margin-top: 0.5rem;
  }
  #footer .page_footer .m_footer_menu {
    margin-top: 1.55rem;
    margin-bottom: 0.5rem;
  }
  #footer .page_footer .m_footer_menu .el-collapse {
    border: none;
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item {
    margin-bottom: 1.5rem;
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item .el-collapse-item__header {
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 0.94rem;
    background-color: transparent;
    border: none;
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow {
    font-size: 0.75rem;
    color: #fff;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow.is-active {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item .el-collapse-item__wrap {
    background-color: transparent;
    border: none;
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content {
    padding: 0;
    padding-top: 0.5rem;
    font-size: 0.6rem;
    font-weight: 400;
    color: #999999;
    line-height: 0.8rem;
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content a {
    display: block;
  }
  #footer .page_footer .m_footer_menu .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content a + a {
    margin-top: 0.5rem;
  }
  #footer .page_footer .qr_code {
    width: 6.5rem;
    margin: 0 auto;
    padding: 0.75rem;
    padding-bottom: 0.55rem;
  }
  #footer .page_footer .qr_code img {
    width: 100% !important;
  }
  #footer .page_footer .qr_code p {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }
  #footer #copyright .copyright_flex {
    flex-direction: column;
  }
  #footer #copyright .copyright {
    padding: 0.5rem 1rem;
  }
  #footer #copyright .copyright span {
    display: block;
    font-size: 0.6rem;
    line-height: 0.9rem;
  }
  #footer #copyright .copyright span + span {
    margin-left: 0 !important;
  }
}
.au_page_title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0762CB;
  line-height: 0.95rem;
}

.au_page_sub_title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.235rem;
}

.index_tab_types ul {
  display: flex;
  align-items: center;
}
.index_tab_types ul li {
  padding: 0.15rem 1rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #333;
  line-height: 0.8rem;
  background: #fff;
  border-radius: 0.08rem;
  cursor: pointer;
}
.index_tab_types ul li + li {
  margin-left: 0.5rem;
}
.index_tab_types ul li:hover {
  background: #E0EEFF;
}
.index_tab_types ul li.active {
  color: #fff;
  background: #0762CB;
}

.index_title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2.05rem;
}
.index_title h1 {
  margin-right: 0.35rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
  line-height: 0.85rem;
}
.index_title .index_en_title {
  font-size: 0.5rem;
  font-weight: 400;
  color: #999;
  line-height: 0.55rem;
}

.view_more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.1rem;
  padding: 0.45rem 0;
  text-align: center;
  margin: 0 auto;
  margin-top: 1.25rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666;
  line-height: 0.85rem;
  border-radius: 0.1rem;
  border: 0.05rem solid #E9E9E9;
}
.view_more:hover {
  color: #333;
  background: #DFEEFF;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.8rem;
}
.product_list .product_item {
  width: 11.4rem;
  margin-right: 0.8rem;
  margin-bottom: 0.8rem;
  background-color: #fff;
}
.product_list .product_item .product_img {
  padding: 0;/*2.8rem 2.2rem;*/
  padding-bottom: 0;/*1.8rem;*/
  border: 0.05rem solid #E9E9E9;
}
.product_list .product_item .product_title {
  padding: 0.5rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #333;
  line-height: 1rem;
  text-align: center;
  background: #E3E3E3;
}
.product_list .product_item:hover .product_title {
  color: #fff;
  background: #0762CB;
}

.partner_list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.8rem;
}
.partner_list .partner_item {
  position: relative;
  width: 11.4rem;
  margin-right: 0.8rem;
  margin-bottom: 0.8rem;
  background-color: #fff;
}
.partner_list .partner_item .partner_title {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 0.85rem;
  background: rgba(7, 98, 203, 0.8);
  transition: all 0.2s;
  opacity: 0;
}
.partner_list .partner_item:hover .partner_title {
  opacity: 1;
}

.hj_detail_content .news_de_content {
  font-size: 0.65rem;
  font-weight: 400;
  color: #333333;
  line-height: 1rem;
}
.hj_detail_content .news_de_content p, .hj_detail_content .news_de_content img {
  /*margin-bottom: 1.65rem;*/
}

.hj_pagination {
  padding-right: 1.6rem;
}
.hj_pagination .el-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hj_pagination .el-pagination .btn-prev, .hj_pagination .el-pagination .btn-next {
  width: 0.65rem;
  height: 0.65rem;
  min-width: 0.65rem;
  padding: 0.14rem 0;
  margin: 0;
  background: none;
}
.hj_pagination .el-pagination .btn-prev .el-icon, .hj_pagination .el-pagination .btn-next .el-icon {
  font-size: 0.36rem;
  color: rgba(51, 51, 51, 0.9);
}
.hj_pagination .el-pagination .btn-prev:disabled .el-icon, .hj_pagination .el-pagination .btn-next:disabled .el-icon {
  color: #eee;
}
.hj_pagination .el-pagination .btn-prev {
  margin-right: 0.5rem;
}
.hj_pagination .el-pagination .btn-next {
  margin-left: 0.5rem;
}
.hj_pagination .el-pagination .el-pager .number {
  width: 1.3rem;
  height: 1.3rem;
  min-width: 1.3rem;
  margin: 0 0.15rem;
  padding: 0.2rem 0;
  font-size: 0.55rem;
  font-weight: 400;
  color: #333;
  line-height: 0.9rem;
  background: #fff;
  border-radius: 0.1rem;
  border: 0.05rem solid #E9E9E9;
}
.hj_pagination .el-pagination .el-pager .number:not(.disabled).active {
  color: rgba(255, 255, 255, 0.9);
  background: #0762CB;
}
.hj_pagination .el-pagination .el-pager .el-icon-more {
  background: none;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.8rem;
}
.news_list .news_item {
  width: 11.4rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  margin-right: 0.8rem;
  background: #fff;
  border: 0.05rem solid #E9E9E9;
  cursor: pointer;
}
.news_list .news_item .news_content .news_day {
  font-size: 1.45rem;
  font-weight: 600;
  color: #0762CB;
  line-height: 1.45rem;
}
.news_list .news_item .news_content .news_date {
  font-size: 0.5rem;
  font-weight: 300;
  color: #999;
  line-height: 0.55rem;
}
.news_list .news_item .news_content .news_title {
  margin-top: 1.2rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.55rem;
  font-weight: 600;
  color: #333333;
  line-height: 0.75rem;
  border-bottom: 0.05rem solid #E9E9E9;
}
.news_list .news_item .news_content .view_bt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.35rem;
  margin-bottom: 0.8rem;
  font-size: 0.5rem;
  font-weight: 400;
  color: #999;
  line-height: 0.85rem;
}
.news_list .news_item:hover {
  background: #F8F8F8;
}
.news_list .news_item:hover .news_content .news_title {
  color: #0762CB;
}

@media (max-width: 768px) {
  .au_page_title {
    font-size: 1rem;
    line-height: 1.175rem;
  }
  .au_page_sub_title {
    margin: 0.8rem 0;
    font-size: 0.7rem;
    line-height: 1.2rem;
    color: #666;
  }
  .hj_pagination {
    padding-right: 0;
  }
  .hj_pagination .el-pagination {
    justify-content: center;
  }
  .hj_pagination .el-pagination .btn-prev, .hj_pagination .el-pagination .btn-next {
    width: 0.8rem;
    height: 0.8rem;
    min-width: 0.8rem;
    padding: 0.17rem 0;
  }
  .hj_pagination .el-pagination .btn-prev .el-icon, .hj_pagination .el-pagination .btn-next .el-icon {
    font-size: 0.45rem;
  }
  .hj_pagination .el-pagination .btn-prev {
    margin-right: 0.4rem;
  }
  .hj_pagination .el-pagination .btn-next {
    margin-left: 0.4rem;
  }
  .hj_pagination .el-pagination .el-pager .number {
    width: 1.6rem;
    height: 1.6rem;
    min-width: 1.6rem;
    margin: 0 0.2rem;
    padding: 0.25rem 0;
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  .product_list {
    margin-right: 0;
  }
  .product_list .product_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .product_list .product_item .product_img {
    padding: 0;/**2.65rem 3.25rem;*/
    padding-top: 0;/**4.15rem;*/
  }
  .product_list .product_item .product_img img {
    width: 100%;
    height: inherit;
  }
  .product_list .product_item .product_title {
    padding: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.45rem;
  }
  .news_list {
    margin-right: 0;
  }
  .news_list .news_item {
    width: 16.8rem;
    padding: 1.8rem;
    margin-right: 0;
    margin-bottom: 0;
  }
  .news_list .news_item + .news_item {
    margin-top: 1rem;
  }
  .news_list .news_item .news_content .news_day {
    font-size: 2.16rem;
    line-height: 2.16rem;
  }
  .news_list .news_item .news_content .news_date {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
  .news_list .news_item .news_content .news_title {
    padding-bottom: 3rem;
    margin-top: 1.7rem;
    margin-bottom: 1.8rem;
    font-size: 0.84rem;
    line-height: 0.98rem;
  }
  .news_list .news_item .news_content .view_bt {
    margin-bottom: 1.2rem;
    font-size: 0.72rem;
    line-height: 1.26rem;
    color: #999;
    font-weight: 400;
  }
  .news_list .news_item .news_content img {
    border-radius: 0.24rem;
  }
  .index_title {
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .index_title h1 {
    margin-right: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.05rem;
  }
  .index_title .index_en_title {
    font-size: 0.6rem;
    line-height: 0.7rem;
  }
  .view_more {
    width: 8.6rem;
    padding: 0.55rem;
    font-size: 0.7rem;
    line-height: 1.05rem;
  }
  .view_more .el-icon-arrow-right {
    margin-left: 0.35rem;
    font-size: 0.3rem;
  }
}
.el-message.el-message--success {
  background-color: #e9f8f6;
  border-color: #e9f8f6;
}
.el-message.el-message--success .el-icon-success, .el-message.el-message--success .el-message__content {
  color: #23b8a9;
}

.in_page_banner {
  position: relative;
}
.in_page_banner .in_banner_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.in_page_banner .in_banner_text .text_detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 3.25rem;
}
.in_page_banner .in_banner_text .text_detail h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.8rem;
}
.in_page_banner .in_banner_text .text_detail .line {
  width: 2.45rem;
  height: 0.3rem;
  margin: 1rem 0;
  background-color: #fff;
}
.in_page_banner .in_banner_text .text_detail .lang_En {
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8rem;
}

@media (max-width: 768px) {
  .in_page_banner > img {
    height: 19.95rem;
  }
  .in_page_banner .in_banner_text .text_detail {
    padding-top: 0;
    padding-left: 2rem;
  }
  .in_page_banner .in_banner_text .text_detail h1 {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
  .in_page_banner .in_banner_text .text_detail .line {
    margin: 1.2rem 0;
  }
  .in_page_banner .in_banner_text .text_detail .lang_En {
    max-width: 50%;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.hj-tab {
  position: sticky;
  top: 3.24rem;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0rem 0.05rem 0rem 0rem rgb(233, 233, 233);
}
.hj-tab .tab_list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.hj-tab .tab_list .tab_item {
  padding: 1.15rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 400;
  color: #999999;
  line-height: 1rem;
}
.hj-tab .tab_list .tab_item span {
  cursor: pointer;
}
.hj-tab .tab_list .tab_item:hover {
  color: #333;
}
.hj-tab .tab_list .tab_item.tab_active {
  position: relative;
  color: #0762CB;
}
.hj-tab .tab_list .tab_item.tab_active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #0762CB;
}

@media (max-width: 768px) {
  .hj-tab {
    top: 4rem;
    padding: 0 1rem;
    margin-top: 2rem;
    box-shadow: none;
  }
  .hj-tab .tab_list {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: -0.55rem;
  }
  .hj-tab .tab_list .tab_item {
    width: 5.2rem;
    margin-right: 0.55rem;
    padding: 0.2rem 0;
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    border: 0.03rem solid #E9E9E9;
    border-radius: 0.1rem;
  }
  .hj-tab .tab_list .tab_item.tab_active {
    color: #fff;
    background: #0762CB;
    border-color: #0762CB;
  }
  .hj-tab .tab_list .tab_item.tab_active:after {
    content: none;
  }
}
.index_banner .swiper-banner {
  height: 20rem;
}
.index_banner .swiper-banner .banner_des {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.8rem;
  font-weight: 100;
}
.index_banner .swiper-banner .banner_des .b_en {
  white-space: nowrap;
  font-weight: 500;
  margin-bottom: 1.65rem;
}
.index_banner .swiper-banner .index_banner_actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.98rem;
  width: 100%;
  z-index: 10;
}
.index_banner .swiper-banner .index_banner_actions .actions_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .swiper-button-prev, .index_banner .swiper-banner .index_banner_actions .actions_content .swiper-button-next, .index_banner .swiper-banner .index_banner_actions .actions_content .swiper-pagination-fraction {
  position: initial;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_left {
  display: flex;
  align-items: center;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_left img {
  width: 0.98rem;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_left span {
  margin-left: 0.33rem;
  font-size: 0.57rem;
  color: #FFFFFF;
  line-height: 0.67rem;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-pagination-fraction {
  width: auto;
  margin: 0 0.49rem;
  font-size: 0.57rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.67rem;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-pagination-fraction .swiper-pagination-current {
  margin-right: 0.33rem;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-pagination-fraction .swiper-pagination-total {
  margin-left: 0.33rem;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-next, .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-prev {
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0;
  border-radius: 50%;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-next:not(.swiper-button-disabled), .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-prev:not(.swiper-button-disabled) {
  border: 0.05rem solid #fff;
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-next:after, .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-prev:after {
  content: "";
}
.index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-next:not(.swiper-button-disabled):after, .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-prev:not(.swiper-button-disabled):after {
  content: "";
}

#index_about_us {
  padding-top: 2.85rem;
  padding-bottom: 4.05rem;
}
#index_about_us .about_us_top {
  display: flex;
}
#index_about_us .about_us_top .au_swiper {
  width: 21.95rem;
  flex-shrink: 0;
}
#index_about_us .about_us_top .au_swiper .au_des {
  position: absolute;
  top: 0;
  left: 1px;
  padding: 0.4rem 1rem;
  font-size: 0.55rem;
  font-weight: 600;
  color: #fff;
  line-height: 0.65rem;
  background: #0762CB;
  border-radius: 0rem 0rem 0.45rem 0rem;
}
#index_about_us .about_us_top .au_swiper img {
  border-radius: 0 0.9rem;
}
#index_about_us .about_us_top .au_swiper .swiper-slide {
  padding-left: 1px;
}
#index_about_us .about_us_top .au_swiper .swiper-pagination {
  bottom: 0.49rem;
  padding-right: 3rem;
  line-height: 0.15rem;
  text-align: right;
}
#index_about_us .about_us_top .au_swiper .swiper-pagination .pn_line {
  width: 0.65rem;
  height: 0.15rem;
  margin: 0;
  background: #fff;
  border-radius: 0.1rem;
  opacity: 0.4;
}
#index_about_us .about_us_top .au_swiper .swiper-pagination .pn_line + .pn_line {
  margin-left: 0.15rem;
}
#index_about_us .about_us_top .au_swiper .swiper-pagination .pn_line.swiper-pagination-bullet-active {
  opacity: 1;
}
#index_about_us .about_us_top .au_intro {
  flex: auto;
  padding-left: 1.55rem;
}
#index_about_us .about_us_top .au_intro h1 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  line-height: 1.35rem;
}
#index_about_us .about_us_top .au_intro .au_detail {
  position: relative;
}
#index_about_us .about_us_top .au_intro .au_detail .au_intro_txt {
  position: relative;
  top: 0;
}
#index_about_us .about_us_top .au_intro .au_detail .au_intro_txt p {
  margin: 1rem 0;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666;
  line-height: 1rem;
}
#index_about_us .about_us_top .au_intro .au_detail .au_intro_txt .to_detail_page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
  background: #333;
  border-radius: 0.1rem;
}
#index_about_us .about_us_bottom {
  margin-top: 2.85rem;
}
#index_about_us .about_us_bottom .course_list {
  display: flex;
  margin: 0 -0.75rem;
}
#index_about_us .about_us_bottom .course_list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 25%;
  padding: 0.75rem;
}
#index_about_us .about_us_bottom .course_list li + li {
  position: relative;
}
#index_about_us .about_us_bottom .course_list li + li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.05rem;
  height: 2.45rem;
  background: #E9E9E9;
}
#index_about_us .about_us_bottom .course_list li .course_left .course_title {
  margin-bottom: 0.5rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #999;
  line-height: 1.15rem;
}
#index_about_us .about_us_bottom .course_list li .course_left .course_sub_title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.15rem;
}
#index_about_us .about_us_bottom .course_list li .course_left .course_sub_title span.course_unit {
  font-size: 0.55rem;
}
#index_about_us .about_us_bottom .course_list li .course_right {
  width: 1.5rem;
  height: 1.5rem;
}

#index_product_center {
  padding: 2.85rem 0 3.25rem 0;
  background: #F8F8F8;
}
#index_product_center .pro_nav {
  margin-left: auto;
}

#index_honorary {
  padding: 2.85rem 0 4.05rem;
  background-color: #fff;
}
#index_honorary .swiper-pagination {
  line-height: 0.15rem;
  bottom: 0;
}
#index_honorary .swiper-pagination .pn_line {
  width: 0.65rem;
  height: 0.15rem;
  margin: 0;
  background: #333;
  border-radius: 0.1rem;
  opacity: 0.4;
}
#index_honorary .swiper-pagination .pn_line + .pn_line {
  margin-left: 0.15rem;
}
#index_honorary .swiper-pagination .pn_line.swiper-pagination-bullet-active {
  opacity: 1;
}

#index_partner {
  padding: 2.85rem 0 4.05rem;
  background: url("./images/index/partner_bg.png") no-repeat center;
  background-size: 100% 100%;
}
#index_partner .view_more {
  color: #fff;
}
#index_partner .view_more:hover {
  background-color: rgba(250, 250, 250, 0.5);
}

#index_news {
  padding: 2.85rem 0 4.05rem;
}

#index_join {
  height: 8.9rem;
  background: linear-gradient(180deg, #B1DEF5 0%, #B8E1F5 100%);
  background-image: url("./images/index/join.png");
  background-position: center;
  background-size: auto 8.9rem;
  background-repeat: no-repeat;
}
#index_join .join_content {
  display: flex;
  align-items: center;
  height: 100%;
}
#index_join .join_content .join_intro h1 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.35rem;
}
#index_join .join_content .join_intro .know_more {
  display: block;
  width: 4rem;
  height: 1.1rem;
  padding: 0.1rem 0;
  font-size: 0.5rem;
  text-align: center;
  font-weight: 400;
  color: #fff;
  line-height: 0.85rem;
  background: #0762CB;
  border-radius: 0.1rem;
}

@media (max-width: 768px) {
  .index_banner .swiper-banner .banner_des {
    width: 100%;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.2rem;
    text-align: center;
  }
  .index_banner .swiper-banner .banner_des .b_en {
    margin-bottom: 2rem;
    white-space: inherit;
  }
  .index_banner .swiper-banner .index_banner_actions {
    bottom: 1rem;
  }
  .index_banner .swiper-banner .index_banner_actions .actions_content {
    justify-content: center;
  }
  .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-pagination-fraction {
    width: auto;
    margin: 0 0.6rem;
    font-size: 0.7rem;
    line-height: 0.82rem;
  }
  .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-pagination-fraction .swiper-pagination-current {
    margin-right: 0.4rem;
  }
  .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-pagination-fraction .swiper-pagination-total {
    margin-left: 0.4rem;
  }
  .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-next, .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-prev {
    width: 1.8rem;
    height: 1.8rem;
    margin-top: 0;
    border-radius: 50%;
  }
  .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-next:not(.swiper-button-disabled), .index_banner .swiper-banner .index_banner_actions .actions_content .action_right .swiper-button-prev:not(.swiper-button-disabled) {
    border: 0.05rem solid #fff;
  }
  #index_about_us, #index_product_center, #index_honorary, #index_partner, #index_news {
    padding: 2rem 1rem 0;
  }
  #index_about_us .about_us_top {
    flex-direction: column;
  }
  #index_about_us .about_us_top .au_swiper {
    width: 100%;
  }
  #index_about_us .about_us_top .au_intro {
    padding-left: 0;
    padding-top: 1rem;
  }
  #index_about_us .about_us_top .au_intro h1 {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  #index_about_us .about_us_top .au_intro .au_detail .au_intro_txt p {
    margin: 1.2rem 0;
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  #index_about_us .about_us_bottom {
    margin-top: 1rem;
  }
  #index_about_us .about_us_bottom .course_list {
    flex-direction: column;
    margin: 0;
  }
  #index_about_us .about_us_bottom .course_list li {
    width: 100%;
    padding: 0;
    padding-bottom: 0.8rem;
    border-bottom: 0.05rem solid #E9E9E9;
  }
  #index_about_us .about_us_bottom .course_list li + li {
    margin-top: 0.8rem;
  }
  #index_about_us .about_us_bottom .course_list li:last-child {
    border: none;
  }
  #index_about_us .about_us_bottom .course_list li .course_left .course_title {
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
    line-height: 1.4rem;
  }
  #index_about_us .about_us_bottom .course_list li .course_left .course_sub_title {
    font-size: 1.2rem;
    line-height: 1.41rem;
  }
  #index_about_us .about_us_bottom .course_list li .course_left .course_sub_title .course_unit {
    font-size: 0.7rem;
    line-height: 0.82rem;
  }
  #index_product_center {
    padding-bottom: 2.5rem;
  }
  #index_product_center .pro_nav {
    width: 100%;
    margin-top: 1.2rem;
  }
  #index_product_center .product_list {
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 1.6rem;
    overflow-x: auto;
  }
  #index_product_center .product_list .product_item {
    flex-shrink: 0;
    width: 14rem;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  #index_product_center .product_list::-webkit-scrollbar {
    height: 0;
  }
  #index_join {
    height: 11rem;
    background-size: auto 11rem;
    background-position-x: 54%;
  }
  #index_join .join_content {
    padding-left: 1.5rem;
  }
  #index_join .join_content .join_intro h1 {
    max-width: 11.2rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  #index_join .join_content .join_intro h1 span {
    display: block;
  }
  #index_join .join_content .join_intro .know_more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.9rem;
    height: 1.35rem;
    padding: 0.15rem 0;
    font-size: 0.6rem;
    line-height: 1.05rem;
  }
  #index_join .join_content .join_intro .know_more .el-icon-arrow-right {
    font-size: 0.78rem;
  }
  #index_honorary {
    padding-bottom: 2.5rem;
  }
  #index_honorary .aptitude_list {
    overflow-x: auto;
  }
  #index_honorary .aptitude_list .aptitude_item {
    flex-shrink: 0;
    width: 14rem !important;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  #index_honorary .aptitude_list::-webkit-scrollbar {
    height: 0;
  }
  #index_partner {
    padding-bottom: 2.5rem;
  }
  #index_partner .partner_list {
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 1.6rem;
    overflow: hidden;
    overflow-x: auto;
  }
  #index_partner .partner_list .partner_item {
    flex-shrink: 0;
    width: 14rem;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  #index_partner .partner_list::-webkit-scrollbar {
    height: 0;
  }
  #index_partner .view_more:hover {
    color: #333;
  }
  #index_news {
    padding-bottom: 2.5rem;
  }
  #index_news .news_list {
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 1.6rem;
    overflow-x: auto;
  }
  #index_news .news_list .news_item {
    flex-shrink: 0;
    width: 14rem;
    margin: 0;
    margin-right: 1rem;
  }
  #index_news .news_list::-webkit-scrollbar {
    height: 0;
  }
}
#news_page {
  padding-top: 2.05rem;
}
#news_page .hj_pagination {
  margin-top: 1.05rem;
  margin-bottom: 2.7rem;
}
#news_page .hj_pagination .el-pagination {
  padding-right: 1rem;
}

#news-detail {
  display: flex;
  justify-content: space-between;
  padding-top: 2.05rem;
}
#news-detail .news_detail_content {
  flex: 1;
}
#news-detail .news_detail_content h1 {
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.35rem;
}
#news-detail .news_detail_content .reporter_date {
  margin-bottom: 1.65rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666666;
  line-height: 1rem;
}
#news-detail .more_news_list {
  width: 11.25rem;
  margin-left: 2.05rem;
}
#news-detail .more_news_list h1 {
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  line-height: 1.35rem;
}
#news-detail .more_news_list a {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  color: #333333;
  line-height: 1rem;
}
#news-detail .more_news_list a + a {
  margin-top: 0.5rem;
}
#news-detail .more_news_list a:hover {
  color: #0762CB;
}

@media (max-width: 768px) {
  #news_page {
    padding: 2rem 1rem 0;
  }
  #news_page .hj_pagination {
    margin-top: 0.95rem;
    margin-bottom: 2.5rem;
  }
  #news-detail {
    padding: 2rem 1rem;
    padding-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  #news-detail .news_detail_content {
    width: 100%;
    flex: auto;
    margin-bottom: 0.5rem;
  }
  #news-detail .news_detail_content h1 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  #news-detail .news_detail_content .reporter_date {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  #news-detail .news_detail_content .news_de_content {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
  #news-detail .news_detail_content .news_de_content p, #news-detail .news_detail_content .news_de_content img {
    margin-bottom: 2rem;
  }
  #news-detail .more_news_list {
    width: 100%;
    margin-left: 0;
  }
  #news-detail .more_news_list h1 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  #news-detail .more_news_list a {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  #news-detail .more_news_list a + a {
    margin-top: 0.6rem;
  }
}
.aptitude_list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.8rem;
}
.aptitude_list.swiper-wrapper {
  flex-wrap: nowrap;
}
.aptitude_list .aptitude_item {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  width: 15.45rem;
  margin-right: 0.8rem;
  background: #F8F8F8;
  text-align: center;
}
.aptitude_list .aptitude_item img {
  max-width: 100%;
}
.aptitude_list .aptitude_item .aptitude_title {
  margin-top: 0.25rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #000000;
  line-height: 0.65rem;
  text-align: center;
}

@media (max-width: 768px) {
  .aptitude_list {
    margin-right: 0;
  }
  .aptitude_list .aptitude_item {
    width: 100% !important;
    padding-bottom: 0.9rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .aptitude_list .aptitude_item .aptitude_img {
    padding: 1.9rem 3.35rem 0 !important;
  }
  .aptitude_list .aptitude_item .aptitude_img img {
    width: 100%;
    height: inherit !important;
  }
  .aptitude_list .aptitude_item .aptitude_title {
    margin-top: 0.3rem;
    font-size: 0.625rem;
    line-height: 0.725rem;
  }
  .m_fab_page_ap .aptitude_list .aptitude_item {
    padding-bottom: 1.2rem;
  }
  .m_fab_page_ap .aptitude_list .aptitude_item .aptitude_img {
    padding: 0.8rem 3.9rem 0 !important;
  }
  .m_fab_page_ap .aptitude_list .aptitude_item .aptitude_img img {
    width: 100%;
    height: inherit !important;
  }
  .m_fab_page_ap .aptitude_list .aptitude_item .aptitude_title {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    line-height: 0.975rem;
  }
}
#contact-us {
  display: flex;
  justify-content: space-between;
  padding-top: 4.05rem;
  padding-bottom: 8.15rem;
}
#contact-us .address_info h1 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.35rem;
}
#contact-us .address_info .address_item {
  font-size: 0.55rem;
  font-weight: 400;
  color: #666666;
  line-height: 1rem;
}
#contact-us .address_info .address_item + .address_item {
  margin-top: 0.4rem;
}
#contact-us .address_info h2 {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0762CB;
  line-height: 0.95rem;
}
#contact-us .contact_map {
  width: 19.05rem;
  height: 9.75rem;
  border-radius: 0.35rem;
  background-color: #ddd;
}

#message-online {
  display: flex;
  padding-top: 3.4rem;
  padding-bottom: 6.5rem;
}
#message-online .online_img {
  margin-right: 5rem;
}
#message-online .online_form {
  flex: 1;
}
#message-online .online_form .el-form-item .el-form-item__label {
  font-size: 0.55rem;
  font-weight: 400;
  color: #333333;
}
#message-online .online_form .el-form-item .el-input__inner, #message-online .online_form .el-form-item .el-textarea__inner {
  border-radius: 0.1rem;
  border: 0.05rem solid #E9E9E9;
}
#message-online .online_form .el-form-item .el-button {
  padding: 0.25rem 1rem;
  font-size: 0.55rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 0.65rem;
  background: #0762CB;
  border-radius: 0.15rem;
  border-color: #0762CB;
}

@media (max-width: 768px) {
  #contact-us {
    padding: 2.5rem 1rem;
    flex-wrap: wrap;
  }
  #contact-us .address_info {
    width: 100%;
  }
  #contact-us .address_info h1 {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  #contact-us .address_info .address_item {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  #contact-us .address_info .address_item + .address_item {
    margin-top: 0.5rem;
  }
  #contact-us .address_info h2 {
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.17rem;
  }
  #contact-us .contact_map iframe {
    width: 100%;
    height: 100%;
  }
  #message-online {
    padding: 2.5rem 1rem;
  }
  #message-online .online_img {
    display: none;
  }
  #message-online .online_form .el-form-item .el-form-item__label {
    width: 4.1rem !important;
    padding: 0;
    font-size: 0.7rem;
    line-height: 1.6rem;
  }
  #message-online .online_form .el-form-item .el-form-item__content {
    margin-left: 4.1rem !important;
    line-height: 1.6rem;
  }
  #message-online .online_form .el-form-item .el-form-item__content .el-input .el-input__inner {
    height: 1.6rem;
  }
  #message-online .online_form .el-form-item .el-button {
    width: 4rem;
    height: 1.6rem;
    padding: 0.3rem 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 0.82rem;
    background: #0762CB;
    border-radius: 0.2rem;
  }
}
#pro_detail_content {
  position: relative;
  display: flex;
  margin: 2.05rem 0 2.5rem;
}
#pro_detail_content .pc_nav_content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
#pro_detail_content .pc_nav_content .pc_cate_nav {
  padding: 0.85rem 0.33rem;
  font-size: 0.54rem;
  background-color: #fff;
  color: rgba(153, 153, 153, 0.9);
  box-shadow: 0.2rem 0rem 0.33rem 0rem rgba(0, 0, 0, 0.1);
  border-radius: 0rem 0.16rem 0.16rem 0rem;
  cursor: pointer;
}
#pro_detail_content .category_list {
  position: absolute;
  top: 0;
  left: 0;
}
#pro_detail_content .category_list.pc_cate_sty {
  height: 100%;
  padding-right: 1.2rem;
  overflow-y: auto;
  z-index: 9;
}
#pro_detail_content .category_list.pc_cate_sty .el-tree {
  width: 100%;
  height: 100%;
  padding: 0.94rem 3.25rem;
  box-shadow: 0rem 0rem 0.49rem 0rem rgba(0, 0, 0, 0.25);
  border-radius: 0rem 0.49rem 0.49rem 0rem;
}
#pro_detail_content .category_list.pc_cate_sty .pc_cate_nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#pro_detail_content .category_list .el-tree .el-tree-node {
  margin-bottom: 0.57rem;
}
#pro_detail_content .category_list .el-tree .el-tree-node .el-tree-node__content {
  height: auto;
}
#pro_detail_content .category_list .el-tree .el-tree-node .el-tree-node__content .el-tree-node__expand-icon {
  padding: 0.2rem;
  font-size: 0.24rem;
  color: rgba(0, 0, 0, 0.6);
}
#pro_detail_content .category_list .el-tree .el-tree-node .el-tree-node__content .el-tree-node__expand-icon.is-leaf {
  width: 0;
  color: transparent;
}
#pro_detail_content .category_list .el-tree .el-tree-node .el-tree-node__content .el-tree-node__label {
  padding-left: 0.33rem;
  font-size: 0.57rem;
  font-weight: 400;
  color: #333333;
  line-height: 0.89rem;
}
#pro_detail_content .category_list .el-tree .el-tree-node .el-tree-node__children {
  margin-top: 0.57rem;
}
#pro_detail_content .category_list .el-tree .el-tree-node.is-current .el-tree-node__content {
  background: none;
}
#pro_detail_content .category_list .el-tree .el-tree-node.is-current .el-tree-node__content .el-tree-node__label {
  color: #0762CB;
}
#pro_detail_content .detail_swiper {
  width: 21.55rem;
}
#pro_detail_content .detail_swiper .detail_big_img {
  height: 16.75rem;
  padding: 3.75rem 3.95rem;
  border: 0.05rem solid #E9E9E9;
}
#pro_detail_content .detail_swiper .detail_small_swiper {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
}
#pro_detail_content .detail_swiper .detail_small_swiper .prev_item, #pro_detail_content .detail_swiper .detail_small_swiper .next_item {
  width: 1rem;
  height: 1rem;
  border: 0.05rem solid #E9E9E9;
  cursor: pointer;
}
#pro_detail_content .detail_swiper .detail_small_swiper .prev_item.swiper-button-disabled, #pro_detail_content .detail_swiper .detail_small_swiper .next_item.swiper-button-disabled {
  cursor: not-allowed;
}
#pro_detail_content .detail_swiper .detail_small_swiper .prev_item {
  margin-right: 0.65rem;
}
#pro_detail_content .detail_swiper .detail_small_swiper .next_item {
  margin-left: 0.65rem;
}
#pro_detail_content .detail_swiper .detail_small_swiper .small_img_swiper .swiper-small-img {
  width: 18.25rem;
}
#pro_detail_content .detail_swiper .detail_small_swiper .small_img_swiper .swiper-small-img .swiper-slide {
  width: 4.05rem;
  margin-right: 0.65rem;
}
#pro_detail_content .detail_swiper .detail_small_swiper .small_img_swiper .swiper-small-img .swiper-slide .small_img_item {
  width: 100%;
  padding: 0.4rem 0.25rem;
  border: 0.05rem solid #E9E9E9;
}
#pro_detail_content .detail_swiper .detail_small_swiper .small_img_swiper .swiper-small-img .swiper-slide .small_img_item.item_active {
  border-color: #0762CB;
}
#pro_detail_content .pro_detail_info {
  flex: 1;
  padding-left: 2.05rem;
}
#pro_detail_content .pro_detail_info h1 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  line-height: 1.35rem;
}
#pro_detail_content .pro_detail_info .info_txt {
  margin: 1rem 0;
  font-size: 0.6875rem;
  font-weight: 400;
  color: #666;
  line-height: 1rem;
}
#pro_detail_content .pro_detail_info .pro_btns {
  display: flex;
  align-items: center;
  padding-top: 1rem;
}
#pro_detail_content .pro_detail_info .pro_btns .bt_item {
  width: 4rem;
  padding: 0.3rem 0;
  font-size: 0.55rem;
  font-weight: 400;
  text-align: center;
  color: #333;
  line-height: 0.85rem;
  border-radius: 0.1rem;
  border: 0.05rem solid #E9E9E9;
}
#pro_detail_content .pro_detail_info .pro_btns .bt_item + .bt_item {
  margin-left: 0.65rem;
}

.pro_more_content .more_list_title {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  line-height: 1.35rem;
}
.pro_more_content.pro_list_block {
  padding-top: 0.45rem;
  padding-bottom: 4.05rem;
}
.pro_more_content.partner_list_block {
  padding-bottom: 2.05rem;
}

#product_page {
  padding-top: 2rem;
}
#product_page .hj_pagination {
  margin-top: 1.05rem;
  margin-bottom: 2.7rem;
}

@media (max-width: 768px) {
  #product_page {
    padding: 2rem 1rem;
    padding-bottom: 2.5rem;
  }
  #product_page .hj_pagination {
    padding-top: 0.45rem;
    margin-top: 0;
    margin-bottom: 0;
  }
  #pro_detail_content {
    flex-direction: column;
    margin: 0;
    padding: 1.4rem 1rem 0;
  }
  #pro_detail_content .m_category_list {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.95rem 0.4rem 3.05rem;
    background: #fff;
    border-radius: 0.6rem 0.6rem 0rem 0rem;
    z-index: 1001;
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node {
    margin-bottom: 0.7rem;
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node .el-tree-node__content {
    height: auto;
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node .el-tree-node__content .el-tree-node__expand-icon {
    padding: 0.25rem;
    font-size: 0.3rem;
    color: rgba(0, 0, 0, 0.6);
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node .el-tree-node__content .el-tree-node__expand-icon.is-leaf {
    width: 0;
    color: transparent;
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node .el-tree-node__content .el-tree-node__label {
    padding-left: 0.4rem;
    font-size: 0.7rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.1rem;
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node .el-tree-node__children {
    margin-top: 0.7rem;
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node.is-current .el-tree-node__content {
    background: none;
  }
  #pro_detail_content .m_category_list .el-tree .el-tree-node.is-current .el-tree-node__content .el-tree-node__label {
    color: #0762CB;
  }
  #pro_detail_content .detail_swiper {
    width: 100%;
  }
  #pro_detail_content .detail_swiper .detail_big_img {
    height: auto;
    padding: 3.1rem 2.6rem;
  }
  #pro_detail_content .detail_swiper .detail_small_swiper {
    margin-top: 1rem;
  }
  #pro_detail_content .detail_swiper .detail_small_swiper .prev_item, #pro_detail_content .detail_swiper .detail_small_swiper .next_item {
    width: 0.76rem;
    height: 0.76rem;
  }
  #pro_detail_content .detail_swiper .detail_small_swiper .prev_item {
    margin-right: 0.5rem;
  }
  #pro_detail_content .detail_swiper .detail_small_swiper .next_item {
    margin-left: 0.5rem;
  }
  #pro_detail_content .detail_swiper .detail_small_swiper .small_img_swiper .swiper-small-img {
    width: 14.22rem;
  }
  #pro_detail_content .detail_swiper .detail_small_swiper .small_img_swiper .swiper-small-img .swiper-slide {
    width: 3.18rem;
    margin-right: 0.5rem;
  }
  #pro_detail_content .pro_detail_info {
    padding: 2rem 0;
  }
  #pro_detail_content .pro_detail_info h1 {
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  #pro_detail_content .pro_detail_info .info_txt {
    margin: 1.2rem 0;
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  #pro_detail_content .pro_detail_info .el-table__header .el-table__cell {
    padding: 0.5rem 0;
    background-color: #F6FAFF;
  }
  #pro_detail_content .pro_detail_info .el-table__header .el-table__cell .cell {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.2rem;
  }
  #pro_detail_content .pro_detail_info .el-table__body .el-table__cell .cell {
    font-size: 0.7rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.1rem;
  }
  #pro_detail_content .pro_detail_info .el-table__body .el-table__row--striped .el-table__cell {
    background: #F6FAFF;
  }
  #pro_detail_content .pro_detail_info .pro_btns {
    padding-top: 1.2rem;
  }
  #pro_detail_content .pro_detail_info .pro_btns .bt_item {
    width: 4.9rem;
    padding: 0.35rem 0;
    font-size: 0.7rem;
    line-height: 1.05rem;
  }
  #pro_detail_content .pro_detail_info .pro_btns .bt_item + .bt_item {
    margin-left: 0.8rem;
  }
  .pro_more_content {
    padding: 0 1rem 1rem;
  }
  .pro_more_content .more_list_title {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  .pro_more_content.partner_list_block {
    padding-bottom: 1.3rem;
  }
  .pro_more_content.partner_list_block .partner_list {
    margin-right: 0;
  }
  .pro_more_content.partner_list_block .partner_list .partner_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
  #cate_nav_fixed {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    line-height: 0.94rem;
    background: #fff;
    box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.09);
    border-radius: 50%;
    border: 0.05rem solid #E9E9E9;
    z-index: 99;
  }
  .m_cate_nav_fixed_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }
}
.about_us_page {
  padding-top: 2.05rem;
}
.about_us_page .about_us_course {
  position: relative;
  margin-bottom: 0rem;
  text-align: center;
  overflow-x: auto;
}
.about_us_page .about_us_course .fzlcList {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about_us_page .about_us_course .fzlcList li {
  display: flex;
  flex-direction: column;
  position: absolute;
}
.about_us_page .about_us_course .fzlcList li .fzlc_title {
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00000A;
  line-height: 0.94rem;
  text-align: center;
}
.about_us_page .about_us_course .fzlcList li .fzlc_content {
  font-size: 0.65rem;
  font-weight: 400;
  color: #333333;
  line-height: 0.8rem;
}
.about_us_page .about_us_course .fzlcList li:nth-child(even) {
  flex-direction: column-reverse;
}
.about_us_page .about_us_course .fzlcList li:nth-child(even) .fzlc_title {
  margin-top: 0.65rem;
  margin-bottom: 0;
}
.about_us_page .about_us_course .fzlcList li:nth-child(1) {
  left: 0;
  top: 15.9rem;
  width: 7.3rem;
}
.about_us_page .about_us_course .fzlcList li:nth-child(2) {
  left: 7.24rem;
  bottom: 10.05rem;
  width: 5.2rem;
}
.about_us_page .about_us_course .fzlcList li:nth-child(3) {
  left: 14.48rem;
  top: 14.8rem;
  width: 5.2rem;
}
.about_us_page .about_us_course .fzlcList li:nth-child(4) {
  left: 21.07rem;
  bottom: 12.08rem;
  width: 5.2rem;
}
.about_us_page .about_us_course .fzlcList li:nth-child(5) {
  left: 28.96rem;
  top: 12.65rem;
  width: 5.2rem;
}
.about_us_page .about_us_course .fzlcList li:nth-child(6) {
  left: 35.6rem;
  bottom: 16.56rem;
  width: 5.2rem;
}
.about_us_page .about_us_course .fzlcList li:nth-child(7) {
  left: 42.55rem;
  top: 7.93rem;
  width: 5.2rem;
}
.about_us_page .about_us_course::-webkit-scrollbar {
  height: 6px;
}
.about_us_page .about_us_jg {
  padding-bottom: 4.05rem;
  text-align: center;
}
.about_us_page .about_us_in .news_de_content {
  font-size: 0.8rem;
}
.about_us_page .about_us_in .news_de_content p {
  text-indent: 2em;
}
.about_us_page .about_us_advantage .advantage_item {
  margin-bottom: 2.45rem;
}
.about_us_page .about_us_advantage .advantage_item .au_page_title {
  margin-bottom: 1rem;
}
.about_us_page .about_us_advantage .advantage_item .hj_detail_content .news_de_content {
  font-size: 0.8rem;
}
.about_us_page .about_us_advantage .advantage_item .hj_detail_content .news_de_content p {
  margin-bottom: 1rem;
}
.about_us_page .about_us_aptitude_block {
  padding-bottom: 2.5rem;
}
.about_us_page .about_us_aptitude_block .about_us_aptitude:last-child {
  margin-top: 1.64rem;
}
.about_us_page .about_us_client .au_page_sub_title, .about_us_page .about_us_cooperate .au_page_sub_title, .about_us_page .about_us_liability .au_page_sub_title {
  margin-top: 0.55rem;
  margin-bottom: 1.65rem;
}
.about_us_page .about_us_cooperate {
  padding-bottom: 3.25rem;
}
.about_us_page .about_us_cooperate .about_us_cooperate_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.65rem;
  margin-right: -0.8rem;
}
.about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item {
  padding-top: 1.35rem;
  margin-bottom: 0.8rem;
  margin-right: 0.8rem;
  width: 11.4rem;
  background: #F8F8F8;
}
.about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item .cooperate_school_content {
  padding: 0.8rem 1rem 3.55rem;
}
.about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item .cooperate_school_content .cooperate_school {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333333;
  line-height: 0.85rem;
}
.about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item .cooperate_school_content .cooperate_school_detail {
  margin-top: 0.4rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666666;
  line-height: 0.85rem;
}
.about_us_page .about_us_liability {
  padding-bottom: 4.05rem;
}
.about_us_page .about_us_liability .liability_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.65rem;
}
.about_us_page .about_us_liability .liability_item .about_us_liability_detail {
  flex: auto;
  padding-left: 2.5rem;
}
.about_us_page .about_us_liability .liability_item .about_us_liability_detail .liability_title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333333;
  line-height: 0.85rem;
}
.about_us_page .about_us_liability .liability_item .about_us_liability_detail .liability_detail {
  margin-top: 0.4rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666666;
  line-height: 0.85rem;
}
.about_us_page .about_us_liability .liability_item:nth-child(odd) {
  flex-direction: row-reverse;
}
.about_us_page .about_us_liability .liability_item:nth-child(odd) .about_us_liability_detail {
  padding-left: 0;
  padding-right: 2.5rem;
}
.about_us_page .about_us_client_list {
  display: flex;
  margin-top: 1.65rem;
  flex-wrap: wrap;
  margin-right: -0.8rem;
}
.about_us_page .about_us_client_list .about_us_client_item {
  width: 11.4rem;
  margin-right: 0.8rem;
  margin-bottom: 1.95rem;
}
.about_us_page .about_us_client_list .about_us_client_item img {
  border: 0.05rem solid #E9E9E9;
}
.about_us_page .about_us_client_list .about_us_client_item .car_name {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333333;
  line-height: 0.85rem;
}
.about_us_page .about_us_client_list .about_us_client_item .car_detail {
  margin-top: 0.4rem;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666666;
  line-height: 0.85rem;
}

@media (max-width: 768px) {
  .about_us_page {
    padding: 1rem;
    padding-top: 1.4rem;
    padding-bottom: 0;
  }
  .about_us_page .about_us_in {
    padding-bottom: 0.5rem;
  }
  .about_us_page .about_us_in .news_de_content {
    font-size: 0.7rem;
    color: #666666;
    line-height: 1.2rem;
  }
  .about_us_page .about_us_in .news_de_content p, .about_us_page .about_us_in .news_de_content img {
    margin-bottom: 2rem;
  }
  .about_us_page .about_us_advantage {
    padding-bottom: 0.5rem;
  }
  .about_us_page .about_us_advantage .advantage_item {
    margin-bottom: 2rem;
  }
  .about_us_page .about_us_advantage .advantage_item .au_page_title {
    margin-bottom: 0.8rem;
  }
  .about_us_page .about_us_advantage .advantage_item .hj_detail_content .news_de_content {
    font-size: 0.7rem;
    color: #666666;
    line-height: 1.2rem;
    text-indent: 2em;
  }
  .about_us_page .about_us_advantage .advantage_item .aptitude_list .aptitude_item:last-child {
    margin-bottom: 0;
  }
  .about_us_page .about_us_course, .about_us_page .about_us_jg {
    padding-bottom: 2.5rem;
  }
  .about_us_page .about_us_course img, .about_us_page .about_us_jg img {
    width: 100% !important;
    height: inherit !important;
  }
  .about_us_page .about_us_course {
    padding-bottom: 0;
    margin-bottom: 2.5rem;
  }
  .about_us_page .about_us_course .fzlcList {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .about_us_page .about_us_course .fzlcList li {
    display: flex;
    flex-direction: column;
    position: absolute;
  }
  .about_us_page .about_us_course .fzlcList li .fzlc_title {
    margin-bottom: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.5rem;
  }
  .about_us_page .about_us_course .fzlcList li .fzlc_content {
    font-size: 0.22rem;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(even) {
    flex-direction: column-reverse;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(even) .fzlc_title {
    margin-top: 0.2rem;
    margin-bottom: 0;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(1) {
    left: 0;
    top: 5.5rem;
    width: 2.55rem;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(2) {
    left: 2.1rem;
    bottom: 4rem;
    width: 2.8rem;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(3) {
    left: 4.95rem;
    top: 5.1rem;
    width: 2.8rem;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(4) {
    left: 6.8rem;
    bottom: 5rem;
    width: 2.8rem;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(5) {
    left: 9.65rem;
    top: 4.35rem;
    width: 2.8rem;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(6) {
    left: 11.45rem;
    bottom: 5.8rem;
    width: 2.8rem;
  }
  .about_us_page .about_us_course .fzlcList li:nth-child(7) {
    left: initial;
    top: 3rem;
    right: 0;
    width: 2.8rem;
  }
  .about_us_page .about_us_course::-webkit-scrollbar {
    height: 6px;
  }
  .about_us_page .about_us_aptitude_block {
    padding-bottom: 1.5rem;
  }
  .about_us_page .about_us_aptitude_block .about_us_aptitude:last-child {
    margin-top: 1rem;
  }
  .about_us_page .about_us_client {
    padding-bottom: 1.3rem;
  }
  .about_us_page .about_us_client .au_page_sub_title {
    margin: 0.8rem 0;
  }
  .about_us_page .about_us_client .about_us_client_list {
    margin-top: 0;
    margin-right: 0;
  }
  .about_us_page .about_us_client .about_us_client_list .about_us_client_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
  .about_us_page .about_us_client .about_us_client_list .about_us_client_item .car_name {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.26rem;
  }
  .about_us_page .about_us_client .about_us_client_list .about_us_client_item .car_detail {
    margin-top: 0.6rem;
    font-size: 0.84rem;
    line-height: 1.26rem;
  }
  .about_us_page .about_us_cooperate {
    padding-bottom: 1.5rem;
  }
  .about_us_page .about_us_cooperate .au_page_sub_title {
    margin: 0.8rem 0;
  }
  .about_us_page .about_us_cooperate .about_us_cooperate_list {
    margin: 0;
  }
  .about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item {
    width: 100%;
    padding: 1.65rem 0 5.85rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item img {
    width: 10.85rem;
  }
  .about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item .cooperate_school_content {
    padding: 1rem 1.2rem 0;
  }
  .about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item .cooperate_school_content .cooperate_school {
    font-size: 1rem;
    line-height: 1.05rem;
  }
  .about_us_page .about_us_cooperate .about_us_cooperate_list .about_us_cooperate_item .cooperate_school_content .cooperate_school_detail {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    line-height: 1.05rem;
  }
  .about_us_page .about_us_liability {
    padding-bottom: 0.5rem;
  }
  .about_us_page .about_us_liability .au_page_sub_title {
    margin: 0.8rem 0;
  }
  .about_us_page .about_us_liability .liability_list .liability_item {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .about_us_page .about_us_liability .liability_list .liability_item img {
    width: 100% !important;
  }
  .about_us_page .about_us_liability .liability_list .liability_item .about_us_liability_detail {
    padding: 0;
  }
  .about_us_page .about_us_liability .liability_list .liability_item .about_us_liability_detail .liability_title {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.05rem;
  }
  .about_us_page .about_us_liability .liability_list .liability_item .about_us_liability_detail .liability_detail {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    line-height: 1.05rem;
  }
}
#join-us {
  padding-bottom: 2rem;
  margin-top: -2.5rem;
}
#join-us .el-table__header .el-table__cell {
  padding: 0.5rem 0;
  background-color: #F6FAFF;
}
#join-us .el-table__header .el-table__cell .cell {
  font-size: 0.65rem;
  font-weight: 500;
  color: #333333;
  line-height: 1rem;
}
#join-us .el-table__body .el-table__cell .cell {
  font-size: 0.55rem;
  font-weight: 400;
  color: #333333;
  line-height: 0.9rem;
}
#join-us .el-table__body .el-table__cell .cell .view_job_detail {
  font-size: 0.57rem;
  font-weight: 400;
  color: #0762CB;
  line-height: 0.89rem;
}
#join-us .el-table__body .el-table__row--striped .el-table__cell {
  background: #F6FAFF;
}
#join-us .hj_pagination {
  margin-top: 6.2rem;
}

#join-us-detail .join_us_detail {
  padding: 2rem 0;
}
#join-us-detail .join_us_detail .back_join_us {
  display: block;
  margin-bottom: 1.63rem;
  font-size: 0.57rem;
  font-weight: 400;
  color: #0762CB;
  line-height: 0.89rem;
}
#join-us-detail .join_us_detail .job_top_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.63rem;
  border-bottom: 1px solid #E9E9E9;
}
#join-us-detail .join_us_detail .job_top_info .top_info_left h1 {
  width: 24rem;
  font-size: 1.14rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.33rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail {
  margin-top: 0.41rem;
}
#join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul {
  display: flex;
  align-items: center;
}
#join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li {
  display: flex;
  align-items: center;
}
#join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li + li {
  margin-left: 1.63rem;
}
#join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li img {
  width: 0.65rem;
  height: 0.65rem;
}
#join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li span {
  margin-left: 0.16rem;
  font-size: 0.57rem;
  font-weight: 400;
  color: #333333;
  line-height: 0.89rem;
}
#join-us-detail .join_us_detail .job_top_info .i_contact_us {
  display: block;
  padding: 0.16rem 0.98rem;
  text-align: center;
  font-size: 0.57rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.81rem;
  background: #0762CB;
  border-radius: 0.08rem;
}
#join-us-detail .join_us_detail .job_des_tip {
  padding: 1.63rem 0;
}
#join-us-detail .join_us_detail .job_des_tip h2 {
  font-size: 0.57rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.3rem;
}
#join-us-detail .join_us_detail .job_des_tip .des_tip_list {
  display: flex;
  flex-wrap: wrap;
}
#join-us-detail .join_us_detail .job_des_tip .des_tip_list li {
  padding: 0.33rem 0.81rem;
  margin-top: 0.41rem;
  margin-right: 0.41rem;
  text-align: center;
  font-size: 0.49rem;
  font-weight: 400;
  color: #666666;
  line-height: 0.85rem;
  background: #ECECEC;
  border-radius: 0.16rem;
}
#join-us-detail .join_us_detail .job_content {
  font-size: 0.57rem;
  font-weight: 400;
  color: #333333;
  line-height: 0.98rem;
}
#join-us-detail .join_us_detail .job_mailto {
  font-size: 0.57rem;
  font-weight: 400;
  color: #333333;
  line-height: 1rem;
  margin-top: 1rem;
}
#join-us-detail .join_us_detail .job_mailto a{
    color: #0762CB;
}

@media (max-width: 768px) {
  #join-us {
    padding: 0;
    padding-bottom: 2.5rem;
    margin: 0;
  }
  #join-us .m_join_us {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #F4F5FC;
    border-radius: 0.2rem;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item h1 {
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.2rem;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item .m_ju_needs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.1rem;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item .m_ju_needs .needs_item {
    margin-bottom: 0.2rem;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item .m_ju_needs .needs_item:last-child {
    margin-bottom: 0;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item .m_view_job_detail {
    padding: 0.5rem 0;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2rem;
    background: #0762CB;
    border-radius: 0.1rem;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item .m_des_list {
    margin-top: 0.2rem;
  }
  #join-us .m_join_us .m_ju_list .m_ju_item .m_des_list .m_des_item {
    font-size: 0.7rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.1rem;
  }
  #join-us .hj_pagination {
    margin-top: 0;
  }
  #join-us-detail .join_us_detail {
    padding: 1.6rem 1rem;
  }
  #join-us-detail .join_us_detail .back_join_us {
    display: block;
    margin-bottom: 2rem;
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  #join-us-detail .join_us_detail .job_top_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E9E9E9;
  }
  #join-us-detail .join_us_detail .job_top_info .top_info_left h1 {
    width: 9.8rem;
    font-size: 1.4rem;
    line-height: 1.64rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  #join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail {
    margin-top: 0.5rem;
  }
  #join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul {
    display: flex;
    align-items: center;
  }
  #join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li {
    display: flex;
    align-items: center;
  }
  #join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li + li {
    margin-left: 0.5rem;
  }
  #join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li img {
    width: 0.8rem;
    height: 0.8rem;
  }
  #join-us-detail .join_us_detail .job_top_info .top_info_left .left_info_detail ul li span {
    margin-left: 0.15rem;
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  #join-us-detail .join_us_detail .job_top_info .i_contact_us {
    display: block;
    padding: 0.2rem 1.2rem;
    text-align: center;
    font-size: 0.7rem;
    line-height: 1rem;
    border-radius: 0.1rem;
  }
  #join-us-detail .join_us_detail .job_des_tip {
    padding: 2rem 0;
  }
  #join-us-detail .join_us_detail .job_des_tip h2 {
    font-size: 0.7rem;
    line-height: 1.6rem;
  }
  #join-us-detail .join_us_detail .job_des_tip .des_tip_list {
    display: flex;
    flex-wrap: wrap;
  }
  #join-us-detail .join_us_detail .job_des_tip .des_tip_list li {
    padding: 0.4rem 1rem;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    font-size: 0.6rem;
    line-height: 1.05rem;
    border-radius: 0.2rem;
  }
  #join-us-detail .join_us_detail .job_content {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  #join-us-detail .join_us_detail .job_mailto {
      font-size: 0.57rem;
      font-weight: 400;
      color: #333333;
      line-height: 1rem;
      margin-top: 1rem;
    }
    #join-us-detail .join_us_detail .job_mailto a{
        color: #0762CB;
    }
}
.fabricate_it_center {
  padding-top: 2.05rem;
  padding-bottom: 4.05rem;
}
.fabricate_it_center .advantage_item + .advantage_item {
  margin-top: 1.64rem;
}
.fabricate_it_center .development_detail {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #333333;
  line-height: 0.95rem;
}
.fabricate_it_center .development_img {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
}
.fabricate_it_center .development_img img {
  margin-bottom: 0;
}
.fabricate_it_center .development_img .development_img_left {
  /*width: 31.75rem;*/
}
.fabricate_it_center .development_img .development_img_right {
  width: 15.46rem;
}
.fabricate_it_center .development_img .development_img_right .development_img_rightone {
  margin-bottom: 1.06rem;
}

.fabricate_list {
  display: flex;
  justify-content: center;
  margin-top: 2.05rem;
  margin-bottom: 4.05rem;
  flex-wrap: wrap;
}
.fabricate_list .au_page_sub_title {
  width: 100%;
  padding:0 0.4rem;
  margin-top: 0;
}
.fabricate_list .fabricate_item {
  width: 14.05rem;
  margin: 0 0.4rem;
}
.fabricate_list .fabricate_item img {
  width: 100%;
}
.fabricate_list .fabricate_item .fabricate_content {
  padding: 1.2rem 1rem 1rem;
  margin-top: -0.25rem;
  background: #0762CB;
}
.fabricate_list .fabricate_item .fabricate_content .fabricate_title {
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 0.95rem;
  text-align: center;
}
.fabricate_list .fabricate_item .fabricate_content .fabricate_detail {
  font-size: 0.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 0.8rem;
}
.fabricate_list.fabricate_list_column .fabricate_item {
  width: 11.2rem;
}

@media (max-width: 768px) {
  .fabricate_it_center {
    padding: 1rem;
    padding-top: 2rem;
  }
  .fabricate_it_center .m_fab_page_de {
    padding-bottom: 0.35rem;
  }
  .fabricate_it_center .m_fab_page_ho {
    padding-bottom: 1rem;
  }
  .fabricate_it_center .hj_detail_content .development_img {
    margin: 0;
    display: unset;
  }
  .fabricate_it_center .hj_detail_content .development_img .development_img_left {
    /*width: 11.1rem;*/
  }
  .fabricate_it_center .hj_detail_content .development_img .development_img_right {
    width: 5.4rem;
  }
  .m_fabricate_list {
    flex-wrap: wrap;
    padding: 0 1rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  .m_fabricate_list .fabricate_item {
    width: 100%!important;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .m_fabricate_list .fabricate_item .fabricate_content {
    padding: 1.15rem;
    padding-top: 1.4rem;
  }
  .m_fabricate_list .fabricate_item .fabricate_content .fabricate_title {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.175rem;
  }
  .m_fabricate_list .fabricate_item .fabricate_content .fabricate_detail {
    font-size: 0.7rem;
    line-height: 0.825rem;
  }
}
:root {
  --color: "#f00" ;
}

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