/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

a {
  text-decoration: none;
}

body {
  color: #333;
  padding-bottom: 65px;
}

/* 顶部导航 */
.navbar {
  display: none !important;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar h1 {
  font-size: 18px;
  font-weight: bold;
  color: #FF85A2;
}

.contact-btn {
  background: #FF85A2;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(255, 133, 162, 0.3);
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #FF5C8A;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(255, 133, 162, 0.4);
}

/* 主内容区 */
.main-content {
  /* margin-top: 70px; */
}

/* 英雄区域 */
.hero {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFD9E2 0%, #FF85A2 100%);
  padding: 40px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.start-btn {
  background: white;
  color: #FF85A2;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.start-btn i {
  margin-left: 8px;
}

.start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 服务特色 */
.features {
  padding: 30px 20px;
  background: white;
  max-width: 800px;
  margin: 0 auto;
}

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

.feature-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.feature-card {
  /* background: #FFF5F8; */
  border-radius: 15px;
  /* padding: 20px 15px; */
  text-align: center;
  transition: all 0.3s;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); */
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon1 {
  background: rgba(255, 133, 162, 0.1);
  color: #FF85A2;
}

.icon2 {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

.icon3 {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}

.icon4 {
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
}


.feature-card h3 {
  font-size: 14px;
  /* font-weight: bold; */
  /* margin-bottom: 8px; */
  color: #666;
}

.feature-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* 定制流程 */
.process {
  padding: 30px 20px;
  background: #fefefe;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.section-title p {
  font-size: 16px;
  color: #FF85A2;
  font-weight: 500;
}

.title-line {
  width: 40px;
  height: 3px;
  background: #FF85A2;
  margin: 10px auto 0;
  border-radius: 3px;
}

.process-steps {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  padding-left: 20px;
}

/* .process-steps::before {
            content: "";
            position: absolute;
            left: 0;
            top: 30px;
            bottom: 30px;
            width: 2px;
            background: linear-gradient(to bottom, #FF85A2 0%, #FFD9E2 100%);
        } */

.step {
  position: relative;
  margin-bottom: 30px;
  animation: fadeInUp 0.5s forwards;
  opacity: 0;
}

.step1 {
  animation-delay: 0.1s;
}

.step2 {
  animation-delay: 0.3s;
}

.step3 {
  animation-delay: 0.5s;
}

.step-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FF85A2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(255, 133, 162, 0.3);
}

.step-content {
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.step-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 133, 162, 0.1);
  color: #FF85A2;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
}

.cta-button {
  text-align: center;
  margin-top: 30px;
}

.customize-btn {
  background: #FF85A2;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 133, 162, 0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  animation: pulse 2s infinite;
}

.customize-btn i {
  margin-left: 8px;
}

.customize-btn:hover {
  background: #FF5C8A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 133, 162, 0.4);
}

/* 底部导航 */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.nav-item {
  flex: 1;
  text-align: center;
  padding: 5px 0;
  color: #999;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-item.active {
  color: #FF85A2;
}

.nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

.nav-item span {
  font-size: 12px;
  display: block;
}

.nav-item:hover {
  color: #FF85A2;
}

/* 动画效果 */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* 响应式调整 */
@media (min-width: 480px) {
  .feature-grid {
    gap: 20px;
  }

  .process-steps {
    max-width: 400px;
  }
}

/* 产品列表容器 */
.product-list {
  padding: 16px;
}

/* 产品卡片 */
.product-card {
  display: flex;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

/* 产品图片区域 */
.product-image {
  width: 150px;
  height: 150px;
  background-color: #4b1010;


}

/* 简单的食物图标替代 */
.food-icon {
  width: 100%;
  height: 100%;

}





/* 产品信息区域 */
.product-info {
  width: 70%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 产品名称 */
.product-name {
  font-weight: 600;
  font-size: 17px;
  color: #333333;
  margin-bottom: 5px;
}

/* 产品描述 */
.product-desc {
  font-size: 13px;
  color: #666666;
  margin-bottom: 8px;
}

/* 产品底部信息 */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

/* 已下单人数 */
.order-count {
  font-size: 12px;
  color: #999999;
  display: flex;
  align-items: center;
}

/* 用户图标替代 */
.user-icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  position: relative;
}

.user-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #999999;
  border-radius: 50%;
}

.user-icon:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -2px;
  width: 16px;
  height: 8px;
  background-color: #999999;
  border-radius: 4px;
}

