* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}
nav.nav,
.navbar,
.header nav {
  background: #1a2f5a;
  color: #fff;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav__inner,
.navbar-inner,
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__left,
.navbar-left,
.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav__logo,
.navbar-brand,
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.nav__location,
.location-btn,
.nav-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s;
}
.nav__location:hover,
.location-btn:hover,
.nav-location:hover {
  color: #fff;
}
.nav__location {
  display: none;
}
.nav__links,
.navbar-links,
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav__links a,
.navbar-links a,
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav__links a:hover,
.navbar-links a:hover,
.nav-links a:hover {
  color: #93c5fd;
}
.nav__links a.active,
.navbar-links a.active,
.nav-links a.active,
.nav__links a.nav__link--active,
.navbar-links a.nav__link--active,
.nav-links a.nav__link--active {
  color: #93c5fd;
  font-weight: 600;
}
.nav__right,
.navbar-right,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__engineer,
.engineer-link,
.nav-right > a:first-child {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  transition: color 0.3s;
}
.nav__engineer:hover,
.engineer-link:hover,
.nav-right > a:first-child:hover {
  color: #93c5fd;
}
.nav__login,
.login-link,
.nav-btn-login,
.nav-login {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.9375rem;
  transition: color 0.3s;
}
.nav__login:hover,
.login-link:hover,
.nav-btn-login:hover,
.nav-login:hover {
  color: #93c5fd;
}
.nav__register,
.register-btn,
.nav-btn-register,
.nav-register {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  transition: background 0.3s;
}
.nav__register:hover,
.register-btn:hover,
.nav-btn-register:hover,
.nav-register:hover {
  background: #134cca;
}
.nav__user-dropdown {
  position: relative;
}
.nav__user-btn {
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem 0.25rem 0.35rem;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.nav__user-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}
.nav__user-avatar {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.nav__user-name {
  max-width: 8.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 1200;
  min-width: 11rem;
  display: none;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  color: #111827;
}
.nav__dropdown-menu--show {
  display: block;
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding: 0.625rem 0.75rem;
  color: #374151;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav__dropdown-item i {
  width: 1rem;
  color: #6b7280;
}
.nav__dropdown-item:hover {
  background: #f3f4f6;
  color: #2563eb;
}
.nav__dropdown-item:hover i {
  color: #2563eb;
}
.nav__dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  background: #e5e7eb;
}
.nav__logout-btn {
  color: #dc2626;
}
.nav__logout-btn i {
  color: #dc2626;
}
.hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1576652311423-a44a349d74ce?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920') center / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero__content {
  max-width: 600px;
  color: #fff;
}
.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero__btn {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  padding: 0.875rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: background 0.3s;
}
.hero__btn:hover {
  background: #f3f4f6;
}
.stats {
  padding: 0 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
}
.stats__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.stats__card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stats__item {
  text-align: center;
}
.stats__number {
  font-size: 2.75rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.stats__label {
  color: #666;
  font-size: 0.9375rem;
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-header__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #666;
}
.section-header__line {
  width: 3rem;
  height: 1px;
  background: #e5e7eb;
}
.section-header__text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.features {
  padding: 4rem 2rem;
}
.features__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.features__card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.features__card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.features__img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}
.features__body {
  padding: 1.5rem;
  text-align: center;
}
.features__card-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.features__card-subtitle {
  font-size: 0.8125rem;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.features__card-desc {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.industry {
  padding: 4rem 2rem;
  background: #f5f5f5;
}
.industry__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.industry__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry__category {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.industry__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem;
  border-radius: 0.25rem;
  transition: background 0.3s;
  cursor: pointer;
}
.industry__item:hover {
  background: #f5f5f5;
}
.industry__item i {
  color: #2563eb;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.industry__item span {
  font-weight: 500;
  font-size: 0.9375rem;
}
.industry__category--all {
  background: linear-gradient(135deg, #2563eb, #134cca);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.industry__category--all:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.industry__all-content {
  text-align: center;
}
.industry__all-content i {
  font-size: 3.5rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  display: block;
}
.industry__all-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.tasks {
  padding: 4rem 2rem;
}
.tasks__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.tasks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.task-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.25rem;
  transition: box-shadow 0.3s;
}
.task-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.task-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.task-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.task-card__title {
  font-size: 1.125rem;
  font-weight: 700;
}
.task-card__title a {
  color: inherit;
}
.task-card__title a:hover {
  color: #2563eb;
}
.task-card__urgent,
.urgent-badge,
.urgent-badge {
  background: #f97316;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}
.task-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.task-card__location,
.task-city {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #666;
}
.task-card__location i,
.task-city i {
  font-size: 0.75rem;
}
.task-card__tag,
.tag {
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.task-card__tag.task-card__tag--industry,
.tag.task-card__tag--industry,
.task-card__tag.tag-industry,
.tag.tag-industry {
  background: #dbeafe;
  color: #1e40af;
}
.task-card__tag.task-card__tag--home,
.tag.task-card__tag--home {
  background: #dbeafe;
  color: #1e40af;
}
.task-card__tag.task-card__tag--auto,
.tag.task-card__tag--auto {
  background: #dbeafe;
  color: #1e40af;
}
.task-card__tag.task-card__tag--computer,
.tag.task-card__tag--computer {
  background: #dbeafe;
  color: #1e40af;
}
.task-card__tag.task-card__tag--comm,
.tag.task-card__tag--comm {
  background: #dbeafe;
  color: #1e40af;
}
.task-card__status,
.tag-status {
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.task-card__status.task-card__status--pending,
.tag-status.task-card__status--pending,
.task-card__status.tag-status,
.tag-status.tag-status {
  background: #d1fae5;
  color: #065f46;
}
.task-card__status.tag-status-done,
.tag-status.tag-status-done {
  background: #f3f4f6;
  color: #6b7280;
}
.task-card__desc,
.task-desc {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.task-card__price,
.task-price {
  color: #ef4444;
  font-size: 1.375rem;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 0.75rem;
}
.task-card__footer,
.task-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.8125rem;
  color: #666;
}
.task-card__author,
.publisher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.task-card__avatar,
.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.task-card__avatar.task-card__avatar--blue,
.avatar.task-card__avatar--blue,
.task-card__avatar.avatar-blue,
.avatar.avatar-blue {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}
.task-card__avatar.task-card__avatar--purple,
.avatar.task-card__avatar--purple,
.task-card__avatar.avatar-purple,
.avatar.avatar-purple {
  background: linear-gradient(135deg, #c084fc, #7c3aed);
}
.task-card__avatar.task-card__avatar--green,
.avatar.task-card__avatar--green,
.task-card__avatar.avatar-green,
.avatar.avatar-green {
  background: linear-gradient(135deg, #4ade80, #16a34a);
}
.task-card__avatar.task-card__avatar--orange,
.avatar.task-card__avatar--orange,
.task-card__avatar.avatar-orange,
.avatar.avatar-orange {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.task-card__avatar.task-card__avatar--pink,
.avatar.task-card__avatar--pink,
.task-card__avatar.avatar-pink,
.avatar.avatar-pink {
  background: linear-gradient(135deg, #f472b6, #db2777);
}
.task-card__avatar.task-card__avatar--teal,
.avatar.task-card__avatar--teal,
.task-card__avatar.avatar-teal,
.avatar.avatar-teal {
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
}
.task-card__avatar.avatar-sm,
.avatar.avatar-sm {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.task-card__date,
.publish-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.task-card__date i,
.publish-date i {
  font-size: 0.75rem;
}
.tasks__more {
  text-align: center;
  margin-top: 2rem;
}
.tasks__more-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
}
.tasks__more-btn:hover {
  background: #134cca;
}
.engineers {
  padding: 4rem 2rem;
  background: #f5f5f5;
}
.engineers__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.engineers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-flow: dense;
}
.engineer-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.engineer-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.engineer-card__img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}
.engineer-card__body,
.engineer-info {
  padding: 1.25rem;
}
.engineer-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.engineer-card__name,
.engineer-name {
  font-size: 1.0625rem;
  font-weight: 700;
}
.engineer-card__name a,
.engineer-name a {
  color: inherit;
}
.engineer-card__name a:hover,
.engineer-name a:hover {
  color: #2563eb;
}
.engineer-card__specialty,
.engineer-specialty {
  color: #666;
  font-size: 0.8125rem;
}
.engineer-card__action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.engineer-card__price,
.engineer-price {
  color: #ef4444;
  font-size: 1.375rem;
  font-weight: 700;
}
.engineer-card__price .unit,
.engineer-price .unit {
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
}
.engineer-card__btn,
.contact-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: background 0.3s;
}
.engineer-card__btn:hover,
.contact-btn:hover {
  background: #134cca;
}
.engineer-card__stats,
.engineer-stats {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #666;
}
.engineer-stats .rating {
  color: #f97316;
}
.engineer-stats .rating i {
  font-size: 0.75rem;
}
.engineer-city {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.engineer-city i {
  font-size: 0.75rem;
  color: #2563eb;
}
.engineer-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.skill-tag {
  background: #eff6ff;
  color: #2563eb;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}
.engineer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}
.avatar-area {
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.avatar-area.blue {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}
.avatar-area.purple {
  background: linear-gradient(135deg, #c084fc, #7c3aed);
}
.avatar-area.green {
  background: linear-gradient(135deg, #4ade80, #16a34a);
}
.avatar-area.orange {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.avatar-area.pink {
  background: linear-gradient(135deg, #f472b6, #db2777);
}
.avatar-area.teal {
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
}
.avatar-area.red {
  background: linear-gradient(135deg, #f87171, #dc2626);
}
.avatar-area.indigo {
  background: linear-gradient(135deg, #818cf8, #4f46e5);
}
.avatar-area--panorama,
.avatar-area--auto-panorama.is-panorama {
  height: auto;
  min-height: 12rem;
  aspect-ratio: 16 / 9;
  background: #eff6ff;
}
.engineers__grid .engineer-card--panorama {
  grid-column: span 2;
}
.engineers__grid .engineer-card--panorama .avatar-area--auto-panorama.is-panorama {
  min-height: 13rem;
  aspect-ratio: 21 / 9;
}
.card-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.engineers--home .avatar-area--auto-panorama {
  isolation: isolate;
}
.engineers--home .avatar-area--auto-panorama.has-photo::before,
.engineers--home .avatar-area--auto-panorama.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.engineers--home .avatar-area--auto-panorama.has-photo::before {
  background-image: var(--avatar-cover-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: 0.78;
}
.engineers--home .avatar-area--auto-panorama.has-photo::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 23, 42, 0.18));
}
.engineers--home .avatar-area--auto-panorama .card-avatar-img {
  position: relative;
  z-index: 1;
  padding: 0;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.22));
}
.avatar-area--panorama .card-avatar-img,
.avatar-area--auto-panorama.is-panorama .card-avatar-img {
  box-sizing: border-box;
  padding: 0.375rem;
  object-fit: contain;
  object-position: center;
}
.engineer-info {
  min-height: 7.5rem;
}
.engineer-name {
  line-height: 1.35;
  margin-bottom: 0.375rem;
}
.avatar-letter {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}
.certified-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #2563eb;
  color: #fff;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.certified-badge i {
  font-size: 0.625rem;
}
.knowledge {
  padding: 4rem 2rem;
}
.knowledge__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.knowledge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.knowledge__featured {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.knowledge__featured-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.knowledge__featured-body {
  padding: 1.5rem;
}
.knowledge__featured-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.knowledge__featured-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.knowledge__featured-date {
  font-size: 0.8125rem;
  color: #999;
}
.knowledge__featured-date i {
  margin-right: 0.25rem;
}
.knowledge__tabs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.knowledge__tab {
  background: none;
  border: none;
  font-size: 0.9375rem;
  color: #666;
  transition: color 0.3s;
}
.knowledge__tab:hover {
  color: #2563eb;
}
.knowledge__tab.knowledge__tab--active {
  color: #2563eb;
  font-weight: 600;
}
.knowledge__more {
  margin-left: auto;
  color: #2563eb;
  font-size: 0.9375rem;
}
.knowledge__more:hover {
  color: #134cca;
}
.knowledge__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.knowledge__item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: background 0.3s;
  cursor: pointer;
}
.knowledge__item:hover {
  background: #f5f5f5;
}
.knowledge__item-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: #2563eb;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.knowledge__item-icon i {
  color: #fff;
  font-size: 1.25rem;
}
.knowledge__item-body {
  flex: 1;
  min-width: 0;
}
.knowledge__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}
.knowledge__item-title {
  font-size: 1rem;
  font-weight: 600;
}
.knowledge__item-date {
  font-size: 0.8125rem;
  color: #999;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.knowledge__item-desc {
  font-size: 0.8125rem;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-header {
  background: #fff;
  padding: 2rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.page-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-header-inner h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.page-header-inner p,
.page-header-inner .subtitle {
  color: #666;
  font-size: 0.9375rem;
}
.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.filters,
.filter-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.filter-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.filter-label {
  color: #666;
  font-weight: 500;
  width: 5.5rem;
  flex-shrink: 0;
  padding-top: 0.5rem;
  font-size: 0.9375rem;
  white-space: nowrap;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.task-hall-province-form {
  width: 100%;
  max-width: 15rem;
}
.task-hall-province-select {
  min-width: 12rem;
}
.filter-search-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 35rem;
}
.filter-search-input {
  flex: 1;
  min-width: 0;
}
.filter-search-submit {
  height: 2.75rem;
  padding: 0 1.5rem;
  min-width: 5rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.625rem;
}
.engineer-area-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  flex-wrap: wrap;
  max-width: 52rem;
}
.engineer-area-select {
  min-width: 10rem;
  flex: 1 1 10rem;
}
.engineer-area-submit {
  min-width: 5.5rem;
}
.filter-btn {
  background: #f5f5f5;
  border: none;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.filter-btn:hover {
  background: #e5e7eb;
}
.filter-btn.active {
  background: #2563eb;
  color: #fff;
}
.main-content {
  padding: 2.5rem 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
}
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.task-count {
  color: #666;
  font-size: 0.9375rem;
}
.task-count strong {
  color: #2563eb;
}
.sort-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sort-label {
  font-size: 0.875rem;
  color: #666;
}
.sort-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: #f5f5f5;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: #333;
  transition: all 0.3s;
}
.sort-btn.active {
  background: #2563eb;
  color: #fff;
}
.sort-btn i {
  font-size: 0.75rem;
}
.task-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.task-card-body {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
.task-info {
  flex: 1;
}
.task-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}
.accept-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  transition: background 0.3s;
}
.accept-btn:hover {
  background: #134cca;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2rem;
}
.page-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.page-btn:hover {
  background: #f5f5f5;
}
.page-btn.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.page-ellipsis {
  color: #999;
  padding: 0 0.25rem;
}
.page-arrow {
  font-size: 0.75rem;
}
.urgent-sidebar {
  position: relative;
}
.urgent-sidebar-inner {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 5rem;
}
.urgent-sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.urgent-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.urgent-item {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: background 0.3s;
  cursor: pointer;
}
.urgent-item:hover {
  background: #f5f5f5;
}
.urgent-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.urgent-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  flex: 1;
}
.urgent-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 0.375rem;
}
.urgent-city {
  color: #666;
}
.urgent-city i {
  font-size: 0.75rem;
}
.urgent-price {
  color: #ef4444;
  font-weight: 700;
  margin-left: auto;
}
.urgent-item-desc {
  font-size: 0.8125rem;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.375rem;
}
.urgent-item-publisher {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #666;
}
.content-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.product-image {
  position: relative;
}
.product-image img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}
.sale-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #ef4444;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
.product-info {
  padding: 1.25rem;
}
.product-name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.25rem;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}
.product-rating i {
  color: #facc15;
}
.product-rating span {
  color: #666;
}
.product-price {
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}
.product-current-price {
  color: #ef4444;
  font-size: 1.5rem;
  font-weight: 700;
}
.product-original-price {
  color: #999;
  font-size: 0.8125rem;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.product-merchant {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #666;
}
.product-merchant i {
  font-size: 0.75rem;
}
.product-merchant:hover {
  color: #2563eb;
}
.tab-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  background: #fff;
  color: #666;
  transition: all 0.3s;
}
.tab-btn:hover {
  background: #f5f5f5;
}
.tab-btn.active {
  background: #2563eb;
  color: #fff;
}
.tab-btn i {
  font-size: 0.875rem;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.knowledge-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.knowledge-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.knowledge-card-img {
  display: block;
  position: relative;
}
.knowledge-card-img img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.knowledge-card-video {
  display: block;
  width: 100%;
  height: 12rem;
  object-fit: cover;
  background: #111827;
}
.knowledge-card-video-detail {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
}
.knowledge-card-video-detail:hover {
  background: #2563eb;
  color: #fff;
}
.knowledge-card-body {
  padding: 1.25rem;
}
.knowledge-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.25rem;
}
.knowledge-card-title a {
  color: inherit;
}
.knowledge-card-title a:hover {
  color: #2563eb;
}
.knowledge-card-desc {
  font-size: 0.875rem;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.knowledge-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #999;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}
.knowledge-card-meta i {
  margin-right: 0.25rem;
}
.video-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn i {
  font-size: 2rem;
  color: #2563eb;
  background: rgba(255, 255, 255, 0.9);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.empty-state i {
  font-size: 4rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.empty-state p {
  font-size: 1.125rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.grid-empty {
  grid-column: 1 / -1;
}
.compact-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 12rem;
  padding: 0;
  background: #f8fafc;
  border-radius: 0;
  box-shadow: none;
}
.compact-empty i {
  font-size: 2.5rem;
  color: #cbd5e1;
  margin-bottom: 0;
}
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.policy-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.policy-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.policy-card-inner {
  display: flex;
  gap: 1rem;
}
.policy-card-icon {
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.policy-card-icon i {
  color: #2563eb;
  font-size: 1.25rem;
}
.policy-card-content {
  flex: 1;
}
.policy-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.policy-card-title {
  font-size: 1.125rem;
  font-weight: 700;
}
.policy-card-title a {
  color: inherit;
}
.policy-card-title a:hover {
  color: #2563eb;
}
.policy-card-tag {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  flex-shrink: 0;
  margin-left: 1rem;
}
.policy-card-summary {
  color: #666;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.policy-card-date {
  font-size: 0.8125rem;
  color: #999;
}
.policy-card-date i {
  margin-right: 0.25rem;
}
.float-toolbar,
.floating-toolbar {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 50;
}
.float-toolbar__item,
.float-item {
  position: relative;
}
.float-toolbar__icon,
.float-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}
.float-toolbar__icon i,
.float-icon i {
  font-size: 1.25rem;
}
.float-toolbar__icon:hover,
.float-icon:hover {
  background: #2563eb;
  color: #fff;
}
.float-toolbar__panel,
.float-panel {
  position: absolute;
  right: 4rem;
  top: 0;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.float-toolbar__item:hover .float-toolbar__panel,
.float-item:hover .float-panel {
  opacity: 1;
  visibility: visible;
}
.float-toolbar__panel--qrcode,
.float-qrcode {
  width: 11rem;
  text-align: center;
}
.float-toolbar__panel-title,
.float-panel-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}
.float-toolbar__qrcode-placeholder,
.qrcode-placeholder {
  width: 100%;
  height: 9rem;
  background: #f5f5f5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-toolbar__qrcode-placeholder i,
.qrcode-placeholder i {
  font-size: 4rem;
  color: #999;
}
.float-toolbar__panel--report,
.float-report {
  width: 18.75rem;
}
.float-toolbar__panel--contact,
.float-contact {
  width: 15rem;
}
.float-toolbar__phone,
.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.float-toolbar__phone i,
.contact-phone i {
  color: #2563eb;
  font-size: 1.125rem;
}
.float-toolbar__phone span,
.contact-phone span {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2563eb;
}
.float-toolbar__service-time,
.contact-time {
  font-size: 0.8125rem;
  color: #666;
}
.report-form .report-form__group,
#reportForm .report-form__group,
.report-form .form-group,
#reportForm .form-group {
  margin-bottom: 0.75rem;
}
.report-form .report-form__label,
#reportForm .report-form__label,
.report-form label,
#reportForm label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: #333;
}
.report-form .report-form__select,
#reportForm .report-form__select,
.report-form select,
#reportForm select {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  transition: border-color 0.3s;
}
.report-form .report-form__select:focus,
#reportForm .report-form__select:focus,
.report-form select:focus,
#reportForm select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.report-form .report-form__textarea,
#reportForm .report-form__textarea,
.report-form textarea,
#reportForm textarea {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  resize: none;
  transition: border-color 0.3s;
}
.report-form .report-form__textarea:focus,
#reportForm .report-form__textarea:focus,
.report-form textarea:focus,
#reportForm textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.report-form .report-form__submit,
#reportForm .report-form__submit,
.report-form .report-submit-btn,
#reportForm .report-submit-btn {
  width: 100%;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s;
}
.report-form .report-form__submit:hover,
#reportForm .report-form__submit:hover,
.report-form .report-submit-btn:hover,
#reportForm .report-submit-btn:hover {
  background: #134cca;
}
.footer,
.site-footer {
  background: #3a3a3a;
  color: #fff;
  padding: 3rem 2rem;
  margin-top: 5rem;
}
.footer__inner,
.site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
}
.footer__top,
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__contact .footer__phone,
.footer-contact .footer__phone,
.footer__contact .footer-phone,
.footer-contact .footer-phone {
  font-size: 1.375rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.375rem;
}
.footer__contact .footer__service-time,
.footer-contact .footer__service-time,
.footer__contact .footer-worktime,
.footer-contact .footer-worktime {
  font-size: 0.8125rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}
