         * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #FF9933 0%, #ff6600 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 0px;
        }
        
        .container {
            width: 100%;
            max-width: 640px;
            margin: 0 auto;
            padding: 0px;
        }
        
        .header {
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px; /*圆形四角*/
	margin-bottom: 5px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
        }
        
 .logo {
            height: 60px;
            width: 200px;
            background: url(http://d.fengfeng.cc/images/logo.gif) no-repeat left center;
            background-size: contain;
        }
        
        .user-actions {
            display: flex;
            gap: 15px;
        }
        
        .action-btn {
            padding: 8px 15px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-decoration: none;
            color: #ff6600;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .action-btn:hover {
            background: linear-gradient(135deg, #ff6600 0%, #FF9933 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
        }
       
        .member-login {
            padding: 30px;
            background:#FFF;
            margin-top: 5px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .login-title {
            text-align: center;
            font-size: 24px;
            color: #ff6600;
            margin-bottom: 25px;
            position: relative;
        }
        
        .login-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #ff6600, #FF9933);
            border-radius: 2px;
            margin: 10px auto 0;
        }
        
        .form-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .form-table tr:not(:last-child) {
            margin-bottom: 20px;
        }
        
        .form-table td {
            padding: 12px 0;
            vertical-align: middle;
        }
        
        /* 标签右对齐样式 */
        .form-table .label {
            width: 25%;
            text-align: right;
            padding-right: 15px;
            font-weight: 600;
            color: #555;
            font-size: 16px;
        }
        
        .form-table .input {
            width: 75%;
        }
        
        .input-group {
            position: relative;
        }
        
        .input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
        }
        
        .form-table input[type="text"],
        .form-table input[type="password"] {
            width: 100%;
            padding: 14px 15px 14px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            background: #f9f9f9;
        }
        
        .form-table input[type="text"]:focus,
        .form-table input[type="password"]:focus {
            border-color: #ff9933;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
            outline: none;
        }
        
        .sms-container {
            display: flex;
            gap: 10px;
        }
        
        .sms-input {
            flex: 1;
        }
        
        /* 优化后的按钮样式 */
        .sms-btn {
            background: linear-gradient(135deg, #ff6600 0%, #FF9933 100%);
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
            min-width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
        }
        
        .sms-btn:hover {
            background: linear-gradient(135deg, #e65c00 0%, #e68a33 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
        }
        
        .sms-btn:active {
            transform: translateY(0);
        }
        
        .sms-btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .sms-btn i {
            margin-right: 8px;
        }
        
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            font-size: 15px;
        }
        
        .radio-option input {
            margin-right: 7px;
            width: 18px;
            height: 18px;
            accent-color: #ff6600;
        }
        
        .login-btn {
            background: linear-gradient(135deg, #ff6600 0%, #FF9933 100%);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s;
            display: block;
            width: 100%;
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
            margin-top: 10px;
        }
        
        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
        }
        
        .login-btn:active {
            transform: translateY(0);
        }
        
        .register-area {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #eee;
            text-align: center;
        }
        
        .register-title {
            color: #666;
            margin-bottom: 20px;
            font-size: 16px;
            position: relative;
            display: inline-block;
        }
        
        .register-title::before,
        .register-title::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 40px;
            height: 1px;
            background: #eee;
        }
        
        .register-title::before {
            left: -50px;
        }
        
        .register-title::after {
            right: -50px;
        }
        
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        
        .action-btn {
            flex: 1;
            min-width: 120px;
            max-width: 200px;
            text-align: center;
            padding: 12px 5px;
            border-radius: 6px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
            background: #f5f5f5;
            color: #ff6600;
            border: 1px solid #eee;
            font-weight: 500;
        }
        
        .action-btn:hover {
            background: linear-gradient(135deg, #ff6600 0%, #FF9933 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
            border-color: transparent;
        }
        
        .action-btn i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .footer {
	text-align: center;
	color: #777;
	font-size: 14px;
	background: #f9f9f9;
	border-top: 1px solid #eee;
	border-radius: 10px;
	margin-top: 5px;
	padding-top: 25px;
	padding-right: 0;
	padding-bottom: 25px;
	padding-left: 0;
        }
        
        .footer p {
            margin-bottom: 8px;
        }
        
        .contact {
            color: #ff6600;
            font-weight: 500;
        }
        
        /* 响应式优化 - 重点调整按钮区域 */
        @media (max-width: 768px) {
            .sms-btn {
                min-width: 90px;
                padding: 0 12px;
                font-size: 15px;
            }
            
            .sms-btn i {
                margin-right: 5px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                border-radius: 12px;
            }
            
            .member-login {
                padding: 25px 20px;
            }
            
            .form-table .label {
                width: 25%;
                font-size: 15px;
                padding-right: 10px;
            }
            
            .form-table .input {
                width: 75%;
            }
            
            .form-table input[type="text"],
            .form-table input[type="password"] {
                padding: 13px 13px 13px 40px;
                font-size: 15px;
            }
            
            /* 手机端按钮优化 */
            .sms-container {
                gap: 8px;
            }
            
            .sms-btn {
                min-width: 80px;
                padding: 0 10px;
                font-size: 14px;
            }
            
            .sms-btn i {
                margin-right: 4px;
                font-size: 15px;
            }
            
            .radio-group {
                gap: 10px;
            }
            
            .radio-option {
                font-size: 14px;
            }
            
            .action-btn {
                min-width: 100px;
                font-size: 13px;
                padding: 10px 5px;
            }
        }
        
        @media (max-width: 400px) {
            .form-table .label {
                width: 25%;
            }
            
            .form-table .input {
                width: 75%;
            }
            
            /* 超小屏幕按钮优化 */
            .sms-btn {
                min-width: 70px;
                padding: 0 8px;
                font-size: 13px;
            }
            
            .sms-btn i {
                margin-right: 3px;
                font-size: 14px;
            }
            
            .sms-btn span {
                display: none; /* 在超小屏幕上隐藏"发送"文字 */
            }
            
            .sms-btn i::after {
                content: "发送"; /* 用伪元素显示文字 */
                margin-left: 3px;
                font-style: normal;
                font-size: 13px;
            }
            
            .radio-group {
                flex-direction: column;
                gap: 8px;
            }
        }
        
        /* 优化说明提示 */
        .optimization-note {
            background: #e6f7ff;
            border-left: 4px solid #1890ff;
            padding: 10px 15px;
            margin: 15px 0;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .optimization-note h4 {
            color: #1890ff;
            margin-bottom: 5px;
        }

/* 添加的CSS样式 - 美化发送按钮 */
#sendbutton {
    background: linear-gradient(135deg, #ff6600 0%, #FF9933 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
    height: 100%; /* 使按钮高度与输入框一致 */
}

#sendbutton:hover {
    background: linear-gradient(135deg, #e65c00 0%, #e68a33 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

#sendbutton:active {
    transform: translateY(0);
}

#sendbutton:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 优化短信验证码区域 */
.sms-container {
    display: flex;
    gap: 10px;
}

.sms-input {
    flex: 1;
}



/* 新增当前位置导航样式 */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 5px 10px;
    font-size: 14px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
	border-radius: 10px; /*圆形四角*/
}

.breadcrumb a {
    color: #4a6cf7;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #3a5be0;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #adb5bd;
}


		/* 会员中心内部样式 */
	.main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }
		
        .welcome-card {
            background: #fff;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            margin-bottom: 5px;
        }
        
        .welcome-title {
            color: #ff6600;
            font-size: 18px;
            margin-bottom: 10px;
            border-bottom: 2px solid #ff9933;
            padding-bottom: 5px;
        }
        
        .user-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        
        .info-item {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ff9933;
        }
        
        .info-label {
            font-weight: 600;
            color: #666;
            margin-bottom: 5px;
        }
        
        .info-value {
            font-size: 18px;
            color: #ff6600;
            font-weight: 600;
        }
        
        .panel {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex: 1;
            min-width: 300px;
        }
        
        .panel-header {
            background: linear-gradient(135deg, #ff6600 0%, #FF9933 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 10px 10px 0 0;
            font-size: 18px;
            font-weight: 600;
        }
        
        .panel-body {
            padding: 20px;
        }
        
        .menu-item {
            display: flex;
            align-items: center;
            padding: 15px 10px;
            border-bottom: 1px solid #eee;
            text-decoration: none;
            color: #555;
            transition: all 0.3s;
        }
        
        .menu-item:hover {
            background: #fff8f0;
            color: #ff6600;
            transform: translateX(5px);
        }
        
        .menu-item i {
            width: 30px;
            font-size: 18px;
            color: #ff9933;
        }
        
        .menu-item span {
            flex: 1;
        }
        
        .menu-item .arrow {
            color: #aaa;
        }
        


 .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
            border: 1px solid #ffe0c2;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }
        
        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: #ff6600;
            margin: 10px 0;
        }
        
        .stat-label {
            color: #777;
            font-size: 14px;
        }

   
        .upgrade-btn {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #ff6600 0%, #FF9933 100%);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            margin-top: 15px;
            box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
        }
        
        .upgrade-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
        }
        


/* 响应式调整 */
@media (max-width: 576px) {
    #sendbutton {
        min-width: 70px;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .sms-container {
        gap: 8px;
    }
}

@media (max-width: 400px) {
    #sendbutton {
        min-width: 60px;
        padding: 6px 10px;
        font-size: 13px;
    }
}


