@charset "UTF-8";
/* 颜色主题定义 */
:root {
  /* 主色系 */
  --primaryBlueColor: #1B77CF;
  --primaryGreenColor: #77C94E;
  --primaryOrangeColor: #FF9332;
  /* 辅助色系 */
  --accentBlueColor: #E8F2FB;
  --headerHight: 65px;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
  height: 12px;
  background-color: rgba(31, 68, 84, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(31, 68, 84, 0.3);
  border-radius: 10px;
  cursor: pointer;
}

/* end 滚动条样式 */
/* ------
*** 内置公共样式 
------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 14px;
  font-family: sans-serif, 'PingFang SC,Tahoma,Arial';
  background-color: #F6FAFA;
  line-height: 1.7;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}

button {
  border: none;
}

.henice-unlist li {
  line-height: 1.7;
  padding-left: 14px;
  margin-bottom: 5px;
  position: relative;
}

.henice-unlist li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--primaryBlueColor);
}

/* ------
*** end 内置公共样式 
------------------------------*/
/* ------
*** layui 内置样式重置 
------------------------------*/
.layui-col-space60 {
  margin: -2.5rem;
}

.layui-col-space60 > * {
  padding: 2.5rem;
}

.layui-btn {
  padding: 0 50px;
}

.layui-btn:hover {
  opacity: 1;
}

.layui-bg-blue {
  background-color: var(--primaryBlueColor) !important;
}

.layui-bg-blue:hover {
  background-color: var(--primaryOrangeColor) !important;
}

.layui-bg-orange {
  background-color: var(--primaryOrangeColor) !important;
}

.layui-bg-green {
  background-color: var(--primaryGreenColor) !important;
}

.layui-bg-info {
  background-color: #F2F3F5 !important;
  color: #000000 !important;
}

.layui-border-white {
  border-color: #ffffff;
  color: #ffffff;
}

.layui-border-white:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--primaryBlueColor);
}

/* ------
*** end layui 内置样式重置 
------------------------------*/
section {
  margin-bottom: 2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: var(--headerHight);
  background-color: #ffffff;
  color: #ffffff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

header .layui-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo {
  width: 75px;
}

header .logo:hover {
  background-color: transparent;
}

header .logo img {
  width: 100%;
}

header .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

header .nav-menu .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--headerHight);
  padding: 10px 30px;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  font-size: 16px;
}

header .nav-menu .nav-link.active {
  color: var(--primaryBlueColor);
  background-color: var(--accentBlueColor);
  border-color: var(--primaryBlueColor);
}

header .nav-menu .nav-link:hover {
  color: var(--primaryBlueColor);
  background-color: var(--accentBlueColor);
  border-color: var(--primaryBlueColor);
}

header .handle-btn {
  padding: 8px;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: normal;
  background-color: var(--primaryBlueColor);
  cursor: pointer;
}

header .handle-btn:hover, header .handle-btn.active {
  background-color: var(--primaryOrangeColor);
}

header .mob-nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-top: 1px solid #eee;
  z-index: 999;
}

header .mob-nav-menu.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header .mob-nav-menu .nav-item {
  margin: 0;
  width: 100%;
  text-align: center;
}

header .mob-nav-menu .mob-nav-link {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

header .mob-nav-menu .mob-nav-link:hover, header .mob-nav-menu .mob-nav-link.active {
  background-color: var(--accentBlueColor);
}

header .overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100vh - var(--headerHight));
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 888;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .overlay.active {
  opacity: 1;
  visibility: visible;
}

.henice-banner {
  padding-top: var(--headerHight);
  background: url("../images/banner-homej.jpg") no-repeat center;
}

.henice-banner .henice-banner__content {
  padding: 9rem 0;
}

.henice-banner h2 {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: normal;
}

.henice-banner h1 {
  color: #ffffff;
  font-size: 2.3rem;
}

.henice-banner .layui-btn {
  margin-top: 2.1rem;
}

