* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
  color: #fff;
  overflow-x: hidden;
}
/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 10px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}

.stat-icon {
  width: 16px;
  height: 16px;
  margin: 0 auto 10px;
  color: #3b82f6;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.app-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}
.detail-container {
  /*            max-width: 480px;*/
  padding: 10px;
  margin: 0 auto;
  position: relative;
}
.image-container {
  position: relative;
}
.media-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.action-buttons {
  display: flex;
  gap: 25px;
  margin: 15px 0;
  padding: 0 15px;
}
/*.action-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 36px;
            padding: 0 12px;
            background-color: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .action-btn:hover {
            opacity: 0.8;
        }
        .action-btn svg {
            width: 20px;
            height: 20px;
        }*/
.collect-btn {
  color: white;
}
.report-btn {
  color: white;
}
.collect-btn.active {
  color: #ff4757;
}
.report-btn:hover {
  color: #ff4757;
  border-color: #ff4757;
}
.media-wrapper img,
.media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  z-index: 3;
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}
.nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.fullscreen-content {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  max-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fs-media-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.fs-close-btn {
  position: absolute;
  top: -35px;
  right: -10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 10000;
}
.fs-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.fs-nav-btn {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10000;
}
#fs-prev-btn {
  left: -15px;
}
#fs-next-btn {
  right: -15px;
}
.fs-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
#fs-image-info {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  font-size: 12px;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.image-info {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  font-size: 10px;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  z-index: 2;
}
.profile-section {
  margin-top: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.name {
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: linear-gradient(135deg, #f65c5c, #619bff);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #ffd700;
}
.stats {
  display: flex;
  gap: 10px;
  /*            margin-bottom: 15px;*/
  font-size: 13px;
}
.stats span {
  background: rgba(20, 20, 30, 0.85);
  color: #ffd700;
  padding: 5px 8px;
  border-radius: 5px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.rating-section {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.rating {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.rating-label {
  font-size: 12px;
  margin-bottom: 5px;
  color: #ffa500;
}
.rating-score {
  font-size: 24px;
  font-weight: 600;
  color: #ffa500;
}
.rating-text {
  font-size: 12px;
  margin-top: 5px;
  color: #ffa500;
}
.address {
  font-size: 12px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 4px;
}
.address::before {
  content: "📍";
  font-size: 14px;
}
.info-section {
  padding: 10px 10px 0px 10px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.info-item {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.info-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  width: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.info-icon {
  width: 16px;
  height: 16px;
  color: #8b5cf6;
  margin-right: 5px;
}
.info-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  word-break: break-word;
  word-wrap: break-word;
  line-height: 1.5;
}

/* 添加详情介绍单独布局样式 */
.info-item:has(#detail-intro) {
  flex-direction: column;
  align-items: flex-start;
}

.info-item:has(#detail-intro) .info-label {
  width: 100%;
  margin-bottom: 8px;
}

.info-item:has(#detail-intro) .info-value {
  width: 100%;
}

.footer-buttons {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  flex-direction: row;
  align-items: center;
}
.member-notice {
  padding: 15px 10px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #7b61ff, #ef6d33);
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.member-notice p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}
.contact-btn,
.book-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  width: 45%;
}
.contact-btn {
  background: linear-gradient(135deg, #ff4d4d 0%, #d32f2f 100%);
  color: #fff;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.contact-single-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6 0%, #63f18f 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-single-btn1 {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background:linear-gradient(135deg, #f46666 0%, #edd43a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-single-btn2 {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #63f18f 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-single-btn3 {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff9500 0%, #7c3aed 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  margin-left: 10px;
}

.contact-single-btn:hover , .contact-single-btn1:hover  , .contact-single-btn2:hover , .contact-single-btn3:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-single-btn svg , .contact-single-btn1 svg , .contact-single-btn2 svg , .contact-single-btn3 svg{
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.book-btn {
  background: linear-gradient(135deg, #7c4dff 0%, #5e35b1 100%);
  color: #fff;
}
.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}
@media (min-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
  }
  .app-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
}


.detail-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #7f8c8d;
}

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

.detail-meta-item svg {
    flex-shrink: 0;
    opacity: 0.8;
    margin-right: 3px;
}

.detail-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius:5px;
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10px;
}

.detail-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #3a3d4a;
    margin-bottom: 12px;
}

.detail-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.detail-title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.detail-content {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.8;
    word-wrap: break-word;
    word-break: break-all;
}

@media screen and (max-width: 480px) {

    .detail-card {
        margin-top: 10px;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .detail-title {
        font-size: 14px;
        font-weight: 500;
    }

    .detail-content {
        font-size: 14px;
        line-height: 1.8;
    }
}


        
