:root {
  --qjl-primary: #09ba07;
  --qjl-primary-dark: #079b13;
  --qjl-text: #25262d;
  --qjl-muted: rgba(0, 0, 0, .6);
  --qjl-light: #f7fbf7;
  --qjl-line: #eeeeee;
  --qjl-header-height: 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--qjl-header-height);
  color: var(--qjl-text);
  background: #f4f5f7;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.qjl-page-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  min-width: 800px;
  height: var(--qjl-header-height);
  background: #fff;
}

.qjl-header-content {
  width: 1280px;
  height: var(--qjl-header-height);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.qjl-brand {
  min-width: 0;
  margin-right: 24px;
  display: inline-flex;
  align-items: center;
  flex: 1 1 0;
}

.qjl-logo-svg {
  width: 36px;
  height: 36px;
  margin-right: 4px;
  color: #95c33c;
  fill: currentColor;
  flex: 0 0 auto;
}

.qjl-brand-name {
  font-size: 20px;
  line-height: 28px;
  white-space: nowrap;
}

.qjl-nav {
  display: flex;
  align-items: center;
  color: var(--qjl-muted);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.qjl-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--qjl-header-height);
  margin-left: 24px;
}

.qjl-nav a:hover,
.qjl-nav a.active {
  color: var(--qjl-primary);
}

.qjl-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--qjl-primary);
  transform: translateX(-50%);
}

.qjl-experience {
  position: relative;
  margin-left: 24px;
  flex: 0 0 auto;
}

.qjl-experience-button {
  min-width: 104px;
  height: 32px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--qjl-primary);
  font-size: 14px;
  line-height: 32px;
  cursor: default;
}

.qjl-experience-popover {
  display: none;
  position: absolute;
  right: 0;
  bottom: -4px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(0, 0, 0, .8);
  background: #fff;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, .2);
  transform: translateY(100%);
}

.qjl-experience:hover .qjl-experience-popover {
  display: block;
}

.qjl-experience-popover img {
  width: 109px;
  height: 109px;
  display: block;
}

.qjl-experience-text {
  margin-top: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, .15);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  white-space: nowrap;
}

.static-main {
  min-width: 800px;
}

.fit-content {
  min-width: fit-content;
}

.bg-white {
  background: #fff;
}

.d-flex,
.flexMainX,
.flexMainXcenter,
.flexMainXYcenter,
.flexMainY,
.flexMainYcenter {
  display: flex;
}

.flexMainXcenter,
.flexMainYcenter {
  align-items: center;
  justify-content: center;
}

.flexMainXYcenter {
  align-items: center;
}

.flexMainY,
.flexMainYcenter {
  flex-direction: column;
}

.flex1 {
  flex: 1;
}

.flexShrink {
  flex-shrink: 0;
}

.point {
  cursor: pointer;
}

.text-white {
  color: #fff;
}

.text-primary {
  color: var(--qjl-primary);
}

.qjl-plus-green {
  color: var(--qjl-primary);
}

.col-warn {
  color: #f86d10;
}

.col-black {
  color: #25262d;
}

.col-grey {
  color: rgba(0, 0, 0, .6);
}

.col-light {
  color: rgba(0, 0, 0, .45);
}

.text-center {
  text-align: center;
}

.text-xs {
  font-size: 12px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 22px;
}

.big-size {
  font-size: 20px;
}

.text-bold,
.font-weight-bold {
  font-weight: bold;
}

.text-bold500 {
  font-weight: 500;
}

.font-din-bold {
  font-family: DIN Alternate, DINCond-Bold, DIN, Arial, sans-serif;
}

.font-din {
  font-family: DIN Alternate, DINCond-Bold, DIN, Arial, sans-serif;
}

.mt-xs {
  margin-top: 4px;
}

.mt-sm {
  margin-top: 8px;
}

.mt-md {
  margin-top: 16px;
}

.mt-lg {
  margin-top: 24px;
}

.mt-xl {
  margin-top: 32px;
}

.mt-xxl {
  margin-top: 48px;
}

.pt-xs {
  padding-top: 4px;
}

.pt-small {
  padding-top: 12px;
}

.pb-xs {
  padding-bottom: 4px;
}

.pb-lg {
  padding-bottom: 24px;
}

