.new-index-page {
  min-height: 100vh;
  background: #fff;
  color: #333;
}
.new-index-page * {
  box-sizing: border-box;
}
.new-index-page a {
  color: inherit;
  text-decoration: none;
}
.ni-container {
  width: 1190px;
  margin: 0 auto;
}
.ni-hero {
  padding: 40px 0 50px;
  background: #fff;
}
.common-header .nr-nav ul .nr-nav-index a {
  color: #ff6900;
  font-weight: bold;
  font-size: 16px;
}
.common-header .nr-nav ul .nr-nav-index a::after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  background: #ff6900;
  border-radius: 2px;
}
.ni-search {
  display: flex;
  align-items: center;
  width: 1190px;
  height: 50px;
  margin: 0 auto;
}
.ni-search input {
  width: 910px;
  flex: none;
  border: 2px solid #FF7000;
  border-right: 0;
  border-radius: 6px 0 0 6px;
}
.ni-search button {
  width: 120px;
  flex: none;
  border-radius: 0 6px 6px 0;
}
.ni-search .ni-user-btn {
  width: 150px;
  height: 50px;
  flex: none;
  margin-left: 10px;
  border-radius: 6px;
  background: #FF7000;
}
.ni-search input {
  height: 100%;
  padding: 0 16px;
  outline: 0;
  color: #333;
  font-size: 14px;
}
.ni-search input::placeholder {
  color: #888888;
  font-size: 16px;
}
.ni-search button,
.ni-search .ni-user-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 0;
  color: #fff;
  background: #FF7000;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}
