/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-spin {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  display: none;
  color: #1890ff;
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-spin-spinning {
  position: static;
  display: inline-block;
  opacity: 1;
}
.ant-spin-nested-loading {
  position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  position: absolute;
  top: 50%;
  width: 100%;
  padding-top: 5px;
  text-shadow: 0 1px 2px #fff;
}
.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
  margin-top: -20px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
  margin: -7px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
  padding-top: 2px;
}
.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
  margin-top: -17px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
  margin: -16px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
  padding-top: 11px;
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  margin-top: -26px;
}
.ant-spin-container {
  position: relative;
  transition: opacity 0.3s;
}
.ant-spin-container::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none \9;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all 0.3s;
  content: '';
  pointer-events: none;
}
.ant-spin-blur {
  clear: both;
  overflow: hidden;
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.ant-spin-blur::after {
  opacity: 0.4;
  pointer-events: auto;
}
.ant-spin-tip {
  color: rgba(0, 0, 0, 0.45);
}
.ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 1em;
  height: 1em;
}
.ant-spin-dot-item {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #1890ff;
  border-radius: 100%;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  opacity: 0.3;
  -webkit-animation: antSpinMove 1s infinite linear alternate;
          animation: antSpinMove 1s infinite linear alternate;
}
.ant-spin-dot-item:nth-child(1) {
  top: 0;
  left: 0;
}
.ant-spin-dot-item:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.ant-spin-dot-item:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.ant-spin-dot-item:nth-child(4) {
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.ant-spin-dot-spin {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: antRotate 1.2s infinite linear;
          animation: antRotate 1.2s infinite linear;
}
.ant-spin-sm .ant-spin-dot {
  font-size: 14px;
}
.ant-spin-sm .ant-spin-dot i {
  width: 6px;
  height: 6px;
}
.ant-spin-lg .ant-spin-dot {
  font-size: 32px;
}
.ant-spin-lg .ant-spin-dot i {
  width: 14px;
  height: 14px;
}
.ant-spin.ant-spin-show-text .ant-spin-text {
  display: block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ */
  .ant-spin-blur {
    background: #fff;
    opacity: 0.5;
  }
}
@-webkit-keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
}
@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
}
.ant-spin-rtl {
  direction: rtl;
}
.ant-spin-rtl .ant-spin-dot-spin {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-animation-name: antRotateRtl;
          animation-name: antRotateRtl;
}
@-webkit-keyframes antRotateRtl {
  to {
    -webkit-transform: rotate(-405deg);
            transform: rotate(-405deg);
  }
}
@keyframes antRotateRtl {
  to {
    -webkit-transform: rotate(-405deg);
            transform: rotate(-405deg);
  }
}

.prive-modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: #444;
}
.prive-modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 20px;
}
.prive-modal .ant-spin-lg .ant-spin-dot {
  font-size: 40px;
}
.view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0;
  overflow: auto;
}
.pageContainer {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  color: #fff;
  font-size: 20px;
}
.pageTool {
  position: absolute;
  bottom: 20px;
  background: #424242;
  color: white;
  padding: 8px 15px;
  border-radius: 15px;
}
.pageTool > span {
  padding: 10px 5px;
  display: inline-block;
}
.pageTool .edit-btn:hover {
  color: #03aaff;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.pageTool i {
  padding: 5px;
  margin: 0 5px;
}
.pageTool i:hover {
  background: #333;
}
.pageTool input {
  display: inline-block;
  width: 50px;
  text-align: center;
  height: 24px;
}
.pageTool input::-webkit-outer-spin-button,
.pageTool input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.pageTool input[type="number"] {
  -moz-appearance: textfield;
}