.px-lg {
  padding-right: 24px;
  padding-left: 24px;
}

.px-xxl {
  padding-right: 48px;
  padding-left: 48px;
}

.static-hero {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8fff7 0%, #fff 100%);
}

.static-hero-inner,
.static-section {
  width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.static-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--qjl-primary-dark);
  background: #e9faea;
  font-size: 14px;
  font-weight: 800;
}

.static-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--qjl-primary);
}

.static-title {
  margin: 0;
  max-width: 780px;
  color: #3f474f;
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: 0;
}

.static-desc {
  max-width: 780px;
  margin: 16px 0 0;
  color: #5f6973;
  font-size: 18px;
  line-height: 1.8;
}

.image-stack {
  padding: 44px 40px 72px;
}

.image-card {
  margin-top: 28px;
  border: 1px solid var(--qjl-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(28, 45, 35, .06);
}

.image-card:first-child {
  margin-top: 0;
}

.image-card-title {
  margin: 0;
  padding: 20px 24px 0;
  font-size: 24px;
  line-height: 1.35;
  color: #3f474f;
}

.image-card img,
.wide-image {
  width: 100%;
  display: block;
}

.product-content {
  width: 1280px;
  margin: 0 auto;
  padding: 0 100px 80px;
  text-align: center;
}

.product-title {
  margin: 64px 0 0;
  font-size: 40px;
  font-weight: bold;
}

.product-img {
  width: 100%;
  height: auto;
  margin-top: 24px;
  display: block;
  border-radius: 0;
}

.live-show-main {
  min-width: fit-content;
}

.live-show-hero {
  min-width: fit-content;
  background-color: #c9e794;
  background-image: url("https://img0.shangshi360.com/ss/app/image/plus-pc/direct04.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.live-show-content {
  width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

.live-show-title {
  margin: 0;
  line-height: 0;
}

.live-show-title img {
  width: 100%;
  display: block;
}

.live-content-row {
  margin: auto;
  padding: 0 100px;
}

.live-text {
  font-size: 40px;
}

.live-feature {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 42px;
  align-items: center;
  margin-top: 36px;
}

.live-feature.reverse {
  grid-template-columns: 1fr 52%;
}

.live-feature-text {
  color: #4c555f;
  font-size: 20px;
  line-height: 1.8;
}

.live-feature-text strong {
  display: block;
  margin-bottom: 12px;
  color: var(--qjl-primary);
  font-size: 32px;
  line-height: 1.2;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.business-card {
  position: relative;
  min-height: 342px;
  padding: 26px 20px;
  border: 1px solid var(--qjl-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(28, 45, 35, .06);
}

.business-card > img {
  height: 92px;
  margin-bottom: 18px;
}

.business-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
}

.business-points {
  min-height: 78px;
  margin: 0;
  padding: 0;
  color: #6b6f76;
  font-size: 15px;
  line-height: 1.7;
  list-style: none;
}

.business-points li {
  position: relative;
  padding-left: 13px;
  text-align: left;
}

.business-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .4);
}

.business-consult-button {
  position: relative;
  margin-top: 18px;
  min-width: 112px;
  height: 36px;
  padding: 0 24px;
  border: 1px solid var(--qjl-primary);
  border-radius: 18px;
  color: #fff;
  background: var(--qjl-primary);
  font-size: 16px;
  line-height: 34px;
  cursor: default;
}

.business-consult-button:hover,
.business-consult-button:focus {
  color: var(--qjl-primary);
  background: #fff;
  outline: none;
}

.business-code-popover {
  display: none;
  position: absolute;
  top: -72px;
  right: -238px;
  z-index: 3;
  width: 238px;
  height: 245px;
  pointer-events: none;
}

.business-consult-button.left-popover .business-code-popover {
  right: auto;
  left: -238px;
}

.business-consult-button:hover .business-code-popover,
.business-consult-button:focus .business-code-popover {
  display: block;
}

.business-code-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.business-code {
  position: relative;
  top: 20px;
  left: 54px;
  width: 144px;
  height: 144px;
}

.business-consult-button.left-popover .business-code {
  left: 40px;
}

.business-join-section {
  margin-top: 80px;
  text-align: center;
}

.business-join-section h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}

.business-join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.business-join-grid article {
  padding: 0 32px;
}

.business-join-grid img {
  width: 156px;
  height: 156px;
}

.business-join-grid h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.35;
}

