.download-area
{
    display: flex;
    flex-direction: column;
    align-items: center;
    translate: 15px 0px;

    width: calc(80% - 2 * 30px);
    max-height: calc(100% - 2 * 30px);
}

.code-redeem
{
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-input
{
    width: calc(80% - 80px - 30px - 1em);
    height: 40px;
    font-size: 16px;
    border-radius: 24px;
    padding: 0px;
    padding-left: 1em;
    background-color: rgba(255, 255, 255, 0.8);
    border: rgba(255, 255, 255, 1) 4px solid;
    box-shadow:
        /* 外部阴影，提供层次感 */
        4px 0px 10px 10px rgba(0, 0, 0, 0.3);
    
}

.download-button
{
    width: 80px;
    margin-left: 30px;
    height: 50px;
    font-size: 18px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    border: rgba(255, 255, 255, 1) 4px solid;
    box-shadow:
        /* 外部阴影，提供层次感 */
        4px 0px 10px 10px rgba(0, 0, 0, 0.3);
    padding: none;
    color: var(--theme-color);
    transition: all var(--animation-duration) ease-in-out;
}

.download-button:hover
{
    translate: -4px -4px;
    box-shadow:
        6px 2px 12px 12px rgba(0, 0, 0, 0.3);
}

.hr-text {
    display: flex; /* 使span居中对齐 */
    align-items: center; /*垂直居中*/
    text-align: center; /* 兼容性，有些浏览器需要这个 */
    font-size: x-large;
    color: white
}
  
.hr-text span {
    padding: 0 1em; /* 设置文字两边的间距 */
    background-color: transparent; /* 设置背景色，遮盖线条 */
    position: relative; /* 创建定位上下文 */
    z-index: 1; /* 确保文字在线条之上 */
}
  
.hr-text::before,
.hr-text::after {
    content: "";
    flex: 1; /* 使线条填充剩余空间 */
    border-bottom: 2px solid white; /* 设置线条样式 */
    margin: 0;
}