* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none !important;
    box-shadow: none !important;
}

html{
min-width:1400px;
margin:0px auto;	
	
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 109px;
	min-width:1400px;
    margin:0px auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 109px;
    z-index: 9999;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: -30px 0 0;
    padding: 0;
    width: 968px;
    height: 19px;
}

.nav-menu .dropdown-menu {
    top: 100%;
    left: 0;
}

.nav-menu li {
    position: relative;
    margin-right: 40px;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-menu a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu .active::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0066cc;
}

.nav-menu li:nth-child(3) .dropdown-menu,
.nav-menu li:nth-child(4) .dropdown-menu {
    top: 35px;
    left: -17px;
}

.dropdown,
.download {
    position: relative;
    display: inline-block;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.8rem;
    margin-left: 5px;
    color: #666;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

.download .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 120px;
}

.dropdown:hover .dropdown-menu,
.download:hover .dropdown-menu,
.dropdown.active:hover .dropdown-menu {
    display: block;
}

.download {
    width: 91px;
    height: 19px;
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 19px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download:hover {
    background-color: transparent;
}

.download > a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.download > a::after {
    content: "▼";
    font-size: 0.8rem;
    margin-left: 5px;
    color: #666;
    display: inline-block;
}

.qrcode-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.download:hover .qrcode-dropdown {
    display: block;
}

.qrcode-item img {
    width: 150px;
    height: 150px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.main-container {
    max-width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 149px);
}

.tabs-section {
    width: 100%;
    background-color: #e0e0e0;
}

.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero h1 {
    display: none;
}

.content-area {
    display: flex;
    gap: 20px;
    margin: 0 auto 15px;
    padding: 55px 13% 22px;
    max-width: 100%;
    background: #f7f7f7;
}

.left-panel {
    flex: 1;
    background: #f7f7f7;
}

.right-panel {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
}

.tabs {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background-color: white;
    height: 100px;
    box-sizing: border-box;
}

.tab {
    flex: none;
    padding: 20px 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    margin: 0 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tab.active {
    background-color: #2899ff;
    color: white;
}

.tab:not(.active) {
    color: #5f5e5e;
}

.tab span {
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin: 0 15px;
    padding: 5px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 13%;
}

.tab:first-child span {
    height: 60px;
}

.tab:nth-child(2) {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    height: 100%;
    margin-right: 9%;
}

.tab:nth-child(2) span {
    margin: 0;
    padding: 40px 25px 60px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-width: 100px;
    border: 0px solid transparent;
    box-sizing: border-box;
    background-color: white;
    margin-top: -20px;
}

.tab:nth-child(2) span:hover {
    background-color: #f7f7f7;
    border-color: #e0e0e0;
}

.tab:nth-child(2) span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0066cc;
    background-color: transparent;
    transition: all 0.3s ease;
    opacity: 0;
}

.tab:nth-child(2) span:hover::after {
    opacity: 1;
}

.tab small {
    font-size: 0.8rem;
    color: #ffffff;
    display: block;
}

.tab:first-child span::after,
.tab:not(:nth-child(2)) span::after {
    display: none;
}


.secondary-breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: -40px;
    background: white;
    border-radius: 8px;
    padding: 8px 15px;
}

.breadcrumb-nav {
    display: flex;
    gap: 15px;
}

.breadcrumb-btn {
    padding: 8px 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
}

.breadcrumb-btn.active {
    background-color: #2899ff;
    color: white;
    border-color: #2899ff;
}

.breadcrumb-btn:hover:not(.active) {
    background-color: #e9e9e9;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.search-box:focus-within {
    box-shadow: 0 0 0 3px rgba(40, 153, 255, 0.2);
}

.search-box input {
    padding: 8px 12px;
    border: 2px solid #f7f7f7;
    border-right: none;
    border-radius: 8px 0 0 8px;
    width: 280px;
    font-size: 14px;
    transition: border-color 0.3s;
    background-color: #f8f9ff;
    color: #333;
    height: 40px;
    box-sizing: border-box;
}

.search-box input:focus {
    outline: none;
    border-color: #f7f7f7;
    background-color: white;
}

.search-box .search-icon {
    padding: 10px 16px;
    background-color: #f8f9ff;
    color: rgb(65, 65, 65);
    border: 2px solid #f7f7f7;
    border-left: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    height: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.search-box .search-icon:focus {
    outline: none;
    background-color: white;
}

.search-box .search-icon:hover {
    background-color: #c2c2c3;
    border-color: #c2c2c3;
}

.tertiary-breadcrumb {
    margin-bottom: 15px;
    padding: 8px 0;
}

.category-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: default;
    transition: none;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-decoration: none;
    display: inline-block;
}