.page-case .p-warp {
  padding: 80px 0;
  background: url("/images/service/bg-mod-4.png") no-repeat 100%;
  background-position: 0px 530px;
}
@media screen and (min-width: 1600px) {
  .page-case .p-warp {
    padding: -webkit-calc(80px - 0 * 10px) 0;
    padding: calc(80px - 0 * 10px) 0;
  }
}
@media screen and (max-width: 1600px) {
  .page-case .p-warp {
    padding: -webkit-calc(80px - 1 * 10px) 0;
    padding: calc(80px - 1 * 10px) 0;
  }
}
@media screen and (max-width: 1400px) {
  .page-case .p-warp {
    padding: -webkit-calc(80px - 2 * 10px) 0;
    padding: calc(80px - 2 * 10px) 0;
  }
}
@media screen and (max-width: 1200px) {
  .page-case .p-warp {
    padding: -webkit-calc(80px - 3 * 10px) 0;
    padding: calc(80px - 3 * 10px) 0;
  }
}
@media screen and (max-width: 992px) {
  .page-case .p-warp {
    padding: -webkit-calc(80px - 4 * 10px) 0;
    padding: calc(80px - 4 * 10px) 0;
  }
}
@media screen and (max-width: 768px) {
  .page-case .p-warp {
    padding: -webkit-calc(80px - 5 * 10px) 0;
    padding: calc(80px - 5 * 10px) 0;
  }
}
@media screen and (max-width: 576px) {
  .page-case .p-warp {
    padding: -webkit-calc(80px - 6 * 10px) 0;
    padding: calc(80px - 6 * 10px) 0;
  }
}
.page-case .p-warp .title {
  padding-top: 40px;
  margin-bottom: 30px;
}
.page-case .p-warp .container {
  padding: 0px 25px 30px 25px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9fa), color-stop(0%, #f9f9fa), color-stop(70%, rgba(255, 255, 255, 0.8)), color-stop(70%, rgba(255, 255, 255, 0.8)));
  background: -webkit-linear-gradient(top, #f9f9fa 0%, #f9f9fa 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0.8) 70%);
  background: -o-linear-gradient(top, #f9f9fa 0%, #f9f9fa 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0.8) 70%);
  background: linear-gradient(180deg, #f9f9fa 0%, #f9f9fa 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0.8) 70%);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
}
.page-case .p-warp .p-item-warp .p-item .p-background {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: background-size 0.3s linear;
  -o-transition: background-size 0.3s linear;
  transition: background-size 0.3s linear;
}
@media screen and (min-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item .p-background {
    background-size: 130%;
  }
}
@media screen and (max-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item .p-background {
    background-size: 130%;
  }
}
@media screen and (max-width: 1400px) {
  .page-case .p-warp .p-item-warp .p-item .p-background {
    background-size: 130%;
  }
}
@media screen and (max-width: 1200px) {
  .page-case .p-warp .p-item-warp .p-item .p-background {
    display: none;
  }
}
.page-case .p-warp .p-item-warp .p-item .p-i {
  height: 300px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  padding: 24px;
  margin: -50px 15px 0;
  border-top: 4px solid transparent;
}
@media screen and (min-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item .p-i {
    height: 300px;
    padding: 24px;
  }
}
@media screen and (max-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item .p-i {
    height: 280px;
    padding: 22px;
  }
}
@media screen and (max-width: 1400px) {
  .page-case .p-warp .p-item-warp .p-item .p-i {
    padding: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .page-case .p-warp .p-item-warp .p-item .p-i {
    padding: 18px;
    margin: 0;
    -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(33, 37, 41, 0.15);
            box-shadow: 0 0.5rem 1rem 0 rgba(33, 37, 41, 0.15);
    height: 100%;
  }
}
.page-case .p-warp .p-item-warp .p-item .p-i > div:nth-of-type(1) {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-case .p-warp .p-item-warp .p-item .p-i a {
  display: inline-block;
  width: 90px;
  padding: 8px 15px;
  color: #ff8e10;
  border-radius: 144px;
  border: 1px solid #ff8e10;
}
.page-case .p-warp .p-item-warp .p-item .p-i .p-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item .p-i .p-t {
    font-size: 18px;
  }
}
@media screen and (max-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item .p-i .p-t {
    font-size: 18px;
  }
}
@media screen and (max-width: 1400px) {
  .page-case .p-warp .p-item-warp .p-item .p-i .p-t {
    font-size: 16px;
  }
}
.page-case .p-warp .p-item-warp .p-item .p-i .p-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #666666;
  margin-top: 20px;
}
@media screen and (max-width: 1400px) {
  .page-case .p-warp .p-item-warp .p-item .p-i .p-text {
    font-size: 14px;
  }
}
.page-case .p-warp .p-item-warp .p-item:nth-of-type(1) .p-background {
  background: url("/images/case/bg-mod-1.png") no-repeat 100%;
}
.page-case .p-warp .p-item-warp .p-item:nth-of-type(2) .p-background {
  background: url("/images/case/bg-mod-2.png") no-repeat 100%;
}
.page-case .p-warp .p-item-warp .p-item:nth-of-type(3) .p-background {
  background: url("/images/case/bg-mod-3.png") no-repeat 100%;
}
.page-case .p-warp .p-item-warp .p-item:nth-of-type(4) .p-background {
  background: url("/images/case/bg-mod-4.png") no-repeat 100%;
}
@media screen and (min-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item:hover .p-background {
    background-size: 150%;
  }
}
@media screen and (max-width: 1600px) {
  .page-case .p-warp .p-item-warp .p-item:hover .p-background {
    background-size: 140%;
  }
}
@media screen and (max-width: 1400px) {
  .page-case .p-warp .p-item-warp .p-item:hover .p-background {
    background-size: 140%;
  }
}
@media screen and (max-width: 1200px) {
  .page-case .p-warp .p-item-warp .p-item:hover .p-background {
    background-size: 170%;
  }
}
.page-case .p-warp .p-item-warp .p-item:hover a {
  color: #fff;
  background-color: #ff8e10;
}
.page-case .case-banner {
  height: 100vh;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-image: url("/images/case/bg-1.webp");
}
.page-case .case-banner > div {
  position: absolute;
  top: 22%;
  left: 18%;
}
.page-case .case-banner > div .title {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0em;
  color: #2d4f78;
}
.page-case .case-banner > div .desc {
  font-size: 45px;
  font-weight: normal;
  letter-spacing: 0em;
  color: #2d4f78;
  margin-bottom: 74px;
  margin-top: 40px;
}
.page-case .case-banner > div .btn {
  width: 166px;
  height: 40px;
  background: #000000;
  border-right: 4px solid #06aeff;
  border-bottom: 4px solid #06aeff;
  line-height: 40px;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  cursor: pointer;
}
.page-case .case-banner > div .btn span {
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#c89eff), color-stop(0%, #c89eff), color-stop(99%, #00aeff), to(#00aeff));
  background: -webkit-linear-gradient(left, #c89eff 0%, #c89eff 0%, #00aeff 99%, #00aeff 100%);
  background: -o-linear-gradient(left, #c89eff 0%, #c89eff 0%, #00aeff 99%, #00aeff 100%);
  background: linear-gradient(90deg, #c89eff 0%, #c89eff 0%, #00aeff 99%, #00aeff 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.page-case .main-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-case .case-section {
  width: 1440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-case .case-section h3 {
  font-weight: normal;
  font-size: 36px;
  padding: 60px 0;
}
.page-case .customer-list,
.page-case .case-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-case .customer-list img,
.page-case .case-list img {
  width: 100%;
  height: 100%;
}
.page-case .customer-list li,
.page-case .case-list li {
  cursor: pointer;
}
.page-case .customer-list {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.page-case .customer-list li {
  width: -webkit-calc(100% / 6);
  width: calc(100% / 6);
  height: 120px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #f6f5f9;
}
.page-case .customer-list li:hover {
  -webkit-box-shadow: 4px 4px 8px 0px rgba(67, 114, 255, 0.2);
          box-shadow: 4px 4px 8px 0px rgba(67, 114, 255, 0.2);
  border: 1px solid #376dff;
}
.page-case .case-list li {
  width: 23.5%;
  margin: 0 9px 30px;
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 20px 2px #ebf0fa;
          box-shadow: 0px 1px 20px 2px #ebf0fa;
  position: relative;
  overflow: hidden;
}
.page-case .case-list li:hover .case-layer {
  bottom: 0;
}
.page-case .case-list img {
  height: 200px;
}
.page-case .case-list .case-title {
  height: 60px;
  width: 100%;
  font-size: 14px;
  color: #333333;
  line-height: 19px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-case .case-list .case-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px 20px;
  background: rgba(1, 66, 238, 0.7);
  -webkit-transition: bottom 0.3s ease;
  -o-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
}
.page-case .case-list .layer-title {
  color: #fff;
  height: 86px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.page-case .case-list .layer-text {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  line-height: 16px;
}
.page-case .case-list .layer-arrow {
  font-size: 30px;
  color: #ffffff;
  padding: 10px;
  text-align: end;
}