.business-join-grid p {
  max-width: 360px;
  margin: 12px auto 0;
  color: #6b6f76;
  font-size: 18px;
  line-height: 1.7;
}

.business-header-img {
  width: 100%;
  min-width: 1280px;
  height: 363px;
  display: block;
  background: #f4f5f7 url("https://img0.shangshi360.com/ss/app/image/plus-pc/bg07.jpg") center / cover no-repeat;
  object-fit: cover;
  object-position: center;
}

.business-main {
  background: #f4f5f7;
}

.business-content {
  position: relative;
  z-index: 2;
  width: 1280px;
  margin: -196px auto 0;
  padding: 0 40px 120px;
}

.business-slogan-title {
  margin: 0;
  line-height: 0;
}

.business-slogan-img {
  width: 504px;
}

.business-project-wrap {
  gap: 24px;
  margin-top: 75px;
}

.business-project-item {
  height: 311px;
  padding-bottom: 24px;
  border-radius: 16px;
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(7, 186, 80, .02) 0%, rgba(7, 186, 80, .02) 100%), rgba(255, 255, 255, .74);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.business-project-item:hover {
  z-index: 2;
  background: linear-gradient(180deg, rgba(235, 245, 229, .90) 7.25%, rgba(223, 241, 207, .90) 55.11%, rgba(186, 229, 141, .90) 107.62%, rgba(161, 220, 95, .90) 171.21%, rgba(167, 202, 96, .90) 171.21%);
  box-shadow: 1px 1px 20px 0 rgba(255, 255, 255, .50) inset;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.business-project-img {
  max-width: 100%;
  height: 134px;
  margin: -26px auto -6px;
}

.business-project-text {
  padding: 8px 38px 0;
  align-items: flex-start;
}

.business-project-dot {
  width: 6px;
  height: 6px;
  margin: 8px 8px 0 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .4);
}

.business-project-btn {
  position: relative;
  min-width: 96px;
  height: 40px;
  padding: 0 24px;
  border: 1px solid var(--qjl-primary);
  border-radius: 20px;
  color: #fff;
  background: var(--qjl-primary);
  font-size: 16px;
  line-height: 38px;
  cursor: default;
}

.business-project-btn:hover,
.business-project-btn:active {
  color: var(--qjl-primary);
  background-color: #fff;
  border-color: #fff;
}

.business-project-btn:hover .business-project-code-wrap,
.business-project-btn:active .business-project-code-wrap {
  display: block;
}

.business-project-code-wrap {
  display: none;
  width: 238px;
  height: 245px;
  position: absolute;
  top: -72px;
  right: 64px;
  transform: translateX(100%);
}

.business-project-code-wrap.left {
  left: -30px;
  transform: translateX(-100%);
}

.business-project-code-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.business-project-code {
  position: relative;
  top: 20px;
  left: 54px;
  width: 144px;
  height: 144px;
}

.business-project-code-wrap.left .business-project-code {
  left: 40px;
}