.nav_dropdown {
  padding: .8rem 0;
}

.nav_dropdown .layui-breadcrumb a:hover {
  color: var(--primaryBlueColor) !important;
}

.nav_dropdown .layui-breadcrumb a cite {
  color: var(--primaryBlueColor) !important;
  font-weight: 700;
}

.henice-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}

.henice-card {
  background-color: #F2F3F5;
}

.henice-card .henice-card__img {
  width: 100%;
  max-height: 300px;
}

.henice-card .henice-card__body {
  padding: 1rem;
  background-color: #F2F3F5;
}

.henice-card .henice-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 15px;
}

.henice-card .henice-card__title h3 {
  font-size: 22px;
}

.henice-card .henice-card__title img {
  width: 40px;
}

.henice-card .henice-card__btn {
  margin-top: 1rem;
}

.section-solution .layui-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-solution .henice-card-bg {
  position: relative;
  height: 100%;
}

.section-solution .henice-card-bg .henice-card__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-solution .henice-card-bg .henice-card__mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.section-solution .henice-card-bg .henice-card__body {
  position: relative;
  z-index: 3;
  padding: 2rem 1rem;
  height: 100%;
  color: #ffffff;
}

.section-solution .henice-card-bg em {
  display: block;
  margin: .7rem 0;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
}

.section-solution .henice-card-bg .henice-card__btn {
  margin-top: 1rem;
}

