/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
}

/* 全景容器 */
.panorama-container {
  height: 50vh; /* 在移动设备中调整高度 */
  margin-bottom: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .panorama-container {
    height: 75vh; /* PC端保持原高度 */
  }
}

.panorama-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #1a1a1a;
}

/* 操作栏 */
.action-bar {
  max-width: 1600px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* 个人资料卡 */
.profile-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.profile-info h2 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.profile-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #666;
}

.profile-stats em {
  color: #2d8cf0;
  font-style: normal;
  font-weight: 600;
}

/* 操作按钮 */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

.wechat-btn {
  background: linear-gradient(135deg, #09f076, #2d8cf0);
  color: white;
}

.phone-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #666;
  transition: all 0.3s;
}

.share-icon {
  width: 18px;
  height: 18px;
}

/* 悬停效果 */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.share-btn:hover {
  border-color: #2d8cf0;
  color: #2d8cf0;
}

/* 长图海报容器 */
.poster-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.poster-images {
  display: flex;
  flex-direction: column; /* 垂直排列切图 */
}

.poster-image {
  width: 100%;
  height: auto;
  display: block; /* 去除图片底部间隙 */
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .poster-container {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .action-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.5rem;
  }
  .profile-card {
    padding: 1rem;
  }
  .action-buttons {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .btn {
    flex: 1;
    justify-content: center;
  }
  .poster-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .poster-container {
    padding: 0 0.5rem;
  }
}