/* 重置默认样式 */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; background-color: #f0f0f0; } .logo-box { position: relative; text-align: center; margin-bottom: 20px; } .logo_img { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; position: relative; top: 80px; left: 0px; margin: 0 auto; border: 3px solid #9e4747; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); } /* 登录框 */ .login_box { width: 500px; height: auto; margin: 40px auto; background-color: white; padding: 40px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } .title { text-align: center; color: #333; margin-bottom: 20px; } .input_box { display: block; width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 3px; font-size: 14px; } a { color: #666; text-decoration: none; margin-top: 10px; } a:hover { color: #333; } .button-container { display: flex; justify-content: space-between; align-items: center; width: 100%; } .button-tip { padding: 10px 20px; font-size: 16px; background-color: #4CAF50; color: white; border: none; cursor: pointer; margin: 0; border-radius: 4px; transition: background-color 0.3s; } .button-tip:hover { background-color: #45a049; }