.henice-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.henice-nav .layui-btn {
  height: 100%;
  border: none;
  background-color: #e8e8e8;
  color: #000;
  margin-right: 0px;
  font-size: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  padding: 10px;
  gap: 15px;
  border-radius: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.henice-nav .layui-btn.in {
  background-color: var(--primaryBlueColor);
  color: #ffffff;
}

.henice-nav .layui-btn.in img {
  background-color: transparent !important;
}

.henice-nav .layui-btn + .layui-btn {
  margin-left: 0px;
}

.henice-nav .layui-btn img {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 1px solid #ffffff;
}

.henice-nav .layui-btn strong {
  font-size: 18px;
}

.henice-nav .layui-btn:nth-child(1).in {
  background-color: var(--primaryBlueColor);
  color: #ffffff;
}

.henice-nav .layui-btn:nth-child(1) img {
  background-color: var(--primaryBlueColor);
}

.henice-nav .layui-btn:nth-child(2).in {
  background-color: var(--primaryGreenColor);
  color: #ffffff;
}

.henice-nav .layui-btn:nth-child(2) img {
  background-color: var(--primaryGreenColor);
}

.henice-nav .layui-btn:nth-child(3).in {
  background-color: var(--primaryOrangeColor);
  color: #ffffff;
}

.henice-nav .layui-btn:nth-child(3) img {
  background-color: var(--primaryOrangeColor);
}

.henice-subnav__title {
  margin-bottom: .6rem;
  font-size: 25px;
}

.henice-subnav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

.henice-subnav .henice-subnav__item {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background-color: #ffffff;
  border-radius: 3px;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.henice-subnav .henice-subnav__item.in {
  background-color: var(--primaryOrangeColor);
  color: #ffffff;
}

.henice-subnav .henice-subnav__item:hover {
  background-color: var(--primaryOrangeColor);
  color: #ffffff;
}

.henice-detail-top {
  margin-bottom: 0;
  background-color: #ffffff;
}

.henice-detail-banner {
  margin-top: var(--headerHight);
  position: relative;
  max-height: 375px;
  background-color: #F2F2F2;
  overflow: hidden;
}

.henice-detail-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}

.henice-detail-banner .layui-container {
  position: relative;
  z-index: 2;
}

.henice-detail-banner .henice-detail-banner__img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.henice-detail-banner .henice-detail-banner__title {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4.25rem 0;
  font-weight: bold;
  color: #ffffff;
  font-size: 2rem;
}

.henice-detail-desc {
  background-color: #F2F2F2;
}

.henice-detail-desc .henice-detail-desc__content {
  padding: 1.3rem 0;
}

.henice-detail-desc .henice-detail-desc__content > * {
  margin-bottom: .6rem;
}

.henice-detail-desc h2 {
  font-size: 22px;
  color: var(--primaryBlueColor);
  margin-bottom: .8rem;
}

.henice-detail-desc p {
  line-height: 1.7;
}

.henice-detail-desc img {
  width: 100%;
  max-height: 430px;
}

.henice-detail-content section {
  padding: 2rem 0;
  margin: 0;
}

.henice-detail-content section:nth-child(even) {
  background-color: #F2F3F5;
}

.henice-detail-content section:nth-child(even) .henice-detail-content__body-bg {
  background: #ffffff;
  padding: 1rem;
}

.henice-detail-content section:nth-child(odd) {
  background-color: #ffffff;
}

.henice-detail-content section:nth-child(odd) .henice-detail-content__body-bg {
  background: #F2F3F5;
  padding: 1rem;
}

.henice-detail-content .layui-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.henice-detail-content .henice-detail-content__title {
  font-size: 20px;
  color: var(--primaryBlueColor);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.henice-detail-content .henice-detail-content__body {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.henice-detail-content .henice-detail-content__body > * {
  margin-bottom: .6rem;
}

.henice-detail-content .henice-detail-content__body > *:last-child {
  margin-bottom: 0;
}

.henice-detail-content .henice-detail-content__body h2 {
  font-size: 20px;
  color: var(--primaryBlueColor);
  margin-bottom: .8rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.henice-detail-content .henice-detail-content__body h2 svg {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-top: 6px;
}

.henice-detail-content .henice-detail-content__body h3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.henice-detail-content .henice-detail-content__body h3 svg {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-top: 3px;
}

.henice-detail-content .henice-detail-content__body li {
  line-height: 1.7;
  padding-left: 14px;
  margin-bottom: 5px;
  position: relative;
}

.henice-detail-content .henice-detail-content__body li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--primaryBlueColor);
}

.henice-detail-content .henice-detail-content__body ol li::before {
  background-color: #93908f;
}

.henice-detail-content .henice-detail-content__body .note {
  font-size: 12px;
  text-align: center;
  color: #666;
}

.henice-detail-content .henice-detail-content__body img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.henice-detail-content .henice-detail-content__body .table-view {
  overflow-x: auto;
  width: 100%;
}

.henice-detail-content .henice-detail-content__body table {
  width: 100%;
}

.henice-detail-content .henice-detail-content__body table tbody {
  border-bottom: 2px solid var(--primaryBlueColor);
}

.henice-detail-content .henice-detail-content__body table td {
  border: 1px solid #999999;
  padding: 7px;
}

.henice-detail-content .henice-detail-content_mirror {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 20px;
}

.henice-detail-content .henice-detail-content_mirror .henice-detail-content_mirror_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.henice-detail-content .henice-detail-content_mirror h4 {
  width: 100%;
  color: #666666;
  background: #dddddd;
  padding: 3px 8px;
  text-align: center;
  font-weight: normal;
  font-size: 12px;
}

.henice-detail-content .henice-detail-content_mirror img {
  width: 100%;
}

.henice-detail-content .henice-detail-content_mirror .layui-icon {
  padding: 0 .4rem;
  text-align: center;
}

.henice-detail-content .henice-detail-content_category {
  width: 1203px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.henice-detail-content .henice-detail-content_category ul {
  background: url(../images/1690522605127611.png);
  height: 54px;
}

.henice-detail-content .henice-detail-content_category li {
  display: inline-block;
  white-space: nowrap;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
  line-height: 54px;
  width: 19%;
  padding-left: 40px;
  text-align: left;
}

.henice-detail-content .henice-detail-content_category li:nth-child(4) {
  padding-left: 30px;
}

.henice-detail-content .henice-detail-content_category li:nth-child(5) {
  padding-left: 16px;
}

.henice-detail-content .henice-detail-content_category li::before {
  display: none;
}

.henice-detail-content .henice-detail-content_category li.active {
  background: url(../images/1690522625630902.png);
  height: 54px;
  width: 234px;
  color: #ffffff;
}

/* 首页 */
.page-home header {
  background-color: transparent !important;
}

.page-home header.header_bg {
  background-color: #ffffff !important;
}

.page-home header.header_bg .header-icon {
  background-color: var(--primaryCyanColor);
}

.page-home header.header_bg .h_user .header-icon:hover {
  background-color: var(--primaryCyanColor);
  color: #ffffff;
}

.page-home header.header_bg .nav-link {
  color: #000000 !important;
}

.page-home header.header_bg .nav-link.active {
  color: var(--primaryBlueColor) !important;
  background-color: var(--accentBlueColor) !important;
  border-color: var(--primaryBlueColor) !important;
}

.page-home header.header_bg .nav-link:hover {
  color: var(--primaryBlueColor) !important;
  background-color: var(--accentBlueColor) !important;
  border-color: var(--primaryBlueColor) !important;
}

.page-home header .nav-link {
  color: #ffffff;
}

.page-home header .nav-link.active {
  color: #ffffff;
  background-color: #0A2E5B;
  border-color: var(--primaryBlueColor);
}

.page-home header .nav-link:hover {
  color: #ffffff;
  background-color: #0A2E5B;
  border-color: var(--primaryBlueColor);
}

/* 战略合作 */
/* 解决方案 */
/* 公司介绍 */
.page-company h2 {
  font-size: 20px;
  color: var(--primaryBlueColor);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.page-company .henice-detail-content__body-card {
  overflow: initial;
  padding-top: 1.8rem !important;
}

.page-company .henice-detail-content__body-card__title {
  position: absolute;
  top: -18px;
  left: 1rem;
  height: 36px;
  line-height: 36px;
  padding: 0 1rem;
  background: red;
  color: #ffffff;
}

.page-company .henice-concept {
  background: url(../images/company-02.jpg) no-repeat center center;
  background-size: cover;
  height: 100%;
  padding: 2rem 0;
  color: #ffffff;
}

.page-company .henice-concept h2 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.page-company .henice-concept li::before {
  background-color: #ffffff;
}

.page-company .henice-card-concept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.page-company .henice-card-concept__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .8rem;
}

.page-company .henice-card-concept__item img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 45px;
}

footer {
  background: url("../images/footer-bg.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
}

footer .footer-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  color: #ffffff;
}

footer .footer-logo {
  width: 100px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

footer li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

footer li a {
  display: block;
  color: #ffffff;
  text-align: center;
}

footer .copyright {
  font-size: 12px;
  color: #f2f2f2;
}

footer .copyright a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .mobile_show {
    display: block !important;
  }
  .pc_show {
    display: none !important;
  }
  footer .footer-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .henice-banner {
    background-size: cover;
    background-position: 75% 100%;
  }
  .henice-banner .henice-banner__content {
    padding: 2rem 0 12rem;
  }
  .henice-subnav__title {
    font-size: 18px;
  }
  .henice-nav .layui-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .henice-nav .layui-btn strong {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .henice-detail-content .henice-detail-content_mirror {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .henice-detail-content .henice-detail-content_mirror h4 {
    padding: 8px;
  }
  .henice-detail-content .henice-detail-content_mirror .layui-icon {
    padding: .4rem 0;
  }
  .henice-detail-content .henice-detail-content_mirror .layui-icon:before {
    content: "\e61a";
  }
}

@media (min-width: 768px) {
  .mobile_show {
    display: none !important;
  }
  .pc_show {
    display: block !important;
  }
  .henice-subnav {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .henice-subnav {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .henice-subnav.henice-subnav__col4 {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}
/*# sourceMappingURL=index.css.map */