@charset "UTF-8";
@font-face {
  font-family: 'Metropolis-Black';
  src: url("../fonts/Metropolis-Black.otf") format("opentype"); }
@font-face {
  font-family: 'Metropolis-Regular';
  src: url("../fonts/Metropolis-Regular.otf") format("opentype"); }
@font-face {
  font-family: 'Metropolis-Medium';
  src: url("../fonts/Metropolis-Medium.otf") format("opentype"); }
@font-face {
  font-family: 'Metropolis-ExtraBold';
  src: url("../fonts/Metropolis-ExtraBold.otf") format("opentype"); }
@font-face {
  font-family: 'Metropolis-Bold';
  src: url("../fonts/Metropolis-Bold.otf") format("opentype"); }
/* 定义中等字体 */
@font-face {
  font-family: 'Futura-Medium';
  src: url("../fonts/Futura.ttc");
  font-weight: normal;
  font-style: normal; }
/* 定义中等斜体字体 */
@font-face {
  font-family: 'Futura-Italic';
  src: url("fonts/Futura.ttc");
  font-weight: normal;
  font-style: italic; }
/* 定义粗体字体 */
@font-face {
  font-family: 'Futura-Bold';
  src: url("fonts/Futura.ttc");
  font-weight: bold;
  font-style: normal; }
/* 定义紧缩中等体字体 */
/* 这里假设紧缩中等体对应特定的 font-stretch 值，实际可能需要调整 */
@font-face {
  font-family: 'Futura-Condensed';
  src: url("fonts/Futura.ttc");
  font-weight: normal;
  font-style: normal;
  font-stretch: condensed; }
/* 定义窄特粗体字体 */
/* 假设窄特粗体对应特定的 font-stretch 和 font-weight 值，实际可能需调整 */
@font-face {
  font-family: 'Futura-NarrowExtraBold';
  src: url("fonts/Futura.ttc");
  font-weight: 900;
  /* 通常 900 表示特粗体 */
  font-style: normal;
  font-stretch: ultra-condensed; }
textarea {
  resize: none; }

.flex {
  display: flex; }

.align-start {
  align-items: flex-start; }

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

.justify-between {
  justify-content: space-between; }

.justify-center {
  justify-content: center; }

.flex-wrap {
  flex-wrap: wrap; }

.flex-column {
  flex-direction: column; }

.flex-1 {
  flex: 1; }

.flex-2 {
  flex: 2; }

.flex-3 {
  flex: 3; }

.flex-4 {
  flex: 4; }

.flex-5 {
  flex: 5; }

.flex-6 {
  flex: 6; }

body {
  width: 19.2rem;
  overflow-x: hidden;
  opacity: 0;
  margin: 0 !important;
  -webkit-tap-highlight-color: transparent; }

body::-webkit-scrollbar {
  display: none; }

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

.mj-index {
  position: relative; }
  .mj-index .page-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  .mj-index .page-container {
    position: relative;
    z-index: 10; }

.mj-index-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%; }
  .mj-index-header .pc-menu-area {
    height: 1.16rem;
    max-height: 116px;
    position: relative;
    overflow: hidden; }
    .mj-index-header .pc-menu-area .bg {
      width: 100%;
      height: auto;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0; }
    .mj-index-header .pc-menu-area .menu-container {
      width: calc(100% - 1.6rem);
      position: relative;
      z-index: 10; }
      .mj-index-header .pc-menu-area .menu-container .logo-area img {
        width: 2.49rem;
        height: .68rem;
        display: block;
        object-fit: contain;
        max-width: 249px;
        max-height: 68px; }
      .mj-index-header .pc-menu-area .menu-container .logo-area p {
        font-size: .34rem;
        color: white;
        font-family: Futura-Bold;
        margin-left: .2rem; }
      .mj-index-header .pc-menu-area .menu-container .menu-list .menu-item {
        margin-right: .55rem;
        position: relative; }
        .mj-index-header .pc-menu-area .menu-container .menu-list .menu-item:last-child {
          margin-right: .3rem; }
        .mj-index-header .pc-menu-area .menu-container .menu-list .menu-item .menu-item-title {
          display: flex;
          align-items: center;
          font-size: .2rem;
          color: rgba(255, 255, 255, 0.6);
          font-family: Metropolis-Bold;
          cursor: pointer;
          padding: .2rem 0; }
        .mj-index-header .pc-menu-area .menu-container .menu-list .menu-item:hover .menu-item-title, .mj-index-header .pc-menu-area .menu-container .menu-list .menu-item.menu-item-on .menu-item-title {
          color: white; }