.footer__contact .footer__contact-btn,
.footer-contact .footer__contact-btn,
.footer__contact .footer-contact-btn,
.footer-contact .footer-contact-btn {
  border: 2px solid #3b82f6;
  color: #3b82f6;
  background: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.25rem;
  font-size: 0.9375rem;
  transition: all 0.3s;
}
.footer__contact .footer__contact-btn:hover,
.footer-contact .footer__contact-btn:hover,
.footer__contact .footer-contact-btn:hover,
.footer-contact .footer-contact-btn:hover {
  background: #3b82f6;
  color: #fff;
}
.footer__links h3,
.footer-col h3,
.footer__links .footer__links-title,
.footer-col .footer__links-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer__links a,
.footer-col a,
.footer__links .footer__link,
.footer-col .footer__link {
  display: block;
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  transition: color 0.3s;
}
.footer__links a:hover,
.footer-col a:hover,
.footer__links .footer__link:hover,
.footer-col .footer__link:hover {
  color: #fff;
}
.footer__links p,
.footer-col p {
  margin-bottom: 0.375rem;
}
.footer__qrcode,
.footer-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__qrcode-img,
.footer-qrcode-img {
  width: 5.5rem;
  height: 5.5rem;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.375rem;
}
.footer__qrcode-text,
.footer-qrcode p {
  font-size: 0.75rem;
  color: #d1d5db;
  text-align: center;
}
.footer__bottom,
.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 1.25rem;
  text-align: center;
}
.footer__bottom p,
.footer-bottom p,
.footer__bottom .footer__copyright,
.footer-bottom .footer__copyright {
  font-size: 0.8125rem;
  color: #9ca3af;
}
.page-wrapper {
  padding: 2.5rem 0;
}
.page-header-section {
  margin-bottom: 1.75rem;
}
.page-header-section h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.page-header-section p {
  color: #666;
  font-size: 0.9375rem;
}
.merchant-filters {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.merchant-filters .filter-group {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.merchant-filters .filter-row-split {
  border-top: 1px solid #f3f4f6;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.merchant-filters .filter-group-inline {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.merchant-filters .task-hall-province-form {
  width: auto;
  max-width: none;
  flex: 0 0 15rem;
}
.merchant-filters .task-hall-province-select {
  min-width: 0;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.merchants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.merchant-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.merchant-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.merchant-cover {
  height: 6rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
}
.merchant-cover.merchant-cover-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.merchant-cover.merchant-cover-purple {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}
.merchant-cover.merchant-cover-green {
  background: linear-gradient(135deg, #059669, #047857);
}
.merchant-cover.merchant-cover-orange {
  background: linear-gradient(135deg, #d97706, #b45309);
}
.merchant-cover.merchant-cover-teal {
  background: linear-gradient(135deg, #0d9488, #0f766e);
}
.merchant-cover.merchant-cover-cyan {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}
.merchant-cover.merchant-cover-violet {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.merchant-cover.merchant-cover-red {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.badge-merchant {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.merchant-body {
  padding: 1.25rem;
  text-align: center;
}
.merch-avatar {
  width: 4rem;
  height: 4rem;
  background: #f3f4f6;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: -2.5rem auto 0.75rem;
  border: 3px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.merch-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.merch-name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: #333;
}
.merch-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}
.merch-rating .stars {
  color: #f59e0b;
  font-size: 0.75rem;
}
.merch-rating .score {
  color: #f59e0b;
  font-weight: 600;
}
.merch-rating .count {
  color: #999;
}
.merch-desc {
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merch-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 0.75rem;
}
.merch-stats i {
  margin-right: 0.25rem;
}
.merch-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.tag {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
}
.tag.tag-blue {
  background: #dbeafe;
  color: #1e40af;
}
.tag.tag-green {
  background: #d1fae5;
  color: #065f46;
}
.tag.tag-orange {
  background: #fed7aa;
  color: #9a3412;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn.btn-primary {
  background: #2563eb;
  color: #fff;
}
.btn.btn-primary:hover {
  background: #134cca;
}
.btn.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}
.btn.btn-block {
  width: 100%;
}
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 40px;
  min-width: 44px;
  background-color: transparent;
  color: #2563eb;
  border-color: #2563eb;
}
@media (max-width: 1200px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tasks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .engineers__grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .knowledge__grid {
    grid-template-columns: 1fr;
  }
  .knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .merchants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav__inner,
  .navbar-inner,
  .nav-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav__left,
  .navbar-left,
  .nav-left {
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav__links,
  .navbar-links,
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .nav__right,
  .navbar-right,
  .nav-right {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero {
    height: 400px;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__btn {
    padding: 0.625rem 2rem;
    font-size: 1rem;
  }
  .stats {
    margin-top: -3rem;
  }
  .stats__card {
    padding: 1.5rem;
  }
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stats__number {
    font-size: 2rem;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .industry__grid {
    grid-template-columns: 1fr;
  }
  .tasks__grid {
    grid-template-columns: 1fr;
  }
  .engineers__grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .engineers__grid .engineer-card--panorama {
    grid-column: span 1;
  }
  .knowledge-grid {
    grid-template-columns: 1fr;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .merchants-grid {
    grid-template-columns: 1fr;
  }
  .filter-row {
    flex-direction: column;
  }
  .filter-label {
    width: auto;
    padding-top: 0;
  }
  .filter-search-form {
    width: 100%;
    max-width: none;
  }
  .engineer-area-form {
    width: 100%;
    max-width: none;
  }
  .engineer-area-select {
    flex-basis: 100%;
    min-width: 0;
  }
  .filter-search-submit {
    min-width: 4.75rem;
  }
  .merchant-filters .filter-row-split {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .footer__top,
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .float-toolbar,
  .floating-toolbar {
    right: 0.75rem;
  }
  .float-toolbar .float-toolbar__icon,
  .floating-toolbar .float-toolbar__icon,
  .float-toolbar .float-icon,
  .floating-toolbar .float-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
  .float-toolbar .float-toolbar__icon i,
  .floating-toolbar .float-toolbar__icon i,
  .float-toolbar .float-icon i,
  .floating-toolbar .float-icon i {
    font-size: 1rem;
  }
  .float-toolbar__panel,
  .float-panel {
    right: 3.5rem;
  }
  .task-card-body {
    flex-direction: column;
  }
  .task-action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 300px;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .hero__subtitle {
    font-size: 0.875rem;
  }
  .hero__btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  .container {
    padding: 0 1rem;
  }
}
.breadcrumb-section {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.breadcrumb a {
  color: #6b7280;
}
.breadcrumb a:hover {
  color: #2563eb;
}
.breadcrumb__sep {
  color: #9ca3af;
}
.breadcrumb__current {
  color: #111827;
}
.product-detail {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .product-detail__grid {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 1024px) {
  .product-detail__main {
    grid-column: span 1;
  }
}
.product-detail__content {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.product-detail__gallery {
  margin-bottom: 2rem;
}
.product-detail__main-image {
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__main-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 24rem;
  object-fit: contain;
  display: block;
}
.product-detail__info {
  background-color: #fff;
  border-radius: 0.5rem;
}
.product-detail__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.product-detail__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.product-detail__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #f59e0b;
  font-weight: 600;
}
.product-detail__sales {
  font-size: 1rem;
  color: #6b7280;
}
.product-detail__desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.product-detail__desc p,
.product-detail__desc h2,
.product-detail__desc h3,
.product-detail__desc h4,
.product-detail__desc blockquote,
.product-detail__desc div {
  margin: 0 0 14px;
}
.product-detail__desc img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  vertical-align: top;
}
.product-detail__desc .editor-image-block {
  margin: 12px 0;
}
.product-detail__specs {
  margin-bottom: 2rem;
}
.product-detail__specs-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-detail__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.product-detail__spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
}
.product-detail__spec-label {
  color: #6b7280;
  flex-shrink: 0;
  width: 6rem;
}
.product-detail__spec-value {
  color: #111827;
  font-weight: 500;
}
.product-detail__features {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.product-detail__features-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-detail__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail__features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #374151;
}
.product-detail__features-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .product-detail__sidebar {
    position: sticky;
    top: 2rem;
  }
}
.product-detail__action-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.product-detail__price-current {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ef4444;
}
.product-detail__price-original {
  font-size: 1.125rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.product-detail__price-save {
  font-size: 0.875rem;
  color: #ef4444;
  margin-bottom: 1.5rem;
}
.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.product-detail__guarantee {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}
.product-detail__guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.product-detail__guarantee-item svg {
  color: #2563eb;
}
.product-detail__merchant-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}
.product-detail__merchant-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.product-detail__merchant {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.product-detail__merchant-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  object-fit: cover;
}
.product-detail__merchant-info {
  flex: 1;
}
.product-detail__merchant-name {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.product-detail__merchant-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: #6b7280;
}
.product-detail__merchant-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.product-detail__merchant-stat {
  text-align: center;
  padding: 1rem;
  background-color: #eff6ff;
  border-radius: 0.5rem;
}
.product-detail__merchant-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}
.product-detail__merchant-stat-label {
  font-size: 0.75rem;
  color: #6b7280;
}
.detail-page {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 1024px) {
  .detail-main {
    grid-column: span 1;
  }
}
.detail-content {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.detail-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.detail-header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.detail-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.detail-header__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.detail-header__tags {
  display: flex;
  gap: 0.5rem;
}
.detail-header__price {
  text-align: right;
  flex-shrink: 0;
}
.detail-price__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ef4444;
}
.detail-price__unit {
  font-size: 1rem;
  color: #6b7280;
}
.detail-section {
  margin-bottom: 2rem;
}
.detail-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-section__title i {
  color: #2563eb;
}
.detail-section__text {
  color: #374151;
  line-height: 1.75;
  font-size: 1rem;
}
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background-color: #f9fafb;
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.detail-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.detail-info-item i {
  color: #6b7280;
  font-size: 1.25rem;
}
.detail-info-item__content {
  flex: 1;
}
.detail-info-item__label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
}
.detail-info-item__value {
  font-weight: 500;
  color: #111827;
}
.detail-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-requirements li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #374151;
}
.detail-requirements__bullet {
  color: #2563eb;
  font-weight: bold;
}
.detail-publisher {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
}
.publisher-card {
  display: flex;
  gap: 1rem;
  background-color: #f9fafb;
  padding: 1.25rem;
  border-radius: 0.5rem;
}
.publisher-card__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.publisher-card__info {
  flex: 1;
}
.publisher-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.publisher-card__name {
  font-size: 1.125rem;
  font-weight: 700;
}
.publisher-card__badge {
  background-color: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.publisher-card__company {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.publisher-card__stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.detail-publish-time {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}
.engineer-header {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.engineer-header__avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.engineer-header__avatar span {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
.engineer-header__info {
  flex: 1;
}
.engineer-header__name {
  font-size: 1.875rem;
  font-weight: 700;
  margin-right: 0.75rem;
}
.engineer-header__title-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.engineer-header__specialty {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.engineer-header__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #6b7280;
}
.engineer-header__stat {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.engineer-header__stat i {
  color: #f59e0b;
}
.engineer-header__rating {
  font-size: 1.125rem;
  font-weight: 600;
}
.engineer-header__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
}
.engineer-header__location i {
  color: #2563eb;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.detail-services {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-services li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
}
.detail-services li i {
  color: #22c55e;
}
.certification-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.certification-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ecfdf5;
  color: #065f46;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  border: 1px solid #d1fae5;
}
.certification-tag i {
  color: #10b981;
}
.case-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.case-item {
  background-color: #f9fafb;
  padding: 1.25rem;
  border-radius: 0.5rem;
}
.case-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.case-item__title {
  font-size: 1.0625rem;
  font-weight: 600;
}
.case-item__date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.case-item__desc {
  color: #6b7280;
  font-size: 0.9375rem;
}
.action-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}
.action-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}
.action-card__price-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.action-card__price-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ef4444;
}
.action-card__price-unit {
  font-size: 1rem;
  color: #6b7280;
}
.action-card__info {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.action-card__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.action-card__info-label {
  color: #6b7280;
}
.action-card__info-value {
  font-weight: 500;
}
.action-card__info-value.action-card__info-value--success {
  color: #22c55e;
}
.action-card__contact {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #eff6ff;
  border-radius: 0.5rem;
}
.action-card__contact-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e40af;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.action-card__contact-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
}
.action-card__contact-time {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.article-page {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}
.container--narrow {
  max-width: 900px;
}
.article-content {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
.article-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.article-header__category {
  display: inline-block;
  background-color: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.article-header__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.article-header__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-header__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.article-header__meta-item i {
  font-size: 1rem;
}
.article-video {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #000;
}
.article-video video {
  display: block;
  width: 100%;
  max-height: 520px;
  background: #000;
}
.article-body {
  color: #374151;
  line-height: 1.8;
  font-size: 1rem;
}
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}
.article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.article-body p {
  margin-bottom: 1rem;
}
.article-body ul,
.article-body ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-body strong {
  color: #111827;
}
.article-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
  margin-top: 2rem;
}
.article-footer__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.auth-form-section {
  background: #f8fafc;
  padding: 2.5rem 0 4rem;
}
.auth-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.auth-form-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}
.auth-form-header h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 0.5rem;
}
.auth-form-header p {
  color: #6b7280;
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.region-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.service-area-list {
  display: grid;
  gap: 0.75rem;
}
.service-area-item {
  padding: 0.875rem 1rem 1rem;
  border: 1px solid #dbe7f5;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.service-area-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.service-area-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 700;
}
.service-area-grid {
  display: grid;
  gap: 0.75rem;
}
.service-area-address {
  min-width: 0;
}
.service-area-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-shrink: 0;
}
.service-area-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  background: #fff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.service-area-btn:hover {
  border-color: #2563eb;
  background: #eff6ff;
}
.service-area-btn[hidden] {
  display: none;
}
.service-area-btn--remove {
  border-color: #fecaca;
  color: #ef4444;
}
.service-area-btn--remove:hover {
  border-color: #ef4444;
  background: #fef2f2;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.required {
  color: #ef4444;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  color: #111827;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}
.form-input,
.form-select {
  height: 2.75rem;
  padding: 0 0.875rem;
}
.form-textarea {
  min-height: 8.5rem;
  padding: 0.75rem 0.875rem;
  resize: vertical;
}
.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}
.file-upload-area {
  position: relative;
}
.file-upload-label {
  min-height: 9rem;
  border: 1px dashed #cbd5e1;
  border-radius: 0.75rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-upload-label:hover {
  border-color: #2563eb;
  background: #eff6ff;
}
.file-upload-label i {
  font-size: 2rem;
  color: #2563eb;
}
.file-upload-label p {
  font-weight: 600;
  color: #111827;
}
.file-upload-label span {
  font-size: 0.875rem;
  color: #6b7280;
}
.file-upload-label--disabled {
  cursor: not-allowed;
  background: #f3f4f6;
  opacity: 0.8;
}
.file-upload-label--disabled:hover {
  border-color: #cbd5e1;
  background: #f3f4f6;
}
.upload-preview {
  width: 16rem;
  max-width: 100%;
  height: 10rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #e5e7eb;
  margin-bottom: 0.75rem;
  flex: 0 0 auto;
}
.upload-preview.is-empty {
  display: none;
}
.upload-preview img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
}
.upload-preview--avatar {
  width: 7rem;
  max-width: 7rem;
  height: 7rem;
  border-radius: 50%;
}
.file-name {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #2563eb;
  word-break: break-all;
}
.task-upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.task-upload-preview.is-empty {
  display: none;
}
.task-upload-preview__item {
  position: relative;
  width: 9rem;
  min-width: 9rem;
  max-width: 9rem;
  height: 9rem;
  flex: 0 0 9rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f3f4f6;
}
.task-upload-preview__item img,
.task-upload-preview__item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.task-upload-preview__file {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 2rem;
}
.task-upload-preview__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.375rem 0.5rem;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.task-upload-preview__remove {
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.task-upload-preview__remove:hover {
  background: #dc2626;
}
.auth-form-status {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #2563eb;
}
.auth-form-status--danger {
  color: #dc2626;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  color: #374151;
}
.form-checkbox input {
  margin-top: 0.25rem;
}
.form-checkbox a {
  color: #2563eb;
  font-weight: 500;
}
.form-checkbox a:hover {
  text-decoration: underline;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.form-actions .btn {
  min-width: 8rem;
  justify-content: center;
}
.urgent-option {
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
  background: #fffbeb;
  padding: 1rem;
  margin: 1rem 0;
}
.urgent-option__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.urgent-option__content > input {
  margin-top: 0.35rem;
}
.urgent-option__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #111827;
}
.urgent-option__text p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.urgent-option__status {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.625rem;
  background: #fff;
  border: 1px solid #f3f4f6;
}
.urgent-option__status span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
}
.urgent-option__status small {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #6b7280;
}
.urgent-option__status.urgent-option__status--active {
  border-color: #bbf7d0;
  background: #f0fdf4;
}
.urgent-option__status.urgent-option__status--active span {
  color: #166534;
}
.urgent-option__status.urgent-option__status--single {
  border-color: #fde68a;
  background: #fff7d6;
}
.urgent-option__status.urgent-option__status--single span {
  color: #92400e;
}
.urgent-option__status.urgent-option__status--inactive {
  border-color: #fed7aa;
  background: #fff7ed;
}
.urgent-option__status.urgent-option__status--inactive span {
  color: #c2410c;
}
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  background: #f59e0b;
  color: #fff;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.vip-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #d97706;
  font-weight: 700;
}
.vip-link:hover {
  color: #b45309;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2f5a 0%, #2563eb 100%);
  padding: 2rem;
}
.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.logo-box .icon {
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-box .icon span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2563eb;
}
.logo-box .name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.auth-logo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}
.auth-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.auth-card .form-group {
  margin-bottom: 1.25rem;
}
.auth-card label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.auth-card .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-card .input-wrap i {
  position: absolute;
  left: 1rem;
  color: #9ca3af;
}
.auth-card .input-wrap input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.auth-card .input-wrap input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.auth-card .input-wrap input::placeholder {
  color: #9ca3af;
}
.auth-card .input-wrap .eye-toggle {
  position: absolute;
  right: 1rem;
  cursor: pointer;
  color: #9ca3af;
}
.auth-card .input-wrap .eye-toggle:hover {
  color: #6b7280;
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.form-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #6b7280;
}
.form-options a {
  color: #2563eb;
}
.form-options a:hover {
  text-decoration: underline;
}
.btn-auth {
  width: 100%;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-auth:hover {
  background: #134cca;
}
.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.divider span {
  padding: 0 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.social-btns button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}
.social-btns button:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.social-btns button i {
  font-size: 1.125rem;
}
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #6b7280;
}
.auth-footer a {
  color: #2563eb;
  font-weight: 500;
}
.auth-footer a:hover {
  text-decoration: underline;
}
.auth-copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.auth-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.auth-tab {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  background: none;
  border: none;
  font-size: 1rem;
  color: #6b7280;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.auth-tab.active {
  color: #2563eb;
  font-weight: 600;
}
.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
}
.auth-tab:hover:not(.active) {
  color: #374151;
}
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.terms-checkbox input {
  margin-top: 0.25rem;
}
.terms-checkbox a {
  color: #2563eb;
}
.terms-checkbox a:hover {
  text-decoration: underline;
}
.user-center {
  padding: 2.5rem 0;
  background-color: #f9fafb;
  min-height: calc(100vh - 400px);
}
.user-center__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
}
.user-sidebar {
  position: sticky;
  top: 5rem;
  align-self: start;
}
.user-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.user-card__avatar {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #2563eb, #1043b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}
.user-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.user-card__phone {
  font-size: 0.875rem;
  color: #6b7280;
}
.user-menu {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.user-menu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  color: #374151;
  font-size: 0.9375rem;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.user-menu__item i {
  width: 1.25rem;
  color: #6b7280;
}
.user-menu__item:hover {
  background: #f9fafb;
  color: #2563eb;
}
.user-menu__item.active {
  background: #eff6ff;
  color: #2563eb;
  border-left-color: #2563eb;
}
.user-menu__item.active i {
  color: #2563eb;
}
.user-content {
  min-height: 500px;
}
.user-tab {
  display: none;
}
.user-tab.active {
  display: block;
}
.user-tab__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.user-profile {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.user-profile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.user-profile__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.user-profile__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.user-profile__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.user-profile__label {
  font-size: 0.875rem;
  color: #6b7280;
}
.user-profile__value {
  font-size: 1rem;
  color: #111827;
  font-weight: 500;
}
.user-membership {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #dbeafe;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}
.user-membership__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.user-membership__header h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}
.user-membership__header p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
.user-membership__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.user-membership__badge.user-membership__badge--active {
  background: #dcfce7;
  color: #166534;
}
.user-membership__badge.user-membership__badge--single {
  background: #fef3c7;
  color: #92400e;
}
.user-membership__badge.user-membership__badge--expired {
  background: #fee2e2;
  color: #b91c1c;
}
.user-membership__badge.user-membership__badge--inactive {
  background: #e5e7eb;
  color: #4b5563;
}
.user-membership__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.user-membership__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 88px;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #dbeafe;
  background: #fff;
}
.user-membership__label {
  font-size: 0.8125rem;
  color: #6b7280;
}
.user-membership__value {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #111827;
  font-weight: 600;
  word-break: break-all;
}
.user-membership__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dbeafe;
}
.user-membership__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
}
.user-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.user-stats__item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.user-stats__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.25rem;
}
.user-stats__label {
  font-size: 0.875rem;
  color: #6b7280;
}
.task-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.task-filter__btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s;
}
.task-filter__btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.task-filter__btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.user-task-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.user-task-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.user-task-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.user-task-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.user-task-card__header h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
}
.task-status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.task-status.task-status--selecting {
  background: #fef3c7;
  color: #92400e;
}
.task-status.task-status--progress {
  background: #dbeafe;
  color: #1e40af;
}
.task-status.task-status--pending {
  background: #d1fae5;
  color: #065f46;
}
.user-task-card__desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.user-task-card__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.user-task-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.user-task-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}
.user-task-card__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.user-task-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4444;
}
.user-task-card__applicants,
.user-task-card__progress,
.user-task-card__pending {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.user-empty {
  background: #fff;
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.user-empty i {
  font-size: 3rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}
.user-empty p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.balance-card {
  background: linear-gradient(135deg, #2563eb, #1043b3);
  border-radius: 0.5rem;
  padding: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.balance-card__label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.balance-card__amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.balance-card__actions {
  display: flex;
  gap: 1rem;
}
.balance-card__actions .btn {
  min-width: 100px;
}
.balance-card__actions .btn-primary {
  background: #fff;
  color: #2563eb;
}
.balance-card__actions .btn-primary:hover {
  background: #f3f4f6;
}
.balance-card__actions .btn-outline {
  border-color: #fff;
  color: #fff;
}
.balance-card__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.balance-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.balance-stats__item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.balance-stats__label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.balance-stats__value {
  font-size: 1.5rem;
  font-weight: 700;
}
.balance-stats__value.balance-stats__value--green {
  color: #22c55e;
}
.balance-stats__value.balance-stats__value--red {
  color: #ef4444;
}
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.cert-item__icon {
  width: 3rem;
  height: 3rem;
  background: #eff6ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-item__icon i {
  font-size: 1.25rem;
  color: #2563eb;
}
.cert-item__info {
  flex: 1;
}
.cert-item__info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.cert-item__info p {
  font-size: 0.8125rem;
  color: #6b7280;
}
.cert-item__status {
  flex-shrink: 0;
}
.cert-item__status.cert-item__status--done {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #22c55e;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .user-center__grid {
    grid-template-columns: 1fr;
  }
  .user-sidebar {
    position: static;
    display: flex;
    gap: 1rem;
  }
  .user-sidebar .user-card {
    flex: 0 0 auto;
    width: 200px;
    margin-bottom: 0;
  }
  .user-sidebar .user-menu {
    flex: 1;
    display: flex;
  }
  .user-sidebar .user-menu .user-menu__item {
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  .user-sidebar .user-menu .user-menu__item.active {
    border-left-color: transparent;
    border-bottom-color: #2563eb;
  }
}
@media (max-width: 768px) {
  .user-sidebar {
    flex-direction: column;
  }
  .user-sidebar .user-card {
    width: 100%;
  }
  .user-sidebar .user-menu {
    display: block;
  }
  .user-profile__grid {
    grid-template-columns: 1fr;
  }
  .user-membership__header,
  .user-membership__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .user-membership__grid {
    grid-template-columns: 1fr;
  }
  .user-stats {
    grid-template-columns: 1fr;
  }
  .balance-stats {
    grid-template-columns: 1fr;
  }
  .task-filter {
    flex-wrap: wrap;
  }
}
.user-menu__group {
  border-bottom: 1px solid #f3f4f6;
}
.user-menu__parent {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.user-menu__parent .user-menu__arrow {
  margin-left: auto;
  transition: transform 0.3s;
}
.user-menu__parent.expanded .user-menu__arrow {
  transform: rotate(180deg);
}
.user-menu__submenu {
  background: #f9fafb;
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 200px;
}
.user-menu__submenu.collapsed {
  max-height: 0;
}
.user-menu__subitem {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem 0.75rem 2.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.user-menu__subitem i {
  width: 1rem;
  font-size: 0.875rem;
}
.user-menu__subitem:hover {
  color: #2563eb;
  background: #f3f4f6;
}
.user-menu__subitem.active {
  color: #2563eb;
  background: #eff6ff;
}
.user-tab__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.user-tab__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.user-tab__actions .task-filter {
  margin-bottom: 0;
}
.user-task-card__header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem;
  background: linear-gradient(to right, #eff6ff, #fff);
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0.5rem 0.5rem 0 0;
}
.user-task-card__title-area {
  flex: 1;
}
.user-task-card__title-area h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.user-task-card__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
.task-date {
  color: #9ca3af;
}
.user-task-card__info {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.user-task-card__info span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.user-task-card__info i {
  color: #9ca3af;
}
.user-task-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.user-task-card__price-wrap .price-label {
  font-size: 0.75rem;
  color: #6b7280;
}
.user-task-card__badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.user-task-card__badge.user-task-card__badge--orange {
  background: #fef3c7;
  color: #92400e;
}
.user-task-card__badge.user-task-card__badge--blue {
  background: #dbeafe;
  color: #1e40af;
}
.user-task-card__badge.user-task-card__badge--purple {
  background: #f3e8ff;
  color: #7c3aed;
}
.user-table-wrap {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.user-table {
  width: 100%;
  border-collapse: collapse;
}
.user-table th,
.user-table td {
  padding: 1rem 1.25rem;
  text-align: left;
}
.user-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}
.user-table td {
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
}
.user-table tr:last-child td {
  border-bottom: none;
}
.user-table .text-green {
  color: #22c55e;
  font-weight: 600;
}
.user-table .text-red {
  color: #ef4444;
  font-weight: 600;
}
.status-success {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #22c55e;
}
.status-success i {
  font-size: 0.875rem;
}
.cert-status-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}
.cert-status-card.cert-status-card--done .cert-status-card__icon {
  color: #22c55e;
}
.cert-status-card__icon {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}
.cert-status-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.cert-status-card__desc {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.cert-info-list {
  max-width: 400px;
  margin: 1.5rem auto 0;
  text-align: left;
}
.cert-info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.cert-info-item:last-child {
  border-bottom: none;
}
.cert-info-item__label {
  color: #6b7280;
}
.cert-info-item__value {
  font-weight: 500;
  color: #111827;
}
.vip-card {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 0.5rem;
  padding: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.vip-card__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vip-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.vip-card__subtitle {
  opacity: 0.9;
}
.vip-card__icon {
  font-size: 4rem;
  opacity: 0.9;
}
.vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.vip-benefit-item {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}
.vip-benefit-item i {
  font-size: 1.5rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}
.vip-benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.vip-benefit-item p {
  font-size: 0.875rem;
  color: #6b7280;
}
.vip-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vip-plan-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  position: relative;
}
.vip-plan-card.vip-plan-card--recommend,
.vip-plan-card.vip-plan-card--best {
  border: 2px solid #f59e0b;
}
.vip-plan-card__tag {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.vip-plan-card__duration {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.vip-plan-card__price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}
.vip-plan-card__original {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 1.5rem;
}
.vip-hero {
  background: linear-gradient(135deg, #1a2f5a 0%, #2563eb 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.vip-hero__content {
  max-width: 760px;
  margin: 0 auto;
}
.vip-hero__content > i {
  font-size: 2.25rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}
.vip-hero__content h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.vip-hero__content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}
.vip-section {
  background: #f8fafc;
  padding: 3rem 0 4rem;
}
.vip-benefits,
.vip-section .vip-plans,
.vip-faq {
  margin-bottom: 2.5rem;
}
.vip-benefits h2,
.vip-section .vip-plans h2,
.vip-faq h2 {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 1.5rem;
}
.vip-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.vip-benefit-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}
.vip-benefit-card h3 {
  font-size: 1rem;
  color: #111827;
  margin-bottom: 0.35rem;
}
.vip-benefit-card p {
  color: #6b7280;
  font-size: 0.9rem;
}
.vip-benefit-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.875rem;
  border-radius: 50%;
  background: #fff7ed;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.vip-section .vip-plans {
  display: block;
}
.vip-plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.vip-section .vip-plan-card {
  min-height: 14rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.vip-section .vip-plan-card.recommended,
.vip-section .vip-plan-card.selected,
.vip-section .vip-plan-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.vip-plan-card__content h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 0.75rem;
}
.vip-plan-card__content p {
  color: #374151;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}
.vip-plan-card__content .savings {
  color: #d97706;
  font-weight: 600;
}
.vip-plan-card__price .price {
  font-size: 2rem;
  font-weight: 800;
  color: #f59e0b;
}
.vip-plan-card__price .original {
  margin-left: 0.5rem;
  color: #9ca3af;
  font-size: 1rem;
  text-decoration: line-through;
}
.vip-plan-card__check {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vip-purchase-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  min-width: 12rem;
  height: 3rem;
  border: none;
  border-radius: 0.5rem;
  background: #f59e0b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, transform 0.2s;
}
.vip-purchase-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
}
.vip-faq {
  margin-bottom: 0;
}
.vip-faq__list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.vip-faq__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.5rem;
}
.vip-faq__item h4 {
  color: #111827;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.vip-faq__item p {
  color: #6b7280;
  font-size: 0.9rem;
}
.vip-recharge-page {
  min-height: 620px;
  background: #f8fafc;
  padding: 2rem 0 4rem;
}
.vip-recharge-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.75rem;
}
.vip-recharge-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2.5rem;
}
.vip-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.5rem;
}
.vip-package-card {
  position: relative;
  min-height: 16rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vip-package-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.15rem;
}
.vip-package-card--highlight {
  border-color: #f59e0b;
}
.vip-package-card__tag {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 3.5rem;
  border-radius: 9999px;
  background: #f59e0b;
  color: #fff;
  padding: 0.35rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.vip-package-card__price {
  color: #f59e0b;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.vip-package-card__original {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: line-through;
  margin-bottom: 1.75rem;
}
.vip-package-card__meta {
  min-height: 1.25rem;
  margin: -0.95rem 0 1.25rem;
  color: #64748b;
  font-size: 0.875rem;
}
.vip-package-card__btn {
  width: 100%;
  max-width: 15.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.45rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.vip-package-card__btn:hover {
  background: #1554e0;
  transform: translateY(-1px);
}
.task-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.task-modal.active {
  display: block;
}
.task-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.task-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
}
.task-modal__header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.task-modal__header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.task-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
}
.task-modal__close:hover {
  color: #111827;
}
.task-modal__body {
  padding: 1.5rem;
}
.task-detail-info {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.task-detail-info__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.task-detail-info__title-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.task-detail-info__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.task-detail-info__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.task-detail-info__desc {
  margin-bottom: 1rem;
}
.task-detail-info__desc .label {
  font-size: 0.875rem;
  color: #6b7280;
}
.task-detail-info__desc p {
  margin-top: 0.25rem;
  color: #374151;
}
.task-detail-info__footer {
  display: flex;
  gap: 2rem;
}
.task-detail-info__footer .label {
  font-size: 0.875rem;
  color: #6b7280;
}
.task-detail-info__footer .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4444;
}
.modal-section {
  margin-bottom: 1.5rem;
}
.modal-section__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.engineer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.engineer-card-modal {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: box-shadow 0.3s;
}
.engineer-card-modal:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.engineer-card-modal__avatar {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.engineer-card-modal__info {
  flex: 1;
}
.engineer-card-modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.engineer-card-modal__header h5 {
  font-size: 1.125rem;
  font-weight: 700;
}
.engineer-card-modal__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 600;
}
.engineer-card-modal__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
.engineer-card-modal__time {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}
.service-engineer-card {
  background: #eff6ff;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.service-engineer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-engineer-info__avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.service-engineer-info__detail {
  flex: 1;
}
.service-engineer-info__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.service-engineer-info__name .rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.service-engineer-info__stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
.task-progress-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.task-progress-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.task-progress-card__percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}
.task-progress-bar {
  height: 0.5rem;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.task-progress-bar__fill {
  height: 100%;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  transition: width 0.5s;
}
.task-progress-steps {
  display: flex;
  flex-direction: column;
}
.progress-step {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
}
.progress-step:last-child {
  padding-bottom: 0;
}
.progress-step__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
}
.progress-step--completed .progress-step__icon {
  background: #22c55e;
  color: #fff;
}
.progress-step--completed .progress-step__title {
  color: #111827;
}
.progress-step--current .progress-step__icon {
  background: #2563eb;
  color: #fff;
}
.progress-step--current .progress-step__title {
  color: #2563eb;
  font-weight: 600;
}
.progress-step--pending .progress-step__icon {
  background: #e5e7eb;
  color: #9ca3af;
}
.progress-step--pending .progress-step__title {
  color: #9ca3af;
}
.progress-step__content {
  flex: 1;
}
.progress-step__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.progress-step__desc {
  font-size: 0.875rem;
  color: #6b7280;
}
.progress-step__time {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}
.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn-success {
  background: #22c55e;
  color: #fff;
}
.btn-success:hover {
  background: #1a9a49;
}
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .auth-form-section {
    padding: 1.5rem 0 2.5rem;
  }
  .auth-form-wrapper {
    padding: 1.25rem;
  }
  .form-row,
  .region-selects,
  .vip-benefits__grid,
  .vip-package-grid,
  .vip-plans__grid {
    grid-template-columns: 1fr;
  }
  .service-area-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-area-actions {
    justify-content: flex-end;
    width: 100%;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .btn {
    width: 100%;
  }
  .vip-hero {
    padding: 2.5rem 0;
  }
  .vip-hero__content h1 {
    font-size: 1.8rem;
  }
  .vip-recharge-page {
    padding: 1.5rem 0 2.5rem;
  }
  .vip-recharge-panel {
    padding: 1.25rem;
  }
  .vip-plans {
    grid-template-columns: 1fr;
  }
  .vip-benefits-grid {
    grid-template-columns: 1fr;
  }
  .user-tab__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .engineer-card-modal {
    flex-direction: column;
  }
  .engineer-card-modal__avatar {
    margin-bottom: 0.5rem;
  }
  .service-engineer-info {
    flex-wrap: wrap;
  }
  .task-detail-info__footer {
    flex-direction: column;
    gap: 0.5rem;
  }
  .modal-actions {
    flex-direction: column;
  }
}
.store-banner {
  position: relative;
  height: 16rem;
  background: linear-gradient(to right, #2563eb, #1e40af);
}
.store-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.store-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}
.store-banner__inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.store-banner__logo {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.store-banner__info {
  color: #fff;
}
.store-banner__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.store-banner__title {
  font-size: 1.875rem;
  font-weight: 700;
}
.store-banner__badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: #22c55e;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.store-banner__stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9375rem;
}
.store-banner__stat {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.store-banner__stat i {
  color: #fbbf24;
}
.store-page {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}
.store-info-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.store-info-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.store-info-card__title i {
  color: #2563eb;
}
.store-info-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.store-info-card__col h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.store-info-card__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.store-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.store-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.store-info-item > i {
  width: 1.25rem;
  color: #6b7280;
  margin-top: 0.125rem;
}
.store-info-item__icon--green {
  color: #22c55e !important;
}
.store-info-item__content {
  flex: 1;
}
.store-info-item__label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.125rem;
}
.store-info-item__value {
  font-weight: 500;
  color: #111827;
}
.store-info-item__value.store-info-item__value--green {
  color: #22c55e;
}
.merchant-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.merchant-panel__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}
.merchant-panel__header > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
}
.merchant-goods-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.merchant-goods-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
}
.merchant-goods-item__img {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 0.5rem;
  object-fit: cover;
  background: #f3f4f6;
}
.merchant-goods-item__body {
  flex: 1;
  min-width: 0;
}
.merchant-goods-item__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.merchant-goods-item__body p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
.merchant-goods-item__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.store-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.store-products__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.store-products__sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.store-products__sort-label {
  font-size: 0.875rem;
  color: #6b7280;
}
.sort-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}
.sort-btn:hover {
  background: #e5e7eb;
}
.sort-btn.active {
  background: #2563eb;
  color: #fff;
}
.store-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-category {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  display: block;
}
.product-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
  line-height: 1.25;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.product-rating i {
  color: #fbbf24;
  font-size: 0.75rem;
}
.product-rating .rating-value {
  font-weight: 600;
  color: #111827;
}
.product-rating .sales-count {
  color: #6b7280;
}
.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}
.cart-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.cart-btn:hover {
  background: #134cca;
}
@media (max-width: 1200px) {
  .store-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .store-info-card__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .merchant-goods-item {
    align-items: flex-start;
  }
  .merchant-goods-item__img {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }
  .merchant-goods-item__actions {
    flex-direction: column;
    width: auto;
  }
  .store-banner {
    height: auto;
    padding-bottom: 1rem;
  }
  .store-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .store-banner__logo {
    width: 5rem;
    height: 5rem;
    margin-top: -2.5rem;
  }
  .store-banner__title {
    font-size: 1.5rem;
  }
  .store-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-products__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .store-products__sort {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .merchant-goods-item {
    flex-direction: column;
    align-items: stretch;
  }
  .merchant-goods-item__img {
    width: 100%;
    height: 180px;
    flex-basis: auto;
  }
  .merchant-goods-item__actions {
    flex-direction: row;
    justify-content: flex-end;
  }
  .store-products__grid {
    grid-template-columns: 1fr;
  }
}
