@charset "UTF-8";

/* =========================================
   用户中心/登录注册页专用样式
   ========================================= */


body {
	background-color: #F9F9F9;
}

.uc-page-wrapper {
	padding-bottom: 120px;
	margin-top: 100px;
	min-height: calc(100vh - 400px);
}



/* --- Tab 切换栏 --- */
.uc-tabs-nav {
	display: flex;
	border-bottom: 1px solid #E5E5E5;
	margin-bottom: 50px;
}

.uc-tab-item {
	flex: 1;
	text-align: center;
	padding: 18px 0;
	font-size: 18px;
	color: #252525;
	cursor: pointer;
	position: relative;
	transition: color 0.3s;
	background: transparent;
}

.uc-tab-item:hover {
	color: #333;
}

.uc-tab-item.active {
	color: #222;
	font-weight: 700;
}

.uc-tab-item.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #D9001B;
}


/* --- 表单区域布局 --- */
.uc-form-section {
	padding: 0 10px;
	animation-duration: 0.5s;
}

.uc-section-title {
	font-size: 24px;
	color: #252525;
	font-weight: 600;
	margin-bottom: 25px;
}

.uc-text-desc {
	font-size: 18px;
	color: #252525;
	line-height: 1.5;
	font-weight: 300;
	margin-bottom: 40px;
}

.uc-link-red {
	color: #D9001B;
	text-decoration: none;
	margin-left: 2px;
	border-bottom: 1px solid #D9001B;
	transition: all 0.3s;
	padding-bottom: 1px;
}

.uc-link-red:hover {
	color: #B00016;
	border-bottom-color: #B00016;
	text-decoration: none;
}

.uc-form-group {
	margin-bottom: 40px;
}

.uc-label {
	display: block;
	font-size: 20px;
	color: #252525;
	margin-bottom: 15px;
	font-weight: 600;
}

.uc-input-group {
	display: flex;
	border: 1px solid #E5E5E5;
	background-color: #FFF;
	border-radius: 2px;
	height: 52px;
	width: 100%;
	transition: border-color 0.3s;
}

.uc-input-group:focus-within {
	border-color: #999;
}

/* 面包屑 */
.uc-breadcrumb {
	padding: 30px 0;
	font-size: 16px;
	color: #999;
}

.uc-breadcrumb a {
	color: #999;
	margin-right: 5px;
	text-decoration: none;
	transition: 0.3s;
}

.uc-breadcrumb a:hover {
	color: #D9001B;
}

.uc-breadcrumb span {
	margin-right: 5px;
	color: #ccc;
}

.uc-breadcrumb .current {
	color: #555;
}

/* 主体容器 */
.uc-main-box {
	max-width: 900px;
	margin: 0 auto;
	padding-top: 20px;
}

.uc-page-title {
	text-align: center;
	font-size: 48px;
	color: #252525;
	margin-bottom: 60px;
	font-weight: 500;
}


/* --- 注册页专用头部 --- */
.uc-reg-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: 1px solid #E5E5E5;
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.uc-reg-title {
	font-size: 24px;
	color: #222;
	font-weight: 500;
	margin: 0;
	line-height: 1;
}

/* 进度条组件 */
.uc-progress-box {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #666;
}

.uc-progress-text {
	margin-right: 15px;
}

.uc-progress-bar-bg {
	width: 200px;
	height: 4px;
	background-color: #E5E5E5;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.uc-progress-bar-fill {
	height: 100%;
	background-color: #D9001B;
	width: 33%;
	border-radius: 2px;
	transition: width 0.4s ease;
}

.uc-step-content {
	display: none;
}

.uc-step-content.active {
	display: block;
	animation: fadeIn 0.5s;
}

/* 激活显示的步骤 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}



/* 输入框组合 */
.uc-input-group {
	display: flex;
	border: 1px solid #E5E5E5;
	background-color: #FFF;
	border-radius: 2px;
	height: 52px;
	width: 100%;
	transition: border-color 0.3s;
	position: relative;
}

