.member-header-bar {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

.back-button::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    left: 6px;
    top: 5px;
    transition: all 0.2s ease;
}

.back-button:hover::before {
    border-color: #ff8a00;
    transform: rotate(45deg) translateX(-2px);
}

.member-title {
    flex: 1;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}
/* 简洁底部样式 */
.simple-footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #eaeffb;
    font-size: 0.85rem;
    color: #666;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo {
    width: 120px;
    height: 40px;
    margin-right: 8px;
}

.site-name {
    font-weight: bold;
    color: #009688;
}

.copyright p {
    margin: 5px 0;
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 8px 0;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #009688;
}

.legal-links span {
    color: #666666;
    margin: 0 5px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

.social-icons img {
    width: 20px;
    height: 20px;
}
.trend-chart-container {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	max-width: 1000px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.trend-header {
	background: linear-gradient(135deg, #3a7bd5, #00d2ff);
	color: white;
	padding: 15px 20px;
}

.trend-header .title {
	font-size: 22px;
	font-weight: bold;
}

.trend-header .subtitle {
	font-size: 14px;
	opacity: 0.9;
}

.chart-controls {
	display: flex;
	padding: 10px 20px;
	background: #f5f7fa;
	border-bottom: 1px solid #e1e5eb;
}

.control-btn {
	padding: 6px 12px;
	margin-right: 10px;
	background: #e1e5eb;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.3s;
}

.control-btn.active {
	background: #3a7bd5;
	color: white;
}

.refresh-btn {
	margin-left: auto;
	display: flex;
	align-items: center;
	color: #3a7bd5;
	font-size: 13px;
	cursor: pointer;
}

.icon-refresh {
	margin-right: 5px;
}

.trend-table-wrapper {
	overflow-x: auto;
	padding: 0 10px;
}

.trend-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.trend-table th {
	background: #f5f7fa;
	color: #555;
	font-weight: 600;
	padding: 8px 5px;
	text-align: center;
	border: 1px solid #e1e5eb;
}

.trend-table td {
	padding: 8px 5px;
	text-align: center;
	border: 1px solid #e1e5eb;
}

.header-row th {
	background: #e1e5eb;
}

.section-header-top {
	background: #FFEBEE !important;
}
.section-header-bootom {
	background: #E3F2FD !important;
}

.summary-header {
	background: #E1E5EB !important;
}

.summary-title {
	font-weight: bold;
	/*color: #3a7bd5;*/
}

.period-col {
	min-width: 70px;
}

.data-row:hover {
	background-color: #f9f9f9;
}

.data-row.current {
	background-color: #fffde7;
}

.hot {
	position: relative;
	color: #e53935;
	font-weight: bold;
}

.hot-indicator {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 6px;
	height: 6px;
	background: #e53935;
	border-radius: 50%;
}

.highlight-cell {
	font-weight: bold;
	border-radius: 3px;
}

.up {
	/* background: #ffebee; */
	color: #e53935;
}

.down {
	/* background: #e3f2fd; */
	color: #1e88e5;
}

.odd {
	color: #F7B851;
}

.even {
	color: #20A53A;
}

.left {
	color: #43a047;
}

.right {
	color: #fb8c00;
}

.period {
	font-weight: bold;
	color: #555;
}

.newest {
	font-weight: bold;
	color: #3a7bd5;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

.stats-summary {
	display: flex;
	justify-content: space-around;
	/*background: #f5f7fa !important;*/
}

.stats-item {
	display: flex;
	align-items: center;
}

.highlight {
	font-weight: bold;
	color: #3a7bd5;
}

.red {
	color: #e53935;
}

.blue {
	color: #1e88e5;
}

.chart-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background: #f5f7fa;
	border-top: 1px solid #e1e5eb;
	font-size: 12px;
	color: #777;
}

.legend {
	display: flex;
}

.legend-item {
	display: flex;
	align-items: center;
	margin-right: 15px;
}

.color-box {
	width: 12px;
	height: 12px;
	border-radius: 2px;
	margin-right: 5px;
}

.color-box.hot {
	background: #e53935;
}

.color-box.up {
	background: #ffebee;
	border: 1px solid #e53935;
}

.color-box.down {
	background: #e3f2fd;
	border: 1px solid #1e88e5;
}

.update-time {
	font-style: italic;
}

/* 信息区域样式 */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 用户卡片样式 */
.user-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #3a7bd5;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(58, 123, 213, 0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.user-motto {
    margin: 5px 0 0;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* 开奖信息样式 */
.lottery-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.lottery-current, .lottery-previous {
    display: flex;
    align-items: center;
}

.label {
    font-weight: bold;
    color: #555;
    margin-right: 8px;
    font-size: 15px;
}

.value {
    font-size: 13px;
    color: #333;
}

.waiting {
    color: #e53935;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .user-card {
        width: 100%;
        justify-content: left;
    }
    
    .lottery-info {
        width: 100%;
    }
}