
        /* 重置默认样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* 横向卡片核心样式 - 更精致的视觉效果 */
        .taobao-card-horizontal {
            width: 100%;
            max-width: 650px;
            border: 1px solid #f0f0f0;
            border-radius: 12px; /* 更大圆角更柔和 */
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06); /* 更细腻的阴影 */
            font-family: "PingFang SC", "Microsoft Yahei", sans-serif;
            margin: 20px 0;
            display: flex;
            background: #fff;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* 顺滑过渡 */
        }
        /* 悬浮动效升级 */
        .taobao-card-horizontal:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transform: translateY(-2px); /* 轻微上浮 */
            border-color: #f402191a;
        }
        /* 商品图片区域 - 增加圆角和过渡 */
        .card-img-wrap {
            width: 190px;
            flex-shrink: 0;
            position: relative;
        }
        .card-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .taobao-card-horizontal:hover .card-img {
            transform: scale(1.03); /* 图片轻微放大 */
        }
        /* 图片角标装饰 */
        .card-img-wrap::after {
            content: "淘宝优选";
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(90deg, #f40, #ff7800);
            color: #fff;
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }
        /* 商品信息区域 - 优化间距和排版 */
        .card-content {
            flex: 1;
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        /* 标题 - 更优的行高和颜色层次 */
        .card-title {
            font-size: 15px;
            color: #1a1a1a;
            margin: 0 0 12px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.6;
            font-weight: 500;
        }
        /* 卖点标签 */
        .card-tags {
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
        }
        .card-tag {
            font-size: 11px;
            color: #f40;
            background: #f4021908;
            padding: 2px 8px;
            border-radius: 3px;
            border: 1px solid #f4021914;
        }
        /* 价格区域 - 更精致的排版 */
        .card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .card-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        .price-current {
            font-size: 20px;
            color: #f40;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .price-original {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
        }
        /* 购买按钮 - 渐变背景+精致样式 */
        .card-btn {
            display: inline-block;
            padding: 8px 22px;
            background: linear-gradient(90deg, #f40, #ff6700); /* 淘宝橙渐变 */
            color: #fff;
            text-decoration: none;
            border-radius: 20px; /* 胶囊按钮 */
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(244, 0, 0, 0.2);
        }
        .card-btn:hover {
            background: linear-gradient(90deg, #ff5722, #f40);
            transform: scale(1.05); /* 按钮轻微放大 */
            box-shadow: 0 4px 12px rgba(244, 0, 0, 0.3);
        }
        /* 响应式适配 - 手机端更友好 */
        @media (max-width: 480px) {
            .taobao-card-horizontal {
                flex-direction: column;
                max-width: 100%;
            }
            .card-img-wrap {
                width: 100%;
            }
            .card-img {
                height: 200px;
            }
            .card-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                margin-top: 10px;
            }
            .card-btn {
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }
        }
    
/* -------- calendar ------ */
.calendartop,
.calendar {
    width: 100%;
    text-align: center;
}

.calendartop {
    line-height: 1.6;
}

.calendar {
    line-height: 2;
}

.calendartop tbody tr:first-child td a {
    padding: .25em .65em;
}

.calendar tbody tr:first-child td {
    background-color: var(--color-text-1-light);
}

.calendar tbody tr:first-child td:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.calendar tbody tr:first-child td:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.calendar .day,
.calendar td a {
    position: relative;
    color: var(--color-theme-light);
}

.calendar td a {
    text-decoration: underline;
}

.calendar .day::after,
.calendar td a:hover::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    border: 1px solid var(--color-theme-light);
    border-radius: 100%;
}

/* Captcha styles */
  .captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .captcha {
    width: 6rem;
    height: 2.4rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .captcha_input {
    width: 8rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .captcha_input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
  }
