/* Modern PC Design Overrides - 2025 Edition */
:root {
    --primary-color: #f60;
    --primary-hover: #ff8033;
    --text-main: #333;
    --text-secondary: #666;
    --text-light: #999;
    --bg-light: #f7f7f7;
    --bg-white: #fff;
    --border-color: #eee;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* Global Reset & Typography */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* Header Cleanup */
.g-toolbar {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    height: 40px;
}
.g-toolbar li {
    height: 40px;
}
.g-toolbar li .u-menu-hd {
    height: 24px;
    line-height: 24px;
    padding: 8px 15px;
    border: none !important; /* Remove old borders */
    background: transparent !important; /* Remove old images */
}
.g-toolbar li a {
    color: var(--text-secondary);
    transition: color 0.2s;
}
.g-toolbar li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.g-toolbar li.u-arr .u-menu-hd {
    width: auto;
    padding-right: 25px;
}

/* Search Area */
.head_mid {
    padding: 25px 0;
}
.logo_1yyg {
    margin-top: 5px;
}
.head_search .search {
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.head_search .search .form {
    border: none;
    height: 36px;
}
.head_search .search .form input {
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    font-size: 14px;
    color: var(--text-main);
}
.head_search .search a.seaIcon {
    background: var(--primary-color);
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.2s;
    background-image: none !important; /* Remove old icon image */
    text-align: center;
    color: #fff;
}
.head_search .search a.seaIcon:hover {
    background: var(--primary-hover);
}

/* Navigation */
.g-nav {
    background: var(--primary-color);
    box-shadow: var(--shadow-sm);
    height: 44px;
    line-height: 44px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* Optional top radius */
}
.m-menu {
    background: rgba(0,0,0,0.1); /* Subtle dark overlay for category */
    height: 44px;
}
.m-menu-all h3 a {
    height: 44px;
    line-height: 44px;
    font-weight: bold;
    font-size: 16px;
    background-image: none !important; /* Remove arrow image */
}
.nav-main li a {
    font-size: 15px;
    font-weight: 500;
    padding: 0 30px;
    transition: all 0.2s;
    height: 44px;
    line-height: 44px;
    background: transparent !important; /* Remove old backgrounds */
}
.nav-main li a:hover, .nav-main li.f-nav-home a {
    background: rgba(255,255,255,0.15) !important;
}

/* Cart Button */
.nav-cart {
    background: #fff;
    border: 1px solid var(--border-color);
    border-bottom: none;
    height: 43px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin-top: 1px;
}
.nav-cart-btn a {
    color: var(--primary-color);
    background: #fff;
    height: 43px;
    line-height: 43px;
    font-weight: bold;
}
.nav-cart-btn i.f-cart-icon {
    /* Optional: replace with font icon if available, or keep image but adjust position */
    top: 12px;
}

/* Home Page Content - Card Style */
.g-hotL-list {
    border: none;
    background: transparent;
    margin-bottom: 20px;
    width: 240px; /* Adjust width slightly if needed */
    margin-right: 10px;
}
.g-hotL-con {
    background: #fff;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    padding: 15px;
    overflow: hidden;
    height: auto;
    min-height: 320px;
    position: relative;
}
.g-hotL-con:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    z-index: 10;
}
.g-hotL-con li.g-hot-pic {
    margin-bottom: 15px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.g-hotL-con li.g-hot-pic img {
    max-width: 100%;
    max-height: 100%;
}
.g-hotL-con li.g-hot-name {
    height: 40px;
    overflow: hidden;
    margin-bottom: 5px;
}
.g-hotL-con li.g-hot-name a {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-main);
    line-height: 20px;
}
.g-hotL-con li.gray {
    color: var(--text-light);
    margin: 5px 0;
    font-size: 12px;
}
.g-hotL-con .u-imm {
    background: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    height: 36px;
    line-height: 36px;
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.2s, transform 0.2s;
}
.g-hotL-con .u-imm:hover {
    background: var(--primary-hover);
    text-decoration: none;
    transform: scale(1.02);
}

/* Progress Bar Modernization */
.m-progress {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.m-progress dt {
    border: none;
    background: transparent;
    height: 8px;
}
.m-progress dt b {
    background: linear-gradient(90deg, #ffaf00, #ff6600);
    height: 8px;
    border-radius: 4px;
}

/* Sidebar & Other Modules */
.g-hot-right {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 10px;
    overflow: hidden;
}
.m-member, .m-login {
    border: none;
    background: transparent;
}
.m-app-dow {
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
    padding-top: 10px;
}

/* Floor Titles */
.g-title {
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 15px;
    height: 36px;
}
.g-title h3 {
    font-size: 20px;
    color: var(--text-main);
    font-weight: normal;
}
.g-title h3 i {
    background: var(--primary-color) !important; /* Force primary color bg */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    margin-top: 2px;
}

/* General Link Cleanups */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}