.footer {
  background-color: #322B29;
  padding: .69rem 0 .95rem;
  position: relative; }
  .footer .footer-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    bottom: 0;
    right: 0; }
  .footer .left-area {
    position: relative;
    z-index: 10; }
    .footer .left-area .footer-logo {
      display: flex;
      align-items: center;
      cursor: pointer;
      margin-bottom: .4rem; }
      .footer .left-area .footer-logo img {
        width: 239px;
        height: 68px;
        margin-right: 20px;
        display: block;
        object-fit: contain; }
      .footer .left-area .footer-logo p {
        color: white;
        font-size: .36rem;
        font-family: Metropolis-Bold; }
    .footer .left-area p {
      font-size: .18rem;
      line-height: .25rem;
      color: white;
      font-family: Metropolis-Medium;
      margin-bottom: .21rem;
      opacity: 0.8; }
      .footer .left-area p:last-child {
        margin-bottom: 0; }
  .footer .download-btn {
    display: block;
    position: relative;
    z-index: 10; }
    .footer .download-btn img {
      width: 3.36rem;
      height: 1rem;
      display: block;
      object-fit: contain; }

.index-banner {
  padding: 1rem 1.6rem 0 1.6rem;
  background-color: #fff4fa;
  position: relative;
  display: flex;
  align-items: center;
  height: 11rem; }
  .index-banner .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
  .index-banner .banner-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
    .index-banner .banner-container .left-area {
      width: 9.2rem;
      position: relative;
      z-index: 100; }
      .index-banner .banner-container .left-area .title p {
        font-size: .84rem;
        color: white;
        font-family: Metropolis-Bold;
        line-height: 1rem; }
      .index-banner .banner-container .left-area .des {
        margin-top: .3rem; }
        .index-banner .banner-container .left-area .des p {
          font-family: Metropolis-Medium;
          font-size: .26rem;
          line-height: .34rem;
          color: white; }
      .index-banner .banner-container .left-area .btn {
        display: block;
        margin-top: .22rem; }
        .index-banner .banner-container .left-area .btn img {
          width: 4.03rem;
          display: block; }
    .index-banner .banner-container .right-area {
      width: 7.248rem;
      height: 8.78rem;
      flex-shrink: 0;
      position: relative; }
      .index-banner .banner-container .right-area .index-icon {
        width: 9.6rem;
        height: auto;
        display: block;
        object-fit: contain;
        position: absolute;
        bottom: -15%;
        left: 50%;
        transform: translate(-50%); }
      .index-banner .banner-container .right-area .banner-animation {
        width: 8rem;
        height: 8rem;
        display: block;
        object-fit: contain;
        position: absolute;
        right: -.6rem;
        bottom: .23rem;
        z-index: 10; }
      .index-banner .banner-container .right-area .banner-video1,
      .index-banner .banner-container .right-area .banner-video2 {
        width: calc(5.96rem);
        height: calc(8.78rem);
        padding: .15rem .15rem 0;
        background-color: white;
        border-radius: .5rem .5rem 0 0;
        box-shadow: 0 -0.03rem 0.1rem rgba(107, 54, 98, 0.27);
        position: absolute;
        right: 0;
        bottom: 0; }
        .index-banner .banner-container .right-area .banner-video1 .video-area,
        .index-banner .banner-container .right-area .banner-video2 .video-area {
          width: 100%;
          height: 100%;
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: .5rem .5rem 0 0; }
          .index-banner .banner-container .right-area .banner-video1 .video-area video,
          .index-banner .banner-container .right-area .banner-video2 .video-area video {
            width: calc(100% + .48rem);
            height: calc(100% + .48rem);
            display: block;
            border-radius: .32rem; }

