/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #fff5f7;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #e91e63;
}

img {
    max-width: 100%;
    height: auto;
}

/* 粉色主题 */
.pink-theme {
    --primary-pink: #e91e63;
    --light-pink: #fce4ec;
    --medium-pink: #f48fb1;
    --dark-pink: #ad1457;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 15px 0 15px;
    flex: 1;
}

/* 简化的头部 */
.simple-header {
    background: linear-gradient(to right, #e91e63, #f48fb1);
    color: white;
    padding: 25px 0;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
    text-align: center;
}

.platform-name {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;
}

.platform-name a {
    color: white;
}

.platform-name .en {
    font-size: 18px;
    font-weight: normal;
    display: block;
    margin-top: 8px;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* 主要内容 */
main {
    padding: 40px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-pink);
    font-size: 28px;
}

.page-title .en {
    font-size: 20px;
    color: var(--medium-pink);
    display: block;
    margin-top: 8px;
    font-weight: normal;
}

/* 技师卡片 */
.technician-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .technician-card {
        flex-direction: row;
    }
}

/* 照片区域 */
.photo-section {
    flex: 0 0 40%;
    background-color: var(--light-pink);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.photo-placeholder {
    width: 100%;
    max-width: 350px;
    height: 400px;
    background: linear-gradient(45deg, #f3e5f5, #fce4ec);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-pink);
    position: relative;
    overflow: hidden;
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, #f48fb1 25%, transparent 25%),
        linear-gradient(-45deg, #f48fb1 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f48fb1 75%),
        linear-gradient(-45deg, transparent 75%, #f48fb1 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.4;
}

.photo-icon {
    font-size: 80px;
    margin-bottom: 15px;
    z-index: 1;
}

.photo-placeholder p {
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
    text-align: center;
    padding: 0 10px;
}

.photo-placeholder .en {
    font-size: 14px;
    margin-top: 5px;
    font-weight: normal;
}

.offline-notice {
    background-color: var(--dark-pink);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 25px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(173, 20, 87, 0.3);
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.offline-notice .en {
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-top: 5px;
    opacity: 0.9;
}

/* 信息区域 */
.info-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.technician-name {
    color: var(--dark-pink);
    font-size: 32px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--light-pink);
    padding-bottom: 10px;
}

.technician-name .en {
    font-size: 18px;
    color: #777;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

.offline-badge {
    display: inline-block;
    background-color: #ff9800;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 15px;
    vertical-align: middle;
}

.offline-badge .en {
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.info-label {
    font-weight: bold;
    color: var(--dark-pink);
    min-width: 120px;
}

.info-label .en {
    font-size: 12px;
    color: #888;
    font-weight: normal;
    display: block;
    margin-top: 2px;
}

.info-value {
    color: #555;
    flex: 1;
}

.info-value .en {
    font-size: 14px;
    color: #777;
    display: block;
    margin-top: 3px;
}

/* CTA区域 - 在信息区块内 */
.cta-inline {
    background: linear-gradient(to right, #fce4ec, #f8bbd9);
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: auto;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.15);
    text-align: center;
}

.cta-title {
    font-size: 24px;
    color: var(--dark-pink);
    margin-bottom: 12px;
}

.cta-title .en {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

.cta-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text .en {
    font-size: 14px;
    color: #777;
    display: block;
    margin-top: 8px;
    line-height: 1.5;
}

.cta-link {
    display: inline-block;
    background-color: var(--primary-pink);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.cta-link:hover {
    background-color: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.5);
}

.cta-link .en {
    font-size: 16px;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

/* 隐藏的联系方式 */
.contact-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px dashed #ddd;
    text-align: center;
}

.contact-hidden {
    color: #888;
    font-style: italic;
}

.contact-hidden .en {
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* 其他技师推荐 */
.other-technicians {
    margin-top: 50px;
}

.section-title {
    font-size: 24px;
    color: var(--dark-pink);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title .en {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    display: block;
    margin-top: 8px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--medium-pink);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.technician-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.technician-preview {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.technician-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.1);
}

.preview-photo {
    color: white;
    font-size: 60px;
}
.preview-photo img{
    width: 100%;
    aspect-ratio: 3 / 4;
}

.preview-info {
    padding: 20px;
}

.preview-name {
    color: var(--dark-pink);
    font-size: 20px;
    margin-bottom: 8px;
}

.preview-name .en {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    display: block;
    margin-top: 3px;
}

.preview-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.preview-meta .en {
    font-size: 12px;
    color: #888;
    display: block;
    margin-top: 3px;
}

.online-status {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-left: 10px;
}

.online-status .en {
    font-size: 10px;
    display: block;
    margin-top: 1px;
}

/* 页脚 */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}
.copyright {
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.copyright .en {
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* 移动端优化 */
@media (max-width: 767px) {
    .platform-name {
        font-size: 28px;
    }
    
    .platform-name .en {
        font-size: 14px;
    }
    
    .technician-name {
        font-size: 26px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-link {
        padding: 14px 30px;
        font-size: 18px;
    }
    
    .photo-section {
        padding: 20px;
    }
    
    .photo-placeholder {
        height: 300px;
    }
    
    .section-title {
        font-size: 20px;
    }
}