.uc-input-group.focus {
	border-color: #999;
}

.uc-input-group.error {
	border-color: #D9001B;
	background-color: #FFF0F0;
}


/* 错误提示信息 */
.uc-error-tips {
	color: #D9001B;
	font-size: 12px;
	margin-top: 6px;
	display: none;
	position: absolute;
	bottom: -20px;
	left: 0;
}

/* 验证码行 */
.uc-verify-row {
	display: flex;
	gap: 20px;
}

.uc-verify-row .uc-input-group {
	flex: 1;
}

/* 按钮样式 */
.uc-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 30px;
	background-color: #FFF;
	border: 1px solid #D9001B;
	color: #D9001B;
	font-size: 14px;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.3s;
	white-space: nowrap;
	min-width: 140px;
}

.uc-btn-outline:hover {
	background-color: #FFF0F0;
	color: #B00016;
	border-color: #B00016;
}

.uc-btn-outline.disabled {
	border-color: #CCC;
	color: #999;
	cursor: not-allowed;
	background-color: #F9F9F9;
}

/* 底部按钮组 */
.uc-action-row {
	display: flex;
	gap: 20px;
	margin-top: 50px;
}

.uc-btn-prev {
	height: 52px;
	width: 160px;
	background-color: transparent;
	border: 1px solid #333;
	color: #333;
	font-size: 14px;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uc-btn-prev:hover {
	background-color: #333;
	color: #FFF;
}

.uc-btn-prev i {
	margin-right: 8px;
	font-size: 12px;
}

.uc-btn-next {
	height: 52px;
	width: 160px;
	background-color: #D9001B;
	border: none;
	color: #FFF;
	font-size: 14px;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uc-btn-next:hover {
	background-color: #B00016;
}

.uc-btn-next i {
	margin-left: 8px;
	font-size: 12px;
}

/* 下拉选择框 (Step 3) */
.uc-select-full {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23999999' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px;
	cursor: pointer;
}


/* 左侧选择区 */
.uc-select-prefix {
	width: 150px;
	border-right: 1px solid #E5E5E5;
	background-color: #FAFAFA;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 10px;
}

.uc-select-prefix select {
	width: 100%;
	height: 100%;
	border: none;
	background: transparent;
	padding: 0 15px;
	font-size: 18px;
	color: #252525;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	z-index: 2;
	font-family: inherit;
}

.uc-select-prefix.static {
	justify-content: center;
	padding-right: 0;
	cursor: default;
	color: #333;
	font-weight: 500;
}

.uc-select-prefix.static::after {
	display: none;
}

.uc-select-prefix::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 12px;
	z-index: 1;
	pointer-events: none;
}

.uc-input-control {
	flex: 1;
	border: none;
	height: 50px;
	padding: 0 20px;
	font-size: 18px;
	color: #252525;
	outline: none;
	background: transparent;
}

.uc-input-control::placeholder {
	color: #CCC;
	font-size: 18px;
}

.uc-btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 50px;
	background-color: #D9001B;
	color: #FFF;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
	gap: 10px;
}

.uc-btn-submit:hover {
	background-color: #B00016;
	color: #FFF;
	text-decoration: none;
}

.uc-btn-submit i {
	font-size: 12px;
}


/* --- 底部会员服务 --- */
.uc-service-box {
	margin-top: 60px;
}

.uc-service-box .uc-section-title {
	font-size: 20px;
	margin-bottom: 20px;
}

.uc-service-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.uc-service-list li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 18px;
	color: #252525;
	font-weight: 300;
}

.uc-service-list li i {
	width:24px;
	height:24px;
	margin-right:12px;
	background:url(../images/common/userpage_arrow.svg) center center no-repeat;
	background-size:contain;
}


/* --- 隐私声明小字 --- */
.uc-privacy-text {
	margin-top: 40px;
	margin-bottom:16px;
	font-size: 18px;
	color: #252525;
	line-height: 1.5;
}