/* 下单按钮 */
.order-btn {
  background-color: #FF85A2;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}


.order-btn:active {
  transform: scale(0.96);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 轮播图样式 */
.carousel-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 轮播图导航 */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.carousel-dot.active {
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #777;
  font-size: 18px;
  transition: background 0.3s;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

/* 个人信息样式 */
.profile {
  padding: 25px;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.profile-name {
  font-size: 24px;
  font-weight: 600;
  color: #2d2d2d;
}

.profile-tags {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}


.profile-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.action-btn:hover {
  background: #e0e0e0;
}

/* 简介区域 */
.profile-bio {
  background: #f9f9f9;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d2d2d;
}

.bio-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 评价区域 */
.reviews {
  margin-bottom: 25px;
}


.review-card {
  background: white;
  /* border: 1px solid #f0f0f0; */
  /* border-radius: 10px; */
  padding: 18px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.reviewer {
  font-size: 13px;
  color: #999;
}

.review-rating {
  display: flex;
  align-items: center;
}

.stars {
  color: #ffc107;
  margin-right: 5px;
}

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

.review-text {
  font-size: 14px;
  color: #333;
}





/* 全屏图片模态框 */
.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.fullscreen-modal.active {
  opacity: 1;
  pointer-events: all;
}

/* .modal-content {
      position: relative;
      max-width: 90%;
      max-height: 85vh;
    }
    
    .fullscreen-img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
    } */

.modal-content {
  position: relative;
  max-width: 100%;

}

.fullscreen-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

/* 响应式调整 */
@media (max-width: 600px) {
  .carousel-container {
    height: 220px;
  }

  .profile {
    padding: 20px 15px;
  }

  .profile-name {
    font-size: 20px;
  }

  .profile-bio {
    padding: 15px;
  }

  .review-card {
    padding: 15px;
  }
}

.hy-trigger-btn {
  background-color: #FF85A2;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hy-trigger-btn:hover {
  background-color: #FF85A2;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.hy-trigger-btn:active {
  transform: translateY(0);
}

/* 模态框基础样式 */
.hy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

/* 背景遮罩 */
.hy-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 模态框内容容器 */
.hy-modal-content {
  position: relative;
  background-color: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

/* 打开状态样式 */
.hy-modal.hy-active {
  display: flex;
}

.hy-modal.hy-active .hy-modal-backdrop {
  opacity: 1;
}

.hy-modal.hy-active .hy-modal-content {
  transform: scale(1);
  opacity: 1;
}

/* 关闭按钮 */
.hy-modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  background-color: #f5f5f5;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.hy-modal-close:hover {
  background-color: #e0e0e0;
}

.hy-modal-close::before,
.hy-modal-close::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #666;
}

.hy-modal-close::before {
  transform: rotate(45deg);
}

.hy-modal-close::after {
  transform: rotate(-45deg);
}

/* 模态框头部 */
.hy-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.hy-modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* 模态框主体 */
.hy-modal-body {
  padding: 24px;
}

/* 套餐选项样式 */
.hy-package-option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

.hy-package-option:hover {
  border-color: #FF85A2;
}

.hy-package-icon {
  width: 50px;
  height: 50px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.hy-package-icon::before {
  content: '🎁';
  font-size: 24px;
}

.hy-package-info {
  flex-grow: 1;
}

.hy-package-title {
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}

.hy-package-price {
  color: #FF85A2;
}

.hy-package-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.hy-package-users {
  font-size: 12px;
  color: #999;
  margin-left: 10px;
}

.hy-package-btn {
  background-color: #FF85A2;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hy-package-btn:hover {
  background-color: #FF85A2;
  color: white;
}

/* 模态框底部 */
.hy-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  text-align: center;
}

.hy-action-btn {
  background-color: #FF85A2;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}


/* 主容器 */
.oi-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}

/* 内容卡片 */
.oi-content-card {
  border-bottom: 8px solid #f5f5f5;
  padding: 12px 15px;
}

/* 用户信息栏 */
.oi-user-bar {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.oi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  flex-shrink: 0;
  position: relative;
}

.oi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oi-avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4d4f;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.oi-user-info {
  flex: 1;
}

.oi-username {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.oi-verify-icon {
  color: #ff85a2;
  font-size: 12px;
  margin-left: 4px;
}

.oi-post-time {
  font-size: 12px;
  color: #999;
}

/* 内容区域 */
.oi-post-content {
  margin-bottom: 10px;
}

.oi-post-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* 视频区域 */
.oi-video-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.oi-audio-info {
  flex: 1;
  background: #fff0f0;
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.oi-audio-icon {
  color: #ff4d4f;
  font-size: 16px;
}

.oi-audio-wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
}

.oi-wave-bar {
  height: 12px;
  width: 2px;
  background: #ff4d4f;
  border-radius: 1px;
}

.oi-wave-bar:nth-child(2),
.oi-wave-bar:nth-child(4) {
  height: 8px;
}

.oi-wave-bar:nth-child(3) {
  height: 16px;
}

.oi-audio-duration {
  font-size: 12px;
  color: #ff4d4f;
  white-space: nowrap;
}

.oi-video-thumbnail {
  /* width: 100px;
      height: 60px; */
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.oi-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oi-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

/* 统计和操作区 */
.oi-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 12px;
  color: #999;
  border-top: 1px solid #f5f5f5;
}

.oi-view-count {
  display: flex;
  align-items: center;
}

.oi-view-count i {
  margin-right: 4px;
}

/* 渐变色按钮 */
.oi-gradient-btn {
  padding: 5px 12px;
  border-radius: 12px;
  color: white;
  border: none;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ff4d4f 0%, #ff7a7a 100%);
  transition: opacity 0.3s;
}

.oi-gradient-btn:hover {
  opacity: 0.9;
}

/* 底部发布按钮 */
.oi-float-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d4f 0%, #ff7a7a 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 77, 79, 0.4);
  font-size: 16px;
  cursor: pointer;
  border: none;
}

/* 响应式调整 */
@media (max-width: 400px) {
  .oi-video-thumbnail {
    width: 80px;
    height: 50px;
  }

  .oi-audio-info {
    padding: 6px 10px;
  }
}

.uy-container {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 用户信息区域 */
.uy-user-profile {
  display: flex;
  align-items: center;
  padding: 20px;
}

.uy-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.uy-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uy-username {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

/* 卡片组件 */
.uy-card {
  margin: 10px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.uy-card-header {
  padding: 12px 15px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
}

.uy-card-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-left: 8px;
}

.uy-card-title span {
  font-size: 13px;
  color: #999;
  font-weight: normal;
  margin-left: 8px;
}

.uy-red-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff85a2;
}

.uy-card-body {
  padding: 15px;
}

/* 表单样式 */
.uy-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.uy-input-field {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.uy-input-field:focus {
  outline: none;
  border-color: #ccc;
}

.uy-btn {
  padding: 10px 15px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.uy-btn-red {
  background: #ff85a2;
  color: white;
}

/* 联系信息样式 */
.uy-contact-info {
  padding: 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 360px) {
  .uy-user-profile {
    padding: 15px;
  }

  .uy-avatar {
    width: 50px;
    height: 50px;
  }

  .uy-input-group {
    flex-direction: column;
    gap: 10px;
  }

  .uy-btn {
    width: 100%;
  }
}

/* 主容器 */
.uio-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5px;
  padding-bottom: 35px;
  background: #fff;
}

/* 下单按钮 */
.o0rder-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px;
  background: #FF85A2;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 5px rgba(227, 228, 232, 0.3);
}

.o0rder-btn {
  position: fixed;
  bottom: 68px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
  max-width: 800px;
  margin: 0 auto;
  width: 94%;

}



/* 用户信息区域 */
.uio-user-profile {
  padding: 20px 15px;
  display: flex;
  align-items: center;
}

.uio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.uio-user-info {
  flex: 1;
}

.uio-username {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.uio-tags {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.uio-tag {
  font-size: 12px;
  padding: 2px 8px;
  background: #f5f5f5;
  border-radius: 12px;
  color: #666;
}

.uio-sold {
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* 简介区域 */
.uio-intro {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Tab切换区域 */
.uio-tabs {
  display: flex;
  border-bottom: 1px solid #f5f5f5;
}

.uio-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  position: relative;
}

.uio-tab.active {
  color: #ff85a2;
}

.uio-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffc6d3;
}

/* 内容区域 */
.uio-tab-content {
  display: none;
}

.uio-tab-content.active {
  display: block;
}

/* 女神动态区域 */
.uio-dynamic-item {
  padding: 15px;
  border-bottom: 1px solid #f5f5f5;
}

.uio-dynamic-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.uio-dynamic-icon {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 12px;
}

.uio-dynamic-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.uio-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.uio-dynamic-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.uio-dynamic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.uio-show-more {
  padding: 15px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* 图片预览模态框 */
.uio-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.uio-modal.active {
  display: flex;
}

.uio-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uio-modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.uio-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 用户评价区域 (默认隐藏) */
.uio-reviews {
  padding: 15px;
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 50px 0;
}

/* 响应式调整 */
@media (max-width: 360px) {
  .uio-image-grid {
    gap: 5px;
  }

  .uio-avatar {
    width: 65px;
    height: 65px;
  }

  .uio-username {
    font-size: 18px;
  }
}

.noi-container {
  margin: 0 auto;
  background: #fefefe;
  padding-top: 10px;
  padding-bottom: 30px;
}

/* 列表项样式 */
.noi-list-item {
  max-width: 800px;
  margin: 10px auto;
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #f5f5f5;
  background: #fefefe;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.noi-list-item:hover {
  transform: translateY(-5px);

}

/* 头像区域 */
.noi-avatar-container {
  position: relative;
  margin-right: 12px;
}

.noi-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.noi-badge {
  position: absolute;
  top: -3px;
  left: -3px;
  background: #FF85A2;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* 内容区域 */
.noi-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.noi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}

.noi-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.noi-time {
  font-size: 12px;
  color: #999;
}

.noi-rating {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.noi-star {
  color: #FFB900;
  font-size: 12px;
  margin-right: 3px;
}

.noi-score {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  margin-right: 8px;
}

.noi-tag {
  font-size: 12px;
  color: #666;
  margin-right: 8px;
}

.noi-stats {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.noi-stat-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999;
  margin-right: 12px;
}

.noi-stat-item i {
  margin-right: 4px;
  font-size: 12px;
}

/* 标签容器 */
.noi-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.noi-tag-item {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #666;
}

.noi-tag-item.highlight {
  background: #FFF1F0;
  color: #F5222D;
}

/* 右侧按钮 */
.noi-action {
  display: flex;
  align-items: center;
}

.noi-button {
  background: #FF85A2;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

/* 响应式调整 */
@media (max-width: 400px) {
  .noi-avatar {
    width: 60px;
    height: 60px;
  }

  .noi-score,
  .noi-tag {
    font-size: 12px;
  }

  .noi-stat-item {
    margin-right: 8px;
    font-size: 11px;
  }

  .noi-button {
    padding: 7px 12px;
    font-size: 13px;
  }
}