.category-btn.active {
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
}

.category-btn:hover:not(.active) {
    background-color: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hotel-booking-section .search-container {
    background: white;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.hotel-booking-section .search-container::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 13px;
    z-index: -1;
    pointer-events: none;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(168, 214, 255, 0.9) 0deg,
        rgba(168, 214, 255, 0.3) 90deg,
        rgba(168, 214, 255, 0.3) 180deg,
        rgba(168, 214, 255, 0.9) 270deg,
        rgba(168, 214, 255, 0.9) 360deg
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 12px;
}

.hospital-cards-section {
    width: 100%;
}

.hospital-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hotel-cards-section {
    width: 100%;
}

.hotel-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card .info {
    padding: 15px;
    text-align: left;
    background-color: white;
    border-top: 1px solid #f8f9fa;
}

.card .info h3 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #212529;
    font-weight: 600;
    text-align: left;
}

.card .info p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
    text-align: left;
}

.hotel-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    background: white;
    position: relative;
    z-index: 1;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.hotel-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.hotel-info {
    padding: 15px;
    text-align: left;
    background-color: white;
    border-top: 1px solid #f8f9fa;
}

.hotel-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #212529;
    text-align: left;
}

.hotel-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.rating-stars {
    color: #ffc107;
    font-size: 13px;
    margin-right: 5px;
    /* letter-spacing: -3px; */
}

.rating-text {
    color: #666;
    font-size: 10px;
    margin-left: 5px;
}

.hotel-tags {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.price-tag {
    background-color: #007aff;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    margin-right: 5px;
}

.hotel-price {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.price-tag {
    background-color: #007aff;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    margin-right: 5px;
}

.price-main {
    font-size: 16px;
    color: #e93c3c;
    font-weight: bold;
    white-space: nowrap;
}

.price-start {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    white-space: nowrap;
}

.review-count {
    font-size: 12px;
    color: #666;
    text-align: right;
    white-space: nowrap;
    justify-self: end;
}

.search-title {
    font-size: 18px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.search-title img {
    width: 80px;
    height: 80px;
    position: relative;
    top: -25px;
    margin-top: 0;
    z-index: 1;
    flex-shrink: 0;
}

.search-title h2 {
    margin: 0;
    font-size: 24px;
    font-family: Microsoft YaHei;
}

.date-picker-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgba(168, 214, 255, 0.6);
    border-radius: 8px;
    padding: 10px 20px;
    background-color: rgba(248, 249, 250, 0.8);
    gap: 10px;
    width: 100%;
    min-height: 80px;
    box-sizing: border-box;
    margin-top: -25px;
}

.date-input-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.date-input-wrapper:nth-child(1) {
    align-items: flex-start; 
}

.date-input-wrapper:nth-child(3) {
    align-items: flex-end; 
}

.date-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 400; 
    text-align: left;
}

.date-input-wrapper:nth-child(3) .date-label {
    text-align: right;
    width: 100%; 
}

.date-input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 120px;
    text-align: left;
}

.date-input-wrapper:nth-child(3) .date-input {
    text-align: right; 
}

.night-count {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 0 20px;
    flex-shrink: 0;
    text-align: center;
}

.date-separator {
    width: 1px;
    height: 40px;
    background-color: #ddd;
    margin: 0 20px;
    flex-shrink: 0;
}

.filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    gap: 15px;
}

.filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%; 
    gap: 0;
    border: 2px solid rgba(168, 214, 255, 0.6);
    border-radius: 8px;
    padding: 4px 20px;
    background-color: rgba(248, 249, 250, 0.8);
    overflow: hidden;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    flex: 1;
    max-width: 33.33%;
}

.filter-group:nth-child(1) {
    flex: 0 0 180px; 
}

.filter-group:nth-child(3) {
    flex: 0 0 150px;
}

.filter-group:nth-child(5) {
    flex: 1; 
    min-width: 200px;
}

