:root {
    --primary-100: #00B0FF;
    --primary-200: #0093e0;
    --primary-300: #00559a;
    --primary-glow: rgba(0, 176, 255, 0.4);
    --accent-100: #FF00FF;
    --text-100: #FFFFFF;
    --text-200: #e0e0e0;
    --bg-100: #05090F;
    --bg-150: #0E1522;
    --bg-200: #161F2E;
    --bg-300: #242F42;
    --bg-400: #37435770;

    --text80: rgba(255,255,255,0.8);
    --text60: rgba(255,255,255,0.6);
    --text40: rgba(255,255,255,0.3);

    --highlight: #FF8C42; 
    --border-thin: 1px solid rgba(255, 255, 255, 0.08);
    --card-shadow-glow: 0 40px 100px -20px rgba(0, 176, 255, 0.15);
    --sidebar-width: 260px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-100); }

body {
    background-color: var(--bg-100);
    color: var(--text-100);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1 { font-size: 46px; color: var(--text80); font-weight: bold; }
h2 { font-size: 36px; color: var(--text80); font-weight: bold; }
h3 { font-size: 28px; color: var(--text80); font-weight: bold; }
h5 { font-size: 18px; color: var(--text80); font-weight: bold; line-height: 1.2; }

.app-layout { display: flex; min-height: 100vh; }

.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-150);
    border-right: var(--border-thin);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
}

.logo-section { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.logo-box {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-300));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px var(--primary-glow);
}

.nav-tags { display: flex; flex-direction: column; gap: 8px; }
.nav-tag {
    padding: 14px 20px; border-radius: 14px; color: var(--text60);
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s; user-select: none; display: flex; align-items: center; gap: 12px;
}
.nav-tag:hover { color: var(--text-100); background: rgba(255, 255, 255, 0.03); }
.nav-tag.active { background: rgba(0, 176, 255, 0.1); color: var(--primary-100); border: 1px solid rgba(0, 176, 255, 0.2); }

.sidebar-footer { margin-top: auto; display: flex; flex-direction: column; gap: 24px; }

.sidebar-btn-group { display: flex; flex-direction: column; gap: 12px; }
.sidebar-btn {
    padding: 14px 20px; border-radius: 14px; font-weight: 900;
    text-align: center; cursor: pointer; transition: all 0.3s;
    text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.9rem;
}
.sidebar-btn svg { flex-shrink: 0; }

.sidebar-btn.primary {
    background: var(--primary-100); color: var(--bg-100);
    box-shadow: 0 4px 20px var(--primary-glow);
}
.sidebar-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow); }

.sidebar-btn.secondary {
    background: rgba(255, 255, 255, 0.05); color: var(--text-100);
    border: var(--border-thin);
}
.sidebar-btn.secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); border-color: var(--primary-100); }

