/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    max-width: 480px;
    margin: 0 auto;
    color: #333;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    position: relative;
    padding-bottom: 60px; /* 为底部操作栏留出空间 */
}

/* 图片轮播 */
.image-slider {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

.back-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 50%;
    z-index: 10;
}

.share-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    z-index: 10;
}

/* 详情头部 */
.detail-header {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.tags {
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    color: #E94842;
    font-size: 12px;
    padding: 2px 0;
}

/* 关键信息 */
.key-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.info-item {
    flex: 1;
    text-align: center;
}

.info-value {
    font-size: 16px;
    font-weight: bold;
    color: #E94842;
    margin-bottom: 3px;
}

.info-label {
    font-size: 12px;
    color: #999;
}

/* 今日推广 */
.promotion-info {
    display: flex;
    align-items: center;
    background-color: #FFF7CC;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #F7A400;
}

.promotion-info i {
    margin-right: 5px;
}

/* 联系方式 */
.contact-section {
    background-color: #fff;
    padding: 15px;
    margin-top: 10px;
}

.contact-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #F8F8F8;
    border-radius: 4px;
}

.contact-avatar {
    font-size: 24px;
    color: #ccc;
    margin-right: 10px;
}

.contact-query {
    flex: 1;
    font-size: 14px;
    color: #666;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #E94842;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    margin-left: 10px;
}

.contact-btn i {
    margin-right: 5px;
}

/* 详细信息 */
.detail-info {
    background-color: #fff;
    padding: 15px;
    margin-top: 10px;
}

.info-group {
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .info-label {
    width: 80px;
    font-size: 14px;
    color: #666;
    text-align: left;
}

.info-row .info-value {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-align: left;
    font-weight: normal;
}

/* 房源描述 */
.description-section {
    margin-top: 5px;
}

.section-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.description-content {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.disclaimer {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

/* 底部操作栏 */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.action-left {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collect-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
    font-size: 12px;
}

.collect-btn i {
    font-size: 18px;
    margin-bottom: 2px;
}

.action-center {
    flex: 2;
}

.action-right {
    flex: 2;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #E94842;
    color: #fff;
    font-size: 14px;
}

/* 我也要转店按钮样式 */
.transfer-shop-btn {
    background-color: #ff8a00; /* 橘红色 */
    text-align: center;
    font-weight: bold;
}

.transfer-shop-btn i {
    margin-right: 5px;
    font-size: 16px;
}

/* 直接联系店主按钮样式 */
.contact-owner-btn {
    background-color: #f71d1d; /* 深红色 */
    text-align: center;
    font-weight: bold;
}

.contact-owner-btn i {
    margin-right: 5px;
    font-size: 16px;
}

.action-btn i {
    margin-right: 5px;
}

/* 找店详情特定样式 */
.seek-detail .seek-header {
    background-color: #fff;
    padding: 15px;
    position: relative;
    margin-bottom: 10px;
}

.seek-header-content {
    padding-top: 40px; /* 为返回和分享按钮留出空间 */
}

.seek-info-block {
    margin-top: 15px;
    background-color: #F8F8F8;
    border-radius: 4px;
    padding: 12px;
}

.seek-info-row {
    display: flex;
    padding: 5px 0;
}

.seek-contact-row {
    display: flex;
    padding: 5px 0;
    align-items: center;
    flex-wrap: wrap;
}

.seek-info-row .info-label,
.seek-contact-row .info-label {
    width: 70px;
    font-size: 14px;
    color: #666;
}

.seek-info-row .info-value,
.seek-contact-row .info-value {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.contact-link {
    background-color: #E94842;
    color: #fff;
    border-radius: 15px;
    padding: 2px 10px;
    margin-left: 10px;
    font-size: 12px;
}

.contact-number {
    display: flex;
    align-items: center;
}

.contact-stats {
    background-color: #fff;
    padding: 15px;
}

.stats-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF2F2;
    border: none;
    border-radius: 4px;
    padding: 10px;
    color: #E94842;
    font-size: 12px;
}

.stats-btn i {
    margin-right: 8px;
}

.stats-count {
    font-weight: bold;
    margin-left: 5px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #E94842;
    border-radius: 50%;
    margin-right: 5px;
}

.disclaimer-section {
    margin-top: 20px;
    padding: 0 15px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.seek-detail .bottom-action-bar .action-btn {
    background-color: #4CAF50;
} 