.business-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.business-title {
  margin-top: 80px;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.business-show-img {
  width: 156px;
  height: 156px;
}

.about-slogan-card {
  min-height: 125px;
  margin-top: 0;
  margin-bottom: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-slogan-card img {
  max-width: 100%;
  display: block;
}

.about-header-img {
  width: 100%;
  min-width: 1280px;
  height: 363px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-content {
  position: relative;
  z-index: 2;
  width: 1280px;
  margin: -106px auto 0;
  padding: 0 40px 120px;
}

.about-slogan-wrap {
  height: 125px;
  margin: 0;
  border-radius: 16px;
  color: var(--qjl-primary);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .12);
  font-size: 36px;
  font-weight: bold;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-slogan-wrap img {
  max-width: 100%;
  display: block;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.about-intro-title {
  font-size: 48px;
  font-weight: bold;
}

.about-intro-img {
  width: 402px;
  height: 622px;
  margin-left: 54px;
  display: block;
  object-fit: cover;
}

.about-data-wrap {
  position: relative;
  height: 126px;
  padding: 0 168px;
  margin-top: 75px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .60) 0%, #fff 100%);
  box-sizing: border-box;
}

.about-data-label {
  width: 100px;
  position: absolute;
  top: -16px;
  left: 18px;
}

.about-data-item {
  position: relative;
  text-align: center;
}

.about-data-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 45px;
  background: rgba(0, 0, 0, .09);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.about-data-num {
  margin-top: 4px;
  font-size: 32px;
  font-weight: bold;
}

.about-title {
  margin-top: 120px;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.about-history-wrap {
  position: relative;
  height: 551px;
  margin-top: 24px;
  overflow: hidden;
}

.about-history-bg {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.about-history-item {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.about-history-date {
  color: var(--qjl-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}

.about-history-text {
  margin-top: 4px;
  white-space: nowrap;
}

.about-history-num {
  font-size: 26px;
  font-weight: bold;
}

.history-item-0 {
  left: 86px;
  top: 338px;
}

.history-item-1 {
  left: 142px;
  top: 58px;
}

.history-item-2 {
  left: 382px;
  top: 49px;
}

.history-item-3 {
  left: 484px;
  top: 298px;
}

.history-item-4 {
  left: 746px;
  top: 200px;
}

.history-item-5 {
  right: 42px;
  top: 252px;
}

.about-honor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  margin-top: 32px;
  align-items: start;
}

.about-honor-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-honor-card {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, .4);
  border-radius: 8px;
  box-sizing: border-box;
}

.about-honor-year {
  margin-bottom: 12px;
  color: rgba(65, 65, 65, .8);
  font-size: 40px;
  line-height: 48px;
}

.about-honor-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-bottom: 12px;
  font-size: 20px;
  line-height: 32px;
}

.about-honor-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 16px;
  bottom: -16px;
  border: .5px dashed #58a700;
}

.about-honor-item:last-child {
  padding-bottom: 0;
}

.about-honor-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin: 8px 16px 0 0;
  border: 4px solid #58a700;
  border-radius: 50%;
  background: #f4f5f7;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.about-honor-point {
  color: #02985b;
  font-weight: bold;
}

.about-contact {
  margin-top: 36px;
  padding: 28px 32px;
  border: 1px solid var(--qjl-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.about-contact h2 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.35;
}

.about-contact p {
  margin: 8px 0;
  color: #5f6973;
  font-size: 16px;
}

.about-code {
  width: 128px;
  height: 128px;
  margin-top: 12px;
}

.qjl-footer {
  padding: 30px 40px;
  border-top: 1px solid var(--qjl-line);
  color: #7a828a;
  background: #fff;
  font-size: 14px;
  text-align: center;
}

.footer-slogan-wrap {
  min-width: fit-content;
  height: 175px;
  background-color: #95c33c;
  background-image: url("https://img0.shangshi360.com/ss/app/image/plus-pc/bg02.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer-slogan-content {
  width: 1280px;
  height: 100%;
  margin: 0 auto;
}

.footer-slogan-img {
  width: auto;
  height: 72px;
  display: block;
}

.footer-experience-wrap {
  position: relative;
}

.footer-experience-wrap:hover .footer-experience-btn {
  opacity: .8;
}

.footer-experience-wrap:hover .footer-experience-code,
.footer-experience-wrap:hover .footer-business-code {
  display: block;
}

.footer-experience-wrap.home::before {
  content: "免费体验";
  position: absolute;
  right: 0;
  top: 2px;
  z-index: 2;
  height: 22px;
  padding: 0 8px;
  border-radius: 10px 10px 10px 0;
  color: #fff;
  background: linear-gradient(135deg, #ff785a 0%, #fa5151 100%);
  font-size: 12px;
  line-height: 22px;
  transform: translate(8px, -50%);
}

.footer-experience-btn {
  height: 40px;
  padding: 0 40px;
  border: 1px solid transparent;
  border-radius: 20px;
  color: var(--qjl-primary);
  background: #fff;
  font-size: 16px;
  line-height: 38px;
  cursor: default;
}

.footer-experience-code {
  position: absolute;
  top: -34px;
  left: 24px;
  z-index: 2;
  width: 366px;
  height: 280px;
  display: none;
  transform: translate(-100%, 0);
}

.footer-business-code {
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 2;
  width: 260px;
  height: 260px;
  display: none;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, .2);
  transform: translateX(-50%);
}

.footer-mes-wrap {
  min-width: fit-content;
  background: #030719;
}

.footer-mes-content {
  width: 1280px;
  height: 306px;
  padding: 40px 40px 24px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-mes-icon {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: 12px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 18px;
}

.footer-mes-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-mes-icon:hover {
  background: rgba(255, 255, 255, .2);
}

.footer-mes-icon:hover .footer-code-wrap {
  display: block;
}

.footer-code-wrap {
  position: absolute;
  top: -8px;
  left: 50%;
  display: none;
  padding: 8px 10px;
  border-radius: 8px;
  color: #000;
  background: #fff;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, .2);
  transform: translate(-50%, -100%);
}

.footer-code-img {
  width: 109px;
  height: 109px;
  display: block;
}

.footer-code-text {
  padding-top: 4px;
  margin-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, .15);
  text-align: center;
}

.footer-mes-product {
  margin-top: 2px;
  color: rgba(255, 255, 255, .45);
}

.footer-mes-contact {
  color: rgba(255, 255, 255, .8);
}

.footer-mes-text {
  color: rgba(255, 255, 255, .6);
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  margin: 2px 8px 0 0;
  fill: currentColor;
}

.hover-text:hover {
  color: var(--qjl-primary);
}

.btn-experience {
  position: relative;
}

.btn-experience:hover .experience-mes-wrap {
  display: block;
}

.experience-mes-wrap {
  position: absolute;
  right: 0;
  bottom: -4px;
  display: none;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(0, 0, 0, .8);
  background: #fff;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, .2);
  transform: translateY(100%);
}

.experience-mes-code {
  width: 109px;
  height: 109px;
  display: block;
}

.experience-mes-text {
  padding-top: 4px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.btn-float-wrap {
  position: fixed;
  right: 24px;
  bottom: 36px;
  z-index: 5;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 29px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-float-item {
  width: 46px;
  height: 76px;
  border-radius: 24px;
  box-sizing: border-box;
}

.btn-float-item:hover {
  color: var(--qjl-primary);
  background: rgba(0, 0, 0, .06);
}

.btn-float-item:hover .col-light {
  color: var(--qjl-primary);
}

.btn-float-item.account {
  height: 90px;
}

.btn-float-item .experience-mes-wrap {
  right: auto;
  bottom: 0;
  left: -16px;
  transform: translateX(-100%);
}

.icon-float {
  width: 1em;
  height: 1em;
  font-size: 28px;
  fill: currentColor;
}

.btn-float-line {
  width: 24px;
  height: 1px;
  margin: 4px 0;
  background: rgba(0, 0, 0, .09);
}

.static-cta {
  text-align: center;
  padding: 40px 0;
  background: #fff;
}

.static-cta a {
  display: inline-block;
  color: var(--qjl-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--qjl-primary);
  border-radius: 8px;
  padding: 12px 32px;
  margin: 0 8px;
  transition: background .2s, color .2s;
}

.static-cta a:hover {
  background: var(--qjl-primary);
  color: #fff;
}

@media (max-width: 1320px) {
  .qjl-header-content,
  .static-hero-inner,
  .static-section {
    width: 100%;
  }
}

@media (max-width: 980px) {
  :root {
    --qjl-header-height: 58px;
  }

  .qjl-page-header,
  .qjl-header-content {
    height: var(--qjl-header-height);
  }

  .qjl-header-content {
    padding: 0 20px;
  }

  .qjl-brand {
    min-width: 112px;
    margin-right: 16px;
  }

  .qjl-logo-svg {
    width: 30px;
    height: 30px;
  }

  .qjl-brand-name {
    font-size: 17px;
  }

  .qjl-nav {
    font-size: 13px;
  }

  .qjl-nav a {
    margin-left: 12px;
  }

  .qjl-experience {
    margin-left: 12px;
  }

  .qjl-experience-button {
    min-width: 88px;
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 30px;
  }

  .static-title {
    font-size: 32px;
  }

  .live-feature,
  .live-feature.reverse,
  .business-grid {
    grid-template-columns: 1fr;
  }
}
