/* CSS Reset*/
        :root {
            --primary-color: #4361ee;
            --primary-light: #4895ef;
            --secondary-color: #3f37c9;
            --dark-color: #1e1e2d;
            --light-color: #f8f9fa;
            --success-color: #4cc9f0;
            --border-radius: 12px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
        }

        body {
            background-image: url(/public/static/common/loginbg/bg05.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            margin: 0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            padding: 20px;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(30, 30, 45, 0.7);
            z-index: 0;
        }

        #mydiv {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 100%;
            max-width: 480px;
            padding: 20px;
            position: relative;
            z-index: 1;
			margin:0;
			height: auto;
        }

        .login-main {
            width: 100%;
            text-align: center;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 40px 35px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .login-main:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .login-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--success-color));
        }

        .layui-tit {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
            letter-spacing: 0.5px;
        }

        .layui-elip {
            color: #6c757d;
            margin-bottom: 30px!im;
            font-size: 22px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .layui-elip::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .login-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
            border-bottom: 1px solid #e9ecef;
            position: relative;
        }

        .login-header div {
            flex: 1;
            text-align: center;
            padding: 12px 10px;
            cursor: pointer;
            font-weight: 500;
            color: #6c757d;
            transition: var(--transition);
            position: relative;
        }

        .login-header div.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        .login-header div.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px 3px 0 0;
        }

        .login-form {
            width: 100%;
        }

        .login-form .layui-form-item {
            margin-bottom: 20px;
            position: relative;
        }

        .layui-input {
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            padding: 12px 15px;
            height: 48px;
            font-size: 15px;
            transition: var(--transition);
        }

        .layui-input:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
        }

        .verify-box {
            display: flex;
            align-items: center;
        }

        .verify-box input {
            flex: 1;
            margin-right: 10px;
        }

        .captcha {
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
            height: 46px;
        }

        .captcha:hover {
            transform: scale(1.03);
        }

        .layui-btn {
            border-radius: 8px;
            height: 48px;
            font-size: 16px;
            font-weight: 600;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }

        .layui-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
            background: linear-gradient(to right, var(--primary-light), var(--primary-color));
        }

        .layui-btn-primary {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            box-shadow: none;
        }

        .layui-btn-primary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
        }

        .layui-border-green {
            border-color: #4cc9f0;
            color: #4cc9f0;
        }

        .layui-border-green:hover {
            background: #feffca;
            color: #fff;
        }

        .layui-form-item a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .layui-form-item a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        .login-other {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }

        .login-other p {
            margin-bottom: 15px;
            font-size: 14px;
            color: #6c757d;
            position: relative;
            display: inline-block;
            padding: 0 10px;
            background: white;
        }

        .login-other img {
            margin: 0 8px;
            width: 44px;
            height: 44px;
            cursor: pointer;
            border-radius: 50%;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .login-other img:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .layui-input-prefix {
            color: #6c757d;
        }

        .layui-row {
            display: flex;
            gap: 0px;
        }

        .layui-col-xs7 {
            flex: 7;
        }

        .layui-col-xs5 {
            flex: 5;
        }

        .countdown {
            text-align: center;
            padding: 12px 5px;
            color: #6c757d;
            font-size: 14px;
        }
		.layui-input-wrap {
			position: relative;
			line-height: 48px;
		}

        @media (max-width: 480px) {
            .login-main {
                padding: 30px 20px;
            }
            
            .layui-tit {
                font-size: 22px;
            }
            
            .layui-elip {
                font-size: 14px;
            }
        }

        /* 添加微妙的动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .login-main {
            animation: fadeIn 0.5s ease-out;
        }

        .login-form .layui-form-item {
            animation: fadeIn 0.5s ease-out;
            animation-fill-mode: both;
        }

        .login-form .layui-form-item:nth-child(1) { animation-delay: 0.1s; }
        .login-form .layui-form-item:nth-child(2) { animation-delay: 0.2s; }
        .login-form .layui-form-item:nth-child(3) { animation-delay: 0.3s; }
        .login-form .layui-form-item:nth-child(4) { animation-delay: 0.4s; }
