         * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --primary: #FF8C00;
            --primary-light: #FFA54F;
            --primary-dark: #E67300;
            --secondary: #FFD700;
            --text: #333;
            --text-light: #666;
            --bg: #FFF9F0;
            --border: #FF8C00; /* 加深边框颜色 */
            --success: #4CAF50;
            --error: #F44336;
        }

        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;
        }




/* 新增当前位置导航样式 */
.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;
}


        
        .zform {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin: 5px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
        }
        
        .tougao dl {
            margin-bottom: 15px;
        }
        
        .tougao dt {
            margin-bottom: 15px;
            position: relative;
        }
        
        .tougao dt span {
            display: block;
            font-weight: bold;
            margin-bottom: 8px;
            color: var(--text);
            font-size: 16px;
        }
        
        .tougao dt span:before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            margin-right: 8px;
            vertical-align: middle;
        }
        
        .tougaoziti {
            width: 100%;
            padding: 14px 15px;
            border: 2px solid var(--border); /* 使用加深的边框颜色 */
            border-radius: 12px;
            font-size: 16px;
            background: #FFFBF5;
            transition: all 0.3s;
        }
        
        .tougaoziti:focus {
            border-color: var(--primary-dark);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
            background: white;
        }
        
        .tougaoziti[disabled] {
            background: #f5f5f5;
            color: #888;
            border-color: #ccc;
        }
        

.tougaoziti::placeholder {
    font-size: 14px; /* 可根据需要调整大小，例如12px、13px等 */
    color: #999; /* 可选：调整提示文字颜色，使其更淡 */
}


        #smalltext {
            height: 150px;
            resize: vertical;
        }
        
        .biaoti_ts {
            background: #FFF5E6;
            padding: 10px 15px;
            border-radius: 10px;
            font-size: 13px;
            color: var(--text-light);
            margin: 10px 0 20px;
            border-left: 4px solid var(--primary);
        }

        
        .fabu_lanmu {
            text-align: center;
            margin-top: 25px;
        }
        
        /* 提交按钮样式 - 改为橙色 */
        input[type="submit"] {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white !important;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
            transition: all 0.3s;
            margin: 0 10px;
            width: 45%;
            display: inline-block;
        }
        
        input[type="submit"]:hover,
        input[type="submit"]:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 140, 0, 0.4);
        }
        
        input[type="reset"] {
            background: linear-gradient(135deg, #999, #777);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            margin: 0 10px;
            width: 45%;
            display: inline-block;
        }
        
        .footer {
	color: white;
	text-align: center;
	padding: 20px 15px;
	border-radius: 20px 20px 0 0;
	margin-top: 5px;
	font-size: 14px;
 background: linear-gradient(135deg, var(--primary), var(--primary-dark));	background-position: 135;
        }
        
        .footer p {
            margin: 8px 0;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }
        
        .decoration {
            position: absolute;
            z-index: 0;
            opacity: 0.1;
        }
        
        .decoration-1 {
            top: 10px;
            right: 20px;
            font-size: 80px;
            color: var(--primary);
        }
        
        .decoration-2 {
            bottom: 50px;
            left: 10px;
            font-size: 60px;
            color: var(--primary);
            transform: rotate(-20deg);
        }
        
        .required:after {
            content: " *";
            color: var(--error);
        }
        
        .user-info {
            background: #FFF5E6;
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
            color: var(--primary-dark);
            border: 1px dashed var(--primary);
        }
        
        .user-info i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        .character-count {
            text-align: right;
            font-size: 14px;
            color: var(--text-light);
            margin-top: 5px;
        }
        
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

/* 表单组基础样式 */
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

/* 输入框样式（橙色边框） */
.tougaoziti {
    padding: 12px 15px;
    border: 1px solid #FF7A00; /* 橙色边框 */
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.tougaoziti:focus {
    border-color: #FF9533; /* 聚焦时深橙色 */
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 117, 0, 0.2); /* 橙色阴影 */
}

/* 验证码区域布局 */
.verify-group .input-row {
    display: flex;
    gap: 12px;
}

.verify-input {
    flex: 1;
    max-width: 180px;
}

/* 发送按钮（橙色风格） */
.send-btn {
    background-color: #FF7A00; /* 橙色背景 */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    height: 48px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #FF9533; /* 悬停时深橙色 */
}

.send-btn:active {
    background-color: #E66B00; /* 点击时更深橙色 */
}

/* 响应式布局（移动端优化） */
@media (max-width: 640px) {
    .verify-group .input-row {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .verify-input {
        max-width: 60%;
        flex: 0 0 60%;
    }
    
    .send-btn {
        max-width: 35%;
        flex: 0 0 35%;
    }
}

        @media (max-width: 480px) {
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            
            input[type="submit"],
            input[type="reset"] {
                width: 100%;
                margin: 10px 0;
            }
            
            

            .tougaoziti {
                padding: 12px;
            }
        }




/* 性别选择样式 - 移动端优化 */
.sex-radio-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}
.sex-radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    flex: 1;
    max-width: 80px;
    justify-content: center;
    transition: all 0.2s;
}
.sex-radio-option input {
    margin-right: 5px;
}
.sex-radio-option:hover {
    border-color: #999;
    background-color: #f8f8f8;
}
.sex-radio-option input:checked + span {
    color: #007bff;
    font-weight: bold;
    border-bottom: 2px solid #007bff;
}


/* 禁用输入框样式 */
.disabled-input {
    background-color: #f5f5f5;
    color: #999;
}


/* 待审核提示区域样式 */
.pending-reminder {
    background-color: #fff8e1; /* 浅黄底色，提示感 */
    border: 1px solid #ffe082; /* 边框色 */
    border-radius: 8px; /* 圆角 */
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 轻微阴影 */
    overflow: hidden; /* 清除浮动 */
}

/* 图标样式 */
.reminder-icon {
    float: left;
    font-size: 22px;
    color: #ff9800; /* 橙色图标 */
    margin-right: 10px;
    margin-top: 3px;
}

/* 内容区域 */
.reminder-content {
    overflow: hidden; /* 避免受图标浮动影响 */
}

/* 标题样式 */
.reminder-title {
    color: #e65100; /* 深橙标题 */
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ffe082;
}

/* 普通文本 */
.reminder-content p {
    color: #5d4037; /* 深棕文字，易读 */
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0;
}

/* 高亮文本（客服号） */
.highlight {
    color: #e65100;
    font-weight: bold;
    text-decoration: underline;
}

/* 备注信息 */
.note {
    color: #607d8b; /* 蓝灰色备注 */
    font-size: 13px;
    padding: 5px 0;
    border-top: 1px dashed #ffe082;
    margin-top: 10px;
}

/* 链接按钮区域 */
.reminder-links {
    margin-top: 15px;
    display: flex;
    gap: 10px; /* 按钮间距 */
}

/* 按钮样式 */
.reminder-btn {
    flex: 1; /* 按钮平分宽度 */
    text-align: center;
    background-color: #ff9800;
    color: white;
    padding: 8px 0;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.reminder-btn:hover {
    background-color: #f57c00; /* hover效果 */
}

.reminder-btn:nth-child(2) {
    background-color: #4caf50; /* 第二个按钮用绿色区分 */
}

.reminder-btn:nth-child(2):hover {
    background-color: #388e3c;
}