.current-user-section { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: var(--border-thin); padding-top: 24px; }
.current-user-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-300); object-fit: cover; border: var(--border-thin); }
.current-user-info { display: flex; flex-direction: column; }
.current-user-name { font-size: 0.85rem; font-weight: 700; color: #fff; }
.current-user-status { font-size: 0.65rem; color: var(--primary-100); font-weight: 800; text-transform: uppercase; }

.main-content { flex: 1; padding: 60px 50px; max-width: calc(100vw - var(--sidebar-width)); }

.tab-content { display: none; opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.tab-content.active { display: block; opacity: 1; transform: translateY(0); }

.section-intro { margin-bottom: 50px; }
.section-intro h1 { margin-bottom: 10px; }
.section-intro p { color: var(--text60); font-size: 1.1rem; }

.blog-split-container, .feedback-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.blog-list-column, .feedback-list-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    padding-right: 10px;
}

.blog-mini-card {
    background: var(--bg-150);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.blog-mini-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
    background: var(--primary-100); transition: 0.3s;
}
.blog-mini-card:hover { 
    border-color: rgba(0, 176, 255, 0.3); 
    transform: translateX(8px);
    background: var(--bg-200);
}
.blog-mini-card:hover::before { height: 100%; }
.blog-mini-card.active { 
    background: rgba(0, 176, 255, 0.08); 
    border-color: var(--primary-100); 
    box-shadow: 0 10px 30px rgba(0, 176, 255, 0.15);
}
.blog-mini-card.active::before { height: 100%; }
.blog-mini-card h4 { font-size: 1.15rem; margin-bottom: 8px; color: #fff; line-height: 1.3; transition: 0.3s; }
.blog-mini-card.active h4 { color: var(--primary-100); }
.blog-mini-card p { font-size: 0.9rem; color: var(--text60); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-mini-card .card-date { font-size: 0.75rem; font-weight: 800; color: var(--text40); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }

/* Comment Section Re-design */
.comment-item {
    display: flex; gap: 16px; margin-bottom: 24px; animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.comment-avatar { 
    width: 40px; height: 40px; border-radius: 12px; background: var(--bg-300); 
    flex-shrink: 0; border: var(--border-thin); object-fit: cover;
}
.comment-content-bubble {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-thin);
    border-radius: 0 20px 20px 20px;
    padding: 16px 20px;
    flex: 1;
    position: relative;
}
.comment-author-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.comment-author-name { font-size: 0.9rem; font-weight: 800; color: var(--primary-100); }
.comment-timestamp { font-size: 0.75rem; color: var(--text40); }
.comment-text { font-size: 0.95rem; color: var(--text200); line-height: 1.6; }

/* Modern Comment Input Area Styles */
.comment-input-wrapper {
    margin-top: 40px;
    background: var(--bg-150);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.comment-input-wrapper:focus-within {
    border-color: var(--primary-100);
    background: var(--bg-200);
    box-shadow: 0 8px 30px rgba(0, 176, 255, 0.15);
    transform: translateY(-2px);
}
.comment-input-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
}
.comment-input-field::placeholder { color: var(--text40); }
.comment-action-btn {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: var(--primary-100);
    color: var(--bg-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    font-size: 1.1rem;
}
.comment-action-btn:hover {
    transform: scale(1.05) rotate(12deg);
    background: var(--primary-200);
    box-shadow: 0 0 15px var(--primary-glow);
}
.comment-action-btn:active { transform: scale(0.95); }

.blog-detail-column {
    background: linear-gradient(145deg, var(--bg-150) 0%, #111b2d 100%);
    border: var(--border-thin);
    border-radius: 40px;
    padding: 40px;
    min-height: 500px;
    position: relative;
    transition: opacity 0.3s ease;
}

.detail-hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 30px;
    border: var(--border-thin);
}

.detail-meta { display: flex; gap: 20px; color: var(--primary-100); font-weight: 700; font-size: 0.8rem; margin-bottom: 20px; }
.detail-body { color: var(--text200); line-height: 1.8; font-size: 1.05rem; }

.feedback-card {
    background: var(--bg-150);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s;
}
.feedback-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feedback-user-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: var(--border-thin); }
.feedback-user-info { display: flex; flex-direction: column; }
.feedback-user-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.feedback-time { font-size: 0.7rem; color: var(--text40); }
.feedback-text { font-size: 0.9rem; color: var(--text200); margin-bottom: 15px; line-height: 1.5; }
.feedback-actions { display: flex; gap: 15px; }
.feedback-action-btn { background: none; border: none; color: var(--text40); font-size: 0.8rem; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: 0.2s; }
.feedback-action-btn:hover { color: var(--primary-100); }

/* Optimized Feedback Form */
.feedback-form {
    background: var(--bg-150);
    padding: 40px;
    border-radius: 36px;
    border: var(--border-thin);
    height: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.feedback-form::before {
    content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(to bottom, var(--primary-100), var(--primary-300));
}

.form-group { margin-bottom: 28px; position: relative; }
.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-100);
    font-size: 0.75rem;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-input-container {
    position: relative;
    display: flex;
    align-items: center;
}
.form-input-icon {
    position: absolute;
    left: 20px;
    color: var(--text40);
    font-size: 1.1rem;
    transition: 0.3s;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--bg-200);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 20px 18px 54px;
    border-radius: 20px;
    color: #fff;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    font-family: inherit;
}
.form-group textarea { padding-top: 20px; min-height: 160px; resize: none; }

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-100);
    background: var(--bg-100);
    box-shadow: 0 0 20px rgba(0, 176, 255, 0.1);
}
.form-group input:focus + .form-input-icon, 
.form-group textarea:focus + .form-input-icon {
    color: var(--primary-100);
    transform: scale(1.1);
}

.submit-btn {
    width: 100%; background: var(--primary-100); color: var(--bg-100);
    padding: 20px; border-radius: 20px; font-weight: 800; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 12px; transition: 0.3s;
    font-size: 1rem;
}
.submit-btn i { transition: 0.3s; }
.submit-btn:hover { background: var(--primary-200); transform: translateY(-3px); box-shadow: 0 10px 25px var(--primary-glow); }
.submit-btn:hover i { transform: translateX(5px) rotate(-10deg); }
.submit-btn:active { transform: translateY(-1px); }