.filter-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.filter-select {
    width: 100%;
    padding: 10px 30px 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M3 4l3 3 3-3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.filter-separator {
    width: 1px;
    height: 30px;
    background-color: #ddd;
    margin: 0 15px;
    align-items: center;
    flex-shrink: 0;
}

.search-button-container {
    width: 25%; 
    display: flex;
    justify-content: flex-end;
}

.search-button {
    width: 100%;
    padding: 22px 20px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-button:hover {
    background: linear-gradient(135deg, #357abd, #2a6496);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.service-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #111;
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 200px;
}

.logo-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-1 img {
    max-width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.app-qrcode {
    margin-top: 10px;
}

.app-qrcode img {
    width: 100px;
    height: 100px;
}

.copyright {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #ccc;
    font-size: 0.8rem;
    overflow: visible;
    padding-bottom: 40px;
}

.cupping-cards-section {
    width: 100%;
}

.cupping-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cupping-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    background: white;
    position: relative;
    z-index: 1;
}

.cupping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.cupping-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.cupping-info {
    padding: 15px;
    text-align: left;
    background-color: white;
    border-top: 1px solid #f8f9fa;
}

.service-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #212529;
    text-align: left;
}

.service-provider {
    font-size: 13px;
    color: #6c757d; 
    margin: 0 0 8px 0;
    text-align: left;
    line-height: 1.4;
}

.service-price {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.price-main {
    font-size: 16px;
    color: #e93c3c;
    font-weight: bold;
    white-space: nowrap;
}

.price-start {
    font-size: 12px;
    color: #666; 
    white-space: nowrap;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    white-space: nowrap;
}

.sales-count {
    font-size: 12px;
    color: #666;
    text-align: right;
    white-space: nowrap;
    justify-self: end;
}

/* 健康设备卡片 */
.health-equipment-section {
    width: 100%;
}

.health-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.health-equipment-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    background: white;
    position: relative;
    z-index: 1;
}

.health-equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.device-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.device-info {
    padding: 15px;
    text-align: left;
    background-color: white;
}

.device-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.device-name {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    flex: 1;
    margin-right: 10px;
}

.purchase-count {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    text-align: right;
}

.device-price {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
    margin-bottom: 12px;
}

.price-main {
    font-size: 16px;
    color: #e93c3c;
    font-weight: bold;
    white-space: nowrap;
}

.price-start {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.stock-count {
    font-size: 12px;
    color: #666;
    text-align: right;
    white-space: nowrap;
    justify-self: end;
}

.separator-line {
    height: 1px;
    background-color: #f0f0f0;
    margin: 12px 0;
    width: 100%;
}

.store-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.store-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath d='M952.786158 352.800941c0-0.516042-0.172014-0.860071-0.172014-1.376113-0.344028-1.892155-0.860071-3.612296-1.548127-5.332437L875.895851 159.285066c-13.073072-38.703175-50.22812-62.441122-93.919704-62.613136L255.440954 96.67193c-44.207626 0-78.610449 23.565933-90.995464 60.720981L83.770872 347.984546c-0.344028 1.204099-0.860071 2.752226-1.204099 4.472367-5.84848 18.061482-8.77272 36.466991-8.77272 55.044515 0 65.193348 35.778935 124.71023 93.231648 155.328742 0 0 0 0 0 0s0 0 0 0l0 0c0 0 0 0 0 0 23.565933 12.55703 51.432219 18.921552 82.738787 18.921552 52.464304-0.172014 101.144297-23.221905 134.34302-62.78515 33.026709 39.219217 81.19066 62.097094 133.654964 62.441122 51.948261-0.344028 100.112212-23.393919 132.966907-62.613136 33.198723 39.563245 81.878717 62.441122 134.687049 62.441122 31.994625-0.172014 60.204939-6.880564 84.1149-19.953637 56.592642-30.96254 91.683521-90.135394 91.683521-154.640685C961.386864 388.235847 958.29061 369.658324 952.786158 352.800941zM839.084831 505.377457c-14.449185 7.912649-32.510667 12.040988-53.668402 12.040988-39.047203 0-74.48211-19.781623-95.295817-53.324374-1.548127-3.096254-3.956325-8.428691-8.600706-13.417101-5.332437-5.84848-14.793214-12.901058-30.618512-12.901058-12.729044 0-24.25399 5.160423-30.790526 13.245087-4.300353 4.816395-6.70855 9.63279-8.428691 13.245087-20.469679 33.198723-55.732572 53.15236-93.919704 53.324374-38.703175-0.172014-73.966068-20.125651-94.607761-53.496388-1.376113-2.92424-3.78431-7.912649-7.568621-12.040988-14.965228-17.889467-48.679993-17.029397-61.753066-1.376113-4.816395 5.332437-7.396607 10.664875-8.944734 14.277171-20.641693 33.198723-56.248614 52.980346-94.951789 53.15236-20.641693 0-38.359147-3.956325-52.636318-11.524945l0 0c0 0 0 0 0 0-36.639006-19.437594-59.344868-57.452713-59.344868-98.908114 0-12.213002 2.064169-24.598018 6.192508-36.639006 0.344028-0.860071 0.516042-1.892155 0.688056-2.752226l79.470519-187.839409c1.548127-4.816395 6.536536-19.437594 31.306568-19.437594l526.707206 0c10.148833 0.688056 27.694272 2.408198 33.88678 20.641693l74.310096 185.259197c0.344028 1.376113 0.688056 2.580212 1.032085 3.612296 4.128339 12.040988 6.192508 24.25399 6.192508 36.466991C897.397615 447.924744 875.03578 485.595834 839.084831 505.377457z' fill='%23575B66'/%3E%3Cpath d='M862.994793 607.897867c-17.717453 0-31.994625 14.277171-31.994625 31.994625l0 174.594322c0 9.976818-8.084663 18.061482-18.061482 18.061482l-602.049387 0.344028c-9.976818 0-18.061482-8.084663-18.061482-17.889467l-0.172014-171.498068c0-17.717453-14.449185-31.994625-31.994625-31.994625 0 0 0 0 0 0-17.717453 0-31.994625 14.449185-31.994625 31.994625l0.172014 171.498068c0 45.067697 36.81102 81.878717 82.050731 81.878717l602.221401-0.344028c45.067697-0.172014 81.878717-36.81102 81.878717-82.050731l0-174.594322C894.989417 622.347052 880.712246 607.897867 862.994793 607.897867z' fill='%23575B66'/%3E%3Cpath d='M768.043004 383.935495 255.956996 383.935495c-17.717453 0-31.994625-14.277171-31.994625-31.994625 0-17.717453 14.277171-31.994625 31.994625-31.994625l511.913993 0c17.717453 0 31.994625 14.277171 31.994625 31.994625C800.037628 369.658324 785.588443 383.935495 768.043004 383.935495z' fill='%23575B66'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-name {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
}

.satisfaction {
    font-size: 12px;
    color: #666;
}

.enter-store {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.enter-store:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.enter-text {
    font-size: 12px;
    color: #212529;
    font-weight: 500;
}

/* 跳转后卡片 */
.hospital-detail-section {
    width: 100%;
    padding: 20px;
    background: #f7f7f7;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
}

/*被点击 */
.selected-card-column {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.selected-card {
    text-align: center;
    margin-bottom: 20px;
}

.selected-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #212529;
}

.address {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.service-cards-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.service-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.service-card-info {
    padding: 12px;
    text-align: left;
}

.service-card-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #212529;
    line-height: 1.3;
}

.service-card-provider {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.service-card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-main {
    font-size: 16px;
    color: #e93c3c;
    font-weight: bold;
}

.price-start {
    font-size: 12px;
    color: #666;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.sales-count {
    font-size: 12px;
    color: #666;
}

.bottom-back-button {
    width: 100%;
    padding: 12px;
    background: #2899ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.bottom-back-button:hover {
    background: #1a7acc;
}

/*二维码*/
.card-qr-code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: qrSlideIn 0.3s ease;
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-code-canvas {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(199, 199, 199, 0.9); 
    border-radius: 8px;
    padding: 8px;
}

.qr-code-label {
    font-size: 14px;
    color: #5d5d5d; /* 二维码标签文字 */
    font-weight: 500;
    text-align: center;
}

.qr-close-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(220, 220, 220, 0.2); 
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #d8d7d7; /* 关闭按钮图标 */
    transition: all 0.3s ease;
}

@keyframes qrSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

#app {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#app.vue-initialized {
    opacity: 1;
}

/* 加载状态样式 */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    width: 100%;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #3498db;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 无数据状态样式 */
.no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    width: 100%;
    text-align: center;
}

.retry-btn {
    background: none;
    color: #666;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.retry-btn:hover {
    color: #333;
}

.retry-btn::after {
    content: '...';
    display: inline-block;
    width: 20px;
    text-align: left;
    vertical-align: bottom;
    overflow: hidden;
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        width: 0;
    }
    40% {
        width: 5px;
    }
    60% {
        width: 10px;
    }
    80%, 100% {
        width: 20px;
    }
}