.ni-search button img,
.ni-search .ni-user-btn img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.ni-search .ni-user-btn {
  background: #FF7000;
}
.ni-hot {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  width: 1190px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  color: #060606;
  font-weight: 400;
  font-size: 14px;
}
.ni-hot a:hover,
.ni-hot a.hot-active {
  color: #FF7000;
}
.ni-hot .ni-more-solution {
  color: #FF7000;
}
.ni-hero-title {
  margin: 60px 0 40px;
  text-align: center;
  color: #222222;
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
}
.ni-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 396px);
  grid-auto-rows: 240px;
  gap: 0;
  width: 1188px;
  margin: 0 auto;
  overflow: hidden;
}
.ni-entry {
  position: relative;
  display: block;
  width: 396px;
  height: 240px;
  overflow: hidden;
  color: #fff;
  background: #333;
  isolation: isolate;
}
.ni-entry img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}
.ni-entry:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #FF7000;
  transform: translateY(100%);
  transition: transform 0.45s ease;
}
.ni-entry:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s ease;
}
.ni-entry span,
.ni-entry strong,
.ni-entry em {
  position: absolute;
  z-index: 2;
}
.ni-entry span,
.ni-entry em {
  display: none;
}
.ni-entry .ni-entry-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 220px;
  height: 52px;
  padding: 5px 8px;
  box-sizing: border-box;
  border-radius: 2px;
  border: 1px solid #FFFFFF;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 40px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ni-entry:hover img {
  opacity: 0;
  transform: scale(1.03);
}
.ni-entry:hover {
  padding: 54px 32px 22px 32px;
}
.ni-entry:hover:before {
  transform: translateY(0);
}
.ni-entry:hover:after {
  opacity: 0;
}
.ni-entry:hover .ni-entry-title {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  transform: none;
  width: 220px;
  height: 52px;
  padding: 5px 8px;
  box-sizing: border-box;
  margin: 0 auto 20px;
  border-radius: 2px;
  border: 1px solid #FFFFFF;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: niEntryFadeIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.25s;
}
.ni-entry:hover span {
  position: relative;
  display: -webkit-box;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  max-height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  animation: niEntryFadeIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.35s;
}
.ni-entry:hover em {
  display: block;
  right: 32px;
  bottom: 22px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 14px;
  animation: niEntryFadeIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.45s;
}
.ni-section {
  padding: 40px 0;
  background: #fff;
}
.ni-section-soft,
.ni-service {
  background: #F8F9F9;
}
.ni-section-soft {
  padding-bottom: 0;
}
.ni-section-title {
  margin-bottom: 28px;
  text-align: center;
}
.ni-section-sub-title {
  margin: 12px 0 0;
  font-weight: 400;
  font-size: 14px;
  color: #2E2E2E;
  line-height: 14px;
}
.ni-section-main-title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 30px;
  color: #2E2E2E;
  line-height: 30px;
}
.ni-news-layout {
  display: grid;
  grid-template-columns: 584px 584px;
  gap: 22px;
}
.ni-feature-card,
.ni-news-side a,
.ni-master-main,
.ni-solution-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ddd;
}
.ni-feature-card img,
.ni-news-side a img,
.ni-master-main img,
.ni-solution-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ni-feature-card:hover img,
.ni-news-side a:hover img,
.ni-master-main:hover img,
.ni-solution-cover:hover img {
  transform: scale(1.04);
}
.ni-feature-card {
  width: 584px;
  height: 380px;
}
.ni-feature-card img {
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.ni-feature-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62));
}
.ni-feature-card div {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  color: #fff;
  font-size: 0;
}
.ni-feature-card .ni-feature-title {
  display: block;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
}
.ni-feature-card .ni-slider-dots {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  gap: 6px;
}
.ni-feature-card .ni-slider-dots i {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}
.ni-feature-card .ni-slider-dots .active {
  background: #FF7000;
}
.ni-feature-card .ni-cover-slide-data {
  display: none;
}
.ni-news-side {
  display: grid;
  grid-template-columns: repeat(2, 283px);
  gap: 20px;
}
.ni-news-side a {
  width: 283px;
  height: 180px;
}
.ni-news-side a:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}
.ni-news-side span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
}
.ni-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 50px;
  padding: 24px;
  list-style: none;
  color: #555;
  font-size: 14px;
  background: #fff;
}
.ni-news-list li {
  position: relative;
  padding-left: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ni-news-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #FF7000;
  border-radius: 50%;
}
.ni-news-list a:hover {
  color: #ff6a00;
}
.ni-master {
  display: grid;
  grid-template-columns: 584px 580px;
  gap: 20px;
}
.ni-master-section {
  background: #F8F9F9;
}
.ni-master-main {
  width: 584px;
  height: 400px;
}
.ni-master-list {
  display: grid;
  align-content: start;
  grid-auto-rows: 120px;
  gap: 20px;
}
.ni-master-list a {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 16px;
  align-items: center;
  min-height: 0;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ni-master-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.ni-master-list img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}
.ni-master-list .ni-master-text {
  display: flex;
  min-width: 0;
  height: 88px;
  padding-right: 112px;
  flex-direction: column;
  justify-content: space-between;
}
.ni-master-list strong {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #2E5685;
  line-height: 22px;
}
.ni-master-list span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ni-master-list em {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 96px;
  height: 32px;
  border: 1px solid #FF7000;
  border-radius: 16px;
  font-weight: 400;
  font-size: 14px;
  color: #FF7000;
  text-align: center;
  line-height: 30px;
  font-style: normal;
}
.ni-block-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}
.ni-block-head h2 {
  margin: 0;
  font-weight: 600;
  font-size: 30px;
  color: #2E2E2E;
  line-height: 30px;
}
.ni-block-head a {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #999;
  font-size: 13px;
}
.ni-block-head a:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("//image01.homedo.com/Files/Images/cms/www/20260526/5342438994874946909_pic1.png") center / 14px 14px no-repeat;
}
.ni-block-head a:hover {
  color: #ff6a00;
}
.ni-solution-block {
  padding-top: 28px;
  padding-bottom: 32px;
}
.ni-solution-row {
  display: grid;
  grid-template-columns: 584px 586px;
  gap: 20px;
  height: 400px;
}
.ni-solution-cover {
  width: 584px;
  height: 400px;
}
.ni-solution-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58));
}
.ni-solution-cover .ni-solution-cover-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}
.ni-solution-cover .ni-slider-dots {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  gap: 6px;
}
.ni-solution-cover .ni-slider-dots i {
  cursor: pointer;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}