.vision-goals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
.about-card { background: var(--bg-150); border: var(--border-thin); border-radius: 24px; padding: 32px; }
.about-card i { font-size: 2.5rem; color: var(--primary-100); margin-bottom: 20px; }
.about-card h3 { margin-bottom: 15px; }
.about-card p { color: var(--text60); line-height: 2.4; }

.founder-spotlight { 
    background: linear-gradient(135deg, var(--bg-150) 0%, #1e2a44 100%);
    border: 1px solid rgba(0, 176, 255, 0.2);
    border-radius: 40px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.founder-spotlight::before {
    content: "FOUNDER";
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}
.founder-img-wrapper { width: 250px; height: 250px; border-radius: 30px; overflow: hidden; border: 4px solid var(--bg-300); flex-shrink: 0; }
.founder-img { width: 100%; height: 100%; object-fit: cover; }
.founder-details h2 { color: var(--primary-100); margin-bottom: 10px; }
.founder-details .role-tag { color: var(--accent-100); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 20px; font-size: 0.8rem; }
.founder-details p { font-size: 1.1rem; color: var(--text200); line-height: 1.7; }

.contact-footer-section {
    background: var(--bg-150);
    border-radius: 32px;
    padding: 40px;
    border: var(--border-thin);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.contact-info-block h3 { font-size: 1.8rem; margin-bottom: 10px; }
.email-link { color: var(--primary-100); font-size: 1.4rem; text-decoration: none; font-weight: 700; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.email-link:hover { color: var(--text-100); text-shadow: 0 0 10px var(--primary-glow); }

.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 5, 10, 0.85); backdrop-filter: blur(20px);
    display: none; align-items: center; justify-content: center; z-index: 1000;
}
.modal.active { display: flex; }
.modal-container {
    background: var(--bg-150); padding: 40px; border-radius: 40px;
    width: 90%; max-width: 500px; text-align: center; border: var(--border-thin);
}
.ai-box {
    background: var(--bg-200); padding: 20px; border-radius: 20px;
    text-align: left; margin: 24px 0; border-left: 4px solid var(--highlight);
}

.highlight-text { color: var(--highlight); }

@media (max-width: 1024px) {
    .app-layout { flex-direction: column; }
    .sidebar { width: 100%; height: auto; position: relative; padding: 20px; flex-direction: row; align-items: center; overflow-x: auto; border-bottom: var(--border-thin); border-right: none; }
    .nav-tags { flex-direction: row; }
    .sidebar-footer { display: none; }
    .main-content { max-width: 100%; padding: 30px 20px; }
    .blog-split-container, .feedback-layout { grid-template-columns: 1fr; }
    .founder-spotlight { flex-direction: column; text-align: center; padding: 30px; }
    .vision-goals-grid { grid-template-columns: 1fr; }
}


/* 标题变换样式 */
.headlines-css {
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* 渐变过渡效果 - 只改变透明度 */
.headlines-css.fade-transition {
    opacity: 0.3; /* 只改变透明度，不改变颜色 */
}


/* #region 浮动面板样式 */

/* 通用浮动菜单基础样式 */
.floating-menu {
  position: absolute;
  height: 95px;
  width: 200px;
  background-color: var(--bg-200);
  border-radius: 8px;
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
}

/* 浮动菜单项 */
.menu-item {
  width: 200px;
  height: 30px;
  box-sizing: border-box;
  padding-left: 30px;
  gap: 5px;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
  cursor: pointer;
}

.menu-item:hover {
  background-color: var(--primary-100);
}

/* ============== 个人信息更新浮动面板 ============== */

/* 个人信息更新面板容器 */
.personalinfo-update-floating-menu {
  position: fixed; /* 改为fixed确保在视口居中 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.25);
  width: 600px;
  height: 960px;
  border-radius: 8px;
  background-color: #040404;
  box-sizing: border-box;
  padding: 50px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

/* 头像更新区域 */
.head-pic-update {
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  box-sizing: border-box;
  margin-top: 70px;
}

/* 主头像展示框 */
.head-pic-main-box {
  width: 105px;
  height: 105px;
  background-image: url(/head-pic.webp);
  background-size: cover;
  background-position: center;
  border-radius: 50%; /* 添加圆形效果 */
  cursor: pointer; /* 添加点击反馈 */
}

/* 头像更新按钮文本 */
.head-pic-update h5 {
  color: var(--primary-100);
  cursor: pointer;
  transition: color 0.2s;
  margin-bottom: 10px;
}

.head-pic-update h5:hover {
  color: var(--accent-100);
}

/* 个人信息表单区域 */
.personal-info-update {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin-top: 30px;
  gap: 15px;
}

/* 输入框容器 */
.content-insert-box {
  width: 100%;
  height: 45px;
  resize: none;
  background-color: #101010;
  border-radius: 8px;
  border: 1px solid var(--text40);
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.2s;
}

.content-insert-box:focus-within {
  border-color: var(--primary-100);
}

/* 输入框 */
.input-box {
  width: 100%;
  height: 100%;
  background-color: #101010;
  border: none;
  outline: none;
  font-size: 15px;
  line-height: 15px;
  color: var(--text40);
  font-weight: lighter;
  margin: 0;
  padding: 0;
  text-indent: 10px;
}

.input-box:focus {
  color: var(--text80);
}

/* 反馈消息 */
.feedback-content {
  line-height: 20px;
  font-weight: bold;
  box-sizing: border-box;
  margin-top: 20px;
  color: var(--primary-100);
  text-align: center;
  min-height: 20px;
}

/* 更新按钮 */
.login-btn {
  width: 100%;
  height: 30px;
  border-radius: 8px;
  background-color: var(--primary-100);
  box-sizing: border-box;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-btn:hover {
  background-color: var(--accent-100);
}

/* ============== 头像更新浮动面板 ============== */

/* 头像更新面板容器 */
.headpic-update-floating-menu {
  position: fixed; /* 改为fixed确保在视口居中 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.25);
  width: 600px;
  height: 900px;
  border-radius: 8px;
  background-color: #040404;
  box-sizing: border-box;
  padding: 50px;
  display: none;
  flex-direction: column;
  z-index: 2000; /* 比个人信息面板更高 */
}

/* 头像列表容器 */
.head-pic-list {
  width: 450px;
  height: 510px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-direction: row;
  box-sizing: border-box;
  margin-top: 35px;
  gap: 5px;
  row-gap: 20px;
}

/* 头像选择框 */
.head-pic-box {
  width: 105px;
  height: 105px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.head-pic-box:hover {
  background-color: var(--accent-100);
  transform: scale(1.05);
}

/* 头像选中状态 */
.head-pic-box.selected {
  background-color: var(--primary-100);
  border: 2px solid var(--accent-100);
}

/* 头像图片 */
.head-pic-box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* 头像更新反馈消息 */
#headpic-update-status {
  line-height: 20px;
  font-weight: bold;
  margin-top: 10px;
  color: var(--primary-100);
  text-align: center;
  min-height: 20px;
}

/* ============== 页面其他头像相关样式 ============== */

/* 左下角当前用户头像 */
.current-user-avatar {
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 50%;
  object-fit: cover;
}

.current-user-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 2px var(--primary-100);
}

/* 页面中其他头像元素 */
#user-avatar,
#user-avatar-1,
#user-avatar-2 {
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 更新成功状态动画 */
@keyframes updateSuccess {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

.update-success {
  animation: updateSuccess 1.5s ease-in-out;
}

/* ============== 响应式调整 ============== */

@media (max-width: 768px) {
  .personalinfo-update-floating-menu,
  .headpic-update-floating-menu {
    width: 90vw;
    height: auto;
    min-height: 80vh;
    padding: 30px;
  }
  
  .head-pic-list {
    width: 100%;
    height: auto;
    justify-content: center;
  }
  
  .head-pic-box {
    width: 80px;
    height: 80px;
  }
  
  .head-pic-box img {
    width: 70px;
    height: 70px;
  }
}

.personalinfo-update-floating-menu h1 {
    font-size: 22px;
    line-height:30px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
.personalinfo-update-floating-menu h2 {
    font-size: 18px;
    line-height:25px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
.personalinfo-update-floating-menu h3 {
    font-size: 16px;
    line-height:24px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
.personalinfo-update-floating-menu h4 {
    font-size: 14px;
    line-height:20px;
    color:var(--text80);
    font-weight: bold;
    margin:0;
    padding:0;
}
.personalinfo-update-floating-menu h5 {
    font-size: 12px;
    line-height:18px;
    color: var(--text60);
    font-weight: normal;
    margin:0;
    padding:0;
}
.personalinfo-update-floating-menu h6 {
    font-size: 10px;
    line-height:15px;
    color: var(--text40);
    font-weight: lighter;
    margin:0;
    padding:0;
}

/* #endregion */
