/* 登录页面样式 */
.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.3rem;
    background-color: #f5e6dc;
}

.login-header {
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-header h1 {
    font-size: 0.36rem;
    color: #333;
    font-weight: 600;
}

.login-form {
    width: 100%;
    max-width: 4rem;
    background: #fff;
    border-radius: 0.16rem;
    padding: 0.4rem 0.3rem;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 0.3rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.1rem;
    font-size: 0.14rem;
    color: #666;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    height: 0.48rem;
    border: 0.01rem solid #ddd;
    border-radius: 0.08rem;
    padding: 0 0.15rem;
    font-size: 0.16rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #ff8a65;
}

.login-btn {
    width: 100%;
    height: 0.48rem;
    background-color: #ff8a65;
    color: #fff;
    font-size: 0.16rem;
    font-weight: 600;
    border-radius: 0.08rem;
    transition: background-color 0.3s;
}

.login-btn:active {
    background-color: #ff7043;
}

/* 微信浏览器提示遮罩 */
.wechat-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.8rem;
}

.wechat-tip {
    text-align: center;
    color: #fff;
}

.tip-arrow {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    animation: arrow-bounce 1.5s ease-in-out infinite;
    text-align: right;
    padding-right: 0.3rem;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.1rem);
    }
}

.tip-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.15rem;
    padding: 0.3rem 0.4rem;
    backdrop-filter: blur(10px);
}

.tip-title {
    font-size: 0.24rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #fff;
}

.tip-text {
    font-size: 0.16rem;
    margin: 0.1rem 0;
    color: rgba(255, 255, 255, 0.9);
}

/* PC端样式优化 */
@media screen and (min-width: 768px) {
    .login-form {
        max-width: 450px;
    }
    
    .login-btn:hover {
        background-color: #ff7043;
        cursor: pointer;
    }
    
    .input-group input:hover {
        border-color: #ff8a65;
    }
}

