/* ========================================
   字体声明
   ======================================== */
@font-face {
    font-family: 'Cinzel';
    src: url('fonts/Cinzel.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   基础样式与变量
   ======================================== */
:root {
    --bg-color: #fff;
    --text-primary: #000;
}

* {
    margin: 0;
    padding: 0;
}



body {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    
}

img {
   width: 100%;
    vertical-align: top;
}

iframe {
    border: none;
}




/* ========================================
   Header 顶部区域
   ======================================== */
.header {
    position: relative;
}

.header-top {
    position: relative;
}

/* 菜单按钮 */
.menu-toggle {
    position: fixed;
    top: 15px;
    right: 0px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 导航菜单 */
.nav-menu {
    position: fixed;
    top: 0;
    right: -150px;
    width: 150px;
    z-index: 1000;
    transition: right 0.3s ease;
}

.nav-menu.active {
    right: 0;
}

.nav-content {
    padding-top: 65px;
}

.nav-link {
    display: block;
    padding: 7px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 3px solid #fff;
    transition: all 0.3s ease;
    background: #ff6aaa;
}

.nav-link:hover {
    color: #fff;
    background: #ff6aaa;
    padding-left: 10px;
}

/* ========================================
   女孩轮播板块
   ======================================== */
.swiper {
    padding: 10px 0 !important;
}

.staff-swiper .swiper-slide img {
    width: calc(100% - 8px);
    height: auto;
    border: 4px solid #f7adc6;
}

/* ========================================
   新着情报板块
   ======================================== */


.news-list {
    height: 220px;
    overflow-y: auto;
    border: 2px dashed #f7adc6;
    padding: 10px;
}

.news-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.news-item dt {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
    color: #333;
}

.news-item dd {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.news-item dd time {
    color: #999;
    margin-right: 10px;
    font-size: 13px;
}

/* ========================================
   图片导航板块
   ======================================== */
.nav-section {
    padding: 20px 0;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.nav-item {
    display: block;
    overflow: hidden;
}

.nav-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.nav-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Footer 底部区域
   ======================================== */
.footer {
    padding: 20px 0;
}

/* 电话和地图跳转 */
.footer-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-phone,
.footer-map {
    width: 45%;
    display: block;
}

.footer-phone img,
.footer-map img {
    width: 100%;
    height: auto;
}

/* 底部导航 */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.footer-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 0 10px;
}

.footer-nav-link:hover {
    color: #FF5B9D;
}

.footer-nav-divider {
    width: 1px;
    height: 15px;
    background: #ccc;
}

/* 广告板块 */
.footer-banner {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.banner-item {
    flex: 1;
    text-align: center;
}

.banner-item img{
    max-width: 100%;
    width: auto;
    height: auto;
}

/* 底部文字和版权 */
.footer-copyright {
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.8;
    background: #FF5B9D;
    padding: 15px 0;
}

/* ========================================
   女孩列表页面
   ======================================== */
.girls-section {
    padding: 20px 0;
}

.section-title-img {
    margin-bottom: 20px;
    text-align: center;
}

.girls-content {
    display: flex;
    flex-wrap: wrap;
    
}

.girl-item {
    width: calc(25% - 22px);
    border: 1px solid #dddddd;
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
}

.girl-img-wrapper {
    overflow: hidden;
}

.girl-img {
    width: calc(100% - 6px);
    height: auto;
    border: 3px solid #f7adc6;
}


.girl-name {
    text-align: center;
    font-size: 16px;
    background: #fb6eb9;
    color: #fff;
    padding: 5px 10px;
}


.girl-size {
    text-align: center;
    font-size: 14px;
    margin: 0;
    background: #cf2981;
    color: #fff;
    padding: 3px 10px;
}

/* 女孩详情页 */
.girl-detail-content {
    justify-content: center;
}

.girl-detail {
    width: 100%;
    display: flex;
    gap: 20px;
}

.girl-detail .girl-img-wrapper {
    width: 50%;
}

.girl-detail .girl-info {
    width: 50%;
}

.girl-detail .girl-name {
    font-size: 24px;
    font-weight: bold;
    background: none;
    color: #333;
    text-align: center;
    padding: 0;
    margin-bottom: 10px;
}

.girl-detail .girl-age {
    background: none;
    color: #666;
    padding: 0 5px;
}

.girl-detail .girl-size {
    background: none;
    color: #333;
    text-align: center;
    padding: 0;
}

.girl-thumbnails {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.thumbnail {
    width: calc(33.33% - 4px);
    height: auto;
    cursor: pointer;
    border: 2px solid #f7adc6;
}

.thumbnail:hover {
    border-color: #cf2981;
}

.girl-desc {
    padding: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    max-height: 300px;
    overflow-y: auto;
}


.info-title {
    text-align: center;
    background: #F7F7F7;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
  
}

.info-section .girl-size {
   line-height: 30px;
}

/* ========================================
   料金表页面
   ======================================== */
.price-section {
    padding: 20px 0;
}

.price-content {
    padding: 25px;
    background: #fff;
    border: 1px solid #f7adc6;
    border-radius: 5px;
    position: relative;
    margin: 10px;
    background-color: #ffeefa;
}

.price-content::before,
.price-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('../img/jiao.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.price-content::before {
    top: 5px;
    left: 5px;
}

.price-content::after {
    top: 5px;
    right: 5px;
    transform: scaleX(-1);
}

.price-corner-bottom-left,
.price-corner-bottom-right {
    position: absolute;
     width: 100px;
    height: 100px;
    background-image: url('../img/jiao.png');
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 5px;
}

.price-corner-bottom-left {
    left: 5px;
    transform: scaleY(-1);
}

.price-corner-bottom-right {
    right: 5px;
    transform: scale(-1, -1);
}

.price-img {
    width: 100%;
    height: auto;
}

/* ========================================
   接近页面
   ======================================== */
.address-section {
    padding: 20px 0;
}

.access-table {
    width: 100%;
    /* border-collapse: collapse; */
}

.access-table th {
    background: #fff;
    padding: 0px 10px;
    text-align: left;
    font-weight: bold;
    width: 40%;
    border: 1px solid #f7adc6;
}

.access-table td {
    background: #ffa7c5;
    padding: 12px 15px;
    border: 1px solid #fff;
}

.access-table a {
    color: #333;
    text-decoration: none;
}

.table-icon {
    width: 30px;
    vertical-align: middle;
    margin-right: 5px;
}

.map-content {
    margin-bottom: 20px;
}

/* ========================================
   求人页面
   ======================================== */
.recruit-section {
    padding: 20px 0;
}

.recruit-content .access-table th {
    background: #FFE4EF;
     border: 1px solid #fff;
}

.recruit-content .access-table td {
    background: #fff;
     border: 1px solid #f7adc6;
}
