.content-header {
  width: 1400px;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 65px 0 20px 0px;
  border-radius: 8px;
  margin-bottom: 20px; }
  .content-header-left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex: 1;
        flex: 1; }
  .content-header-title {
    font-family: PingFang SC;
    font-size: 36px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #252525;
    margin-right: 20px;
    margin-bottom: 0; }
  .content-header-desc {
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #252525;
    margin-bottom: 0; }
  .content-header-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 20px; }
  .content-header-rate {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    color: #70757C;
    font-size: 18px; }
    .content-header-rate-word {
      cursor: pointer;
      margin-right: 3px; }
    .content-header-rate-icon {
      cursor: pointer; }
    .content-header-rate-divider {
      margin-left: 12px;
      width: 1px;
      height: 24px;
      background-color: #70757C; }
  .content-header-remaining {
    font-size: 20px;
    color: #70757C;
    font-weight: 400; }
    .content-header-remaining span:nth-child(1) {
      font-weight: 600;
      color: #4474FF; }
  .content-header-recharge-btn {
    width: 140px;
    height: 48px;
    border-radius: 4px;
    background: linear-gradient(270deg, #3370F6 4%, #5691FB 100%);
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: PingFang SC;
    font-size: 16px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
    letter-spacing: normal;
    color: #FFFFFF; }
    .content-header-recharge-btn:hover {
      opacity: 0.8; }

@media screen and (max-width: 1500px) {
  .content-header {
    width: 1200px;
    min-width: 1200px; } }

@charset "UTF-8";
.recent-tasks {
  width: 100%;
  min-width: 1400px;
  box-sizing: border-box;
  margin-top: 48px;
  font-family: PingFang SC; }
  .recent-tasks .task-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 20px; }
    .recent-tasks .task-header .title {
      font-size: 20px;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: normal;
      color: #252525; }
    .recent-tasks .task-header .total {
      font-family: 苹方-简;
      font-size: 14px;
      font-weight: normal;
      line-height: 20px;
      text-align: center;
      letter-spacing: normal;
      color: #5c6067; }
      .recent-tasks .task-header .total span {
        font-family: PingFang SC; }
  .recent-tasks .task-list {
    max-height: 600px;
    overflow-y: auto; }
    .recent-tasks .task-list::-webkit-scrollbar {
      width: 6px;
      height: 6px; }
    .recent-tasks .task-list::-webkit-scrollbar-track {
      background: transparent; }
    .recent-tasks .task-list::-webkit-scrollbar-thumb {
      background: #b8c6d1;
      border-radius: 4px; }
    .recent-tasks .task-list::-webkit-scrollbar-thumb:hover {
      background: #94a0a8; }
  .recent-tasks .task-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    width: calc(100% - 8px);
    height: 80px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 2px 5px 0px rgba(152, 163, 197, 0.2);
    margin-bottom: 10px;
    padding: 20px 40px 20px 30px;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    .recent-tasks .task-item .item-img {
      margin-right: 24px;
      height: 32px;
      width: 32px; }
    .recent-tasks .task-item .item-name {
      width: 170px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      letter-spacing: normal;
      color: #252525;
      margin-right: 85px; }
    .recent-tasks .task-item .item-desc {
      width: 304px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      font-size: 12px;
      font-weight: normal;
      line-height: 20px;
      letter-spacing: normal;
      color: #3d3d3d;
      margin-right: 80px;
      display: none; }
    .recent-tasks .task-item .item-speaker {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      width: 100px; }
      .recent-tasks .task-item .item-speaker-icon {
        height: 16px;
        width: 16px;
        margin-right: 4px;
        background: url("/static/img/newPage/task_people.svg") no-repeat center center; }
      .recent-tasks .task-item .item-speaker-word {
        width: 80px;
        font-size: 14px;
        font-weight: normal;
        line-height: 20px;
        letter-spacing: normal;
        color: #252525; }
    .recent-tasks .task-item .item-createTime {
      font-size: 14px;
      font-weight: normal;
      line-height: 20px;
      letter-spacing: normal;
      color: #252525;
      margin-right: 40px;
      margin-left: 40px;
      width: 150px; }
    .recent-tasks .task-item .item-status {
      width: 110px;
      margin-right: 40px;
      margin-left: 40px; }
      .recent-tasks .task-item .item-status > div {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center; }
        .recent-tasks .task-item .item-status > div .icon {
          width: 16px;
          height: 16px;
          margin-right: 4px; }
        .recent-tasks .task-item .item-status > div .word {
          font-size: 14px;
          font-weight: normal;
          line-height: 20px;
          letter-spacing: normal;
          color: #252525; }
      .recent-tasks .task-item .item-status .item-status-processing .icon {
        background: url("/static/img/newPage/task_processing.svg") no-repeat center center;
        animation: rotate 1.5s linear infinite; }
      .recent-tasks .task-item .item-status .item-status-fail .icon {
        background: url("/static/img/newPage/task_fail.svg") no-repeat center center; }
      .recent-tasks .task-item .item-status .item-status-fail .word {
        color: #3d3d3d; }
      .recent-tasks .task-item .item-status .item-status-success {
        min-width: 100px;
        height: 32px;
        border-radius: 4px;
        background: #FFFFFF;
        box-sizing: border-box;
        border: 1px solid #E5E8EB;
        padding: 8px 10px;
        cursor: pointer; }
        .recent-tasks .task-item .item-status .item-status-success .icon {
          background: url("/static/img/newPage/task_download.svg") no-repeat center center; }
        .recent-tasks .task-item .item-status .item-status-success .word {
          font-family: 苹方-简;
          line-height: 16px;
          color: #000000; }
        .recent-tasks .task-item .item-status .item-status-success:hover {
          border-radius: 4px;
          background: #FFFFFF;
          box-sizing: border-box;
          border: 1px solid #E5E8EB; }
    .recent-tasks .task-item .item-delete {
      min-width: 80px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1;
          flex: 1;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: end;
          justify-content: flex-end;
      cursor: pointer; }
      .recent-tasks .task-item .item-delete .icon {
        width: 16px;
        height: 16px;
        margin-right: 4px;
        background: url("/static/img/newPage/task_delete.svg") no-repeat center center;
        opacity: 0.8; }
      .recent-tasks .task-item .item-delete .word {
        font-size: 14px;
        font-weight: normal;
        line-height: 20px;
        letter-spacing: normal;
        color: #6E6E6E; }
      .recent-tasks .task-item .item-delete:hover .icon {
        background: url("/static/img/newPage/task_delete.svg") no-repeat center center;
        opacity: 1; }
      .recent-tasks .task-item .item-delete:hover .word {
        color: #252525; }
  .recent-tasks .task-ocr .task-item {
    -ms-flex-pack: start;
        justify-content: flex-start; }
  .recent-tasks .task-ocr .ocr-word {
    width: 300px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    .recent-tasks .task-ocr .ocr-word-img {
      height: 32px;
      width: 32px;
      margin-right: 24px;
      min-width: 32px;
      background: url("/static/img/newPage/word_img.svg") no-repeat center center; }
    .recent-tasks .task-ocr .ocr-word-word {
      overflow: hidden;
      -ms-flex: 1;
          flex: 1;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding-right: 20px; }
  .recent-tasks .task-ocr .ocr-name {
    width: 300px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    .recent-tasks .task-ocr .ocr-name-img {
      height: 20px;
      width: 20px;
      min-width: 20px;
      margin-right: 4px;
      background: url("/static/img/newPage/png_img.svg") no-repeat center center; }
    .recent-tasks .task-ocr .ocr-name .pdf-img {
      background: url("/static/img/newPage/pdf_icon.svg") no-repeat center center; }
    .recent-tasks .task-ocr .ocr-name-word {
      overflow: hidden;
      -ms-flex: 1;
          flex: 1;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .recent-tasks .task-asr .task-item {
    -ms-flex-pack: start;
        justify-content: flex-start; }
  .recent-tasks .task-asr .item-doc {
    width: 240px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    margin-right: 24px; }
    .recent-tasks .task-asr .item-doc-icon {
      height: 32px;
      width: 32px;
      min-width: 32px;
      margin-right: 12px;
      background: url("/static/img/newPage/word_img.svg") no-repeat center center; }
    .recent-tasks .task-asr .item-doc-text {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .recent-tasks .task-asr .item-duration {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    width: 80px;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    letter-spacing: normal;
    color: #252525;
    margin-right: 24px; }
    .recent-tasks .task-asr .item-duration-icon {
      width: 16px;
      height: 16px;
      margin-right: 4px;
      background: url("/static/img/newPage/time.svg") no-repeat center center; }
  .recent-tasks .task-asr .item-origin {
    width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    letter-spacing: normal;
    color: #252525;
    margin-right: 24px; }
  .recent-tasks .task-asr .item-language {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    width: 140px;
    margin-right: 24px; }
    .recent-tasks .task-asr .item-language-icon {
      height: 16px;
      width: 16px;
      margin-right: 6px;
      background: url("/static/img/newPage/language_icon.svg") no-repeat center center; }
    .recent-tasks .task-asr .item-language-text {
      font-size: 14px;
      font-weight: normal;
      line-height: 20px;
      letter-spacing: normal;
      color: #252525; }
  .recent-tasks .task-item-processing {
    background: rgba(149, 169, 232, 0.1); }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

@media screen and (max-width: 1500px) {
  .recent-tasks {
    width: 1200px;
    min-width: 1200px;
    margin-left: auto;
    margin-right: auto; } }

.dialog-delete-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1000; }

.dialog-delete {
  width: 400px;
  height: 176px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(152, 163, 197, 0.2);
  overflow: hidden;
  font-family: PingFang SC;
  padding: 20px; }

.dialog-delete-header {
  margin-bottom: 16px; }
  .dialog-delete-header .dialog-delete-title {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
    color: #3D3D3D; }

.dialog-delete-content {
  height: 60px; }
  .dialog-delete-content div {
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #3D3D3D; }

.dialog-delete-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 12px; }

.dialog-delete-btn {
  width: 100px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  box-sizing: border-box;
  border: 1px solid #E5E8EB;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s; }

.dialog-delete-btn-disabled {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none; }

.dialog-delete-btn-loading {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 8px; }

.dialog-delete-btn-loading::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #ffffff;
  animation: dialog-delete-spin 0.8s linear infinite; }

@keyframes dialog-delete-spin {
  to {
    transform: rotate(360deg); } }

.dialog-delete-btn-cancel {
  background-color: #fff;
  color: #252525; }
  .dialog-delete-btn-cancel:hover {
    opacity: 0.8; }

.dialog-delete-btn-confirm {
  background: linear-gradient(270deg, #3370F6 0%, #5691FB 100%);
  border: none;
  color: #fff; }
  .dialog-delete-btn-confirm:hover {
    opacity: 0.8; }

@charset "UTF-8";
.package-modal {
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(152, 163, 197, 0.2); }
  .package-modal .ant-modal-content {
    border-radius: 20px;
    background: url(/static/img/newPage/package_bg.png) no-repeat center center;
    background-size: cover; }
    .package-modal .ant-modal-content .ant-modal-body {
      padding: 40px; }
  .package-modal .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: 48px; }
    .package-modal .header .header-title {
      font-family: PingFang SC;
      font-size: 36px;
      color: #252525; }
    .package-modal .header .header-close {
      position: absolute;
      top: -10px;
      right: 0;
      font-size: 15px;
      color: #7B7F82;
      cursor: pointer; }
      .package-modal .header .header-close:hover {
        opacity: 0.8; }
  .package-modal .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px; }
  .package-modal .list-single {
    width: 360px;
    height: 180px;
    padding: 20px 24px 20px 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    background: linear-gradient(180deg, #DCEAFF 0%, #FFFFFF 98%);
    box-sizing: border-box;
    border: 1px solid #E5E8EB;
    font-family: PingFang SC; }
    .package-modal .list-single:hover {
      border-color: #1890ff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
    .package-modal .list-single.selected {
      border-color: #1890ff;
      background-color: rgba(24, 144, 255, 0.05); }
  .package-modal .activity-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: url(/static/img/newPage/package_active_icon.svg) no-repeat center center;
    font-family: DingTalk JinBuTi;
    width: 72px;
    height: 30px;
    font-size: 15px;
    font-weight: normal;
    line-height: 30px;
    text-align: center;
    letter-spacing: normal;
    color: #4D3030; }
  .package-modal .package-title {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
    color: #252525;
    margin-bottom: 8px; }
  .package-modal .package-desc {
    font-size: 16px;
    min-height: 22px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: rgba(37, 37, 37, 0.7);
    margin-bottom: 22px; }
  .package-modal .package-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
        align-items: baseline;
    -ms-flex-pack: justify;
        justify-content: space-between;
    height: 48px; }
  .package-modal .package-price {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
    color: #252525; }
    .package-modal .package-price span {
      font-size: 48px; }
  .package-modal .package-quantity {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    width: 96px;
    height: 32px;
    margin-top: 12px; }
    .package-modal .package-quantity .package-quantity-line {
      width: 1px;
      height: 26px;
      border: 1px solid;
      border-image: linear-gradient(180deg, rgba(229, 232, 235, 0) 0%, #E5E8EB 59%, rgba(229, 232, 235, 0) 100%); }
    .package-modal .package-quantity .quantity-btn {
      width: 24px;
      height: 32px;
      border: 1px solid #d9d9d9;
      background-color: #fff;
      font-size: 16px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      cursor: pointer;
      padding: 0;
      outline: none;
      transition: all 0.3s ease; }
      .package-modal .package-quantity .quantity-btn.decrease {
        border-radius: 8px 0 0 8px;
        border-right: none; }
        .package-modal .package-quantity .quantity-btn.decrease:hover {
          opacity: 0.8; }
      .package-modal .package-quantity .quantity-btn.increase {
        border-radius: 0 8px 8px 0;
        border-left: none; }
        .package-modal .package-quantity .quantity-btn.increase:hover {
          opacity: 0.8; }
    .package-modal .package-quantity .quantity-input {
      width: 48px;
      height: 32px;
      border: none;
      border-top: 1px solid #E5E8EB;
      border-bottom: 1px solid #E5E8EB;
      line-height: 32px;
      text-align: center;
      font-size: 14px;
      background-color: #fff;
      outline: none;
      /* 移除默认箭头 */
      -moz-appearance: textfield; }
      .package-modal .package-quantity .quantity-input::-webkit-inner-spin-button, .package-modal .package-quantity .quantity-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0; }
  .package-modal .total-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    margin-top: 24px;
    padding-top: 24px; }
    .package-modal .total-section .total-price {
      font-size: 20px;
      font-weight: 500;
      line-height: normal;
      letter-spacing: normal; }
      .package-modal .total-section .total-price .price {
        color: #1B6AEC;
        margin: 0 4px;
        font-size: 32px; }
      .package-modal .total-section .total-price .unit {
        font-size: 31px; }
    .package-modal .total-section .buy-btn {
      border-radius: 4px;
      background: linear-gradient(270deg, #3370F6 0%, #5691FB 100%);
      color: white;
      border: none;
      padding: 8px 24px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 192px;
      height: 48px;
      line-height: 32px; }
      .package-modal .total-section .buy-btn:hover {
        opacity: 0.8; }

