/* 打卡成功提示窗口样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-bg {
    max-width: 100%;
    max-height: 90vh;
}

.close-button {
    position: absolute;
    bottom: 20%;
    background: #f39800;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-button:hover {
    background: #e08700;
}

/* 登录模态框样式 */
.login-modal-content {
    position: relative;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 80%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.login-modal-content h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 16px;
    color: #333;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.verification-code-group {
    position: relative;
}

.send-code-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #00c2d2;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 14px;
    height: 41px;
}

.send-code-btn:hover {
    background: #00a8b7;
}

.send-code-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-error {
    color: #f00;
    font-size: 14px;
    min-height: 20px;
}

.login-submit-btn {
    background: #f39800;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-submit-btn:hover {
    background: #e08700;
}

.close-login-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.close-login-button:hover {
    color: #333;
}

.action-button {
  text-align: center;
  margin: 40px auto;
}
.punch-card {
  background: url('//edu.yunnan.cn/ylszjydt/css/btn.png') no-repeat center center;
  background-size: 100% 100%;
  color: #0e8cdb;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.punch-card:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
    
    .login-modal-content {
        width: 80%;
        padding: 20px;
    }
    
    .close-button {
        padding: 8px 20px;
        font-size: 1em;
    }
}<!--ecms sync check [sync_thread_id="3bcee7cc5a424330844ab778a62d31c1" sync_date="2025-07-14 11:22:16" check_sum="3bcee7cc5a424330844ab778a62d31c1]-->