.index-advantage {
  padding: 0; }
  .index-advantage .advantage-item {
    width: 100%;
    margin-top: 1.63rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative; }
    .index-advantage .advantage-item:nth-child(even) .item-img {
      order: 2; }
    .index-advantage .advantage-item:nth-child(even) .item-content {
      order: 1;
      margin-left: .57rem; }
      .index-advantage .advantage-item:nth-child(even) .item-content .item-title, .index-advantage .advantage-item:nth-child(even) .item-content .item-des {
        width: calc(100% + .57rem); }
      .index-advantage .advantage-item:nth-child(even) .item-content .item-title {
        white-space: nowrap; }
    .index-advantage .advantage-item:nth-child(1) .item-bg {
      position: absolute;
      width: 5.36rem;
      height: 3.19rem;
      top: 0.45rem;
      right: -0.6rem;
      bottom: unset;
      left: unset;
      z-index: 0; }
    .index-advantage .advantage-item:nth-child(2) .item-bg {
      position: absolute;
      width: 3.95rem;
      height: 3.88rem;
      top: -0.21rem;
      right: unset;
      bottom: unset;
      left: 0;
      z-index: 0; }
    .index-advantage .advantage-item:nth-child(2) .item-content {
      margin-top: 2.7rem; }
    .index-advantage .advantage-item:nth-child(3) .item-bg {
      position: absolute;
      width: 4.35rem;
      height: 6.58rem;
      top: -0.35rem;
      right: -0.3rem;
      bottom: unset;
      left: unset;
      z-index: 0; }
    .index-advantage .advantage-item:nth-child(4) .item-bg {
      position: absolute;
      width: 4.28rem;
      height: 3.77rem;
      top: -0.3rem;
      right: unset;
      bottom: unset;
      left: 0;
      z-index: 0; }
    .index-advantage .advantage-item:nth-child(4) .item-content {
      margin-top: 2.4rem; }
    .index-advantage .advantage-item .item-img {
      width: 8.3rem;
      height: 8.55rem;
      display: block;
      object-fit: contain;
      flex-shrink: 0;
      position: relative;
      z-index: 10; }
    .index-advantage .advantage-item .item-content {
      width: calc(100% - 8.3rem);
      margin-top: 2.2rem;
      position: relative;
      z-index: 10; }
    .index-advantage .advantage-item .item-title {
      font-family: Metropolis-Bold;
      font-size: .64rem;
      line-height: .85rem;
      color: #FE5588;
      margin-bottom: .26rem; }
    .index-advantage .advantage-item .item-des {
      font-family: Metropolis-Medium;
      font-size: .36rem;
      line-height: .47rem;
      color: #FFF6D9; }

.index-comment {
  padding: .88rem 0; }
  .index-comment .comment-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap; }
  .index-comment .comment-item {
    position: relative;
    width: calc(50% - .1rem);
    height: 3.63rem;
    margin-right: .2rem;
    background: #FFFFFF;
    border-radius: .36rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; }
    .index-comment .comment-item .item-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0; }
    .index-comment .comment-item:nth-child(1), .index-comment .comment-item:nth-child(3n) {
      margin-right: 0; }
    .index-comment .comment-item:nth-child(1) {
      width: 100%;
      height: 4.73rem;
      margin-bottom: .25rem; }
      .index-comment .comment-item:nth-child(1) .comment-item-content {
        width: 9.2rem;
        padding: .5rem; }
      .index-comment .comment-item:nth-child(1) .item-user {
        padding: .5rem; }
        .index-comment .comment-item:nth-child(1) .item-user .comment-item-name {
          font-size: .36rem;
          color: #666;
          line-height: .43rem; }
    .index-comment .comment-item:nth-child(2) {
      background-color: #FF81BD; }
    .index-comment .comment-item:nth-child(3) {
      background-color: #E1A4FF; }
    .index-comment .comment-item .comment-item-img {
      width: .84rem;
      height: .84rem;
      display: block;
      border-radius: 50%;
      flex-shrink: 0;
      object-fit: cover;
      margin-right: .12rem; }
    .index-comment .comment-item .comment-item-content {
      padding: .4rem .5rem;
      flex: 1;
      position: relative;
      z-index: 10; }
      .index-comment .comment-item .comment-item-content p {
        font-size: .36rem;
        line-height: .47rem;
        color: #333333;
        font-family: Metropolis-Medium; }
    .index-comment .comment-item .item-user {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      padding: .2rem .28rem .4rem; }
    .index-comment .comment-item .comment-item-name {
      color: #000;
      font-size: .3rem;
      line-height: .36rem;
      font-family: Metropolis-Bold;
      flex-shrink: 0; }

.index-intro {
  padding: 1.22rem 0 2.38rem; }
  .index-intro .intro-list {
    align-items: stretch; }
  .index-intro .intro-item {
    text-align: center;
    padding: .13rem .26rem 0;
    width: calc(25% - .52rem - .45rem);
    margin-right: .6rem; }
    .index-intro .intro-item:nth-child(4n) {
      margin-right: 0; }
    .index-intro .intro-item .img-area {
      padding-bottom: .1rem;
      position: relative; }
      .index-intro .intro-item .img-area p {
        font-size: 1rem;
        line-height: 1.33rem;
        font-family: Metropolis-Bold;
        color: #FE5588;
        margin: 0 auto; }
      .index-intro .intro-item .img-area img {
        position: absolute;
        width: 100%;
        height: auto;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .index-intro .intro-item .item-title {
      font-family: Metropolis-Bold;
      font-size: .26rem;
      line-height: .37rem;
      color: #FFF6D9;
      margin: 0 0 .16rem; }
    .index-intro .intro-item .item-des {
      font-size: .22rem;
      line-height: .3rem;
      color: #9B9593;
      font-family: Metropolis-Medium; }

.container-title {
  font-family: Metropolis-Bold;
  font-size: .56rem;
  line-height: .75rem;
  color: #FE5588;
  text-align: center;
  margin-bottom: .7rem; }

.mobile-header {
  display: none; }

.mj-index-header .pc-menu-area {
  display: flex; }

.footer-logo-pc {
  display: block !important; }

.footer-logo-mobile {
  display: none !important; }

.mobile-menu-dialog {
  display: none; }

.bg-mobile {
  display: none !important; }

.bg-pc {
  display: block !important; }

.item-bg-mobile, .footer-bg-mobile {
  display: none; }

.item-bg, .footer-bg {
  display: block; }

.page-bg-pc {
  display: block; }

.page-bg-mb {
  display: none; }

@media screen and (max-width: 750px) {
  .page-bg-pc {
    display: none; }

  .page-bg-mb {
    display: block; }

  body {
    width: 7.5rem; }

  .mj-index-header .pc-menu-area {
    display: none; }

  .mobile-header {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    height: 76px; }
    .mobile-header .mobile-header-top {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 12px 0 20px;
      position: relative;
      z-index: 10000;
      overflow: hidden; }
      .mobile-header .mobile-header-top::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        background-color: rgba(234, 224, 229, 0.3);
        bottom: 0;
        left: 0; }
      .mobile-header .mobile-header-top .bg {
        width: 100%;
        height: auto;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0; }
      .mobile-header .mobile-header-top .logo-area {
        position: relative;
        z-index: 1; }
        .mobile-header .mobile-header-top .logo-area img {
          width: 132px;
          height: 36px;
          display: block;
          object-fit: contain; }
        .mobile-header .mobile-header-top .logo-area p {
          font-size: 20px;
          color: white;
          font-family: Metropolis-Bold;
          margin-left: 8px; }
      .mobile-header .mobile-header-top .menu-btn {
        cursor: pointer;
        position: relative;
        z-index: 1; }
        .mobile-header .mobile-header-top .menu-btn img {
          width: 40px;
          height: 40px;
          display: block;
          filter: contrast(50%) grayscale(100%) brightness(200%); }
        .mobile-header .mobile-header-top .menu-btn .iconfont {
          font-size: 24px;
          color: #333333;
          font-family: Metropolis-Bold; }

  .mobile-menu-dialog {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none; }
    .mobile-menu-dialog::after {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      left: 0;
      top: 0; }
    .mobile-menu-dialog .menu-list {
      position: relative;
      z-index: 100;
      background-color: rgba(0, 0, 0, 0.88);
      padding: 96px 20px 20px; }
      .mobile-menu-dialog .menu-list .menu-item {
        height: 48px;
        padding: 0 6px;
        display: flex;
        align-items: center;
        cursor: pointer;
        border-bottom: 1px solid rgba(234, 224, 229, 0.1); }
        .mobile-menu-dialog .menu-list .menu-item:last-child {
          border: none; }
        .mobile-menu-dialog .menu-list .menu-item .menu-item-title {
          display: flex;
          align-items: center;
          font-size: 16px;
          font-family: Metropolis-ExtraBold;
          color: rgba(255, 255, 255, 0.6); }
      .mobile-menu-dialog .menu-list .menu-item-on .menu-item-title {
        color: white; }

  .mobile-menu-dialog-on {
    display: block; }

  .container {
    width: 100%; }

  .index-banner {
    padding: 0;
    height: 14.16rem; }
    .index-banner .bg {
      border-radius: 0; }
    .index-banner .banner-container {
      flex-direction: column; }
      .index-banner .banner-container .left-area {
        padding: 0 .48rem;
        width: calc(100% - .96rem);
        text-align: center; }
        .index-banner .banner-container .left-area .title p {
          font-size: .56rem;
          line-height: .74rem; }
        .index-banner .banner-container .left-area .des {
          margin-top: 26px; }
          .index-banner .banner-container .left-area .des p {
            font-size: 16px;
            line-height: 21px; }
        .index-banner .banner-container .left-area .btn {
          margin: 24px auto 0;
          display: block; }
          .index-banner .banner-container .left-area .btn img {
            width: 202px;
            height: 60px;
            margin: 0 auto; }
      .index-banner .banner-container .right-area {
        width: 100%;
        height: 7.12rem; }
        .index-banner .banner-container .right-area .banner-video1 {
          width: calc(100% - 2.1rem);
          height: 100%;
          left: 50%;
          bottom: 0;
          transform: translate(-50%); }
          .index-banner .banner-container .right-area .banner-video1 video {
            height: calc(100% + 1rem) !important; }
        .index-banner .banner-container .right-area .banner-animation {
          width: 6.4rem;
          height: 6.4rem;
          bottom: .2rem;
          right: unset;
          left: calc(50% - 3.2rem); }
    .index-banner .chart-pc {
      display: none; }

  .index-banner .mobile-mobile-new {
    width: 2.6rem;
    left: 0.16rem;
    bottom: 3.1rem; }

  .index-banner .banner-container .right-area .banner-blue {
    display: none; }

  .index-banner .banner-container .right-area .banner-pink {
    top: 93px;
    right: 12px;
    left: unset;
    width: 1.28rem;
    transform: rotateY(180deg); }

  .index-advantage {
    padding: 0; }
    .index-advantage .advantage-item {
      width: 100%;
      margin: 0 !important;
      flex-direction: column; }
      .index-advantage .advantage-item:last-child {
        margin-bottom: 0 !important; }
      .index-advantage .advantage-item .item-img {
        order: 2;
        width: 100%;
        height: auto; }
      .index-advantage .advantage-item .item-content {
        order: 1;
        padding: 0 20px;
        width: calc(100% - 40px);
        margin: 0 !important;
        text-align: center; }
      .index-advantage .advantage-item:nth-child(1) .item-content {
        padding-top: 50px;
        padding-bottom: 40px; }
      .index-advantage .advantage-item:nth-child(1) .item-title {
        margin-bottom: .4rem; }
      .index-advantage .advantage-item:nth-child(1) .item-bg {
        height: 128px;
        width: auto;
        top: 3.5rem;
        right: -50px; }
      .index-advantage .advantage-item:nth-child(2) .item-content {
        padding-top: 80px;
        padding-bottom: 60px; }
      .index-advantage .advantage-item:nth-child(2) .item-bg {
        height: 159px;
        width: auto;
        top: .36rem;
        left: .4rem; }
      .index-advantage .advantage-item:nth-child(3) .item-content, .index-advantage .advantage-item:nth-child(4) .item-content {
        padding-top: 80px;
        padding-bottom: 40px; }
      .index-advantage .advantage-item:nth-child(3) .item-bg {
        height: 245px;
        width: auto;
        top: .25rem;
        right: .4rem; }
      .index-advantage .advantage-item:nth-child(4) .item-bg {
        height: 146px;
        width: auto;
        top: .7rem;
        left: .45rem; }
      .index-advantage .advantage-item .item-title {
        margin-bottom: .28rem;
        font-size: .56rem;
        line-height: .74rem;
        width: 100% !important; }
      .index-advantage .advantage-item .item-des {
        width: 100% !important;
        font-size: .32rem;
        line-height: .42rem; }

  .index-comment {
    padding: 40px 20px; }
    .index-comment .comment-item {
      width: 100% !important;
      margin-right: 0;
      margin-bottom: 20px !important;
      border-radius: 18px;
      height: 172px; }
      .index-comment .comment-item:last-child {
        margin-bottom: 0; }
      .index-comment .comment-item .comment-item-content {
        padding: 20px 20px 0; }
        .index-comment .comment-item .comment-item-content p {
          font-size: 16px;
          line-height: 21px; }
      .index-comment .comment-item .item-user {
        padding: 16px 20px 20px; }
      .index-comment .comment-item .comment-item-img {
        width: 32px;
        height: 32px;
        margin-right: 8px; }
      .index-comment .comment-item .comment-item-name {
        font-size: 12px; }
      .index-comment .comment-item .item-bg {
        display: none; }
      .index-comment .comment-item .item-bg-mobile {
        display: block;
        height: 205px;
        width: 100%;
        border-radius: 18px 18px 0 0;
        object-fit: cover; }
      .index-comment .comment-item:nth-child(1) {
        height: fit-content;
        background-color: #FFE3EC; }
        .index-comment .comment-item:nth-child(1) .comment-item-content {
          padding: 15px 20px 0;
          width: calc(100% - 40px); }
        .index-comment .comment-item:nth-child(1) .item-user {
          padding: 20px; }
          .index-comment .comment-item:nth-child(1) .item-user .comment-item-name {
            font-size: 12px; }
    .index-comment .people-swiper {
      flex-wrap: wrap; }
    .index-comment .swiper-slide .comment-item .comment-item-container {
      background-color: #FFF6FB !important; }
    .index-comment .swiper-slide .comment-item::before {
      background: linear-gradient(134deg, #ffae65, #ff419c) !important; }
    .index-comment .people-swiper::after,
    .index-comment .people-swiper::before {
      width: .4rem; }
    .index-comment .swiper-pagination {
      margin-top: 10px !important; }
      .index-comment .swiper-pagination .swiper-pagination-bullet,
      .index-comment .swiper-pagination .swiper-pagination-bullet-active {
        height: 8px !important;
        width: 8px !important; }
      .index-comment .swiper-pagination .swiper-pagination-bullet-active {
        width: 12px !important; }

  .index-intro {
    padding: 0px 20px 40px;
    margin-bottom: 0; }
    .index-intro .intro-item {
      width: calc(50% - 5px - 20px - 2px);
      margin-right: 10px;
      margin-bottom: 10px;
      padding: 16px 10px;
      border-radius: .32rem; }
      .index-intro .intro-item:nth-child(even) {
        margin-right: 0; }
      .index-intro .intro-item img {
        width: 1.12rem;
        height: 1.12rem; }
      .index-intro .intro-item .item-title {
        font-size: 12px; }
      .index-intro .intro-item .item-des {
        font-size: 10px; }
      .index-intro .intro-item .img-area p {
        font-size: .68rem; }

  .footer {
    padding: 24px 20px 30px; }
    .footer .footer-bg-mobile {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
    .footer .footer-bg {
      display: none; }
    .footer .left-area p {
      font-size: 12px;
      margin-bottom: 10px;
      line-height: 17px;
      opacity: 0.8; }
    .footer .left-area .footer-logo img {
      width: 132px;
      height: 36px;
      margin-right: 8px; }
    .footer .left-area .footer-logo p {
      font-size: 20px;
      opacity: 1; }
    .footer .download-btn img {
      width: 168px;
      height: 50px;
      margin-top: 20px; }

  .bg-mobile {
    display: block !important; }

  .bg-pc {
    display: none !important; } }

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