@charset "utf-8";
/* 贵州信息港会员中心2020-6-16 */
:root {
--primary-color: #4FB4DE;
--secondary-color: #C9F1FF;
--text-color: #333;
--border-color: #dee2e6;
--hover-color: #3a9cc4;
--shadow: 0 2px 15px rgba(0,0,0,0.05);
--menu-bg: #ffffff;
--menu-hover: #f8f9fa;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
img {
  border: 0;
  display: block
}
ul, li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
.clear {
  clear: both;
  width: 100%;
  overflow: hidden;
}
.w1200 {
  width: 1200px;
  margin: auto;
}
body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background-color: #f8f9fa;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
}
a {
    text-decoration: none;
    color: #002280;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--primary-color);
}
/* 布局容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 头部样式 */
header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
}
.user-logo {
    width: 350px;
    height: 70px;
    background: url(../images/logo_uc.png) no-repeat;
    background-size: contain;
    background-position: left center;
    flex-shrink: 0;
}
.user-details {
    text-align: right;
    font-size: 14px;
    color: #838383;
    flex: 1;
    min-width: 300px;
}
.username {
    margin-bottom: 5px;
    font-size: 12px;
}
.user-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.quick-link {
    color: #002280;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.quick-link:hover {
    color: var(--primary-color);
}
/* 快速导航栏 */
.quick-links {
    background: #f67c15;
    color: #FFFFFF;
    padding: 8px 5px;
}
.quick-links-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.quick-links strong {
    margin-right: 5px;
    font-weight: 600;
}
.quick-links a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}
.quick-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
/* 面包屑导航 */
.u-wz {
    margin: 10px 0px; font-size: 12px; color: #B7B7B7;
}
.u-wz a{ color: #B7B7B7;}
.u-wz a:hover{ color: #838383;}
.breadcrumb {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}
.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
/* 主内容布局 */
.main-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
}
/* 侧边菜单样式 */
.sidebar {
    background: var(--menu-bg);
    border-radius: 5px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}
.menu-section {
    border-bottom: 1px solid #f0f0f0;
}
.menu-header {
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    user-select: none;
}
.menu-header:hover {
    background: var(--hover-color);
}
.menu-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}
.menu-header.active .menu-icon {
    transform: rotate(90deg);
}
.menu-content {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.3s ease-out;
}
.menu-content.active {
    max-height: 1000px;
}
.menu-item {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}
.menu-item:hover {
    background: var(--menu-hover);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}
.menu-item:before {
    content: "•";
    position: absolute;
    left: 25px;
    color: var(--primary-color);
}
/* 内容区域 */
.user-content {
    background: white;
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 0px;
    width: 100%;
    overflow-x: auto;
}
.user-center{ padding: 20px;}
.user-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ededed;
}
/* 信息网格布局 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 5px;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
}
.info-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}
.info-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}
/* 快速操作网格 */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
	margin-top:15px;
}
.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}
.action-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}
/* 投稿菜单样式 */
.tougao-menu {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.contribute-toggle {
    background: #28a745;
    color: white;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contribute-toggle:hover {
    background: #218838;
}
.contribute-toggle .toggle-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.contribute-toggle.active .toggle-icon {
    transform: rotate(180deg);
}
.contribute-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    border-radius: 5px;
    transition: max-height 0.3s ease-out;
    padding: 0;
}
.contribute-menu.active {
    max-height: 500px;
}
.tougao-link {
    display: flex;
    height: auto;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    flex: 1 1 calc(25% - 15px);
}
.tougao-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.tg-gl, .tg-fb {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tg-gl {
    background-color: #2390ad;
    color: white;
}
.tg-fb {
    background-color: #23b0f9;
    color: white;
}
.tg-gl a, .tg-fb a {
    color: inherit;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    height: 100%;
}
.tg-gl a:hover, .tg-fb a:hover {
    text-decoration: underline;
}
.tougao-link * {
    box-sizing: border-box;
}
/* 移动端菜单切换按钮 */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: white;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
    justify-content: space-between;
    align-items: center;
}
.mobile-menu-toggle:hover {
    background: var(--hover-color);
}
.mobile-menu-toggle .toggle-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.mobile-menu-toggle.active .toggle-icon {
    transform: rotate(180deg);
}
/* 页脚样式 */
.footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 12px;
    margin-top: 15px;
}



