.section {
  padding: 88px 0 90px;
  background: #F9FCFF; }
  .section .wrap .crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px; }
    .section .wrap .crumbs p {
      color: #999;
      font-size: 14px;
      font-weight: 400; }
      .section .wrap .crumbs p:nth-last-child(1) {
        color: #09244D; }
    .section .wrap .crumbs span {
      color: #999;
      font-size: 14px;
      font-weight: 400; }
  .section .wrap .box {
    padding: 29px 25px 60px;
    border-radius: 12px;
    background: #FFF; }
    .section .wrap .box .top {
      display: flex;
      gap: 30px;
      align-items: center; }
      .section .wrap .box .top .img {
        width: 500px;
        height: 285px;
        border-radius: 10px;
        overflow: hidden; }
        .section .wrap .box .top .img img {
          display: block;
          width: 100%;
          height: 100%; }
      .section .wrap .box .top .top_r {
        width: 620px; }
        .section .wrap .box .top .top_r .flex {
          display: flex;
          align-items: flex-end;
          gap: 14px; }
          .section .wrap .box .top .top_r .flex .title {
            color: #09244D;
            font-size: 36px;
            font-weight: 600; }
          .section .wrap .box .top .top_r .flex .status {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            padding: 0 4px;
            border-radius: 2px;
            border: 1px solid #0EAD00;
            background: #FFF;
            height: 17px;
            color: #0EAD00;
            font-size: 12px;
            font-weight: 400; }
        .section .wrap .box .top .top_r .flex1 {
          display: flex;
          gap: 40px;
          margin-bottom: 56px; }
          .section .wrap .box .top .top_r .flex1 p {
            color: #09244D;
            font-size: 18px;
            font-weight: 400; }
        .section .wrap .box .top .top_r .labels {
          margin: 4px 0 39px;
          display: flex;
          gap: 10px; }
          .section .wrap .box .top .top_r .labels .label {
            height: 25px;
            display: flex;
            align-items: center;
            padding: 0 6px;
            border-radius: 4px;
            border: 1px solid #E4E4E7;
            background: rgba(247, 247, 248, 0.5);
            color: #666;
            font-size: 12px;
            font-weight: 400; }
        .section .wrap .box .top .top_r .sign_btn {
          width: 120px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 4px;
          background: #0454F4;
          color: #FFF;
          font-size: 16px;
          font-weight: 400;
          transition: 0.6s;
          cursor: pointer; }
          .section .wrap .box .top .top_r .sign_btn:hover {
            opacity: 0.6; }
    .section .wrap .box .bottom {
      margin: 50px 0 0;
      padding: 0 15px; }
      .section .wrap .box .bottom .h5 {
        color: #09244D;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 22px; }
      .section .wrap .box .bottom .content {
        color: rgba(9, 36, 77, 0.8);
        font-size: 18px;
        font-weight: 400;
        line-height: 32px; }

.fix_sign {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s; }
  .fix_sign .fix_shadow {
    background: rgba(4, 17, 44, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer; }
  .fix_sign .fix_box {
    position: relative;
    z-index: 9;
    width: 420px;
    border-radius: 12px;
    background: #FFF;
    padding: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s; }
    .fix_sign .fix_box .h5 {
      color: #0454F4;
      font-size: 20px;
      font-weight: 600;
      border-bottom: 1px solid #d9d9d9;
      margin-bottom: 24px;
      padding: 0 0 20px; }
    .fix_sign .fix_box form .layui-form-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px; }
      .fix_sign .fix_box form .layui-form-item input {
        width: 100%;
        height: 40px;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: #FFF;
        padding: 0 12px; }
    .fix_sign .fix_box form .submit {
      width: 360px;
      height: 40px;
      border-radius: 5px;
      background: #0454F4;
      color: #FFF;
      font-size: 14px;
      font-weight: 400; }
  .fix_sign .fix_success {
    position: absolute;
    width: 420px;
    border-radius: 12px;
    background: #FFF;
    z-index: 3;
    padding: 41px 20px;
    text-align: center;
    opacity: 0;
    transition: 0.3s; }
    .fix_sign .fix_success .h5 {
      color: #0454F4;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 12px; }
    .fix_sign .fix_success .p {
      color: #09244D;
      font-size: 14px;
      font-weight: 400; }
  .fix_sign.on {
    opacity: 1;
    pointer-events: auto; }
    .fix_sign.on .fix_box {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.2s; }
  .fix_sign.success .fix_box {
    opacity: 0;
    pointer-events: none; }
  .fix_sign.success .fix_success {
    opacity: 1; }
