body { background-color: #f4f6f9; color: #2d3436; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

.aur-wrap { max-width: 1440px; margin: 0 auto; padding: 0 20px; }

.aur-topbar { background: #ffffff; box-shadow: 0 2px 16px rgba(0,0,0,0.04); position: sticky; top: 0; z-index: 200; height: 70px; display: flex; align-items: center; }
.aur-top-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.aur-logo { display: flex; align-items: center; }
.aur-logo img { height: 32px; }

.aur-menu { list-style: none; display: flex; gap: 35px; margin: 0; padding: 0; }
.aur-menu a { font-size: 15px; color: #636e72; font-weight: 500; transition: color 0.3s; }
.aur-menu a:hover, .aur-active { color: #0984e3 !important; }

.aur-user-act { font-size: 14px; color: #636e72; background: #f4f6f9; padding: 6px 16px; border-radius: 20px; transition: 0.3s; }
.aur-user-act:hover { background: #0984e3; color: #ffffff; }

.aur-alert { background: #ffffff; border-left: 4px solid #00cec9; padding: 18px 24px; margin: 25px 0; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); display: flex; align-items: center; gap: 12px; }
.aur-alert-txt { font-size: 14px; color: #d63031; line-height: 1.6; }

.aur-cate-head { font-size: 20px; font-weight: 600; color: #2d3436; margin: 40px 0 20px; padding-left: 10px; border-left: 5px solid #0984e3; line-height: 1.2; }

/* 核心要求：首页一行7个商品 */
.aur-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; margin-bottom: 50px; }

.aur-card { background: #ffffff; border-radius: 10px; padding: 12px; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #ecf0f1; display: flex; flex-direction: column; }
.aur-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); border-color: #dfe6e9; }
.aur-card-pic { width: 100%; aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; background: #fafafa; margin-bottom: 12px; }
.aur-card-pic img { width: 100%; height: 100%; object-fit: contain; transition: 0.3s; }
.aur-card:hover .aur-card-pic img { transform: scale(1.05); }

.aur-card-name { font-size: 13px; color: #2d3436; margin: 0 0 8px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.5; min-height: 39px; }
.aur-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 12px; }
.aur-tag-auto { background: #e3f2fd; color: #0277bd; padding: 2px 6px; border-radius: 4px; }
.aur-tag-hand { background: #f5f5f5; color: #616161; padding: 2px 6px; border-radius: 4px; }
.aur-card-stock { color: #b2bec3; }

.aur-card-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.aur-card-price { font-size: 18px; font-weight: 700; color: #d63031; }
.aur-card-btn { background: #0984e3; color: #ffffff; padding: 6px 14px; font-size: 12px; border-radius: 6px; font-weight: 500; transition: 0.3s; }
.aur-card:hover .aur-card-btn { background: #074e8c; }

/* 详情页差异化布局 */
.aur-detail-split { display: flex; gap: 30px; margin-top: 20px; align-items: flex-start; }
.aur-detail-visual { width: 400px; flex-shrink: 0; background: #ffffff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #ecf0f1; position: sticky; top: 90px; }
.aur-detail-visual img { width: 100%; border-radius: 8px; }
.aur-detail-info { flex-grow: 1; background: #ffffff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #ecf0f1; }

.aur-detail-title { font-size: 24px; font-weight: 700; margin-bottom: 20px; line-height: 1.4; color: #2d3436; }
.aur-price-ribbon { background: linear-gradient(135deg, #fff0f0 0%, #ffe3e3 100%); padding: 20px 25px; border-radius: 8px; display: flex; align-items: baseline; gap: 15px; margin-bottom: 30px; border-left: 4px solid #d63031; }
.aur-detail-price { font-size: 32px; font-weight: 800; color: #d63031; }

.aur-form-group { margin-bottom: 25px; display: flex; flex-direction: column; gap: 8px; }
.aur-form-label { font-size: 13px; color: #636e72; font-weight: 500; }
.aur-input-base { width: 100%; padding: 14px 16px; border: 1px solid #dfe6e9; border-radius: 8px; background: #fdfdfd; font-size: 14px; box-sizing: border-box; outline: none; transition: 0.3s; color: #2d3436; }
.aur-input-base:focus { border-color: #0984e3; box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1); }
.aur-buy-action { width: 100%; background: #0984e3; color: #ffffff; padding: 16px; font-size: 16px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.aur-buy-action:hover { background: #074e8c; }
.aur-buy-action:disabled { background: #b2bec3; cursor: not-allowed; }

.aur-richtext { margin-top: 40px; padding-top: 30px; border-top: 1px dashed #dfe6e9; line-height: 2; font-size: 15px; color: #444; }

.aur-bottom { text-align: center; padding: 40px 0; margin-top: 60px; color: #a4b0be; font-size: 13px; }

/* 响应式截断逻辑 */
@media (max-width: 1400px) { .aur-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 1200px) { .aur-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 992px) { 
    .aur-grid { grid-template-columns: repeat(4, 1fr); } 
    .aur-detail-split { flex-direction: column; }
    .aur-detail-visual { width: 100%; position: static; }
}
@media (max-width: 768px) { 
    .aur-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } 
    .aur-topbar ul { display: none !important; }
    .aur-detail-info { padding: 20px; }
}\n