.uc-privacy-text a {
	color: #D9001B;
	font-size:16px;
	text-decoration: underline;
	margin-left: 0;
	border: none;
}


/* --- 响应式适配 --- */
@media (max-width: 768px) {
	.uc-main-box {
		padding-left: 15px;
		padding-right: 15px;
	}

	.uc-page-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.uc-btn-submit {
		width: 100%;
	}

	.uc-select-prefix {
		width: 110px;
	}
}

/* =========================================
   联系我们
   ========================================= */

/* 顶部介绍文字 */
.contact-intro-text {
	font-size: 20px;
	color: #252525;
	line-height: 1.5;
	margin-bottom: 40px;
	text-align: justify;
}

/* 联系方式列表 */
.contact-info-list {
	margin-bottom: 50px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.contact-icon {
	width: 24px;
	margin-right: 15px;
	margin-top: 2px;
	color: #666;
	font-size: 20px;
	text-align: center;
}

.contact-icon img {
	height: 30px;
}

.contact-detail h5 {
	font-size:16px;
	color: #999;
	margin-bottom: 4px;
	font-weight: 400;
}

.contact-detail p {
	font-size: 18px;
	color: #252525;
	margin: 0;
	font-weight: 500;
}

/* 分割线 */
.contact-divider {
	height: 1px;
	background-color: #EEE;
	margin: 40px 0;
}

/* 必填红字 */
.required-mark {
	color: #D9001B;
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400;
	vertical-align: middle;
}

/* 自定义下拉框 */
.contact-select-wrap {
	position: relative;
	margin-bottom: 30px;
}

.contact-select {
	width: 100%;
	height: 50px;
	border: 1px solid #E5E5E5;
	border-radius: 5px;
	padding: 0 15px;
	font-size: 18px;
	color: #252525;
	outline: none;
	background: #fff;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.contact-select:focus {
	border-color: #999;
}

.contact-select-wrap::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #D9001B;
	pointer-events: none;
}

/* 自定义复选框组 */
.contact-checkbox-group {
	margin-bottom: 40px;
}

.custom-checkbox {
	display: block;
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 18px;
	color: #252525;
	user-select: none;
}

.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* 方框样式 */
.checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 16px;
	width: 16px;
	border: 1px solid #CCC;
	border-radius: 2px;
	background-color: #fff;
	transition: all 0.2s;
}

/* 选中状态 */
.custom-checkbox input:checked~.checkmark {
	background-color: #D9001B;
	border-color: #D9001B;
}

/* 勾号 */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.custom-checkbox input:checked~.checkmark:after {
	display: block;
}

