@charset "UTF-8";/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
/*order-option*/
.root_app.chargePile-txtCard[data-v-32f820e4] {
  margin: 0 auto;
  padding: 60px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* 标题样式 */
  /* 卡片列表样式 */
}
.root_app.chargePile-txtCard .chargePile-txtCard_title[data-v-32f820e4] {
  text-align: center;
  margin: 0 auto 60px;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  color: #252728;
  max-width: 600px;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList[data-v-32f820e4] {
  display: grid;
  gap: 24px;
  /* 根据卡片数量动态调整布局 */
  /* 列表第2个卡片为最后一个，布局2列 */
  /* 列表第2个卡片并非最后一个（即至少三个卡片）时，布局为3列 */
  /* 同样数量，后面的会覆盖前面的样式 */
  /* 列表第3个卡片并非最后一个（即至少四个卡片）时，布局为4列 */
  /* 同样数量，后面的会覆盖前面的样式 */
  /* 列表第4个卡片（及之后的卡片）布局为5列 */
  /* 同样数量，后面的会覆盖前面的样式 */
  /* 卡片样式 */
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList[data-v-32f820e4]:has(.cardItem:only-child) {
  grid-template-columns: 1fr;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList[data-v-32f820e4]:has(.cardItem:nth-child(2)) {
  grid-template-columns: repeat(2, 1fr);
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList[data-v-32f820e4]:has(.cardItem:nth-child(2):not(:last-child)) {
  grid-template-columns: repeat(3, 1fr);
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList[data-v-32f820e4]:has(.cardItem:nth-child(3):not(:last-child)) {
  grid-template-columns: repeat(4, 1fr);
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList[data-v-32f820e4]:has(.cardItem:nth-child(4)) {
  grid-template-columns: repeat(5, 1fr);
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem[data-v-32f820e4] {
  background-color: rgb(248, 249, 250);
  padding: 32px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  /* 只有添加animate-in类时才执行动画 */
  /* 动画延迟由Vue动态绑定，这里不再需要硬编码的延迟 */
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem.animate-in[data-v-32f820e4] {
  -webkit-animation: fadeInUp-32f820e4 0.6s ease-out forwards;
          animation: fadeInUp-32f820e4 0.6s ease-out forwards;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem .cardIcon[data-v-32f820e4] {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem .cardIcon img[data-v-32f820e4] {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem .cardTxt .cardTitle[data-v-32f820e4] {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #252728;
  margin-bottom: 16px;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem .cardTxt .cardDesc[data-v-32f820e4] {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(92, 96, 106);
}

/* 移动端响应式样式 */
@media screen and (max-width: 767px) {
.root_app.chargePile-txtCard[data-v-32f820e4] {
    padding: 40px 0;
}
.root_app.chargePile-txtCard .chargePile-txtCard_title[data-v-32f820e4] {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList[data-v-32f820e4] {
    grid-template-columns: 1fr !important;
    gap: 16px;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem[data-v-32f820e4] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    /* 移动端同样只在添加animate-in类时执行动画 */
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem.animate-in[data-v-32f820e4] {
    -webkit-animation: fadeInUp-32f820e4 0.6s ease-out forwards;
            animation: fadeInUp-32f820e4 0.6s ease-out forwards;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem .cardIcon[data-v-32f820e4] {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    margin-right: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem .cardTxt .cardTitle[data-v-32f820e4] {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 8px;
}
.root_app.chargePile-txtCard .chargePile-txtCard_cardList .cardItem .cardTxt .cardDesc[data-v-32f820e4] {
    font-size: 14px;
    line-height: 20px;
}
}
/* 动画定义 */
@-webkit-keyframes fadeInUp-32f820e4 {
from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
}
to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
}
@keyframes fadeInUp-32f820e4 {
from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
}
to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
}