.hero.is-primary {
    background: linear-gradient(135deg, #209cee 0%, #3273dc 100%);
}

/* index 首页 */
.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.section-title {
    position: relative;
    margin-bottom: 2rem;
}
.section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #2575fc;
}
.package-price {
    font-size: 1.5rem;
    color: #ff3860;
    font-weight: bold;
    margin: 1rem 0;
}
.package-image {
    height: 180px;
    object-fit: cover;
}

.package-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em; /* 保证两行高度 */
    line-height: 1.5em;
    margin-bottom: 0.5rem;
}

/* hospital-list 体检中心列表 */
.hospital-card {
    transition: transform 0.3s;
    border-left: 4px solid #3273dc;
}
.hospital-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.filter-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.filter-item {
    margin: 0 0 0 0.75rem;
}
.specialty-tag {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* hospital-detail 体检中心详情 */
.hospital-hero {
    background: linear-gradient(135deg, #209cee 0%, #3273dc 100%);
}

.hospital-image {
    height: 400px;
    object-fit: cover;
    width: 100%;
}
.package-card {
    transition: transform 0.3s ease;
}
.package-card:hover {
    transform: translateY(-5px);
}
.price-tag {
    font-size: 1.5rem;
    color: #3273dc;
    font-weight: bold;
}
.map-container {
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
}

/* combo-list 体检套餐列表 */
.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.price-tag {
    font-size: 1.5rem;
    color: #3273dc;
    font-weight: bold;
}
.filter-section {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

/* combo-detail 体检套餐详情 */
.package-image {
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.check-item {
    border-left: 3px solid #3273dc;
    padding-left: 1rem;
    margin-bottom: 0.75rem;
}
.quantity-control {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}
.quantity-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
}
.quantity-input {
    width: 4rem;
    text-align: center;
    margin: 0 0.5rem;
    font-size: 1.2rem;
}
.buy-now-btn {
    font-size: 1.2rem;
    height: 3rem;
}
.section-title {
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* login 用户登录 */
.login-card {
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.has-text-underline {
    text-decoration: underline;
}
.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}
.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dbdbdb;
}
.divider-text {
    padding: 0 1rem;
    color: #7a7a7a;
}

.social-login .button {
    width: 100%;
}

/* register 用户注册 */
.register-card {
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.has-text-underline {
    text-decoration: underline;
}
.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}
.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dbdbdb;
}
.divider-text {
    padding: 0 1rem;
    color: #7a7a7a;
}

/* edit password 修改密码 */
.password-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    box-shadow: 0 0.5em 1em -0.125em rgba(10,10,10,0.1);
    border-radius: 8px;
}
.password-help {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}
.password-field {
    position: relative;
}
.password-toggle {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    color: #7a7a7a;
}
.strength-meter {
    margin-top: 0.5rem;
    height: 5px;
    border-radius: 3px;
    background: #eee;
    overflow: hidden;
}
.strength-meter-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
}

/* order-list 订单列表 */
.order-card {
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}
.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.order-status {
    font-weight: bold;
}
.status-completed {
    color: #00d1b2;
}
.status-pending {
    color: #ffdd57;
}
.status-cancelled {
    color: #ff3860;
}
.status-5 {
  color: #00d1b2;
}
.status-4 {
  color: #ffdd57;
}
.status-3 {
  color: #f806d8;
}
.status-2 {
  color: #080cf1;
}
.status-1 {
  color: #ff3860;
}
.section-title {
    position: relative;
    margin-bottom: 2rem;
}
.section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #2575fc;
}
.tabs ul {
    border-bottom-width: 2px;
}

/* order-detail 订单详情 */
.order-timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #2575fc;
    z-index: 2;
}
.timeline-item:after {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 1.5rem;
    width: 2px;
    height: 100%;
    background: #dbdbdb;
}
.timeline-item:last-child:after {
    display: none;
}
.timeline-item.completed:before {
    background: #00d1b2;
}
.timeline-item.current:before {
    box-shadow: 0 0 0 0.25rem rgba(37, 117, 252, 0.25);
}
.timeline-item.pending:before {
    background: #ffdd57;
}
.package-image {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.info-card {
    box-shadow: 0 0.5em 1em -0.125em rgba(10,10,10,0.1);
    border-radius: 8px;
}

.original-price {
    font-size: 1.0rem;
    color: #999;
    margin-left: 20px;
}