* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;

}


/* 顶部导航 */
.topBar {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.right {
    display: flex;
}

.li {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 18px;
    height: 18px;
}

/* 标题 */
.pageTitle {
    width: 100%;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #d6d6d6;
    z-index: 99990;
    background-color: #ffffff;
}

.pageTitle .rows {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-weight: 600;
    opacity: 0.88;
    font-size: 19px;
    transition: color .5s cubic-bezier(.28, .11, .32, 1);
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    background: #ffffff;
}

.arrow-down {
    width: 22px;
    height: 20px;
}

.tablist {
    width: 91%;
    margin: 0 auto;
    padding: 0px 24px 0;
    transition-delay: .2s, 0s;
    max-height: 0;
    opacity: 0;
    /* overflow: hidden; */
    background: #ffffff;

    transition: max-height .5s cubic-bezier(.23, 1, .32, 1), opacity .7s cubic-bezier(.23, 1, .32, 1) .2s;
}

.tablist .row {
    width: 100%;
    height: 44px;
    line-height: 44px;
    border-top: 1px solid #d7d7d7;
    font-size: 14px;
    color: #000000;
}

.tablist .colorGrey {
    color: #999999;
    border-top: none;
}

.pageTitle.active .tablist {
    padding: 4px 24px 24px;
    max-height: 158px;
    opacity: 1;
    display: block;

}

.pageTitle.active .arrow-down {
    transform: rotate(180deg);
    transition: transform .3s ease;
}

/* 蒙层 */
.mark {
    width: 100%;
    min-height: 910px;
    position: fixed;
    top: 256px;
    background-color: rgba(255, 255, 255, 0.8);
    /* 使用半透明背景 */
    backdrop-filter: blur(8px);
    /* 添加8px的高斯模糊 */
    -webkit-backdrop-filter: blur(8px);
    /* 兼容Safari */
    opacity: 0;
    z-index: -1;
}

.mark.active {
    opacity: 1;
    z-index: 99999;
}

.successTips {
    height: 680px;
    line-height: 680px;
    font-size: 30px;
    display: none;
}

.loadingStatus {
    height: 680px;
    line-height: 680px;
    font-size: 30px;
    display: block;
}

/* 中间主要内容 */
.content {
    width: 100%;
    min-height: 910px;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input::-ms-reveal {
    display: none;
}

/* 圆圈特效 */
.content-container {
    width: 100%;
    height: 264px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apple-logo-container {
    width: 178px;
    height: 178px;
    background-image: url("../images/roundBg.png");
    background-size: 100% 100%;
    position: relative;
}

.content .title {
    color: #494949;
    margin: 5px 0 13px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .009em;
}

.content .littleTitle {
    color: #494949;
    margin: 5px 0 13px;
    font-size: 17px;
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 30%;
}

/* loading旋转 */
.spinning {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.containerDouble {
    height: 650px;
    background-color: white;
    padding: 8px 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.containerDouble h1 {
    font-size: 24px;
    color: #494949;
    margin-bottom: 20px;
}

.containerDouble-code {
    margin-bottom: 20px;
    position: relative;
    z-index: 99996;

}

.code-container {
    display: flex;
    justify-content: center;
}

.code-box {
    width: 42px;
    height: 42px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 17px;
}

/* 错误状态样式 */
.code-box.error {
    border-color: #ff0000;
    background-color: #ffeeee;
}

.containerDouble.active {
    border-color: #007aff;
}

.containerDouble p {
    color: #333;
    margin-bottom: 10px;
}

.containerDouble a {
    color: #007aff;
    text-decoration: none;
    margin-top: 5px;
    display: block;
    font-size: 14px;

}

.containerDouble a:hover {
    text-decoration: underline;
}

.containerDouble-errorMsg {
    color: #E30000;
    font-size: 12px;
    display: flex;
    align-items: center;
    padding: 0 17px;
    margin-top: 8px;
    opacity: 0;
    height: 0;

}

.containerDouble-errorMsg.active {
    opacity: 1;
    height: auto;
}

.containerDouble-errorMsg img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.containerDouble-tips {
    opacity: 1;
}

.containerDouble-tips.active {
    opacity: 0;
    height: 0;
}

.containerDouble-loading {
    color: #494949;
    font-size: 14px;
    opacity: 0;

}

.containerDouble-loading.active {
    opacity: 1;
}

/* 记住我的账号 */
.si-remember-password {
    display: inline-block;
    position: relative;
    margin: 16px 0 16px;
    color: #494949;
    font-size: 17px;
}

input[type="checkbox"]:focus {
    outline: none;
    /* 取消默认的聚焦边框 */
}

.form-checkbox {
    display: flex;
}

.si-container-footer {
    margin-top: 20px;
}


/* 底部 */
.pageFooter {
    width: 100%;
    height: 137px;
    background-color: #f5f5f7;
    /* padding: 0 16px; */
    padding: 17px 16px 21px;
}

.row {
    padding-bottom: 10px;
    font-size: 12px;
    color: #6E6E73;
}

.ac-gf-footer-legal-links {
    display: flex;
}

.ac-gf-footer-legal-link {
    font-size: 12px;
    color: #424245;
    border-right: 1px solid #d2d2d7;
    margin-right: 7px;
    padding-right: 10px;
    display: inline-block;
    margin-top: 5px;
    white-space: nowrap;

}

.ac-gf-footer-legal-link:last-child {
    margin-right: 0;
    border-right: none;
}