
        :root{
            --primary: #2762b7;
            --primary-light: #eff4fc;
            --accent: #f8b62c;
            --pink: #ff758c;      
            --pink-light: #fff0f3;
            --red: #ff4d4f;       
            --bg: #f4f6f9;
            --surface: #ffffff;
            --text-main: #222222;
            --text-muted: #777777;
            --border: #e6e6e6;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 30px;
        }
        .global-watermark {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 9999;
            background-repeat: repeat;
            opacity: 1; 
        }
        *{box-sizing:border-box;margin:0;padding:0}
        body{
            font-family: "PingFang TC", "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", sans-serif;
            font-size: 16px; 
            font-weight: normal; 
            color: var(--text-main);
            background-color: var(--bg);
            line-height: 1.6;
            letter-spacing: 0.5px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .bear-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .header__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo__img__main {
            font-size: 26px;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo__img__main img {
            height: 55px;
            object-fit: contain;
        }
        .logo__img__main span {
            font-size: 12px;
            color: #fff;
            background: linear-gradient(135deg, var(--pink), var(--red)); 
            padding: 2px 8px;
            border-radius: 12px;
            letter-spacing: 1px;
            font-weight: 700;
        }
        .item__main {
            display: flex;
            gap: 28px;
            align-items: center;
            font-weight: normal;
            font-size: 15px;
        }
        .item__main__a { transition: color 0.2s; position: relative; }
        .item__main__a:hover { color: var(--pink); }
        .item__main__a.active { color: var(--primary); }
        .item__main__a.active::after {
            content: "";
            position: absolute;
            bottom: -22px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 3px 3px 0 0;
        }
        .item__member {
            display: flex;
            align-items: center; 
            gap: 12px;
        }
        .member__btn {
            background: transparent;
            border: 1px solid var(--border);
            padding: 8px 18px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: normal;
            color: var(--text-main);
            transition: all 0.2s;
            white-space: nowrap;
        }
        .member__btn:hover {
            border-color: var(--pink);
            color: var(--pink);
        }
        .member__btn.btn-login {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .member__btn.btn-login:hover {
            background: #1e4b8e;
        }
        .top-section {
            background: linear-gradient(180deg, #eaf2fc 0%, #fff0f3 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #fde2e6;
            min-height: 320px;
            display: flex;
            align-items: center;
        }
        .top-section::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,117,140,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .top-section-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .top-section-search-area {
            flex: 1;
            max-width: 650px;
            padding-right: 40px;
        }
        .search-bar-wrap {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: 0 8px 24px rgba(39,98,183,0.1);
            display: flex;
            align-items: center;
            padding: 8px 10px;
            border: 2px solid transparent;
            margin-bottom: 15px;
            transition: border-color 0.3s;
        }
        .search-bar-wrap:focus-within { border-color: var(--pink); }
        .function-btn-wrap {
            display: flex;
            align-items: center;
            padding: 0 15px;
            border-right: 1px solid var(--border);
            flex-shrink: 0;
        }
        .function-btn {
            color: var(--text-main);
            font-weight: normal; 
            font-size: 19px; 
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .function-btn:hover { color: var(--pink); }
        .function-btn::after {
            content: "▼";
            font-size: 12px;
            color: #aaa;
        }
        .function-btn-divider {
            width: 1px;
            height: 24px;
            background: var(--border);
            margin: 0 5px;
        }
        .search-input-box {
            flex: 1;
            display: flex;
            align-items: center;
        }
        .search-input-box input {
            width: 100%;
            border: none;
            padding: 10px 20px;
            font-size: 21px; 
            outline: none;
            font-weight: 400; 
        }
        #searchBtn {
            background: linear-gradient(90deg, var(--pink), var(--red));
            color: #fff;
            padding: 14px 40px;
            border-radius: var(--radius-lg);
            font-weight: normal; 
            font-size: 21px; 
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 10px rgba(255,77,79,0.3);
            transition: transform 0.2s, box-shadow 0.2s;
            flex-shrink: 0;
        }
        #searchBtn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255,77,79,0.4);
        }
        .haveJob {
            color: var(--text-muted);
            font-size: 16px; 
            margin-top: 15px;
            padding-left: 20px;
        }
        .haveJob span {
            color: var(--red);
            font-weight: 900;
            font-size: 21px; 
        }
        .top-section-active-bear {
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            position: relative;
            margin-bottom: -60px; 
        }
        .top-section-slogan {
            font-size: 42px; 
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: absolute;
            left: -180px;
            top: 20%;
            white-space: nowrap;
            z-index: 4;
        }
        .top-section-slogan span { color: var(--pink); }
        .top-section-endorser {
            width: 320px;  
            height: 250px;
            background: url('../平台素材/吉祥物/bear02.png') no-repeat bottom center/contain;
            position: relative;
            z-index: 3;
        }
        .quick-nav {
            max-width: 1000px;
            margin: -35px auto 40px;
            display: flex;
            justify-content: center;
            gap: 50px;
            position: relative;
            z-index: 5;
            flex-wrap: wrap;
        }
        .quick-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .quick-icon {
            width: 70px;
            height: 70px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--primary);
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .quick-item:hover { transform: translateY(-5px); }
        .quick-item:hover .quick-icon {
            border-color: var(--pink);
            box-shadow: 0 8px 20px rgba(255,117,140,0.2);
            color: var(--pink);
        }
        .quick-text {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
        }
        .main-content {
            padding: 20px 20px 60px;
        }
        .section-title {
            text-align: center;
            font-size: 26px;
            font-weight: 900;
            margin-bottom: 30px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .section-title::before, .section-title::after {
            content: "";
            height: 2px;
            width: 30px;
            background: var(--pink);
            border-radius: 2px;
        }
        .theme-section {
            max-width: 1200px;
            margin: 0 auto 50px;
        }
        .theme-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .theme-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: transform 0.2s;
            cursor: pointer;
        }
        .theme-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .theme-img {
            height: 120px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            position: relative;
        }
        .theme-img.t1 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }
        .theme-img.t2 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
        .theme-img.t3 { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
        .theme-img.t4 { background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%); }
        .theme-info { padding: 15px; text-align: center; }
        .theme-title { font-size: 18px; font-weight: bold; margin-bottom: 5px; }
        .theme-sub { font-size: 13px; color: var(--text-muted); }
        .logo-section {
            max-width: 1000px;
            margin: 0 auto 60px;
            position: relative;
        }
        .logo-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            overflow-x: auto;
            padding-bottom: 15px;
            gap: 15px;
        }
        .logo-grid::-webkit-scrollbar { display: none; }
        .logo-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 90px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .logo-card:hover { transform: translateY(-3px); }
        .logo-card .img-wrap {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            border: 1px solid #f0f0f0;
            overflow: hidden;
            padding: 10px;
        }
        .logo-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .logo-card .company {
            font-size: 13px;
            font-weight: normal;
            color: var(--text-main);
            margin-bottom: 2px;
            text-align: center;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .logo-card .salary {
            color: var(--primary);
            font-size: 12px;
            font-weight: normal;
        }
        .logo-nav-btn {
            position: absolute;
            top: 40px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            z-index: 5;
        }
        .logo-nav-btn:hover { color: var(--primary); border-color: var(--primary); }
        .logo-nav-btn.prev { left: -45px; }
        .logo-nav-btn.next { right: -45px; }
        .skill-exchange-section {
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto 60px;
            padding: 0 20px;
        }
        .section-header-left {
            max-width: 1200px;
            margin: 0 auto 24px;
        }
        .section-header-left h3 {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .section-header-left p {
            font-size: 15px;
            color: var(--text-muted);
        }
        .skill-marquee-container {
            display: flex;
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 20px;
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }
        .skill-marquee-container:hover .skill-marquee {
            animation-play-state: paused;
        }
        .skill-marquee {
            flex-shrink: 0;
            display: flex;
            gap: 20px;
            padding-right: 20px;
            animation: scroll 30s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        .skill-card {
            width: 320px;
            white-space: normal;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
            transition: all 0.2s;
            cursor: pointer;
            flex-shrink: 0;
        }
        .skill-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }
        .skill-user {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .skill-user img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            background: #f0f0f0;
        }
        .skill-user-name { font-weight: bold; font-size: 16px; }
        .skill-detail {
            font-size: 14px;
            color: var(--text-main);
            margin-bottom: 8px;
            font-weight: normal;
            line-height: 1.4;
        }
        .skill-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .job-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px; 
        }
        .job-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .job-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 24px;
            display: flex;
            gap: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.2s;
            border: 1px solid transparent;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }
        .job-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-color: var(--pink);
        }
        .job-card .hot-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--pink-light);
            color: var(--red);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            border: 1px solid #ffccd5;
        }
        .job-card img {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            border: 1px solid var(--border);
            object-fit: cover;
        }
        .job-info { flex: 1; }
        .job-title {
            font-size: 22px; 
            font-weight: normal; 
            color: var(--primary);
            margin-bottom: 6px;
            cursor: pointer;
        }
        .job-title:hover { text-decoration: underline; color: var(--pink); }
        .job-comp {
            font-size: 17px; 
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .job-meta {
            font-size: 16px; 
            color: #555;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .job-tags span {
            background: #f0f4f8;
            color: #4a5568;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 15px; 
            margin-right: 8px;
            font-weight: normal; 
        }
        .job-action {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-end;
            gap: 15px;
            min-width: 100px;
        }
        .job-salary {
            color: var(--red);
            font-size: 18px;
            font-weight: 900;
        }
        .btn-apply {
            background: var(--surface);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 8px 24px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            font-size: 15px;
            transition: all 0.2s;
        }
        .btn-apply:hover {
            background: var(--primary);
            color: #fff;
        }
        .btn-apply.applied {
            background: #00a65a;
            color: #fff;
            border-color: #00a65a;
            pointer-events: none;
        }
        .view-more {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 80px; 
        }
        .btn-more {
            background: #fff;
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 12px 40px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-more:hover {
            background: var(--primary-light);
        }
        .footer {
            background-color: #3b424a; 
            color: #b0b5ba;
            padding: 60px 0 40px;
            font-size: 14px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-top {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #4f5761;
            padding-bottom: 40px;
            margin-bottom: 40px;
        }
        .footer-app {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .footer-qr {
            width: 100px;
            height: 100px;
            background: #fff;
            padding: 5px;
            border-radius: 4px;
        }
        .footer-qr img { width: 100%; height: 100%; }
        .app-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .app-title {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .store-btn {
            background: #000;
            color: #fff;
            border: 1px solid #555;
            border-radius: 6px;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            width: 140px;
        }
        .store-btn:hover { border-color: #888; }
        .footer-links {
            display: flex;
            gap: 80px;
        }
        .link-col h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: normal;
        }
        .link-col ul { display: flex; flex-direction: column; gap: 12px; }
        .link-col a { color: #b0b5ba; transition: color 0.2s; }
        .link-col a:hover { color: #fff; }
        .link-col .hot {
            background: #ff4d4f;
            color: #fff;
            font-size: 10px;
            padding: 1px 4px;
            border-radius: 2px;
            margin-right: 6px;
            vertical-align: middle;
        }
        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .social-links {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #4f5761;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .social-icon:hover { background: var(--pink); }
        .footer-brands {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .brand-main {
            color: #fff;
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            display: flex;
            align-items: baseline;
            gap: 10px;
        }
        .brand-main span {
            font-size: 12px;
            color: #b0b5ba;
            font-weight: normal;
        }
        .partner-links {
            display: flex;
            gap: 15px;
            margin-left: auto;
            font-size: 13px;
        }
        .copyright-area {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .company-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .company-info img { height: 35px; }
        .copyright-text {
            text-align: left;
            font-size: 12px;
            line-height: 1.8;
            color: #b0b5ba;
        }
        .security-badges {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .security-badge {
            height: 40px;
            object-fit: contain;
        }
        .float-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            color: var(--text-main);
            border: 1px solid var(--border);
        }
        @media(max-width: 1024px) {
            .top-section-container { flex-direction: column; align-items: center; text-align: center; }
            .top-section-search-area { padding-right: 0; max-width: 100%; order: 2; margin-top: 0; z-index: 5; position: relative; }
            .top-section-active-bear { order: 1; justify-content: center; margin-bottom: 0; }
            .top-section-slogan { position: static; font-size: 36px; margin-bottom: 10px; }
            .haveJob { padding-left: 0; }
            .theme-grid { grid-template-columns: repeat(2, 1fr); }
            .job-grid { grid-template-columns: 1fr; }
            .skill-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { flex-direction: column; gap: 40px; }
            .footer-links { flex-wrap: wrap; gap: 40px; }
            .footer-brands { flex-direction: column; align-items: flex-start; }
            .partner-links { margin-left: 0; flex-wrap: wrap; }
            .copyright-area { flex-direction: column; align-items: flex-start; gap: 20px; }
            .copyright-text { text-align: left; }
        }
        @media(max-width: 768px) {
            .item__main { display: none; }
            .item__member { gap: 6px; }
            .member__btn { padding: 6px 12px; font-size: 13px; margin-right: 0 !important; }
            .message-icon { margin-right: 5px !important; }
            .function-btn-wrap { display: none; }
            .search-bar-wrap { border-radius: 8px; padding: 4px; }
            #searchBtn { border-radius: 6px; padding: 10px 15px; }
            .quick-nav { gap: 20px; margin-top: 10px; }
            .quick-item { width: calc(33.33% - 20px); }
            .theme-grid { grid-template-columns: 1fr; gap: 15px; }
            .theme-card { display: flex; align-items: center; }
            .theme-img { height: 80px; width: 100px; flex-shrink: 0; font-size: 32px; }
            .theme-info { flex: 1; text-align: left; padding: 10px 15px; }
            .skill-grid { grid-template-columns: 1fr; }
            .logo-nav-btn { display: none; }
            .job-card { flex-direction: column; align-items: flex-start; }
            .job-action { align-items: flex-start; width: 100%; margin-top: 10px; flex-direction: row; align-items: center; justify-content: space-between;}
            .top-section-slogan { font-size: 28px; margin-bottom: 0; }
            .top-section-endorser { width: 220px; height: 180px; }
            .top-section-active-bear { flex-direction: column; align-items: center; }
            .notification-dropdown {
                width: 300px;
                right: -50px;
            }
        }
        .message-icon { position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-right: 15px; width: 24px; height: 24px; color: #475569; transition: color 0.2s; }
        .message-icon:hover { color: var(--primary); }
        .message-icon svg { width: 22px; height: 22px; position: absolute; transition: opacity 0.2s, transform 0.2s; }
        .message-icon .envelope-open { opacity: 0; transform: scale(0.8); }
        .message-icon .envelope-closed { opacity: 1; transform: scale(1); }
        .message-icon .unread-dot { position: absolute; top: -2px; right: -2px; width: 8px; height: 8px; background-color: #ef4444; border-radius: 50%; border: 2px solid #ffffff; opacity: 0; transition: opacity 0.2s; }
        .message-icon.has-unread .unread-dot { opacity: 1; }
        .message-icon.is-read .envelope-closed { opacity: 0; transform: scale(0.8); }
        .message-icon.is-read .envelope-open { opacity: 1; transform: scale(1); }
        .message-icon.is-read .unread-dot { opacity: 0; }
        .notification-dropdown { position: absolute; top: 50px; right: -10px; width: 360px; background: #ffffff; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); z-index: 999; display: flex; flex-direction: column; overflow: hidden; transform-origin: top right; opacity: 0; visibility: hidden; transform: scale(0.95); transition: all 0.2s ease-out; }
        .notification-dropdown.show { opacity: 1; visibility: visible; transform: scale(1); }
        .noti-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #f1f5f9; }
        .noti-header h3 { margin: 0; font-size: 16px; font-weight: bold; color: #1e293b; }
        .noti-close { background: none; border: none; font-size: 18px; color: #94a3b8; cursor: pointer; }
        .noti-tabs { display: flex; border-bottom: 1px solid #f1f5f9; }
        .noti-tab { flex: 1; text-align: center; padding: 10px 0; font-size: 14px; color: #64748b; cursor: pointer; font-weight: bold; border-bottom: 2px solid transparent; }
        .noti-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
        .noti-list { max-height: 300px; overflow-y: auto; padding: 10px; }
        .noti-item { padding: 15px; border-radius: 8px; margin-bottom: 5px; background: #f8fafc; border-left: 3px solid #f59e0b; position: relative; }
        .noti-item.read { background: transparent; border-left-color: transparent; opacity: 0.7; }
        .noti-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #64748b; margin-bottom: 8px; }
        .noti-meta-icon { font-size: 14px; }
        .noti-content { font-size: 14px; color: #334155; line-height: 1.5; }
    