* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.app {
    width: 100vw;
    min-height: 100vh;
    max-width: 600px;
    margin: auto;
    padding-bottom: 5%;
    background: url(../image/BG.jpg) no-repeat center center;
    background-size: 100% 100%;
    padding-top: 39.5vh
}

.app .content {
    padding: 0% 2%
}

.app .content .info {
    width: 100%;
    background: url(../image/kuang.png) no-repeat center center;
    background-size: 100% 100%;
    padding: 3% 0% 6%
}

.app .content .info .info-text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #c2c2c2
}

.app .content .info .info-input {
    margin-top: 3%;
    display: flex;
    justify-content: center
}

.app .content .info .info-input #stock-input {
    width: 80%;
    height: 45px;
    border-radius: 20px;
    border: 1px solid #b5b5b5;
    padding-left: 10px;
    background-color: #eee;
    font-size: 14px;
    color: #333;
    text-align: center
}
/* 
.app .content .info .info-btn {
    width: 83%;
    height: 50px;
     background: url(../image/anniu.png) no-repeat center center; 
    background-size: 100% 100%;
    margin: 3% auto auto;
    color: #fff;
    font-size: 18px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-weight: 500;
    animation: identifier-7a726851 2s linear infinite
} */

.app .content .desc {
    width: 100%;
    height: 100%;
    margin-top: 3%
}

.app .content .desc .desc-title {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #187ac5;
    font-weight: 600
}

.app .content .desc .desc-normal {
    margin-top: 4%;
    font-size: 16px;
    color: #596cb4;
    line-height: 1.5;
    padding: 0 10px;
    text-align: center;
    font-weight: 500
}

.app .content .translate {
    width: 100%;
    height: 235px;
    background: url(../image/FX-kuang.png) no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6%
}

.app .content .translate .loading {
    width: 64px;
    height: 64px;
    background-color: #e7eeff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.app .content .translate .loading .loading-icon {
    animation: loading-7a726851 1.5s linear infinite;
    width: 32px;
    height: 32px
}

.app .content .translate .loading-text {
    margin-top: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: center
}

.app .content .translate .loading-result {
    margin-top: 12px;
    font-size: 12px;
    color: #c2c2c2;
    font-weight: 500;
    text-align: center
}

.app .content .translate .loading-progress {
    width: 70%;
    height: 10px;
    background-color: #f3f4f6;
    border-radius: 10px;
    margin-top: 12px
}

.app .content .translate .loading-progress .inner {
    width: 0%;
    height: 100%;
    background-color: #114dd4;
    border-radius: 10px;
    animation: progress-7a726851 1.5s linear forwards
}

.app .content .translateMiddle,.app .content .result {
    display: none
}

.app .content .result .translate {
    height: inherit;
    min-height: 200px;
    padding-bottom: 5%
}

.app .content .result .result-text {
    font-size: 18px;
    color: #187ac5;
    font-weight: 600;
    padding: 0 6%;
    text-align: center
}

.app .content .result .normal-text {
    margin-top: 12px;
    font-size: 16px;
    color: #596cb4;
    line-height: 1.5;
    padding: 0 8%;
    text-align: center;
    font-weight: 500
}

/* .app .content .result .info-btn {
    width: 98%;
    height: 50px;
    background: url(../image/anniu.png) no-repeat center center;
    background-size: 100% 100%;
    margin: 3% auto auto;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-weight: 500;
    animation: identifier-7a726851 2s linear infinite
} */

.app .content .result .gray {
    font-weight: 500;
    text-align: center;
    background: #eee;
    cursor: not-allowed;
    border-radius: 30px;
    color: #333
}

@keyframes loading-7a726851 {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes progress-7a726851 {
    0% {
        width: 0%
    }

    to {
        width: 100%
    }
}

@keyframes identifier-7a726851 {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

@media (max-width: 375px) {
    .desc-normal {
        font-size:15px!important
    }
}

  .footer-container {
    max-width: 600px;
    margin:0 auto;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
  }
  
  .footer-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .footer-menu a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-menu a:hover {
    text-decoration: underline;
  }
  
  .disclaimer {
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    font-size: 12px;
    color: #ccc;
    text-align: left;
    line-height: 1.6;
  }
  
  .disclaimer p {
    margin: 5px 0;
  }

    /* 弹窗样式 */
  .modal {
    display: none;
    position: fixed;
    z-index: 2147483647;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
  }

  @media screen and (max-width: 768px) {
    .modal-content {
      width: 90%;
      margin: 20% auto;
    }
  }

  .modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
  }

  .modal-close:hover,
  .modal-close:focus {
    color: #000;
  }

  .modal-header {
    margin-top: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  .modal-header h2 {
    margin: 0;
    color: #071e75;
  }

  .modal-body {
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .modal-body p {
    margin: 10px 0;
  }

  .modal-footer {
    text-align: center;
    padding: 15px 0;
  }

  .modal-btn {
    background: linear-gradient(to right, #071e75, #0046a5);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
  }

  .modal-btn:hover {
    opacity: 0.9;
  }

  