/*---------------登录页面-------------*/
.uc-login {
    width:100%;
    overflow: hidden;
    border-radius: 5px;
}

.login-title {
    background: linear-gradient(135deg, #0292e8, #f2b500);
    color: white;
    padding: 8px 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.login-box {
    padding: 30px;
}

.login-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-box li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.login-box li.input-hidden {
    display: none;
}

.login-box li:not(.input-hidden):not(.login-time)>*:first-child {
    min-width: 80px;
    margin-right: 15px;
    font-weight: 500;
    color: #555;
    flex-shrink: 0;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    flex: 1;
    max-width: 280px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border-color: #0292e8;
    box-shadow: 0 0 0 3px rgba(2, 146, 232, 0.2);
    outline: none;
}

.login-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.login-time > span:first-child {
    margin-right: 10px;
    margin-bottom: 0;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.login-time label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
}

.login-time input[type="radio"] {
    margin-right: 5px;
}

.login-btn {
    padding: 20px 30px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.login-btn input[type="submit"],
.login-btn input[type="button"] {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 5px;
}

.login-btn input[type="submit"] {
    background: linear-gradient(135deg, #1fa6f6, #0291e7);
    color: white;
}

.login-btn input[type="button"] {
    background: linear-gradient(135deg, #f2f2f2, #e2e2e2);
    color: #555;
    border: 1px solid #ddd;
}

.login-btn input[type="submit"]:hover {
    background: linear-gradient(135deg, #0291e7, #037cd6);
    transform: translateY(-1px);
}

.login-btn input[type="button"]:hover {
    background: #e9ecef;
    border-color: #0292e8;
    color: #0292e8;
}

#loginshowkey a,
.login-box a {
    color: #0292e8;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

#loginshowkey a:hover,
.login-box a:hover {
    text-decoration: underline;
}
/*---------------注册页面-------------*/
.uc-register {
	width: 100%;
	overflow: hidden;
	border-radius: 5px;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.register-title {
	background: linear-gradient(135deg, #0292e8, #f2b500);
	color: white;
	padding: 8px 15px;
	font-size: 1.3rem;
	font-weight: 600;
	text-align: center;
}

.register-box {
	padding: 30px 30px 0px 30px;
}

.register-box form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.register-section {
	margin-bottom: 10px;
}

.register-section-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
}

.register-field {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.register-field label {
	min-width: 120px;
	margin-right: 15px;
	font-weight: 500;
	color: #555;
	flex-shrink: 0;
}

.register-field input[type="text"],
.register-field input[type="password"],
.register-field input[type="date"],
.register-field select {
	flex: 1;
	max-width: 400px;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 0.95rem;
	transition: all 0.3s;
}

.register-field input[type="text"]:focus,
.register-field input[type="password"]:focus,
.register-field input[type="date"]:focus,
.register-field select:focus {
	border-color: #0292e8;
	box-shadow: 0 0 0 3px rgba(2, 146, 232, 0.2);
	outline: none;
}

.required-star {
	color: #e74c3c;
	margin-left: 5px;
}

.register-btn {
	padding: 15px 20px;
	text-align: center;
	border-top: 1px solid #eee;
}

.register-btn input[type="submit"],
.register-btn input[type="button"] {
	padding: 12px 30px;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	margin: 0 5px;
}

.register-btn input[type="submit"] {
	background: linear-gradient(135deg, #1fa6f6, #0291e7);
	color: white;
}

.register-btn input[type="button"] {
	background: linear-gradient(135deg, #f2f2f2, #e2e2e2);
	color: #555;
	border: 1px solid #ddd;
}

.register-btn input[type="submit"]:hover {
	background: linear-gradient(135deg, #0291e7, #037cd6);
	transform: translateY(-1px);
}

.register-btn input[type="button"]:hover {
	background: #e9ecef;
	border-color: #0292e8;
	color: #0292e8;
}

.register-note {
	font-size: 0.85rem;
	color: #777;
	margin-top: 10px;
	padding: 0 30px 20px;
}

.question-hint {
	font-size: 0.85rem;
	color: #666;
	margin-top: 5px;
}

#error-message {
	color: #e74c3c;
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

#regshowkey a {
	color: #0292e8;
	text-decoration: none;
	font-size: 0.9rem;
	white-space: nowrap;
}

#regshowkey a:hover {
	text-decoration: underline;
}

/*----------------修改会员信息-----------------*/
	.user-info-box {
		width: 100%;
		padding: 20px;
		overflow: hidden;
	}

	.info-header {
		background: linear-gradient(135deg, #0292e8, #f2b500);
		color: white;
		padding: 8px 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.info-title {
		font-size: 1rem;
		font-weight: 600;
	}

	.info-actions {
		display: flex;
		gap: 15px;
	}

	.info-actions a {
		color: white;
		text-decoration: none;
		font-size: 0.9rem;
		white-space: nowrap;
	}

	.info-actions a:hover {
		text-decoration: underline;
	}

	/* 表单内容区域 */
	.info-content {
		padding: 0px;
	}

	/* 表单卡片样式 */
	.form-card {
		margin-bottom: 30px;
		border: 1px solid #eee;
		overflow: hidden;
	}

	.card-header {
		background: #f8f9fa;
		padding: 12px 20px;
		font-weight: 600;
		border-bottom: 1px solid #eee;
		color: #555;
	}

	.card-body {
		padding: 20px;
	}

	/* 表单网格布局 */
	.form-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 20px;
		margin-bottom: 20px;
	}
	.form-group.full-width {
		grid-column: 1 / -1;
	}
	/*表单变灰失去焦点*/
	input[readonly] {
	  background-color: #f5f5f5;
	  color: #999;
	  cursor: not-allowed;
	}
	input[type="date"].form-control[readonly] {
		-webkit-appearance: none;
		appearance: none;
		background-color: #f5f5f5;
		pointer-events: none;
	}

	input[type="date"].form-control[readonly]::-webkit-calendar-picker-indicator {
		display: none !important;
	}

	input[type="date"].form-control[readonly]::-webkit-inner-spin-button,
	input[type="date"].form-control[readonly]::-webkit-clear-button {
		-webkit-appearance: none;
		appearance: none;
		margin: 0;
		display: none;
	}
	.input-ts { 
	  color: #ED0003; 
	  font-size: 12px;
	}

	select[readonly] {
		background-color: #f5f5f5;
		color: #999;
		cursor: not-allowed;
		pointer-events: none;
		border-color: #ddd;
	}

	select[readonly]:focus {
		outline: none;
		box-shadow: none;
	}
	.readonly-field {
		padding: 12px;
		background-color: #f9f9f9;
		border: 1px solid #ddd;
		border-radius: 4px;
	}

	.readonly-field a {
		color: #0066cc;
		text-decoration: none;
	}

	.readonly-field a:hover {
		text-decoration: underline;
	}
	/* 表单组样式 */
	.form-group {
		display: flex;
		flex-direction: column;
	}

	.form-group label {
		margin-bottom: 8px;
		font-weight: 500;
		color: #555;
	}

	.form-control {
		padding: 12px 15px;
		border: 1px solid #ddd;
		border-radius: 6px;
		font-size: 0.95rem;
		transition: all 0.3s;
	}

	.form-control:focus {
		border-color: #0292e8;
		box-shadow: 0 0 0 3px rgba(2, 146, 232, 0.2);
		outline: none;
	}

	/* 带单位的输入框 */
	.form-unit {
		position: relative;
		display: flex;
		align-items: center;
	}

	.form-unit .form-control {
		flex: 1;
		padding-right: 60px;
	}

	.unit-text {
		position: absolute;
		right: 15px;
		color: #777;
		font-size: 0.9rem;
	}

	/* 错误消息样式 */
	.error-message {
		color: #e74c3c;
		font-size: 0.85rem;
		margin-top: 5px;
		display: none;
	}

	.form-submit {
		padding: 20px 0;
		text-align: center;
		border-top: 1px solid #eee;
	}

	.form-submit input[type="submit"] {
		padding: 12px 30px;
		background: linear-gradient(135deg, #1fa6f6, #0291e7);
		color: white;
		border: none;
		border-radius: 6px;
		font-size: 1rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s;
	}

	.form-submit input[type="submit"]:hover {
		background: linear-gradient(135deg, #0291e7, #037cd6);
		transform: translateY(-1px);
	}

	.form-submit input[type="reset"] {
		padding: 12px 30px;
		background: linear-gradient(135deg, #f2f2f2, #e2e2e2);
		color: #666;
		border: none;
		border-radius: 6px;
		font-size: 1rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s;
	}

/*------用户头像修改------*/
.form-grid-dan {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

/* 头像预览区域 */
.avatar-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    border: 2px dashed #ddd;
}

.avatar-preview img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.avatar-preview-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* 表单组样式优化 */
.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #0292e8;
    box-shadow: 0 0 0 3px rgba(2, 146, 232, 0.2);
    outline: none;
}

/* 文件上传区域特殊样式 */
.file-upload-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.file-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.file-input-wrapper input[type="file"] {
    flex: 1;
    min-width: 200px;
}

.file-input-wrapper input[type="submit"] {
    background: linear-gradient(135deg, #1fa6f6, #0291e7);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.file-input-wrapper input[type="submit"]:hover {
    background: linear-gradient(135deg, #0291e7, #037cd6);
    transform: translateY(-1px);
}

/* 说明文字样式优化 */
.upload-instructions {
    background: #fff8e1;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}

.upload-instructions .input-ts {
    color: #e67e22;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.upload-instructions b {
    color: #d35400;
    font-weight: 600;
}


/* -----帐号状态--------- */
.account-status-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    transition: background-color 0.3s ease;
}

.status-item:hover {
    background: #f8f9fa;
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    min-width: 120px;
    font-weight: 500;
    color: #555;
    flex-shrink: 0;
}

.status-value {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
}

.status-action {
    margin-left: 10px;
}

.status-action a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.status-action a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}
/* --------收藏夹列表样式---------- */
.fava-list-header {
    display: flex;
    background: #f8f9fa;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #555;
}

.fava-header-item {
    padding: 0 5px;
}

.fava-list {
    border: 1px solid #eee;
}

.fava-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.fava-item:hover {
    background: #f8f9fa;
}

.fava-item:last-child {
    border-bottom: none;
}

.fava-item-col {
    padding: 0 5px;
}

.fava-icon img {
    width: 16px;
    height: 16px;
}

.fava-title {
    color: #002280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fava-title:hover {
    color: var(--primary-color);
}

.fava-click, .fava-time {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.fava-checkbox {
    margin: 0 auto;
    display: block;
}

.fava-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 10px;
}

.fava-pagination {
    flex: 1;
}

.fava-batch-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn {
    background: var(--primary-color);
    color: white;
}

.action-btn:hover {
    background: var(--hover-color);
    transform: translateY(-1px);
	color: #FFFFFF;
}

.delete-btn {
    background: #e74c3c;
}

.delete-btn:hover {
    background: #c0392b;
}
#cid,#select{
	width: 100px; 
	background-color: transparent; 
	border: 1px solid #ddd;
	padding: 4px 8px;
	font-size: 0.9rem;
	color: #DFDFDF;
}
/*---------投稿区域----------*/
input[type="text"],
input[type="file"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* 文件上传按钮优化 */
input[type="file"] {
    padding: 8px;
}

/* 编辑器区域优化 */
.editor-section {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.editor-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.editor-toolbar {
    background-color: #f5f5f5;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

.editor-container textarea {
    width: 100%;
    min-height: 300px;
    border: none;
    padding: 12px;
    font-family: monospace;
    line-height: 1.5;
}

/* 按钮组优化 */
.form-submit {
    display: flex;
    gap: 15px;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn.secondary-btn {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

/*----------投稿直播部分-----------*/
/*直播状态按钮*/
.status-container {
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	width: 100%;
}

.live-status-box {
	display: none;
}

.status-switches {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.live-status-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.switch-button {
	position: relative;
	width: 60px;
	height: 30px;
	background: #f0f0f0;
	border-radius: 15px;
	cursor: pointer;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}

.switch-button.active {
	background: #e6f7ff;
}

.switch-indicator {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 24px;
	height: 24px;
	background: #ccc;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.switch-button.active .switch-indicator {
	background: #1890ff;
	left: 33px;
	box-shadow: 0 2px 4px rgba(24, 144, 255, 0.4);
}

.live-status-label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
	text-align: center;
}

.status-display {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	margin-top: 10px;
	background: #f8f9fa;
	border-radius: 4px;
	font-size: 12px;
}

.current-live-status-label {
	color: #666;
	margin-right: 10px;
}

.current-status {
	font-weight: 500;
	color: #333;
}
        
/*----------黄页投稿地图部分---------*/
#map-el {
	width: 100%;
	height: 380px;
}
.mapControls {
	height:auto;
	padding-bottom: 15px;
	margin-top: 10px;
	border-radius: 8px;
}
.mapInput-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.mapInput-group label {
	font-weight: bold;
}
.mapInput-group input {
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.mapButtons {
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}
.mapButtons button {
	padding: 11px 15px;
	border-radius: 5px;
	background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
	color: white;
	cursor: pointer;
	border: none;
}
#mapResult {
	border: dotted 1px #E60003;
	padding: 10px;
	margin-bottom: 0px;
	border-radius: 5px;
	max-width: 100%;
	color: #B7B7B7;
}
#mapResult h3{ color: #E60003; border-bottom: 1px dotted #D4D4D4; margin-bottom: 10px;}
#mapResult p{ font-size: 12px;}
#map-container {
	display: none;
	height: 380px;
	width: 100%;
	margin-top: 15px;
	border: 1px solid #ddd;
}





/* ------------桌面端布局优化--------------- */
@media (min-width: 769px) {
.tougao-menu {
    grid-column: 1 / -1;
    order: -1;
}
.main-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
}
.sidebar {
    grid-row: 2;
    grid-column: 1;
}
.user-content {
    grid-row: 2;
    grid-column: 2;
}
}


/* ------------整体移动端响应式设计---------------- */
@media (max-width: 768px) {
/* 容器和布局 */
.container {
    padding: 0 10px;
}
.w1200 {
    width: 100%;
}
/* 头部和导航 */
.user-info {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}
.user-logo {
    width: 200px;
    height: 40px;
    margin: 0 auto;
}
.user-details {
    text-align: left;
    min-width: auto;
    width: 100%;
}
.username {
    text-align: center;
}
.user-group {
    display: none;
}
.quick-links-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: center;
}
.quick-links{ text-align: center;}
.quick-links a {
    padding: 5px 10px;
    display: inline-block;
}
/* 主内容区域 */
.main-content {
    grid-template-columns: 1fr;
    gap: 0;
    display: flex;
    flex-direction: column;
}
.sidebar {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-bottom: 0;
}
.sidebar.active {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 20px;
}
.user-content {
    padding: 20px;
    overflow-x: auto;
}
.user-profile {
    flex-direction: column;
    text-align: center;
}
.profile-avatar {
    width: 100px;
    height: 100px;
}
/* 网格布局调整 */
.info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.quick-actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
/* 菜单项调整 */
.menu-header, .menu-item {
    min-height: 44px;
    display: flex;
    align-items: center;
}
/* 投稿菜单 */
.mobile-menu-toggle {
    display: flex;
}
.tougao-menu {
    order: -1;
    width: 100%;
	margin-bottom: 15px;
}
.tougao-link {
    flex: 1 1 calc(50% - 15px);
    min-height: 44px;
}
.tg-gl, .tg-fb {
    padding: 10px 6px;
}
/* 表格样式 */
.tableborder {
    margin: 15px auto;
    max-width: 100%;
    border-radius: 5px;
}
.tableborder tr.header td {
    padding: 12px 10px;
    font-size: 14px;
}
.tableborder tr.bgcolorFFFFFF td {
    padding: 15px 10px;
}
.tableborder select {
    font-size: 13px;
    background-position: right 12px center;
    min-height: 44px;
}
.tableborder input[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}
.tableborder font[color="#666666"] {
    display: block;
    margin: 8px 0 0 0;
    text-align: center;
}
/* 表单样式 */
.form-table {
    min-width: 600px;
}
.form-table tr.header td {
    padding: 12px 10px;
    font-size: 14px;
}
.form-table tr.form-row td {
    padding: 15px 10px;
    display: block;
    width: 100%;
}
.form-table tr.form-row {
    display: flex;
    flex-direction: column;
}
.form-input, .form-textarea, .form-select, .form-file {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 44px;
}
	
.form-select {
    background-position: right 12px center;
}
.form-buttons {
    flex-direction: column;
    gap: 10px;
}
.btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}
.radio-group {
    flex-direction: column;
    gap: 10px;
}
.editor-content {
    min-height: 200px;
    padding: 10px;
}
.breadcrumb {
    font-size: 12px;
}

/*---------------登录页面移动端---------------*/
.user-content {
        width: auto;
        padding: 0px;
    }
    
    .uc-login {
        margin: 0px;
        max-width: none;
    }
    
    .login-box {
        padding: 20px;
    }
    
    .login-box li:not(.input-hidden):not(.login-time) {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .login-box li:not(.input-hidden):not(.login-time)>*:first-child {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .login-box input[type="text"],
    .login-box input[type="password"] {
        max-width: 100%;
        width: 100%;
    }
    
    .login-time {
        gap: 10px;
    }
    
    .login-time > span:first-child {
        width: 100%;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .login-time label {
        margin-right: 10px;
        font-size: 0.85rem;
    }
    
    .login-btn {
        padding: 15px 20px;
    }
    
    .login-btn input[type="submit"],
    .login-btn input[type="button"] {
        padding: 15px 20px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        margin: 15px 0;
    }	
/*---------------注册页面移动端---------------*/
.register-box {
	padding: 20px;
}

.register-field {
	flex-direction: column;
	align-items: flex-start;
}

.register-field label {
	min-width: auto;
	margin-right: 0;
	margin-bottom: 8px;
}

.register-field input[type="text"],
.register-field input[type="password"],
.register-field input[type="date"],
.register-field select {
	max-width: 100%;
	width: 100%;
}

.register-btn {
	padding:0px;
}

.register-btn input[type="submit"],
.register-btn input[type="button"] {
	padding: 15px 20px;
	font-size: 0.9rem;
	display: block;
	width: 100%;
	margin: 15px 0;
}

.register-note {
	padding: 0 20px 20px;
}
	
/*------------修改会员信息----------*/
.info-content {
	padding: 0px;
}

.info-header {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 15px 20px;
}

.info-actions {
	width: 100%;
	justify-content: space-between;
}

.form-grid {
	grid-template-columns: 1fr;
	gap: 15px;
}

.form-unit .form-control {
	padding-right: 50px;
}
.form-card{
	border: 0px;
	margin-bottom:0px;
}
.card-header{
	background: none;
	padding: 5px 0px;
	margin: 10px 0px;
}
.card-body{
	padding: 0px;
}
.unit-text {
	right: 10px;
}
	
/*------用户头像上传------*/
.avatar-preview {
        padding: 15px;
    }
    
    .avatar-preview img {
        width: 100px;
        height: 100px;
    }
    
    .file-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .file-input-wrapper input[type="file"],
    .file-input-wrapper input[type="submit"] {
        width: 100%;
        min-width: auto;
    }
    
    .upload-instructions {
        padding: 12px;
    }
	
/*------账号状态------*/
.account-status-grid {
        margin: 0px;
    }
    
    .status-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
    }
    
    .status-label {
        min-width: auto;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
    
    .status-value {
        font-size: 0.9rem;
        width: 100%;
    }
    
    .status-action {
        margin-left: 0;
        margin-top: 5px;
    }
	
	
/*------收藏夹移动端------*/
.fava-list-header,
    .fava-item {
        flex-wrap: wrap;
    }
    
    .fava-header-item,
    .fava-item-col {
        width: 100% !important;
        text-align: left;
        padding: 5px 0;
    }
    
    .fava-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .fava-batch-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .fava-batch-actions select {
        width: 100% !important;
        margin-bottom: 10px;
    }
    
    .action-btn {
        width: 100%;
        margin-bottom: 5px;
    }	
/*------投稿区域移动端-------*/
	input[type="text"],
    input[type="file"],
    textarea {
        padding: 10px;
        font-size: 15px;
    }
    
    .editor-container textarea {
        min-height: 200px;
    }
    
    .form-submit {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        width: 100%;
    }
	
/*投稿直播状态按钮*/
	.status-container {
		padding: 20px;
	}

	.status-switches {
		flex-wrap: wrap;
		gap: 10px;
	}

	.live-status-item {
		flex: 0 0 calc(50% - 10px);
		margin-bottom: 15px;
	}
	
	
	
	
/*最后这个不要删除*/
}