/* 添加备案信息样式 */
.footer-beian {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
    position: relative;
    bottom: 0;
}
.footer-beian a {
    color: #666;
    text-decoration: none;
}
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content-wrap {
    flex: 1;
}

/* 添加圆形图标样式 */
.third-party-login {
    text-align: center;
    margin: 10px 0 15px; /* 减少上下边距 */
}

.other-login-title {
    position: relative;
    text-align: center;
    margin: 12px 0 15px; /* 减少上边距 */
}

.other-login-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px dashed #DDDDDD;
    z-index: 1;
}

.other-login-title span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    font-weight: 500;
    font-size: 16px;
    color: #72747A;
    background-color: #fff;
    z-index: 2;
}

.login-icon-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* 允许图标换行 */
    margin-top: 20px;
}

.login-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px 15px; /* 增加底部间距以防多行 */
}

.login-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.login-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.login-icon:active {
    transform: scale(0.98);
}

.login-icon-label {
    margin-top: 0; /* 调整与图标的间距 */
    font-size: 12px; /* 字体稍小 */
    color: #666;
    text-align: center;
    line-height: 1.4;
}

/* 为不同登录方式指定背景图片 */
.login-icon.sczw {
    background: #f0f0f0 url("/skin/skyfaith/images/logo.svg") center no-repeat;
    background-size: 90%;
}
.login-icon.wechat {
    background: #f0f0f0 url("/portal/images/wx.png") center no-repeat;
    background-size: 90%;
}
.login-icon.alipay {
    background: #f0f0f0 url("/portal/images/h5/icon_alipay.png") center no-repeat;
    background-size: 90%;
}
.login-icon.apple {
    background: #f0f0f0 url("/portal/images/icon_apple.png") center no-repeat;
    background-size: 90%;
}
/* 添加Apple登录图标容器的初始隐藏样式 */
#apple-login-wrapper {
    display: none;
}