.custom-checkbox .checkmark:after {
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* 简约版 Tab 切换 */
.contact-tabs {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	border-bottom: 1px solid #EEE;
}

.c-tab-item {
	font-size: 18px;
	cursor: pointer;
	color: #999;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: -1px;
	transition: color 0.3s;
}

.c-tab-item.active {
	color: #D9001B;
	font-weight: 700;
	border-bottom: 2px solid #D9001B;
}

/* 复用样式微调 */
.uc-select-prefix.static {
	justify-content: center;
	padding-right: 0;
	cursor: default;
	font-size:18px;
	font-weight: 500;
}

.uc-select-prefix.static::after {
	display: none;
}

/* 按钮微调 */
.uc-btn-submit.btn-sm {
	width: 140px;
}


/* 响应式 */
@media (max-width: 768px) {
	.uc-progress-box {
		width: 100%;
	}
	.uc-reg-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.uc-text-desc {
		font-size: 16px;
	}

	.uc-progress-bar-bg {
		width: 100%;
	}

	.uc-verify-row {
		flex-direction: column;
		gap: 10px;
	}

	.uc-verify-row .uc-btn-outline {
		width: 100%;
	}

	.uc-action-row {
		justify-content: space-between;
	}

	.uc-btn-prev,
	.uc-btn-next {
		width: 48%;
	}
}

/* =========================================
   User Profile Center (个人中心专属样式)
   Prefix: .up-
   ========================================= */

/* 页面背景与间距 */
.up-page-wrapper {
    background-color: #F5F5F5;
    padding-bottom: 100px;
    margin-top: 100px;
    min-height: calc(100vh - 400px);
}

/* 布局容器：Flex 左右结构 */
.up-layout-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* --- 左侧侧边栏 --- */
.up-sidebar {
    width: 280px;
    flex-shrink: 0;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

/* 用户简报区 */
.up-user-brief {
    padding: 40px 20px 30px;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
}

.up-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid #FFF;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.up-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.up-username {
    font-size: 20px;
    color: #252525;
    font-weight: 600;
    margin-bottom: 5px;
}

.up-usertype {
    font-size: 14px;
    color: #999;
    display: inline-block;
    padding: 2px 10px;
    background-color: #F5F5F5;
    border-radius: 20px;
}

/* 侧边导航菜单 */
.up-nav-menu {
    padding: 15px 0;
    margin: 0;
}

.up-nav-menu li a {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 30px;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
    border-left: 4px solid transparent;
    text-decoration: none;
}

.up-nav-menu li a i {
    width: 24px;
    font-size: 18px;
    margin-right: 10px;
    text-align: center;
    color: #999;
    transition: color 0.3s;
}

/* 菜单 Hover & Active */
.up-nav-menu li a:hover {
    color: #D9001B;
    background-color: #FFF9F9;
}
.up-nav-menu li a:hover i {
    color: #D9001B;
}

.up-nav-menu li.active a {
    color: #D9001B;
    background-color: #FFF9F9;
    border-left-color: #D9001B;
    font-weight: 500;
}
.up-nav-menu li.active a i {
    color: #D9001B;
}

/* 退出登录项 */
.up-nav-menu li.logout {
    margin-top: 10px;
    border-top: 1px solid #F0F0F0;
}


/* --- 右侧主要内容区 --- */
.up-main-content {
    flex: 1;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    padding: 40px;
    min-height: 600px;
}

/* 标题区 */
.up-section-header {
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.up-section-header h3 {
    font-size: 24px;
    color: #252525;
    font-weight: 500;
    margin-bottom: 8px;
}

.up-section-header p {
    font-size: 14px;
    color: #999;
}

/* 表单布局 */
.up-form-wrap {
    max-width: 800px;
}

.up-form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.up-form-group {
    flex: 1;
}

.up-form-group.full-width {
    width: 100%;
    margin-bottom: 25px;
}

/* 标签样式 */
.up-label {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.up-label .required {
    color: #D9001B;
    margin-left: 4px;
}

.up-label .readonly-tag {
    font-size: 12px;
    color: #BBB;
    font-weight: 400;
    margin-left: 8px;
}

/* 输入框样式 */
.up-input {
    width: 100%;
    height: 48px;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    padding: 0 15px;
    font-size: 15px;
    color: #252525;
    transition: all 0.3s;
    outline: none;
}

.up-input:focus {
    border-color: #D9001B;
    box-shadow: 0 0 0 3px rgba(217, 0, 27, 0.05);
}

.up-input.readonly {
    background-color: #F9F9F9;
    color: #999;
    cursor: not-allowed;
    border-color: #EEE;
}

/* 地址选择网格 */
.up-address-grid {
    display: flex;
    gap: 15px;
}

.up-select-wrap {
    width: 160px;
    position: relative;
}

.up-select {
    width: 100%;
    height: 48px;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    padding: 0 30px 0 15px;
    font-size: 15px;
    color: #252525;
    appearance: none;
    -webkit-appearance: none;
    background-color: #FFF;
    cursor: pointer;
}

.up-select-wrap::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    pointer-events: none;
}

/* 保存按钮 */
.up-action-bar {
    margin-top: 50px;
    border-top: 1px solid #F5F5F5;
    padding-top: 30px;
}

.up-btn-save {
    width: 160px;
    height: 48px;
    background-color: #D9001B;
    color: #FFF;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.up-btn-save:hover {
    background-color: #B00016;
}

/* 移动端适配 */
@media (max-width: 991px) {
    .up-layout-box {
        flex-direction: column;
    }
    
    .up-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .up-nav-menu {
        display: flex;
        flex-wrap: wrap;
        padding: 5px;
    }
    
    .up-nav-menu li {
        width: 50%; /* 移动端一行两个菜单 */
        border: none;
    }
    .up-nav-menu li.logout {
        border-top: none;
        width: 100%;
    }
    
    .up-main-content {
        padding: 25px 20px;
    }
    
    .up-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .up-form-group {
        margin-bottom: 20px;
    }
    
    .up-address-grid {
        flex-direction: column;
        gap: 10px;
    }
    .up-select-wrap {
        width: 100%;
    }
}


/* =========================================
   User Download List Styles (我的下载页面)
   ========================================= */

.up-download-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.up-dl-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #EEE;
    border-radius: 4px;
    background-color: #FFF;
    transition: all 0.3s;
}

.up-dl-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #DDD;
}

