/*更多案例--begin*/
.case_list_wrap {
    width: 100%;
    background: #ffffff;
  }
  .case_list_content {
    margin: 0 auto;
    width: 1280px;
    padding-top: 96px;
  }
  .case_list_filter_search {
    display: flex;
    position: relative;
  }
  .case_list_filter_search > img {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 16px;
    top: 8px;
  }
  .case_list_filter_search > input {
    flex: 1;
    height: 38px;
    border-radius: 2px 0px 0px 2px;
    border: 1px solid rgba(138, 145, 157, 0.24);
    border-right: none;
    font-size: 14px;
    color: rgba(19, 20, 28, 0.9);
    line-height: 22px;
    padding: 0;
    padding-left: 52px;
  }
  .case_list_filter_search > input:focus {
    outline: none;
  }
  .case_list_filter_search > button {
    outline: none;
    width: 104px;
    height: 38px;
    background: #f5630b;
    border-radius: 0px 2px 2px 0px;
    border: none;
    font-size: 14px;
    color: #ffffff;
    line-height: 22px;
    cursor: pointer;
  }
  .case_list_filter_content {
    padding: 20px 18px 0;
    background: rgba(229, 229, 229, 0.24);
    border-radius: 2px;
    margin-top: 16px;
  }
  .case_list_filter_content_item {
    display: flex;
    padding-bottom: 24px;
  }
  .case_list_filter_content_item_label {
    font-size: 14px;
    color: rgba(19, 20, 28, 0.9);
    line-height: 28px;
    margin-right: 20px;
    white-space: nowrap;
  }
  .case_list_filter_content_list {
    display: flex;
    flex-wrap: wrap;
  }
  .case_list_filter_content_list_item {
    height: 28px;
    border-radius: 2px;
    font-size: 14px;
    color: rgba(19, 20, 28, 0.6);
    line-height: 28px;
    padding: 0 12px;
    margin-right: 8px;
    cursor: pointer;
    margin-bottom: 6px;
  }
  .case_list_filter_content_list_item_active {
    background: #f5630b;
    color: #ffffff;
  }
  .case_list_filter_values {
    display: flex;
    padding: 0 18px;
    margin-top: 12px;
  }
  .case_list_filter_content_clear_btn {
    font-size: 12px;
    color: #f5630b;
    line-height: 20px;
    padding-right: 6px;
    cursor: pointer;
    white-space: nowrap;
  }
  .case_list_filter_values_list {
    padding: 0 12px;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
  }
  .case_list_filter_values_list_item {
    display: flex;
    align-items: center;
    border-radius: 2px;
    border: 1px solid rgba(138, 145, 157, 0.24);
    padding: 0px 6px;
    height: 24px;
    font-size: 12px;
    color: rgba(19, 20, 28, 0.6);
    line-height: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .case_list_filter_values_list_item > img {
    height: 16px;
    width: 16px;
    margin-left: 6px;
    cursor: pointer;
  }
  .case_list_result {
    font-size: 14px;
    color: rgba(19, 20, 28, 0.9);
    line-height: 22px;
    padding-left: 18px;
    margin: 32px 0 24px 0;
  }
  .case_list_result > span {
    color: #f5630b;
  }
  .case_list_data {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .case_list_item {
    width: 296px;
    height: 240px;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    cursor: pointer;
  }
  .case_list_item > img {
    width: 100%;
    height: 166px;
    object-fit: cover;
    border-radius: 4px 4px 0 0 ;
  }
  .case_list_item > div {
    font-size: 18px;
    color: rgba(19, 20, 28, 0.9);
    line-height: 26px;
    border: 1px solid rgba(138, 145, 157, 0.24);
    border-top: 0;
    padding: 18px 16px 16px;
    border-radius: 0px 0px 4px 4px ;
  }
  .case_list_item > div >p {
    height: 52px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
  }
  /*更多案例--end*/
  /*案例详情--begin*/
  .case_detail_wrap {
    width: 100%;
    background: #FFFFFF;
  }

  .case_detail_hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 50vh;
    background: #f07122;
    overflow: hidden;
    /* 底边左低右高：从左下斜向右上 */
    clip-path: polygon(0 0, 100% 0, 100% 72%, 0 100%);
  }

  .case_detail_hero__inner {
    position: static;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 40px 88px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    min-height: 50vh;
    box-sizing: border-box;
  }

  .case_detail_hero__meta {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
  }

  .case_detail_hero__item + .case_detail_hero__item {
    margin-top: 4px;
  }

  .case_detail_hero__deco {
    position: absolute;
    top: -20%;
    right: -8%;
    width: min(56vw, 640px);
    height: min(56vw, 640px);
    transform: none;
    pointer-events: none;
  }

  .case_detail_hero__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .case_detail_content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 80px;
  }

  .case_detail_main {
    margin-top: calc(-50vh + 180px);
    position: relative;
    z-index: 2;
  }

  .case_detail_cover {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: #f5f5f5;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  }

  .case_detail_title {
    margin: 48px 0 28px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
  }

  .case_detail_body {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    overflow-x: auto;
    word-break: break-word;
  }

  .case_detail_body p {
    margin: 0 0 1.2em;
  }

  .case_detail_body img {
    max-width: 100%;
    height: auto;
  }

  .case_detail_body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .case_detail_body iframe,
  .case_detail_body video,
  .case_detail_body embed {
    max-width: 100%;
  }

  .case_detail_related {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid #ececec;
  }

  .case_detail_related__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 26px;
    margin-bottom: 24px;
  }

  .case_detail_related__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .case_detail_related__list > a {
    display: block;
    width: calc((100% - 64px) / 5);
    max-width: 241px;
  }

  .case_detail_related__list > a img {
    display: block;
    width: 100%;
    height: 126px;
    object-fit: cover;
    background: #f5f5f5;
  }

  @media (max-width: 992px) {
    .case_detail_hero__inner {
      padding: 40px 24px 56px;
      min-height: 50vh;
    }

    .case_detail_hero__deco {
      width: 320px;
      height: 320px;
      top: -15%;
      right: -12%;
      opacity: 0.7;
    }

    .case_detail_content {
      padding: 0 20px 56px;
    }

    .case_detail_main {
      margin-top: calc(-50vh + 160px);
    }

    .case_detail_title {
      margin: 32px 0 20px;
      font-size: 22px;
    }

    .case_detail_related__list > a {
      width: calc((100% - 16px) / 2);
      max-width: none;
    }

    .case_detail_related__list > a img {
      height: 110px;
    }
  }

  @media (max-width: 576px) {
    .case_detail_hero {
      height: auto;
      min-height: 0;
    }

    .case_detail_hero__inner {
      min-height: 0;
      height: auto;
      padding: 28px 16px 40px;
    }

    .case_detail_main {
      margin-top: -28px;
    }

    .case_detail_hero__meta {
      font-size: 14px;
      max-width: 100%;
      word-break: break-word;
      padding-right: 8px;
    }

    .case_detail_hero__deco {
      display: none;
    }

    .case_detail_title {
      font-size: 18px;
    }

    .case_detail_related__list > a {
      width: 100%;
    }

    .case_detail_related__list > a img {
      height: auto;
      aspect-ratio: 16 / 9;
    }

    .index_case_el_dialog_dialog_form .index_case_el_dialog_input_default,
    .index_case_el_dialog_dialog_form .index_case_el_dialog_input_small,
    .index_case_el_dialog_register_submit,
    .index_case_el_dialog_dialog_login_body .index_case_el_dialog_input_submit {
      width: 100%;
      max-width: 100%;
    }
  }
  /*案例详情--end*/
  /*注册弹窗--begin*/
  .index_case_el_dialog_dialog_form .index_case_el_dialog_input_default {
    width: 352px;
  }
  .index_case_el_dialog_dialog_form .index_case_el_dialog_input_small {
    width: 200px;
  }
  .index_case_el_dialog_register_submit{
    width: 352px;
    height: 40px;
    margin-top: 24px;
    min-width: 120px;
    padding: 5px 13px;
    background: #F5630B;
    border-radius: 2px;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    line-height: 22px;
  }
  .index_case_el_dialog_input_btn {
    width: 136px;
    height: 38px;
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid rgba(138, 145, 157, 0.24);
    line-height: 38px;
    text-align: center;
    color: rgba(19, 20, 28, 0.9);
    font-size: 14px;
    display: inline-block;
    margin-left: 9px;
    cursor: pointer;
  }
  .index_case_el_dialog_form_sex {
    margin-bottom: 15px;
    margin-top: -15px;
  }
  .index_case_el_dialog_dialog_login_body{
    border-radius: 12px;
  }
  .index_case_el_dialog_dialog_body .el-dialog__close {
    font-size: 20px;
  }
  .index_case_el_dialog_dialog_login_body .index_case_el_dialog_input_submit{
    width: 352px;
  }
  .index_case_el_dialog_register_dialog_content {
    margin-top: 24px;
  }
  .index_case_el_dialog_dialog_login_register_btn{
    font-size: 14px;
    color: rgb(252, 105, 13);
    padding-left: 64px;
    cursor: pointer;
  }
  .index_case_el_dialog_register_dialog_login_title{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: rgba(19, 20, 28, 0.9);
    line-height: 22px;
  }
  .index_case_el_dialog_register_dialog_title {
    margin-left: 80px;
    font-size: 16px;
    color: rgba(19, 20, 28, 0.9);
    line-height: 22px;
  }
  .index_case_el_dialog_register_submit {
    width: 352px;
    height: 40px;
    margin-top: 24px;
  }
  .el-dialog__body{
    padding: 30px 20px;
    color: #606266;
    font-size: 14px;
    word-break: break-all;
    font-family: PingFangSC-Regular, PingFang SC;
  }

  .el-dialog {
    margin-top: 8vh !important;
  }
  .dialog_content{
    display: flex;
    flex-direction: column;
  }
  .dialog_content_list{
    flex: 1;
    overflow-y: scroll;
  }
  .dialog_content .dialog_content_footer{
    height: 72px;
    flex:none;
  }
  .el-dialog__wrapper{
    z-index: 10000 !important;
  }
  .ele-message-class{
    z-index: 11000 !important;
  }
  /*注册弹窗--end*/
  /*样式覆盖部分--begin*/
  .pager-more{
    background: #fff;
  }
  /*样式覆盖部分--begin*/
  
.el-button--primary {
    color: #fff;
    background-color: #f5630b;
    border-color: #f5630b
}
.el-button--primary:focus,.el-button--primary:hover {
  background: #f7823c;
  border-color: #f7823c;
  color: #fff
}

.el-button--primary:active {
  background: #dd590a;
  border-color: #dd590a;
  color: #fff;
  outline: 0
}

.el-button--primary.is-active {
  background: #dd590a;
  border-color: #dd590a;
  color: #fff
}
[v-cloak]{
  display: none;
}
.zZindex{
  z-index:500000 !important;
}
.el-cascader__dropdown{
  z-index: 99999 !important;
}