
/* 苹方-简 常规体
　　font-family: PingFangSC-Regular, sans-serif;
　　苹方-简 极细体
　　font-family: PingFangSC-Ultralight, sans-serif;
　　苹方-简 细体
　　font-family: PingFangSC-Light, sans-serif;
　　苹方-简 纤细体
　　font-family: PingFangSC-Thin, sans-serif;
　　苹方-简 中黑体
　　font-family: PingFangSC-Medium, sans-serif;
　　苹方-简 中粗体
　　font-family: PingFangSC-Semibold, sans-serif; */


html {
    min-height: 100vh;
    max-width: 750px;
    padding: 0;
    margin: 0 auto;
    font-size: 16px;
    background-color: #ffffff !important;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}
ul,li{
    list-style: none;
}

.tabbar {
    height: 4.75rem;
    max-width: 750px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #ffffff !important;
    box-sizing: border-box;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
}

.tabbar li {
    width: 25%;
    float: left;
    color: #333333 !important;
    font-size: .75rem;
    text-align: center;
    /* padding-top: 2rem; */
}
.tabbar li a{
    color: #333333 !important;
}
.tabbar li a .active{
    color:#007AFF !important;
}
/* .tabbar li:first-child{
    background: url('../img/home_a.png') no-repeat top center;
    background-size: 1.5rem;
} */
.tabbar li img{
    width: 1.5rem;
}

/* 密码显示/隐藏眼睛按钮 */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: url('../img/eye-slash.png') no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
    opacity: 0.6;
}
.password-toggle:hover {
    opacity: 1;
}

/* 开屏动画样式 */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff !important;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo {
    text-align: center;
}

.splash-logo img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
}

.splash-logo .logo-placeholder {
    width: 200px;
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #333;
    border-radius: 10px;
}

.splash-skip {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #333;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10000;
}

.splash-skip:hover {
    background-color: rgba(0, 0, 0, 0.3);
}