/* 文件类型图标 */
.up-dl-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
}

.up-dl-icon.pdf {
    background-color: #FFF0F0;
    color: #D9001B;
}

.up-dl-icon.doc {
    background-color: #F0F6FF;
    color: #4A90E2;
}

/* 信息区域 */
.up-dl-info {
    flex: 1;
}

.up-dl-info h4 {
    font-size: 18px;
    color: #252525;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.up-dl-meta {
    font-size: 14px;
    color: #999;
}

.up-dl-meta span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.up-dl-meta span i {
    margin-right: 5px;
    font-size: 13px;
}

/* 下载按钮 */
.up-btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 20px;
    border: 1px solid #DDD;
    border-radius: 2px;
    color: #666;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.up-btn-download:hover {
    background-color: #D9001B;
    border-color: #D9001B;
    color: #FFF;
    text-decoration: none;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .up-dl-item {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding-bottom: 60px; /* 留出按钮位置 */
    }
    
    .up-dl-icon {
        margin-bottom: 15px;
    }
    
    .up-btn-download {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
}


/* =========================================
   User Center Dashboard 
   ========================================= */

.up-layout-box {
    display: flex;
    gap: 20px; /* 左右间距 20px */
}

/* --- 左侧侧边栏 --- */
.up-sidebar {
    width: 240px; /* 稍微调窄一点，更精致 */
    flex-shrink: 0;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    align-self: flex-start;
    padding-bottom: 20px;
}

.up-user-brief {
    padding: 35px 20px 25px;
    text-align: center;
    border-bottom: 1px solid #F2F2F2;
    background: url('../images/user_bg_mask.png') no-repeat top center; /* 模拟一个装饰背景 */
    background-size: 100% 80px;
}

.up-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid #FFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}
.up-avatar img { width: 100%; height: 100%; object-fit: cover; }

