* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    padding-bottom: 60px; /* 为底部导航栏留出空间 */
}

.container {
    padding: 0;
    background-color: #f6f6f6;
}

/* 顶部样式 */
header {
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.brand-info {
    display: flex;
    align-items: center;
}

.brand-info .logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
}

.brand-info .version {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.company {
    font-size: 13px;
    color: #999;
    margin: 0 0 0 10px;
    display: block;
    clear: both;
}

.actions {
    font-size: 11px;
    color: #666;
    text-align: right;
}

.actions span {
    margin-left: 5px;
    color: #000;
}

.location {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #333;
    padding: 5px 10px;
    border-radius: 15px;
}

.location i {
    margin-right: 5px;
    color: #666;
    font-size: 12px;
}

.location span {
    /* flex-grow: 1; */ /* Removed to prevent pushing the icon to the far right */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 5px; /* Add some space between text and icon */
}

.location .fa-chevron-down {
    margin-left: 5px;
    font-size: 10px;
}

/* 轮播图样式 */
.banner-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #ffebf5;
}

.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slide {
    display: none;
    width: 100%;
    position: relative;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #333;
}

.banner-content h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.banner-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.banner-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.banner-buttons {
    margin-top: 10px;
}

.banner-btn {
    display: inline-block;
    background-color: #ff6699;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
}

.banner-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background-color: #fff;
}

/* 快捷功能入口 */
.quick-actions {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    background-color: #fff;
    margin-bottom: 10px;
}

.action-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 33.33%;
    justify-content: center;
}

.action-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.action-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.action-item p {
    font-size: 13px;
    color: #000;
    margin: 0;
}

/* 导航菜单 */
.quick-nav-main {
    display: flex;
    padding: 15px;
    background-color: #fff;
    margin: 0 10px 10px;
    border-radius: 10px;
}

.nav-item {
    display: flex;
    width: 100px;
    flex-direction: column;
    align-items: center;
}

.nav-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.nav-item p {
    font-size: 13px;
    color: #333;
}

/* 推荐技师 */
.recommended-technicians {
    padding: 10px;
    margin-bottom: 10px;
}
.sections-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding:0 10px;
}

.sections-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}
.sections-title h3 i {
    margin-right: 5px;
    color: #ff6699;
}

.sections-title h3 .section-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.section-title h3 i {
    margin-right: 5px;
    color: #ff6699;
}

.section-title h3 .section-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

.more-link {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.more-link i {
    margin-left: 3px;
    font-size: 10px;
}

.technician-list {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
  background-color: #fff;
  border-radius: 10px;
}

.technician-card {
    width: 33.33%;
    text-align: center;
}

.technician-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.technician-card .name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}

.technician-card .orders {
    font-size: 13px;
    color: #999;
}

/* 推荐套餐 */
.recommended-packages {
    margin-bottom: 10px;
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-card {
    display: flex;
    background-color: #fff;
    margin: 0 10px 0px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 15px;
}

.package-card:last-child {
    border-bottom: none;
}

.package-card img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    object-fit: cover;
    margin-right: 10px;
}

.package-info {
    flex: 1;
}

.package-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.package-info .description {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.package-info .duration {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.package-info .duration i {
    margin-right: 3px;
}

.package-info .price {
    font-size: 18px;
    color: red;
    font-weight: bold;
    display: flex;
    align-items: baseline;
}

.package-info .price sup {
    font-size: 12px;
    font-weight: normal;
}

.package-action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-width: 90px;
}

.package-action .booked {
    font-size: 13px;
    color: #999;
}

.package-action .select-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
}

/* 服务保障 */
.service-guarantee {
    margin-bottom: 10px;
    text-align: center;
    margin:0 auto;
}

/* 底部 */
footer {
    background-color: #f5f5f5;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.copyright, .icp {
    margin-bottom: 5px;
}

/* 底部导航栏 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    z-index: 100;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
    font-size: 12px;
}

.nav-link i {
    font-size: 20px;
    margin-bottom: 3px;
}

.nav-link.active {
    color: #4CAF50;
}

/* 原有的styles.css内容保留在下方 */
.header-center {
    text-align: center;
}

.header-center h1 {
    font-size: 18px;
    margin-bottom: 2px;
}

.subtitle {
    font-size: 12px;
    color: #999;
}

.back-button, .menu-button {
    font-size: 18px;
    color: #666;
}

.profile-section {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
}

.profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-text h2 {
    font-size: 16px;
    font-weight: 600;
}

.profile-text p {
    font-size: 12px;
    color: #999;
}

.location-info {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.location-info i {
    margin-right: 5px;
}