.ni-solution-cover .ni-slider-dots .active {
  background: #FF7000;
}
.ni-solution-list {
  display: grid;
  align-content: start;
  grid-auto-rows: 120px;
  gap: 20px;
  height: 400px;
}
.ni-solution-list .ni-solution-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 0;
  background: #F8F9F9;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ni-solution-list .ni-solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.ni-solution-list img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}
.ni-solution-list .ni-solution-text {
  min-width: 0;
  padding: 18px 18px 0;
}
.ni-solution-list strong {
  display: block;
  color: #2E5685;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.ni-solution-list p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 18px 0 0;
}
.ni-solution-list span,
.ni-solution-list .ni-solution-link {
  display: block;
  min-width: 0;
  position: relative;
  padding-left: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 18px;
}
.ni-solution-list span:hover,
.ni-solution-list .ni-solution-link:hover {
  color: #FF7000;
}
.ni-solution-list span:before,
.ni-solution-list .ni-solution-link:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #FF7000;
  border-radius: 50%;
}
.ni-service {
  padding: 40px 0;
}
.ni-service-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 360px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.ni-service-points {
  position: relative;
  padding: 60px 60px 0 60px;
}
.ni-service-points:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 30px;
  width: 1px;
  background: #eee;
}
.ni-service-points div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 66px;
  padding-left: 88px;
  margin-bottom: 60px;
}
.ni-service-points i {
  position: absolute;
  left: 0;
  top: 0;
  width: 66px;
  height: 66px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 66px 66px;
  font-style: normal;
}
.ni-service-points .ni-service-icon-demand {
  background-image: url("//image01.homedo.com/Files/Images/cms/www/20260526/5137400009337705897_pic1.png");
}
.ni-service-points .ni-service-icon-delivery {
  background-image: url("//image01.homedo.com/Files/Images/cms/www/20260526/5760093794391695884_pic1.png");
}
.ni-service-points .ni-service-icon-fast {
  background-image: url("//image01.homedo.com/Files/Images/cms/www/20260526/5197945473082880140_pic1.png");
}
.ni-service-points strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #222222;
}
.ni-service-points span {
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 1.7;
}
.ni-demand-form {
  padding: 30px 20px;
}
.ni-demand-form h3 {
  margin: 0 0 8px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #222222;
}
.ni-demand-form p {
  margin: 0 0 22px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
}
.ni-demand-form label {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: #222;
  font-size: 13px;
}
.ni-demand-form .ni-form-label {
  flex: 0 0 78px;
  width: 78px;
  text-align: right;
}
.ni-demand-form .ni-form-line-title {
  flex: 0 0 78px;
  width: 78px;
  text-align: right;
}
.ni-demand-form em {
  margin-right: 3px;
  color: #FF0000;
  font-style: normal;
}
.ni-demand-form input[type="text"],
.ni-demand-form select {
  flex: 0 0 auto;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  outline: 0;
  font-weight: 400;
  font-size: 14px;
  color: #AAAAAA;
  background: #fff;
  transition: border-color 0.15s ease-in-out;
}
.ni-demand-form input[type="text"]:focus,
.ni-demand-form select:focus {
  border-color: #FF7000;
}
.ni-demand-form input[type="text"] {
  width: 476px;
}
.ni-demand-form select {
  width: 230px;
  padding-right: 34px;
  appearance: none;
  background: #fff url("//image01.homedo.com/Files/Images/cms/www/20260526/4958659343905268011_pic1.png") right 10px center / 16px 16px no-repeat;
}
.ni-demand-form button {
  display: block;
  width: 300px;
  height: 40px;
  margin: 22px auto 0;
  border: 0;
  background: #FF7000;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
}
.ni-form-row {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.ni-form-row select + select {
  margin-left: 12px;
}
.ni-radio-row,
.ni-check-row,
.ni-upload-row {
  display: flex;
  align-items: center;
  min-height: 30px;
  color: #666;
  font-size: 13px;
}
.ni-radio-row label,
.ni-check-row label,
.ni-upload-row label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  margin-right: 16px;
}
.ni-radio-row input,
.ni-check-row input,
.ni-upload-row input {
  margin-right: 5px;
}
.ni-radio-row input,
.ni-check-row input {
  position: absolute;
  opacity: 0;
}
.ni-radio-row label:before,
.ni-check-row label:before {
  display: none;
}
.ni-radio-icon,
.ni-check-icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.ni-radio-icon {
  background-image: url("//image01.homedo.com/Files/Images/cms/www/20260526/4893196146473790358_pic1.png");
}
.ni-radio-row input:checked + .ni-radio-icon {
  background-image: url("//image01.homedo.com/Files/Images/cms/www/20260526/4688058567878497550_pic1.png");
}
.ni-check-icon {
  background-image: url("//image01.homedo.com/Files/Images/cms/www/20260526/5076214886161360648_pic1.png");
}
.ni-check-row input:checked + .ni-check-icon {
  background-image: url("//image01.homedo.com/Files/Images/cms/www/20260526/4715786450385951305_pic1.png");
}
.ni-check-row {
  margin-top: 10px;
}
.ni-system-row {
  align-items: flex-start;
}
.ni-system-content {
  flex: 1;
  min-width: 0;
}
.ni-system-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}
.ni-system-more {
  display: block;
  width: 120px;
  margin: 8px auto 0;
  text-align: center;
  color: #FF7000;
  cursor: pointer;
}
.ni-upload-row {
  margin-top: 10px;
}
.ni-demand-form .ni-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 36px;
  margin-right: 10px;
  border: 1px solid #FF7000;
  border-radius: 2px;
  font-weight: 400;
  font-size: 14px;
  color: #FF7000;
  cursor: pointer;
  margin-bottom: 0;
}
.ni-demand-form .ni-upload-btn i {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: url("//image01.homedo.com/Files/Images/cms/www/20260526/4792746109664414131_pic1.png") center / 14px 14px no-repeat;
}
.ni-upload-tip {
  flex: 1;
  min-width: 0;
  color: #b8bec8;
  font-size: 12px;
  line-height: 18px;
}
.ni-upload-list {
  width: 300px;
  margin: 10px 0 0 78px;
  color: #888888;
  font-size: 12px;
  line-height: 22px;
}
.ni-upload-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.ni-upload-list p {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 220px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #666666;
}
.ni-upload-list span {
  flex: none;
  margin-left: 18px;
  color: #FF7000;
  cursor: pointer;
}
.ni-float-tools {
  position: fixed;
  top: 50%;
  right: 16px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  transform: translateY(-50%);
}
.ni-float-item {
  position: relative;
  display: block;
  width: 78px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}