.up-username {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.up-level-badge {
    display: inline-block;
    background-color: #FFF0F0;
    color: #D9001B;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 500;
}

/* 侧边导航 */
.up-nav-menu {
    padding-top: 15px;
    margin: 0;
}

.up-nav-menu li a {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 25px;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.up-nav-menu li a i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    text-align: center;
    color: #999;
}

.up-nav-menu li:hover a {
    color: #D9001B;
    background-color: #FFF9F9;
}
.up-nav-menu li:hover a i { color: #D9001B; }

/* 选中状态 */
.up-nav-menu li.active a {
    color: #D9001B;
    background-color: #FFF5F5;
    border-left-color: #D9001B;
    font-weight: 600;
}
.up-nav-menu li.active a i { color: #D9001B; }

.menu-divider {
    height: 1px;
    background-color: #F5F5F5;
    margin: 10px 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #D9001B;
    border-radius: 50%;
    margin-left: auto;
}


/* --- 右侧内容区 --- */
.up-main-content {
    flex: 1;
    min-width: 0;
}

/* 1. 顶部统计卡片 */
.uc-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.uc-stat-card {
    flex: 1;
    background-color: #FFF;
    border-radius: 4px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}
.uc-stat-card:hover { transform: translateY(-3px); }

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}
/* 图标配色 */
.icon-red { background-color: #FFF0F0; color: #D9001B; }
.icon-blue { background-color: #F0F7FF; color: #1890FF; }
.icon-orange { background-color: #FFF7E6; color: #FA8C16; }
.icon-green { background-color: #F6FFED; color: #52C41A; }

.stat-info { display: flex; flex-direction: column; }
.stat-value { font-size: 24px; font-weight: 700; color: #333; line-height: 1.2; }
.stat-label { font-size: 13px; color: #999; margin-bottom: 2px; }


/* 2. 中间分栏 (快捷服务 & 安全) */
.uc-split-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.uc-panel {
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    overflow: hidden;
}

.flex-grow-1 { flex: 1; }
.uc-safe-panel { width: 380px; flex-shrink: 0; }

.uc-panel-header {
    height: 54px;
    padding: 0 20px;
    border-bottom: 1px solid #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uc-panel-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    position: relative;
    padding-left: 12px;
}
.uc-panel-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background-color: #D9001B;
    border-radius: 2px;
}

/* 快捷服务 */
.uc-quick-links {
    display: flex;
    padding: 20px 0;
}
.quick-link-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    border-right: 1px solid #F9F9F9;
}
.quick-link-item:last-child { border-right: none; }
.quick-link-item i { font-size: 24px; color: #999; margin-bottom: 10px; transition: color 0.3s; }
.quick-link-item span { font-size: 13px; }
.quick-link-item:hover i { color: #D9001B; }
.quick-link-item:hover span { color: #333; }

/* 账户安全 */
.uc-safe-list { padding: 0 20px; }
.uc-safe-row {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #F9F9F9;
}
.uc-safe-row:last-child { border-bottom: none; }
.safe-icon { margin-right: 12px; font-size: 18px; }
.text-success { color: #52C41A; }
.text-orange { color: #FA8C16; }

.safe-info { flex: 1; }
.safe-name { font-size: 14px; color: #333; font-weight: 500; }
.safe-desc { font-size: 12px; color: #999; margin-top: 2px; }

.safe-btn { font-size: 13px; color: #1890FF; text-decoration: none; }
.safe-btn:hover { text-decoration: underline; }


/* 3. 表格样式 */
.uc-more-link { font-size: 13px; color: #999; text-decoration: none; }
.uc-more-link:hover { color: #D9001B; }

.uc-table-container { padding: 10px 20px 20px; }
.uc-table { width: 100%; border-collapse: collapse; }
.uc-table th {
    text-align: left;
    background-color: #FAFAFA;
    color: #999;
    font-weight: 400;
    padding: 12px 15px;
    font-size: 13px;
    border-bottom: 1px solid #F0F0F0;
}
.uc-table td {
    padding: 15px;
    border-bottom: 1px solid #F5F5F5;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
}
.uc-table tr:last-child td { border-bottom: none; }
.uc-table tr:hover { background-color: #FFFBFB; }

.file-info { display: flex; align-items: center; }
.file-icon { font-size: 18px; margin-right: 10px; }
.file-icon.pdf { color: #D9001B; }
.text-gray { color: #999; font-size: 13px; }

.btn-text-red {
    color: #D9001B;
    border: 1px solid #FFDCDC;
    background-color: #FFF5F5;
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-text-red:hover {
    background-color: #D9001B;
    border-color: #D9001B;
    color: #FFF;
}


/* 移动端适配 */
@media (max-width: 991px) {
    .up-layout-box { flex-direction: column; }
    .up-sidebar { width: 100%; margin-bottom: 20px; }
    
    .uc-stats-row { flex-wrap: wrap; gap: 10px; }
    .uc-stat-card { flex: 0 0 calc(50% - 5px); }
    
    .uc-split-row { flex-direction: column; }
    .uc-safe-panel { width: 100%; }
    
    .uc-table th, .uc-table td { padding: 10px; font-size: 12px; }
    .file-name {
        display: inline-block;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }
}


/* =========================================
   会员中心首页专用样式 
   ========================================= */

body {
	background-color: #FFF; 
}

.mc-page-wrapper {
	padding-top: 100px; 
	padding-bottom: 100px;
	min-height: calc(100vh - 400px);
}

.mc-top-section {
	padding: 60px 0 80px;
}

.mc-welcome-title {
	font-size: 48px;
	font-weight: bold;
	color: #000;
	margin-bottom: 30px;
	letter-spacing: 1px;
}

.mc-welcome-desc {
	font-size: 18px;
	color: #252525;
	line-height: 1.8;
	margin: 0;
}

/* 个人资料编辑按钮 */
.mc-btn-edit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 20px;
	background-color: #FFF;
	border: 1px solid #CCC;
	color: #333;
	font-size: 16px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s;
}

.mc-btn-edit:hover {
	border-color: #D9001B;
	color: #D9001B;
	text-decoration: none;
}

.mc-btn-edit i {
	margin-left: 10px;
	color: #D9001B; /* 红色图标 */
	font-size: 16px;
}

/* --- 2. 下载历史区 --- */
.mc-history-section {
	margin-bottom: 60px;
}

.mc-section-title {
	font-size: 32px;
	color: #000;
	font-weight: 500;
	margin-bottom: 20px;
}

/* 分割线 */
.mc-divider {
	width: 100%;
	height: 1px;
	background-color: #E0E0E0;
	margin-bottom: 25px;
	position: relative;
}
/* 设计稿左侧似乎有一小段红色高亮，保留此样式以备选 */
.mc-divider::after {
	content: '';
	position: absolute;
	left: 0;
	top: -1px;
	width: 40px;
	height: 2px;
	background-color: #D9001B;
}

.mc-count-text {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
}

/* --- 3. 表格样式 --- */
.mc-table-wrap {
	border: 1px solid #E5E5E5;
	border-bottom: none; /* 最后一行自带border */
}

.mc-table {
	width: 100%;
	border-collapse: collapse;
}

.mc-table th {
	background-color: #F5F5F5;
	color: #666;
	font-weight: 400;
	font-size: 14px;
	padding: 15px 20px;
	text-align: left;
	border-bottom: 1px solid #E5E5E5;
}
/* 调整第一列（标题）的宽度和对齐 */
.mc-table th:first-child {
	padding-left: 100px; 
	width: 40%;
}

.mc-table td {
	background-color: #FFF;
	padding: 20px;
	border-bottom: 1px solid #E5E5E5;
	font-size: 17px;
	color: #333;
	vertical-align: middle;
}

.mc-table td:first-child {
	padding-left: 100px;
}

/* 标题列特殊样式 */
.mc-doc-link {
	display: flex;
	align-items: center;
	justify-content: space-between; /* 标题左对齐，图标最右侧 */
	color: #D9001B;
	font-weight: 500;
	text-decoration: none;
	padding-right: 20px;
}

.mc-doc-link:hover {
	color: #B00016;
	text-decoration: underline;
}

.mc-doc-icon {
	font-size: 18px;
	margin-left: 10px;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.mc-welcome-title { font-size: 32px; }
	.mc-btn-edit { margin-top: 20px; }
	
	.mc-table th, .mc-table td {
		padding: 10px;
	}
	.mc-table th:first-child, .mc-table td:first-child {
		padding-left: 15px; /* 移动端减小左边距 */
	}
	.mc-doc-link {
		display: block; /* 移动端换行显示 */
	}
	.mc-doc-icon {
		float: right;
	}
	
	/* 允许表格横向滚动 */
	.mc-table-wrap {
		overflow-x: auto;
	}
	.mc-table {
		min-width: 600px;
	}
}