.verify-area{
    background-color: #f7f8fa; /* 去掉黑色背景 */
}
.verify-top {
    display: flex;
    justify-content: center;
    align-items: center;
    :is(img) {
        width: 100%;
        height: auto;
    }
}
.verify-container{
      position: absolute;
      top: calc(50%); /* 原50%基础上上移50px */
      left: 50%;
      transform: translate(-50%, -80%);
      color: #000000;
      position:absolute;
      margin: 0 auto;
      max-width: 1600px;
      width: 85%;
      display: block;
      justify-content: center;
      text-align: center;
    :is(h3) {
        font-size: 80px;
    }
    :is(p) {
        font-size: 16px;
        font-weight: 500;
        margin-top: -40px;
    }
}
.verify-code{
     margin-top: 70px !important; /* 强制向下移动50px */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    height: 48px;
    margin-top: 18px;
    justify-content: center;
    padding: 3px;
    position: relative;
    width: 100%;
}
.verify-code input{
    border: none;
    font-size: 14px;
    font-weight: 600;
    background-color: transparent;
    flex: auto;
    height: 100%;
    justify-content: center;
}
.verify-code input:focus {
    border: none; /* 确保获取焦点时没有边框 */
    outline: none; /* 确保获取焦点时没有轮廓 */
}
.verify-code input::placeholder {
    color: #cccccc; /* 设置占位符文本的颜色 */
    font-size: 15px; /* 可选：设置占位符文本的字体大小 */
}
.verify-button{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    width: 464px;
    height: 56px;
    padding: 2px 2px 2px 10px;
    border-radius: 25px;
    :is(button) {
        background-color: #ff6801;
        border-radius: 16px;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        height: 100%;
        width: 92px;
        border: 2px solid #e65c00;
    }
}
.verify-submit:hover{
    background-color: #ff6801;
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #333;
    z-index: 1000;
}
.additional-content {
    position: absolute;
    bottom: calc(30% - 80px);  /* 在原有30%基础上再下移80px */
    left: 50%;
    transform: translateX(50%);
    width: 85%;
    max-width: 1600px;
    text-align: center;
    color: white;
}
/* 新增标题样式 */
.verify-container h4 {
    font-size: 30px;
    color: #545456;
    margin-top: 30px;  /* 控制与上方内容的间距 */
    margin-bottom: 10px;
}

/* 新增段落样式 */
.verify-container .additional-text {
    font-size: 14px;
    color:#545456
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;  /* 水平居中 */
}
/* 标题下移 */
.verify-container h4 {
    transform: translateY(110px);
}

/* 段落下移 */
.verify-container .additional-text {
    transform: translateY(140px);
}