.ni-float-item img {
  display: block;
  width: 78px;
  height: auto;
  user-select: none;
}
.ni-float-action-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  padding: 10px 0 14px;
  background: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
  border-radius: 0 0 30px 30px;
}
.ni-float-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 56px;
  min-height: 72px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.ni-float-action img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  user-select: none;
}
.ni-float-action span {
  display: block;
  margin-top: 6px;
  color: #222222;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
}
.ni-float-divider {
  display: block;
  width: 44px;
  height: 1px;
  margin: 4px 0 8px;
  background: #ECECEC;
  font-style: normal;
}
.ni-float-wecom,
.ni-float-demand {
  cursor: pointer;
}
.ni-wecom-pop {
  position: absolute;
  top: 50%;
  right: 88px;
  display: none;
  width: 140px;
  padding: 12px 10px 10px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}
.ni-wecom-pop:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
.ni-wecom-pop p {
  margin: 8px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
.ni-wecom-qr {
  width: 108px;
  height: 108px;
  margin: 0 auto;
}
.ni-wecom-qr canvas,
.ni-wecom-qr table,
.ni-wecom-qr img {
  display: block;
  width: 108px !important;
  height: 108px !important;
}
.ni-wecom-qr img {
  object-fit: cover;
}
.ni-float-wecom:hover .ni-wecom-pop {
  display: block;
}
@keyframes niEntryFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
