diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..6baa083 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +node_modules +.next +dist +build +public \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..0259db1 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,10 @@ +{ + "semi": true, + "trailingComma": "all", + "singleQuote": true, + "printWidth": 100, + "tabWidth": 2, + "jsxSingleQuote": false, + "bracketSpacing": true, + "plugins": ["prettier-plugin-tailwindcss"] +} diff --git a/app/favicon.ico b/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/app/favicon.ico and /dev/null differ diff --git a/app/globals.css b/app/globals.css deleted file mode 100644 index a2dc41e..0000000 --- a/app/globals.css +++ /dev/null @@ -1,26 +0,0 @@ -@import "tailwindcss"; - -:root { - --background: #ffffff; - --foreground: #171717; -} - -@theme inline { - --color-background: var(--background); - --color-foreground: var(--foreground); - --font-sans: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - -body { - background: var(--background); - color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; -} diff --git a/app/layout.tsx b/app/layout.tsx deleted file mode 100644 index f7fa87e..0000000 --- a/app/layout.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; - -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - {children} - - - ); -} diff --git a/app/page.tsx b/app/page.tsx deleted file mode 100644 index 295f8fd..0000000 --- a/app/page.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import Image from "next/image"; - -export default function Home() { - return ( -
-
- Next.js logo -
-

- To get started, edit the page.tsx file. -

-

- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -

-
-
- - Vercel logomark - Deploy Now - - - Documentation - -
-
-
- ); -} diff --git a/globals.d.ts b/globals.d.ts new file mode 100644 index 0000000..cbe652d --- /dev/null +++ b/globals.d.ts @@ -0,0 +1 @@ +declare module "*.css"; diff --git a/next.config.ts b/next.config.ts index e9ffa30..62060af 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,15 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "nguyencongpc.vn", + pathname: "/**", // Cho phép tất cả đường dẫn từ domain này + }, + ], + }, }; export default nextConfig; diff --git a/package-lock.json b/package-lock.json index fa85b28..2960daf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,17 +9,24 @@ "version": "0.1.0", "dependencies": { "next": "16.0.10", + "postcss": "^8.5.6", "react": "19.2.1", - "react-dom": "19.2.1" + "react-dom": "19.2.1", + "react-icons": "^5.5.0", + "swiper": "^12.0.3" }, "devDependencies": { - "@tailwindcss/postcss": "^4", + "@tailwindcss/postcss": "^4.1.18", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", + "daisyui": "^5.5.14", "eslint": "^9", "eslint-config-next": "16.0.10", - "tailwindcss": "^4", + "eslint-config-prettier": "^10.1.8", + "prettier": "^3.7.4", + "prettier-plugin-tailwindcss": "^0.7.2", + "tailwindcss": "^4.1.18", "typescript": "^5" } }, @@ -2638,6 +2645,16 @@ "dev": true, "license": "MIT" }, + "node_modules/daisyui": { + "version": "5.5.14", + "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.5.14.tgz", + "integrity": "sha512-L47rvw7I7hK68TA97VB8Ee0woHew+/ohR6Lx6Ah/krfISOqcG4My7poNpX5Mo5/ytMxiR40fEaz6njzDi7cuSg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/saadeghi/daisyui?sponsor=1" + } + }, "node_modules/damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", @@ -3127,6 +3144,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/eslint-config-prettier": { + "version": "10.1.8", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz", + "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "funding": { + "url": "https://opencollective.com/eslint-config-prettier" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, "node_modules/eslint-import-resolver-node": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", @@ -3218,6 +3251,7 @@ "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@rtsao/scc": "^1.1.0", "array-includes": "^3.1.9", @@ -5306,7 +5340,6 @@ "version": "8.5.6", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", - "dev": true, "funding": [ { "type": "opencollective", @@ -5341,6 +5374,102 @@ "node": ">= 0.8.0" } }, + "node_modules/prettier": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.4.tgz", + "integrity": "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-plugin-tailwindcss": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.7.2.tgz", + "integrity": "sha512-LkphyK3Fw+q2HdMOoiEHWf93fNtYJwfamoKPl7UwtjFQdei/iIBoX11G6j706FzN3ymX9mPVi97qIY8328vdnA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.19" + }, + "peerDependencies": { + "@ianvs/prettier-plugin-sort-imports": "*", + "@prettier/plugin-hermes": "*", + "@prettier/plugin-oxc": "*", + "@prettier/plugin-pug": "*", + "@shopify/prettier-plugin-liquid": "*", + "@trivago/prettier-plugin-sort-imports": "*", + "@zackad/prettier-plugin-twig": "*", + "prettier": "^3.0", + "prettier-plugin-astro": "*", + "prettier-plugin-css-order": "*", + "prettier-plugin-jsdoc": "*", + "prettier-plugin-marko": "*", + "prettier-plugin-multiline-arrays": "*", + "prettier-plugin-organize-attributes": "*", + "prettier-plugin-organize-imports": "*", + "prettier-plugin-sort-imports": "*", + "prettier-plugin-svelte": "*" + }, + "peerDependenciesMeta": { + "@ianvs/prettier-plugin-sort-imports": { + "optional": true + }, + "@prettier/plugin-hermes": { + "optional": true + }, + "@prettier/plugin-oxc": { + "optional": true + }, + "@prettier/plugin-pug": { + "optional": true + }, + "@shopify/prettier-plugin-liquid": { + "optional": true + }, + "@trivago/prettier-plugin-sort-imports": { + "optional": true + }, + "@zackad/prettier-plugin-twig": { + "optional": true + }, + "prettier-plugin-astro": { + "optional": true + }, + "prettier-plugin-css-order": { + "optional": true + }, + "prettier-plugin-jsdoc": { + "optional": true + }, + "prettier-plugin-marko": { + "optional": true + }, + "prettier-plugin-multiline-arrays": { + "optional": true + }, + "prettier-plugin-organize-attributes": { + "optional": true + }, + "prettier-plugin-organize-imports": { + "optional": true + }, + "prettier-plugin-sort-imports": { + "optional": true + }, + "prettier-plugin-svelte": { + "optional": true + } + } + }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", @@ -5407,6 +5536,15 @@ "react": "^19.2.1" } }, + "node_modules/react-icons": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz", + "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==", + "license": "MIT", + "peerDependencies": { + "react": "*" + } + }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", @@ -6026,6 +6164,25 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/swiper": { + "version": "12.0.3", + "resolved": "https://registry.npmjs.org/swiper/-/swiper-12.0.3.tgz", + "integrity": "sha512-BHd6U1VPEIksrXlyXjMmRWO0onmdNPaTAFduzqR3pgjvi7KfmUCAm/0cj49u2D7B0zNjMw02TSeXfinC1hDCXg==", + "funding": [ + { + "type": "patreon", + "url": "https://www.patreon.com/swiperjs" + }, + { + "type": "open_collective", + "url": "http://opencollective.com/swiper" + } + ], + "license": "MIT", + "engines": { + "node": ">= 4.7.0" + } + }, "node_modules/tailwindcss": { "version": "4.1.18", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz", diff --git a/package.json b/package.json index ff8f1fe..1b3df12 100644 --- a/package.json +++ b/package.json @@ -10,17 +10,24 @@ }, "dependencies": { "next": "16.0.10", + "postcss": "^8.5.6", "react": "19.2.1", - "react-dom": "19.2.1" + "react-dom": "19.2.1", + "react-icons": "^5.5.0", + "swiper": "^12.0.3" }, "devDependencies": { - "@tailwindcss/postcss": "^4", + "@tailwindcss/postcss": "^4.1.18", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", + "daisyui": "^5.5.14", "eslint": "^9", "eslint-config-next": "16.0.10", - "tailwindcss": "^4", + "eslint-config-prettier": "^10.1.8", + "prettier": "^3.7.4", + "prettier-plugin-tailwindcss": "^0.7.2", + "tailwindcss": "^4.1.18", "typescript": "^5" } } diff --git a/src/app/error.tsx b/src/app/error.tsx new file mode 100644 index 0000000..2d4f31d --- /dev/null +++ b/src/app/error.tsx @@ -0,0 +1 @@ +"use client"; \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..fc52203 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,25 @@ +import type { Metadata } from 'next'; +import '../styles/sf-pro-display.css'; +import '../styles/globals.css'; +import Header from '@components/layout/Header/Header'; + +export const metadata: Metadata = { + title: 'Nguyễn Công PC - Cửa Hàng Máy Tính PC Đồ Hoạ - PC Gaming chuyên nghiệp', + description: + 'Mua máy tính đồ họa, PC gaming, máy tính văn phòng, laptop gaming, PC AI, Build PC, CPU, VGA, màn hình máy tính chính hãng tại Nguyễn Công PC giá rẻ nhất - Giảm giá 50%', +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + +
+ {children} + + + ); +} diff --git a/src/app/loading.tsx b/src/app/loading.tsx new file mode 100644 index 0000000..da99859 --- /dev/null +++ b/src/app/loading.tsx @@ -0,0 +1,3 @@ +export default function Loading() { + return

Loading...

+} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..34c3cdf --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,13 @@ +import Image from 'next/image'; +import SliderHome from '@components/layout/homepage/SliderHome'; + +export default function Home() { + return ( +
+
+ {/* slider */} + +
+
+ ); +} diff --git a/src/components/common/BoxShowroom.tsx b/src/components/common/BoxShowroom.tsx new file mode 100644 index 0000000..ee50b0e --- /dev/null +++ b/src/components/common/BoxShowroom.tsx @@ -0,0 +1,38 @@ + + +const BoxShowroom: React.FC = () => { + return( + <> + +
+
+ +
+
+

HỆ THỐNG SHOWROOM

+
+ +
+

1. Hà Nội

+

17 Hà Kế Tấn, Phường Phương Liệt, Hà Nội.

+

Giờ làm việc: 08:30 - 20:30

+
+
+ +
+

2. Hồ Chí Minh

+

249 Lý Thường Kiệt, Phường Phú Thọ, TP. Hồ Chí Minh

+

Giờ làm việc: 08:30 - 20:30

+
+
+
+
+
+ +
+ + ) + +} + +export default BoxShowroom; \ No newline at end of file diff --git a/src/components/layout/Header/Header.tsx b/src/components/layout/Header/Header.tsx new file mode 100644 index 0000000..6fe6e63 --- /dev/null +++ b/src/components/layout/Header/Header.tsx @@ -0,0 +1,15 @@ +import HeaderSlider from './HeaderTop'; +import HeaderMid from './HeaderMid'; +import HeaderBottom from './HeaderBottom'; + +const Header: React.FC = () => { + return ( +
+ + + +
+ ); +}; + +export default Header; diff --git a/src/components/layout/Header/HeaderBottom.tsx b/src/components/layout/Header/HeaderBottom.tsx new file mode 100644 index 0000000..e1e60f4 --- /dev/null +++ b/src/components/layout/Header/HeaderBottom.tsx @@ -0,0 +1,68 @@ +'use client'; +import React, { useState } from 'react'; +import { FaBars } from 'react-icons/fa'; +import { menuData } from './menuData'; +import Image from 'next/image'; +import Link from 'next/link'; +import HeaderBottomRight from './HeaderBottomRight'; + +const HeaderBottom: React.FC = () => { + return ( + <> +
+
+
+
+ Danh mục sản phẩm +
+ +
+ {menuData[0].product.all_category.map((item) => ( +
+ + {item.title} + {item.title} + + + {/* Cấp 2 & Cấp 3 */} + {item.children && item.children.length > 0 && ( +
+ {item.children.map((_children2) => ( +
+ + {_children2.title} + + {/* Cấp 3 */} + {_children2.children && _children2.children.length > 0 && ( + <> + {_children2.children.map((_children3) => ( + + {_children3.title} + + ))} + + )} +
+ ))} +
+ )} +
+ ))} +
+
+
    + +
+
+
+ + ); +}; + +export default HeaderBottom; diff --git a/src/components/layout/Header/HeaderBottomRight.tsx b/src/components/layout/Header/HeaderBottomRight.tsx new file mode 100644 index 0000000..22edb1d --- /dev/null +++ b/src/components/layout/Header/HeaderBottomRight.tsx @@ -0,0 +1,112 @@ +'use client'; +import React from 'react'; +import { menuData } from './menuData'; // Đảm bảo file này export menuData +import Link from 'next/link'; +import { FaCaretDown } from 'react-icons/fa'; + +const HeaderBottomRight: React.FC = () => { + // 1. Lọc các ID danh mục hiển thị trên Header (Cấp 1) + const allowedIds = ['407', '408', '3300', '281', '3431', '410', '3403']; + + // 2. Hàm lấy Icon và Title dựa theo ID + const getCategoryInfo = (id: string) => { + switch (id) { + case '407': + return { icon: 'sprite-laptop', title: 'Laptop' }; + case '408': + return { icon: 'sprite-PC', title: 'PC' }; + case '3300': + return { icon: 'sprite-PC', title: 'PC AI' }; + case '281': + return { icon: 'sprite-manhinh', title: 'Màn hình' }; + case '3431': + return { icon: 'sprite-linhkien', title: 'Linh kiện PC' }; + case '410': + return { icon: 'sprite-phimchuot', title: 'Phím chuột ghế gear' }; + case '3403': + return { icon: 'sprite-thietbi', title: 'Thiết bị văn phòng' }; + default: + return { icon: '', title: '' }; + } + }; + + // Lấy danh sách all_category từ menuData[0] + const allCategories = menuData[0]?.product?.all_category || []; + + return ( + <> + {allCategories.map((item) => { + if (!allowedIds.includes(item.id)) return null; + + const info = getCategoryInfo(item.id); + + return ( +
  • + + + {info.title} + + + +
    +
    +
      + {item.isParent === '1' && ( + <> + {item.id === '408' + ? allCategories + .filter((c) => ['408', '3201', '1829', '3300', '3691'].includes(c.id)) + .map((child1) => ( +
    • + + {child1.title} + + {child1.isParent === '1' && ( +
      + {child1.children?.map((child2) => ( + + {child2.title} + + ))} +
      + )} +
    • + )) + : item.children?.map((_item_child) => ( +
    • + + {_item_child.title} + + {_item_child.isParent === '1' && ( +
      + {_item_child.children?.map((_item_childtwo) => ( + + {_item_childtwo.title} + + ))} +
      + )} +
    • + ))} + + )} +
    +
    + +
    +

    Bán chạy nhất

    +
    +
    +
    +
  • + ); + })} + + ); +}; + +export default HeaderBottomRight; diff --git a/src/components/layout/Header/HeaderMid.tsx b/src/components/layout/Header/HeaderMid.tsx new file mode 100644 index 0000000..3c6521d --- /dev/null +++ b/src/components/layout/Header/HeaderMid.tsx @@ -0,0 +1,141 @@ +'use client'; +import React, { useState } from 'react'; +import Image from 'next/image'; +import Link from 'next/link'; +import { FaMapMarkerAlt, FaBars } from 'react-icons/fa'; +import BoxShowroom from '@components/common/BoxShowroom'; + +const HeaderMid: React.FC = () => { + const PopupAddress = () => { + const modal = document.getElementById('boxShowroom') as HTMLDialogElement; + modal?.showModal(); + }; + + return ( +
    +
    +
    + + logo + + +
    +
    +
    +
    + +

    Danh mục sản phẩm

    +
    +
    +
    +
    +
    +
    + +
    + +
    + +
    +
    +
    +
    + +
    + +

    + +

    + Xây dựng cấu hình + + + +

    + +

    + Khách hàng liên hệ + + + +

    + +

    + Tin tức công nghệ + + +
    + +

    + + 1 +

    + Giỏ hàng + +
    +
    +
    +
    +

    Tổng tiền hàng

    +

    +

    +
    + +

    THANH TOÁN NGAY

    + +
    +
    + + +

    + +

    + Tài khoản + +
    +
    +
    + +
    + ); +}; + +export default HeaderMid; diff --git a/src/components/layout/Header/HeaderTop.tsx b/src/components/layout/Header/HeaderTop.tsx new file mode 100644 index 0000000..84d9c62 --- /dev/null +++ b/src/components/layout/Header/HeaderTop.tsx @@ -0,0 +1,63 @@ +'use client'; +import React from 'react'; +import { Swiper, SwiperSlide } from 'swiper/react'; +import { Autoplay, Navigation, Pagination } from 'swiper/modules'; +import Image from 'next/image'; +import Link from 'next/link'; + +// Định nghĩa kiểu dữ liệu cho mỗi Banner +interface BannerItem { + id: number; + link: string; + imageSrc: string; + altText: string; +} + +// Dữ liệu mẫu (Bạn có thể fetch từ API) +const BANNER_DATA: BannerItem[] = [ + { + id: 429, + link: '/ad.php?id=429', + imageSrc: 'https://nguyencongpc.vn/media/banner/01_Decc0f3e158e61fabaf09a74d48e1c357bd.webp', + altText: 'banner 1', + }, + { + id: 392, + link: '/ad.php?id=392', + imageSrc: 'https://nguyencongpc.vn/media/banner/01_Dec383fdcbc6361363bd6d14f05d2c88ee2.webp', + altText: 'banner 2', + }, +]; + +const HeaderSlider: React.FC = () => { + return ( +
    + + {BANNER_DATA.map((banner) => ( + +
    + + {banner.altText} + +
    +
    + ))} +
    +
    + ); +}; + +export default HeaderSlider; diff --git a/src/components/layout/Header/menuData.ts b/src/components/layout/Header/menuData.ts new file mode 100644 index 0000000..637f7a5 --- /dev/null +++ b/src/components/layout/Header/menuData.ts @@ -0,0 +1,4862 @@ +import { MenuTypes } from "@/src/types/Menu"; + + +export const menuData: MenuTypes = [ + { + product: { + all_category: [ + { + "id": "1829", + "title": "PC GAMING", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_1829_1730361054.png", + "big_image": "", + "isParent": "1", + "url": "\/pc-gaming", + "is_featured": "1", + "summary": "

    PC Gaming c\u1ea5u h\u00ecnh cao nh\u1ea5t n\u0103m s\u1eed d\u1ee5ng cho vi\u1ec7c ch\u01a1i game t\u1ed1t nh\u00e2t hi\u1ec7n nay t\u1ea1i Nguy\u1ec5n C\u00f4ng PC...<\/span><\/p>\r\n

    <\/span><\/div>", + "children": [ + { + "id": "3468", + "title": "CH\u1eccN THEO NHU C\u1ea6U", + "parentId": "1829", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3468_1697010491.png", + "isParent": "1", + "url": "\/chon-theo-nhu-cau-1", + "is_featured": "0", + "summary": "

    C\u00e1c d\u00f2ng PC \u0111\u01b0\u1ee3c c\u00e1c chuy\u00ean gia g\u1ee3i \u00fd s\u1eb5n c\u00e1c option linh ki\u1ec7n ph\u00f9 h\u1ee3p<\/p>", + "children": [ + { + "id": "3432", + "title": "PC ESPORT", + "parentId": "3468", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3432_1726544452.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3432_1726544452.png", + "isParent": "0", + "url": "\/pc-esport", + "is_featured": "0", + "summary": "

    Esport l\u00e0 g\u00ec? \u0110\u00e2y l\u00e0 t\u1eeb vi\u1ebft t\u1eaft c\u1ee7a c\u1ee5m t\u1eeb ti\u1ebfng Anh \u0111\u1ea7y \u0111\u1ee7 l\u00e0 Electronic Sport, khi d\u1ecbch sang ti\u1ebfng Vi\u1ec7t n\u00f3 c\u00f3 ngh\u0129a l\u00e0 m\u00f4n th\u1ec3 thao \u0111i\u1ec7n t\u1eed. N\u00f3i m\u1ed9t c\u00e1ch d\u1ec5 hi\u1ec3u h\u01a1n, esport l\u00e0 s\u1ef1 c\u1ea1nh tranh gi\u1eefa nh\u1eefng ng\u01b0\u1eddi ch\u01a1i th\u00f4ng qua m\u1ed9t tr\u00f2 ch\u01a1i \u0111i\u1ec7n t\u1eed. Trong tr\u1eadn \u0111\u1ea5u, ng\u01b0\u1eddi ch\u01a1i s\u1ebd so t\u00e0i v\u1edbi nhau \u0111\u1ec3 t\u00ecm ra ng\u01b0\u1eddi chi\u1ebfn th\u1eafng.<\/p>\r\n

    C\u00e1c tr\u00f2 ch\u01a1i n\u00e0y nh\u00ecn chung s\u1ebd \u0111\u01b0\u1ee3c v\u1eadn h\u00e0nh ch\u1ee7 y\u1ebfu th\u00f4ng qua c\u00e1c thi\u1ebft b\u1ecb \u0111i\u1ec7n t\u1eed (PC, \u0111i\u1ec7n tho\u1ea1i,... ), ng\u01b0\u1eddi ch\u01a1i s\u1ebd thao t\u00e1c tr\u00ean c\u00e1c thi\u1ebft b\u1ecb n\u00e0y nh\u01b0 \u0111i\u1ec1u khi\u1ec3n chu\u1ed9t, \u0111i\u1ec1u khi\u1ec3n b\u00e0n ph\u00edm, \u0111i\u1ec1u khi\u1ec3n,...<\/p>\r\n

    M\u00f4i tr\u01b0\u1eddng thi \u0111\u1ea5u s\u1ebd l\u00e0 m\u1ed9t kh\u00f4ng gian \u1ea3o (m\u1ed7i tr\u00f2 ch\u01a1i s\u1ebd c\u00f3 m\u1ed9t ho\u1ea1t \u1ea3nh kh\u00e1c). C\u00e1c th\u1ec3 lo\u1ea1i game th\u01b0\u1eddng \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng trong thi \u0111\u1ea5u esports th\u01b0\u1eddng l\u00e0 nh\u1eadp vai, chi\u1ebfn \u0111\u1ea5u, mang t\u00ednh chi\u1ebfn l\u01b0\u1ee3c cao. Khi b\u1eaft \u0111\u1ea7u tr\u00f2 ch\u01a1i, kh\u00f4ng b\u00ean n\u00e0o gi\u1ed1ng b\u00ean n\u00e0o, \u0111\u1ec3 \u0111\u1ea3m b\u1ea3o t\u00ednh c\u00f4ng b\u1eb1ng trong tr\u00f2 ch\u01a1i.<\/p>\r\n

    C\u00e1c th\u1ec3 lo\u1ea1i game esport n\u1ed5i ti\u1ebfng nh\u01b0 LOL, Dota2, CSGO, Fifa Online 4, PUBG Mobile, PUBG PC, T\u1eadp k\u00edch, COD,...<\/p>\r\n

    H\u00ecnh th\u1ee9c thi \u0111\u1ea5u t\u00f9y thu\u1ed9c v\u00e0o t\u1eebng tr\u1eadn \u0111\u1ea5u c\u0169ng nh\u01b0 lu\u1eadt ch\u01a1i, nh\u00ecn chung c\u00e1c game th\u1ee7 s\u1ebd thi \u0111\u1ea5u theo h\u00ecnh th\u1ee9c solo (\u0111\u1ea5u \u0111\u01a1n), lo\u1ea1i Dou (\u0111\u1ea5u \u0111\u1ed9i) ho\u1eb7c t\u1ed5 \u0111\u1ed9i (\u0111\u1ea5u nh\u00f3m 4 \u0111\u1ebfn 5 ng\u01b0\u1eddi). M\u1ed7i tr\u1eadn \u0111\u1ea5u di\u1ec5n ra \u0111\u1ec1u c\u00f3 tr\u1ecdng t\u00e0i gi\u00e1m s\u00e1t tr\u1eadn \u0111\u1ea5u, \u0111i\u1ec1u n\u00e0y s\u1ebd gi\u00fap tr\u1eadn \u0111\u1ea5u kh\u00f4ng x\u1ea3y ra gian l\u1eadn. C\u00e1c tuy\u1ec3n th\u1ee7 vinh d\u1ef1 tham d\u1ef1 c\u00e1c v\u00f2ng \u0111\u1ea5u c\u1ee7a gi\u1ea3i Esports nh\u00ecn chung \u0111\u1ec1u l\u00e0 nh\u1eefng game th\u1ee7 c\u00f3 kinh nghi\u1ec7m d\u00e0y d\u1eb7n, r\u1ea5t chuy\u00ean nghi\u1ec7p v\u00e0 am hi\u1ec3u v\u1ec1 game. \u0110\u1eb7c bi\u1ec7t, c\u00e1c gi\u1ea3i \u0111\u1ea5u esports \u0111\u01b0\u1ee3c t\u1ed5 ch\u1ee9c nh\u01b0 m\u1ed9t ph\u1ea7n thi \u0111\u1ea5u \u0111\u1ed3ng \u0111\u1ed9i s\u1ebd gay c\u1ea5n v\u00e0 h\u1ea5p d\u1eabn h\u01a1n. C\u00e1c \u0111\u1ed9i mu\u1ed1n chi\u1ebfn th\u1eafng ph\u1ea3i r\u00e8n luy\u1ec7n tinh th\u1ea7n \u0111\u1ed3ng \u0111\u1ed9i, c\u00f3 chi\u1ebfn l\u01b0\u1ee3c r\u00f5 r\u00e0ng,\u2026.<\/p>\r\n

    T\u1ea1i Vi\u1ec7t Nam, s\u1ed1 l\u01b0\u1ee3ng c\u00e1c \u0111\u1ed9i tuy\u1ec3n chuy\u00ean nghi\u1ec7p tham gia c\u00e1c gi\u1ea3i \u0111\u1ea5u esports l\u00e0 r\u1ea5t l\u1edbn. Trung b\u00ecnh m\u1ed7i m\u00f4n th\u1ec3 thao esport c\u00f3 \u00edt nh\u1ea5t v\u00e0i ch\u1ee5c \u0111\u1ed9i \u0111\u0103ng k\u00fd tham gia thi \u0111\u1ea5u. V\u00ec v\u1eady, \u0111\u1ed9i mu\u1ed1n tham d\u1ef1 gi\u1ea3i chung k\u1ebft ph\u1ea3i tham d\u1ef1 v\u00f2ng 1\/16. Ch\u00ednh v\u00ec v\u1eady m\u00e0 Esport v\u1eabn \u0111\u01b0\u1ee3c coi l\u00e0 m\u1ed9t trong nh\u1eefng m\u00f4n th\u1ec3 thao h\u1ea5p d\u1eabn v\u00e0 th\u00fa v\u1ecb kh\u00f4ng thua k\u00e9m g\u00ec m\u00f4n th\u1ec3 thao ho\u00e0ng gia.<\/p>\r\n

    PC Esport t\u1ea1i Nguy\u1ec5n C\u00f4ng PC lu\u00f4n \u0111em \u0111\u1ebfn cho m\u1ecdi ng\u01b0\u1eddi m\u1ee9c hi\u1ec7u n\u0103ng tr\u00ean gi\u00e1 th\u00e0nh l\u00e0 t\u1ed1i \u01b0u nh\u1ea5t v\u00e0 t\u1ed1t nh\u1ea5t<\/p>", + "children": [] + }, + { + "id": "3433", + "title": "PC GAME AAA", + "parentId": "3468", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3433_1726544640.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3433_1726544640.png", + "isParent": "0", + "url": "\/pc-game-aaa", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3434", + "title": "PC STREAM GAME", + "parentId": "3468", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3434_1726546510.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3434_1726546510.png", + "isParent": "0", + "url": "\/pc-stream-game", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3469", + "title": "CH\u1eccN THEO KHO\u1ea2NG GI\u00c1", + "parentId": "1829", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3469_1697010472.png", + "isParent": "1", + "url": "\/chon-theo-khoang-gia-1", + "is_featured": "0", + "summary": "

    Gi\u1ea3i ph\u00e1p nhanh g\u1ecdn n\u1ebfu b\u1ea1n c\u00f3 ng\u00e2n s\u00e1ch ch\u01b0a bi\u1ebft ph\u1ea3i x\u00e2y d\u1ef1ng m\u00e1y t\u00ednh nh\u01b0 th\u1ebf n\u00e0o cho h\u1ee3p l\u00fd.<\/p>", + "children": [ + { + "id": "3471", + "title": "5 Tri\u1ec7u - 15 Tri\u1ec7u", + "parentId": "3469", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/5-trieu-15-trieu", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3485", + "title": "15 Tri\u1ec7u - 20 Tri\u1ec7u", + "parentId": "3469", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/15-trieu-20-trieu-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3472", + "title": "20 Tri\u1ec7u - 30 Tri\u1ec7u", + "parentId": "3469", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/20-trieu-30-trieu-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3473", + "title": "30 Tri\u1ec7u - 50 Tri\u1ec7u", + "parentId": "3469", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/30-trieu-50-trieu-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3474", + "title": "50 Tri\u1ec7u - 100 Tri\u1ec7u", + "parentId": "3469", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/50-trieu-100-trieu-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3486", + "title": "Tr\u00ean 100 Tri\u1ec7u", + "parentId": "3469", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tren-100-trieu-1", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "408", + "title": "PC \u0110\u1ed2 HO\u1ea0 - L\u00c0M VI\u1ec6C", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_408_1697165030.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_408_1692418614.png", + "isParent": "1", + "url": "\/pc-workstation", + "is_featured": "1", + "summary": "

    \"Mua PC Workstation, m\u00e1y t\u00ednh \u0111\u1ed3 h\u1ecda, m\u00e1y server v\u1edbi m\u1eabu m\u00e3 \u0111a d\u1ea1ng v\u00e0 nhi\u1ec1u \u01b0u \u0111\u00e3. Mua ngay!\"<\/span><\/p>", + "children": [ + { + "id": "3082", + "title": "Server - M\u00e1y \u1ea3o h\u00f3a", + "parentId": "408", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3082_1697007359.png", + "isParent": "0", + "url": "\/server-may-ao-hoa", + "is_featured": "0", + "summary": "

    Server - M\u00e1y \u1ea3o c\u1ea5u h\u00ecnh cao nh\u1ea5t n\u0103m s\u1eed d\u1ee5ng cho nh\u1eefng ng\u01b0\u1eddi, nh\u1eefng c\u00f4ng ty l\u00e0m v\u1ec1 l\u1eadp tr\u00ecnh, c\u00f4ng ngh\u1ec7 th\u00f4ng tin gi\u00fap t\u0103ng c\u01b0\u1eddng b\u1ea3o m\u1eadt cho server...<\/p>", + "children": [] + }, + { + "id": "1678", + "title": "M\u00e1y T\u00ednh \u0110\u1ed3ng B\u1ed9", + "parentId": "408", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1678_1697000707.png", + "isParent": "0", + "url": "\/may-tinh-dong-bo", + "is_featured": "0", + "summary": "

    M\u00e1y T\u00ednh \u0110\u1ed3ng B\u1ed9 t\u1ed1t nh\u1ea5t n\u0103m __year__ d\u00e0nh cho doanh nghi\u1ec7p v\u00e0 kh\u1ed1i v\u0103n t\u1ea1i Nguy\u1ec5n C\u00f4ng PC, m\u00e1y \u0111\u1ed3ng b\u1ed9 Dell, m\u00e1y \u0111\u1ed3ng b\u1ed9 HP ch\u00ednh h\u00e3ng \u0111\u01b0\u1ee3c ng\u01b0\u1eddi d\u00f9ng tin t\u01b0\u1edfng.<\/p>", + "children": [] + }, + { + "id": "3715", + "title": "M\u00e1y T\u00ednh \u0110\u1ed3 H\u1ecda", + "parentId": "408", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/may-tinh-do-hoa", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3691", + "title": "Build PC Custom", + "parentId": "408", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3691_1720693971.png", + "big_image": "", + "isParent": "0", + "url": "\/build-pc-custom", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3300", + "title": "PC AI - TR\u00cd TU\u1ec6 NH\u00c2N T\u1ea0O", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3300_1730361075.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3300_1697006670.png", + "isParent": "0", + "url": "\/bo-pc-chay-ai-tri-tue-nhan-tao", + "is_featured": "1", + "summary": "

    B\u1ed9 PC Ch\u1ea1y AI - Tr\u00ed Tu\u1ec7 Nh\u00e2n T\u1ea1o l\u00e0 nh\u1eefng b\u1ed9 m\u00e1y t\u00ednh chuy\u00ean d\u1ee5ng cho c\u00e1c \u1ee9ng d\u1ee5ng \"Artificial Intelligence\"<\/p>", + "children": [] + }, + { + "id": "3733", + "title": "PC NC", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3733_1764387134.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3733_1764387134.png", + "isParent": "1", + "url": "\/pc-nc", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3734", + "title": "PC RTX 5000 Series", + "parentId": "3733", + "thumnail": "", + "big_image": "", + "isParent": "1", + "url": "\/pc-rtx-5000-series", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3738", + "title": "PC RTX 5090", + "parentId": "3734", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/pc-rtx-5090", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3737", + "title": "PC RTX 5080", + "parentId": "3734", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/pc-rtx-5080", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3739", + "title": "PC RTX 5070 Ti", + "parentId": "3734", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/pc-rtx-5070-ti", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3736", + "title": "PC RTX 5070", + "parentId": "3734", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/pc-rtx-5070", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3735", + "title": "PC RTX 5060", + "parentId": "3734", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/pc-rtx-5060", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "3201", + "title": "PC V\u0102N PH\u00d2NG GI\u00c1 R\u1eba", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3201_1683078307.png", + "big_image": "", + "isParent": "0", + "url": "\/pc-van-phong-gia-re", + "is_featured": "0", + "summary": "

    B\u1ed9 M\u00e1y T\u00ednh V\u0103n Ph\u00f2ng c\u1ea5u h\u00ecnh cao nh\u1ea5t n\u0103m __year__ph\u00f9 h\u1ee3p cho c\u00f4ng vi\u1ec7c van phong...<\/p>", + "children": [] + }, + { + "id": "3431", + "title": "LINH KI\u1ec6N M\u00c1Y T\u00cdNH", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3431_1646643506.png", + "big_image": "", + "isParent": "1", + "url": "\/linh-kien-may-tinh", + "is_featured": "0", + "summary": "

    Mua linh ki\u1ec7n m\u00e1y t\u00ednh, ph\u1ee5 ki\u1ec7n th\u00e0nh ph\u1ea7n ph\u1ea7n c\u1ee9ng v\u1edbi m\u1eabu m\u00e3 \u0111\u00e3 d\u1ea1ng v\u00e0 nhi\u1ec1u \u01b0u \u0111\u00e3. Mua ngay!<\/p>", + "children": [ + { + "id": "277", + "title": "CPU - B\u1ed9 vi x\u1eed l\u00fd", + "parentId": "3431", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_277_1635498955.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_277_1696932677.png", + "isParent": "1", + "url": "\/cpu-bo-vi-xu-ly", + "is_featured": "0", + "summary": "

    CPU - B\u1ed9 vi x\u1eed l\u00fd ch\u00ednh h\u00e3ng t\u1ea1i Nguy\u1ec5n C\u00f4ng PC v\u1edbi nhi\u1ec1u th\u01b0\u01a1ng hi\u1ec7u n\u1ed5i ti\u1ebfng nh\u01b0 Intel, AMD \u0111\u00e1p \u1ee9ng \u0111\u01b0\u1ee3c nhu c\u1ea7u s\u1eed d\u1ee5ng trong c\u00e1c l\u0129nh v\u1ef1c ch\u01a1i game, \u0111\u1ed3 h\u1ecda, render video, ki\u1ebfn tr\u00fac, l\u00e0m phim 3D, x\u1eed l\u00fd h\u00ecnh \u1ea3nh...<\/p>", + "children": [ + { + "id": "547", + "title": "CPU INTEL", + "parentId": "277", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_547_1696933935.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_547_1696934044.png", + "isParent": "1", + "url": "\/cpu-intel", + "is_featured": "1", + "summary": "

    CPU INTEL ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb nh\u1ea5t Vi\u1ec7t Nam, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3692", + "title": "Intel Gen 15", + "parentId": "547", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3692_1729824872.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3692_1729824906.png", + "isParent": "0", + "url": "\/intel-gen-15", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3660", + "title": "Intel Gen 14", + "parentId": "547", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3660_1697013265.png", + "isParent": "0", + "url": "\/intel-gen-14", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3607", + "title": "Intel Gen 13", + "parentId": "547", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3607_1697013537.png", + "isParent": "0", + "url": "\/intel-gen-13", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3606", + "title": "Intel Gen 12", + "parentId": "547", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3606_1697013553.png", + "isParent": "0", + "url": "\/intel-gen-12", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3618", + "title": "Intel Core i3", + "parentId": "547", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3618_1697012488.png", + "isParent": "0", + "url": "\/intel-core-i3", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3619", + "title": "Intel Core i5", + "parentId": "547", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3619_1693382380.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3619_1697012697.png", + "isParent": "0", + "url": "\/intel-core-i5", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3620", + "title": "Intel Core i7", + "parentId": "547", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3620_1697012745.png", + "isParent": "0", + "url": "\/intel-core-i7", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3621", + "title": "Intel Core i9", + "parentId": "547", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3621_1693384157.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3621_1697012784.png", + "isParent": "0", + "url": "\/intel-core-i9", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3622", + "title": "Intel Xeon", + "parentId": "547", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3622_1697012970.png", + "isParent": "0", + "url": "\/intel-xeon", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + } + ] + }, + { + "id": "561", + "title": "CPU AMD", + "parentId": "277", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_561_1698917058.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_561_1696934235.png", + "isParent": "1", + "url": "\/cpu-amd", + "is_featured": "1", + "summary": "

    CPU AMD ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb nh\u1ea5t Vi\u1ec7t Nam, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3616", + "title": "AMD Ryzen Threadripper", + "parentId": "561", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3616_1698982440.png", + "isParent": "0", + "url": "\/amd-ryzen-threadripper", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3613", + "title": "AMD Ryzen 3", + "parentId": "561", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3613_1698982420.png", + "isParent": "0", + "url": "\/amd-ryzen-3", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3614", + "title": "AMD Ryzen 5", + "parentId": "561", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3614_1698982458.png", + "isParent": "0", + "url": "\/amd-ryzen-5", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3615", + "title": "AMD Ryzen 7", + "parentId": "561", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3615_1698982393.png", + "isParent": "0", + "url": "\/amd-ryzen-7", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3617", + "title": "AMD Ryzen 9", + "parentId": "561", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3617_1698982345.png", + "isParent": "0", + "url": "\/amd-ryzen-9", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3695", + "title": "AMD Ryzen 9000 Series", + "parentId": "561", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3695_1723174121.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3695_1723174121.png", + "isParent": "0", + "url": "\/amd-ryzen-9000-series", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "279", + "title": "VGA - Card M\u00e0n H\u00ecnh", + "parentId": "3431", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_279_1697164609.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_279_1696932655.png", + "isParent": "1", + "url": "\/vga-card-man-hinh", + "is_featured": "0", + "summary": "

    VGA, Card M\u00e0n H\u00ecnh, Card \u0110\u1ed3 H\u1ecda hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t v\u00e0 v\u1eadn chuy\u1ec3n<\/p>", + "children": [ + { + "id": "843", + "title": "VGA Nvidia", + "parentId": "279", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_843_1756177007.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_843_1738742830.png", + "isParent": "1", + "url": "\/vga-nvidia", + "is_featured": "1", + "summary": "

    Vga Nvidia - Quadro ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [ + { + "id": "3610", + "title": "Nvidia RTX 3000 Series", + "parentId": "843", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3610_1738742816.png", + "isParent": "1", + "url": "\/nvidia-rtx-3000-series", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [ + { + "id": "3663", + "title": "RTX 3060 Ti", + "parentId": "3610", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3663_1696996294.png", + "isParent": "0", + "url": "\/rtx-3060-ti", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3665", + "title": "RTX 3070 Ti", + "parentId": "3610", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3665_1696996408.png", + "isParent": "0", + "url": "\/rtx-3070-ti", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3666", + "title": "RTX 3080", + "parentId": "3610", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3666_1696996422.png", + "isParent": "0", + "url": "\/rtx-3080", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3668", + "title": "RTX 3090", + "parentId": "3610", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3668_1696996484.png", + "isParent": "0", + "url": "\/rtx-3090", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3669", + "title": "RTX 3090 Ti", + "parentId": "3610", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3669_1696996502.png", + "isParent": "0", + "url": "\/rtx-3090-ti", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3609", + "title": "Nvidia RTX 4000 Series", + "parentId": "843", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3609_1738742824.png", + "isParent": "1", + "url": "\/nvidia-rtx-4000-series", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [ + { + "id": "3631", + "title": "RTX 4070 Ti", + "parentId": "3609", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3631_1696995947.png", + "isParent": "0", + "url": "\/rtx-4070-ti", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3611", + "title": "RTX 4090", + "parentId": "3609", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3611_1696996000.png", + "isParent": "0", + "url": "\/rtx-4090", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3612", + "title": "RTX 4080", + "parentId": "3609", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3612_1696996020.png", + "isParent": "0", + "url": "\/rtx-4080", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3638", + "title": "RTX 4070", + "parentId": "3609", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3638_1693386065.jpg", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3638_1696996039.png", + "isParent": "0", + "url": "\/rtx-4070", + "is_featured": "1", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3650", + "title": "RTX 4060", + "parentId": "3609", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3650_1696996063.png", + "isParent": "0", + "url": "\/rtx-4060", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3649", + "title": "RTX 4060 Ti", + "parentId": "3609", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3649_1696996083.png", + "isParent": "0", + "url": "\/rtx-4060-ti", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3674", + "title": "RTX 4070 Super", + "parentId": "3609", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3674_1755758574.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3674_1755758574.png", + "isParent": "0", + "url": "\/rtx-4070-super", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3673", + "title": "RTX 4080 Super", + "parentId": "3609", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3673_1755758598.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3673_1755758598.png", + "isParent": "0", + "url": "\/rtx-4080-super", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3675", + "title": "RTX 4070 Ti Super", + "parentId": "3609", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3675_1755758622.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3675_1755758622.png", + "isParent": "0", + "url": "\/rtx-4070-ti-super", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "3087", + "title": "VGA AMD", + "parentId": "279", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3087_1756177039.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3087_1696990587.png", + "isParent": "1", + "url": "\/vga-amd", + "is_featured": "0", + "summary": "

    VGA AMD gi\u00e1 r\u1ebb nh\u1ea5t Vi\u1ec7t Nam, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3728", + "title": "RX 9060 v\u00e0 RX 9060 XT", + "parentId": "3087", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3728_1749265514.png", + "isParent": "0", + "url": "\/rx-9060-va-rx-9060-xt", + "is_featured": "0", + "summary": "

    <\/h2>", + "children": [] + }, + { + "id": "3723", + "title": "RX 9070 v\u00e0 RX 9070 XT", + "parentId": "3087", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3723_1745315523.png", + "isParent": "0", + "url": "\/rx-9070-va-rx-9070-xt", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3700", + "title": "Nvidia RTX 5000 Series", + "parentId": "279", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3700_1738742762.png", + "isParent": "1", + "url": "\/nvidia-rtx-5000", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3726", + "title": "RTX 5060 Ti", + "parentId": "3700", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3726_1745311939.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3726_1745312405.png", + "isParent": "0", + "url": "\/rtx-5060-ti", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3718", + "title": "RTX 5070 Ti", + "parentId": "3700", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3718_1738742730.png", + "isParent": "0", + "url": "\/rtx-5070-ti", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3710", + "title": "RTX 5080", + "parentId": "3700", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3710_1738742768.png", + "isParent": "0", + "url": "\/rtx-5080", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3729", + "title": "RTX 5050", + "parentId": "3700", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3729_1755758454.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3729_1755758472.png", + "isParent": "0", + "url": "\/rtx-5050", + "is_featured": "0", + "summary": "

    NVIDIA GeForce RTX 5050<\/a> ch\u00ednh th\u1ee9c ra m\u1eaft v\u00e0o ng\u00e0y 1 th\u00e1ng 7 n\u0103m 2025, \u0111\u00e1nh d\u1ea5u s\u1ef1 xu\u1ea5t hi\u1ec7n c\u1ee7a ki\u1ebfn tr\u00fac Blackwell \u1edf ph\u00e2n kh\u00fac ph\u1ed5 th\u00f4ng. Tuy nhi\u00ean, thay v\u00ec nh\u1eefng m\u00e0n ra m\u1eaft ho\u00e0nh tr\u00e1ng \u0111i k\u00e8m c\u00e1c b\u00e0i \u0111\u00e1nh gi\u00e1 \u0111\u1ed9c l\u1eadp, NVIDIA m\u1ed9t l\u1ea7n n\u1eefa l\u1ea1i ch\u1ecdn c\u00e1ch gi\u1eef k\u00edn th\u00f4ng tin, kh\u00f4ng cung c\u1ea5p m\u1eabu th\u1eed nghi\u1ec7m cho gi\u1edbi truy\u1ec1n th\u00f4ng. \u0110i\u1ec1u n\u00e0y khi\u1ebfn ng\u01b0\u1eddi ti\u00eau d\u00f9ng ph\u1ea3i \"nh\u1eafm m\u1eaft mua b\u1eeba\" m\u00e0 kh\u00f4ng c\u00f3 \u0111\u1ee7 d\u1eef li\u1ec7u \u0111\u1ec3 tham kh\u1ea3o.<\/em><\/p>", + "children": [] + } + ] + }, + { + "id": "3719", + "title": "RTX 5090", + "parentId": "279", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3719_1738742678.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3719_1738742701.png", + "isParent": "0", + "url": "\/rtx-5090", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3717", + "title": "RTX 5070", + "parentId": "279", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3717_1738742755.png", + "isParent": "0", + "url": "\/rtx-5070", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3727", + "title": "RTX 5060", + "parentId": "279", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3727_1747534115.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3727_1747534115.png", + "isParent": "0", + "url": "\/rtx-5060", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3662", + "title": "RTX 3060", + "parentId": "279", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3662_1696996276.png", + "isParent": "0", + "url": "\/rtx-3060", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3725", + "title": "RTX 3050", + "parentId": "279", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3725_1755758669.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3725_1755758669.png", + "isParent": "0", + "url": "\/rtx-3050", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3730", + "title": "H\u00e3ng VGA", + "parentId": "279", + "thumnail": "", + "big_image": "", + "isParent": "1", + "url": "\/hang-vga", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "607", + "title": "VGA Asus", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_607_1696989520.png", + "isParent": "0", + "url": "\/vga-asus", + "is_featured": "0", + "summary": "

    Vga Asus ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3426", + "title": "VGA Manli", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3426_1697019779.png", + "isParent": "0", + "url": "\/vga-manli", + "is_featured": "0", + "summary": "

    VGA Manli m\u1edbi 100%, ch\u00ednh h\u00e3ng, b\u1ea3o h\u00e0nh 36 th\u00e1ng, mi\u1ec5n ph\u00ed ship H\u00e0 N\u1ed9i v\u00e0 TPHCM, giao h\u00e0ng to\u00e0n qu\u1ed1c, h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3079", + "title": "VGA Zotac", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3079_1697021223.png", + "isParent": "0", + "url": "\/vga-zotac", + "is_featured": "0", + "summary": "

    Vga Zotac ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3263", + "title": "VGA Sapphire", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3263_1697077930.png", + "isParent": "0", + "url": "\/vga-sapphire", + "is_featured": "0", + "summary": "

    Vga Sapphire h\u00e0ng m\u1edbi gi\u00e1 h\u00e0ng c\u0169, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3315", + "title": "VGA PowerColor", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3315_1697076657.png", + "isParent": "0", + "url": "\/vga-powercolor", + "is_featured": "0", + "summary": "

    VGA PowerColor gi\u00e1 r\u1ebb nh\u1ea5t Vi\u1ec7t Nam, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 nhu c\u1ea7u n\u00e2ng c\u1ea5p c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3305", + "title": "VGA PNY", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3305_1697077038.png", + "isParent": "0", + "url": "\/vga-pny", + "is_featured": "0", + "summary": "

    VGA PNY ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "836", + "title": "VGA Palit", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_836_1697076962.png", + "isParent": "0", + "url": "\/vga-palit", + "is_featured": "0", + "summary": "

    Vga Palit ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "625", + "title": "VGA Msi", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_625_1696989842.png", + "isParent": "0", + "url": "\/vga-msi", + "is_featured": "0", + "summary": "

    VGA MSI ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "2930", + "title": "VGA Leadtek", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2930_1697077154.png", + "isParent": "0", + "url": "\/vga-leadtek", + "is_featured": "0", + "summary": "

    Vga Leadtek ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3085", + "title": "VGA Inno3D", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3085_1696990035.png", + "isParent": "0", + "url": "\/vga-inno3d", + "is_featured": "0", + "summary": "

    Vga Inno3D ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "1271", + "title": "VGA Gigabyte", + "parentId": "3730", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_1271_1693387101.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1271_1696990090.png", + "isParent": "0", + "url": "\/vga-gigabyte", + "is_featured": "0", + "summary": "

    Vga Gigabyte ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "608", + "title": "VGA Galax", + "parentId": "3730", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_608_1693387244.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_608_1696990172.png", + "isParent": "0", + "url": "\/vga-galax", + "is_featured": "0", + "summary": "

    Vga Galax ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "2128", + "title": "VGA Evga", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2128_1697077724.png", + "isParent": "0", + "url": "\/evga", + "is_featured": "0", + "summary": "

    Vga Evga hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "806", + "title": "VGA Colorful", + "parentId": "3730", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_806_1693386915.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_806_1696990299.png", + "isParent": "0", + "url": "\/card-man-hinh-vga-colorful", + "is_featured": "0", + "summary": "

    Vga Colorful ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/span><\/p>", + "children": [] + }, + { + "id": "3265", + "title": "VGA Asrock", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3265_1696990389.png", + "isParent": "0", + "url": "\/vga-asrock", + "is_featured": "0", + "summary": "

    Vga Asrock gi\u00e1 r\u1ebb nh\u1ea5t Vi\u1ec7t Nam, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3704", + "title": "VGA MaxSun", + "parentId": "3730", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3704_1727077996.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3704_1727077996.png", + "isParent": "0", + "url": "\/vga-maxsun", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3693", + "title": "VGA ASL", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3693_1722048956.png", + "isParent": "0", + "url": "\/vga-asl", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3637", + "title": "VGA OCPC", + "parentId": "3730", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3637_1696991039.png", + "isParent": "0", + "url": "\/vga-ocpc", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3709", + "title": "VGA SPARKLE", + "parentId": "3730", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/vga-sparkle", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "278", + "title": "Main - Bo m\u1ea1ch ch\u1ee7", + "parentId": "3431", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_278_1697164473.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_278_1696932692.png", + "isParent": "1", + "url": "\/mainboard-bo-mach-chu", + "is_featured": "0", + "summary": "

    Main - Bo m\u1ea1ch ch\u1ee7 ch\u00ednh h\u00e3ng \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng chipset m\u1edbi nh\u1ea5t, \u0111\u00e1p \u1ee9ng m\u1ecdi c\u1ea5u h\u00ecnh PC c\u1ee7a b\u1ea1n nh\u01b0 Mainboard Asus, Gigabyte, MSI, Asrock...<\/p>", + "children": [ + { + "id": "639", + "title": "Main Asus", + "parentId": "278", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_639_1696996788.png", + "isParent": "0", + "url": "\/main-asus", + "is_featured": "0", + "summary": "

    Main Asus ch\u00ednh h\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, gi\u00e1 th\u00e0nh h\u1ee3p l\u00fd, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "2158", + "title": "Main Supermicro", + "parentId": "278", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2158_1697009138.png", + "isParent": "0", + "url": "\/main-supermicro", + "is_featured": "0", + "summary": "

    Main Supermicro ch\u00ednh h\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, gi\u00e1 th\u00e0nh h\u1ee3p l\u00fd, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "598", + "title": "Main Msi", + "parentId": "278", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_598_1697009001.png", + "isParent": "0", + "url": "\/main-msi", + "is_featured": "0", + "summary": "

    Main Msi ch\u00ednh h\u00e3ng, m\u1eabu m\u00e3 \u0111a d\u1ea1ng t\u1ea1i Nguy\u1ec5n C\u00f4ng PC gi\u00fap ng\u01b0\u1eddi d\u00f9ng d\u1ec5 d\u00e0ng l\u1ef1a ch\u1ecdn cho m\u00ecnh \u0111\u01b0\u1ee3c s\u1ea3n ph\u1ea9m ph\u00f9 h\u1ee3p v\u1edbi ...<\/p>", + "children": [] + }, + { + "id": "3317", + "title": "Main Huananzhi", + "parentId": "278", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3317_1697016377.png", + "isParent": "0", + "url": "\/main-huananzhi", + "is_featured": "0", + "summary": "

    Main Huananzhi ch\u00ednh h\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, gi\u00e1 th\u00e0nh h\u1ee3p l\u00fd, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "624", + "title": "Main Gigabyte", + "parentId": "278", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_624_1697008966.png", + "isParent": "0", + "url": "\/main-gigabyte", + "is_featured": "0", + "summary": "

    Main Gigabyte ch\u00ednh h\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, gi\u00e1 th\u00e0nh h\u1ee3p l\u00fd, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "599", + "title": "Main Asrock", + "parentId": "278", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_599_1693888846.jpg", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_599_1697008944.png", + "isParent": "0", + "url": "\/main-asrock", + "is_featured": "0", + "summary": "

    Main Asrock ch\u00ednh h\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, gi\u00e1 th\u00e0nh h\u1ee3p l\u00fd, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3707", + "title": "Main BIOSTAR", + "parentId": "278", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3707_1727411597.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3707_1727411597.png", + "isParent": "0", + "url": "\/main-biostar", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3706", + "title": "Main Maxsun", + "parentId": "278", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3706_1727077973.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3706_1727077973.png", + "isParent": "0", + "url": "\/main-maxsun", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "283", + "title": "Ram - B\u1ed9 nh\u1edb trong", + "parentId": "3431", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_283_1697164403.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_283_1696932706.png", + "isParent": "1", + "url": "\/ram", + "is_featured": "1", + "summary": "

    Ram - B\u1ed9 nh\u1edb trong gi\u00e1 r\u1ebb nh\u1ea5t Vi\u1ec7t Nam, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 nhu c\u1ea7u n\u00e2ng c\u1ea5p c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3313", + "title": "RAM Kingston", + "parentId": "283", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3313_1697017731.png", + "isParent": "0", + "url": "\/ram-kingston", + "is_featured": "0", + "summary": "

    Ram Kingston ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t, t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, hi\u1ec7u n\u0103ng OC m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p<\/p>", + "children": [] + }, + { + "id": "485", + "title": "RAM Gskill", + "parentId": "283", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_485_1693888876.jpg", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_485_1697018145.png", + "isParent": "0", + "url": "\/ram-gskill", + "is_featured": "0", + "summary": "

    Ram Gskill t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p<\/p>", + "children": [] + }, + { + "id": "3280", + "title": "RAM Geil", + "parentId": "283", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3280_1697019194.png", + "isParent": "0", + "url": "\/ram-geil", + "is_featured": "0", + "summary": "

    Ram Geil ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t, t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, hi\u1ec7u n\u0103ng OC m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p<\/p>", + "children": [] + }, + { + "id": "486", + "title": "RAM Corsair", + "parentId": "283", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_486_1697019333.png", + "isParent": "0", + "url": "\/ram-corsair", + "is_featured": "0", + "summary": "

    Ram Corsair t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p<\/p>", + "children": [] + }, + { + "id": "1329", + "title": "RAM Apacer", + "parentId": "283", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1329_1697019601.png", + "isParent": "0", + "url": "\/apacer-ram", + "is_featured": "0", + "summary": "

    Ram Apacer hi\u1ec7u n\u0103ng OC m\u1ea1nh m\u1ebd, t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p<\/p>", + "children": [] + }, + { + "id": "484", + "title": "RAM Adata", + "parentId": "283", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_484_1693386732.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_484_1697018810.png", + "isParent": "0", + "url": "\/adata-ram", + "is_featured": "0", + "summary": "

    Ram Adata t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p<\/p>", + "children": [] + }, + { + "id": "3689", + "title": "RAM Patriot", + "parentId": "283", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/ram-patriot", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3686", + "title": "RAM HIKSEMI", + "parentId": "283", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/ram-hiksemi", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "282", + "title": "PSU - Ngu\u1ed3n m\u00e1y t\u00ednh", + "parentId": "3431", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_282_1635499086.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_282_1696932719.png", + "isParent": "1", + "url": "\/psu-nguon-may-tinh", + "is_featured": "0", + "summary": "

    PSU - Ngu\u1ed3n m\u00e1y t\u00ednh c\u00f4ng su\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [ + { + "id": "3069", + "title": "Ngu\u1ed3n ASUS", + "parentId": "282", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3069_1693387423.jpg", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3069_1697078545.png", + "isParent": "0", + "url": "\/nguon-asus", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n ASUS c\u00f4ng xu\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3374", + "title": "Ngu\u1ed3n NZXT", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3374_1697079356.png", + "isParent": "0", + "url": "\/nguon-nzxt", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n NZXT c\u00f4ng xu\u1ea5t th\u1ef1c, \u0110\u1ed9 \u1ed5n \u0111\u1ecbnh cao, Ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, B\u1ea3o h\u00e0nh d\u00e0i, Gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng, C\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "1488", + "title": "Ngu\u1ed3n Xigmatek", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1488_1697080333.png", + "isParent": "0", + "url": "\/psu-xigmatek", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n Xigmatek c\u00f4ng xu\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "2772", + "title": "Ngu\u1ed3n Thermaltake", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2772_1697082186.png", + "isParent": "0", + "url": "\/nguon-thermaltake", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n Thermaltake c\u00f4ng xu\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3295", + "title": "Ngu\u1ed3n Super Flower", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3295_1697082309.png", + "isParent": "0", + "url": "\/nguon-super-flower", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n Super Flower c\u00f4ng xu\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3247", + "title": "Ngu\u1ed3n Gigabyte", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3247_1697083086.png", + "isParent": "0", + "url": "\/nguon-gigabyte", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n Gigabyte c\u00f4ng xu\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "963", + "title": "Ngu\u1ed3n Corsair", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_963_1697083532.png", + "isParent": "0", + "url": "\/corsair-psu-nguon-may-tinh", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n Corsair ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, c\u00f4ng xu\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "949", + "title": "Ngu\u1ed3n Cooler master", + "parentId": "282", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_949_1693387812.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_949_1697083681.png", + "isParent": "0", + "url": "\/psu-cooler-master", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n Cooler master ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, c\u00f4ng xu\u1ea5t th\u1ef1c, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "649", + "title": "Ngu\u1ed3n Antec", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_649_1697083813.png", + "isParent": "0", + "url": "\/psu-antec", + "is_featured": "0", + "summary": "

    Ngu\u1ed3n Antec ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, c\u00f4ng xu\u1ea5t th\u1ef1c, chu\u1ea9n 80 plus, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3427", + "title": "Ngu\u1ed3n MSI", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3427_1697078407.png", + "isParent": "0", + "url": "\/nguon-msi", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3633", + "title": "Ngu\u1ed3n Segotep", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3633_1697085126.png", + "isParent": "0", + "url": "\/nguon-segotep", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3646", + "title": "Ngu\u1ed3n Deepcool", + "parentId": "282", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3646_1697084412.png", + "isParent": "0", + "url": "\/nguon-deepcool", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3720", + "title": "Ngu\u1ed3n OCPC", + "parentId": "282", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/nguon-ocpc", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "280", + "title": "Case - V\u1ecf m\u00e1y t\u00ednh", + "parentId": "3431", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_280_1635499115.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_280_1696932732.png", + "isParent": "1", + "url": "\/case-vo-may-tinh", + "is_featured": "0", + "summary": "

    Case - V\u1ecf m\u00e1y t\u00ednh v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, gi\u00e1 r\u1ebb, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [ + { + "id": "3310", + "title": "Case Asus", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3310_1697085471.png", + "isParent": "0", + "url": "\/case-asus", + "is_featured": "0", + "summary": "

    Case Asus v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, gi\u00e1 r\u1ebb, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3415", + "title": "Case Montech", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3415_1697094104.png", + "isParent": "0", + "url": "\/case-montech", + "is_featured": "0", + "summary": "

    Case Montech ch\u00ednh h\u00e3ng, \u0111\u1ea7y \u0111\u1ee7 m\u1eabu m\u00e3 m\u1edbi nh\u1ea5t, h\u1ed7 tr\u1ee3 l\u1eafp \u0111\u1eb7t, mi\u1ec5n ph\u00ed ship H\u00e0 N\u1ed9i v\u00e0 TPHCM, giao h\u00e0ng to\u00e0n qu\u1ed1c<\/p>", + "children": [] + }, + { + "id": "2614", + "title": "Case NZXT", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2614_1697094288.png", + "isParent": "0", + "url": "\/case-nzxt", + "is_featured": "0", + "summary": "

    Case NZXT ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "1196", + "title": "Case Vitra", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1196_1697094406.png", + "isParent": "0", + "url": "\/case-vitra", + "is_featured": "0", + "summary": "

    Case Vitra ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3239", + "title": "Case MSI", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3239_1697094645.png", + "isParent": "0", + "url": "\/case-msi", + "is_featured": "0", + "summary": "

    Case MSI ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3304", + "title": "Case GIGABYTE", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3304_1697095141.png", + "isParent": "0", + "url": "\/case-gigabyte", + "is_featured": "0", + "summary": "

    Case GIGABYTE tho\u00e1ng kh\u00ed, v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "663", + "title": "Case Jonsbo", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_663_1697095346.png", + "isParent": "0", + "url": "\/case-jonsbo", + "is_featured": "0", + "summary": "

    Case Jonsbo l\u00e0 v\u1ecf m\u00e1y t\u00ednh v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "1198", + "title": "Case Corsair", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1198_1697095546.png", + "isParent": "0", + "url": "\/case-corsair", + "is_featured": "0", + "summary": "

    Case Corsair l\u00e0 v\u1ecf m\u00e1y t\u00ednh v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "1191", + "title": "Case Cooler Master", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1191_1697095557.png", + "isParent": "0", + "url": "\/case-cooler-master", + "is_featured": "0", + "summary": "

    Case Cooler Master ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "2610", + "title": "Case Thermaltake", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2610_1697095637.png", + "isParent": "0", + "url": "\/case-thermaltake", + "is_featured": "0", + "summary": "

    Case Thermaltake gi\u00e1 r\u1ebb v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "1229", + "title": "Case Xigmatek", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1229_1697095698.png", + "isParent": "0", + "url": "\/case-xigmatek", + "is_featured": "0", + "summary": "

    Case Xigmatek gi\u00e1 r\u1ebb v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3253", + "title": "Case Antec", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3253_1697095865.png", + "isParent": "0", + "url": "\/antec", + "is_featured": "0", + "summary": "

    Case Antec ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3708", + "title": "Case HYTE", + "parentId": "280", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3708_1730435833.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3708_1730435854.png", + "isParent": "0", + "url": "\/case-hyte", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3628", + "title": "Case MIK", + "parentId": "280", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3628_1697096558.png", + "isParent": "0", + "url": "\/case-mik", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3701", + "title": "Case Valkyrie", + "parentId": "280", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3701_1726109844.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3701_1726109844.png", + "isParent": "0", + "url": "\/case-valkyrie", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3722", + "title": "Case DarkFlash", + "parentId": "280", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/case-darkflash", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "281", + "title": "M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_281_1697164290.png", + "big_image": "", + "isParent": "1", + "url": "\/man-hinh-may-tinh", + "is_featured": "1", + "summary": "

    Monitor - M\u00e0n h\u00ecnh m\u00e1y t\u00ednh ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, gi\u00e1 ch\u1ec9 t\u1eeb 2 tri\u1ec7u \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t<\/span><\/p>", + "children": [ + { + "id": "3500", + "title": "CH\u1eccN THEO H\u00c3NG", + "parentId": "281", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3500_1697185834.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3500_1697599911.png", + "isParent": "1", + "url": "\/chon-theo-hang-1-2", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "2455", + "title": "M\u00e0n h\u00ecnh Asus", + "parentId": "3500", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_2455_1693888808.jpg", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2455_1697105363.png", + "isParent": "0", + "url": "\/man-hinh-asus", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh Asus ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, gi\u00e1 ch\u1ec9 t\u1eeb 2 tri\u1ec7u \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t<\/p>", + "children": [] + }, + { + "id": "3364", + "title": "M\u00e0n H\u00ecnh MSI", + "parentId": "3500", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3364_1722939712.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3364_1722939712.png", + "isParent": "0", + "url": "\/man-hinh-msi", + "is_featured": "0", + "summary": "

    M\u00e0n H\u00ecnh MSI ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, gi\u00e1 ch\u1ec9 t\u1eeb 2 tri\u1ec7u \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "2794", + "title": "M\u00e0n h\u00ecnh Viewsonic", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2794_1697105518.png", + "isParent": "0", + "url": "\/man-hinh-viewsonic", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh Viewsonic ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, mi\u1ec5n ph\u00ed v\u1eadn chuy\u1ec3n H\u00e0 N\u1ed9i<\/p>", + "children": [] + }, + { + "id": "1234", + "title": "M\u00e0n h\u00ecnh Samsung", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1234_1697105924.png", + "isParent": "0", + "url": "\/man-hinh-samsung", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh Sam sung ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "509", + "title": "M\u00e0n h\u00ecnh LG", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_509_1697105936.png", + "isParent": "0", + "url": "\/man-hinh-lg", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh m\u00e1y t\u00ednh LG ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "2628", + "title": "M\u00e0n h\u00ecnh HKC", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_2628_1697106580.png", + "isParent": "0", + "url": "\/man-hinh-hkc", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh HKC ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3303", + "title": "M\u00e0n h\u00ecnh Gigabyte", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3303_1697106626.png", + "isParent": "0", + "url": "\/man-hinh-gigabyte", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh Gigabyte ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, gi\u00e1 ch\u1ec9 t\u1eeb 2 tri\u1ec7u \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t<\/p>", + "children": [] + }, + { + "id": "522", + "title": "M\u00e0n h\u00ecnh Dell", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_522_1697106640.png", + "isParent": "0", + "url": "\/man-hinh-dell", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh Dell ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3282", + "title": "M\u00e0n h\u00ecnh Coolermaster", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3282_1697106650.png", + "isParent": "0", + "url": "\/man-hinh-coolermaster", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh Coolermaster ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh si\u00eau t\u1ed1c 1 \u0111\u1ed5i 1<\/p>", + "children": [] + }, + { + "id": "3055", + "title": "M\u00e0n h\u00ecnh AOC", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3055_1697107014.png", + "isParent": "0", + "url": "\/man-hinh-aoc", + "is_featured": "0", + "summary": "

    M\u00e0n h\u00ecnh AOC ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed c\u00e2n m\u00e0u, gi\u00e1 ch\u1ec9 t\u1eeb 2 tri\u1ec7u \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t<\/p>", + "children": [] + }, + { + "id": "3632", + "title": "M\u00e0n h\u00ecnh Galax", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3632_1698290422.png", + "isParent": "0", + "url": "\/man-hinh-galax", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3604", + "title": "M\u00e0n h\u00ecnh Dahua", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3604_1698291275.png", + "isParent": "0", + "url": "\/man-hinh-dahua", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3634", + "title": "M\u00e0n h\u00ecnh VSP", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3634_1698291036.png", + "isParent": "0", + "url": "\/man-hinh-vsp", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3639", + "title": "M\u00e0n h\u00ecnh Philips", + "parentId": "3500", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3639_1698290709.png", + "isParent": "0", + "url": "\/man-hinh-philips", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3724", + "title": "M\u00e0n h\u00ecnh E-Dra", + "parentId": "3500", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/man-hinh-e-dra", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3699", + "title": "M\u00e0n h\u00ecnh ASROCK", + "parentId": "3500", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/man-hinh-asrock", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3501", + "title": "CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC", + "parentId": "281", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3501_1697185334.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3501_1697597135.png", + "isParent": "1", + "url": "\/chon-theo-kich-thuoc", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [ + { + "id": "3502", + "title": "M\u00e0n H\u00ecnh 17 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3502_1697605233.png", + "isParent": "0", + "url": "\/man-hinh-17-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3503", + "title": "M\u00e0n h\u00ecnh 19 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3503_1697605311.png", + "isParent": "0", + "url": "\/man-hinh-19-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3505", + "title": "M\u00e0n h\u00ecnh 22 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3505_1697613574.png", + "isParent": "0", + "url": "\/man-hinh-22-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3506", + "title": "M\u00e0n h\u00ecnh 23 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3506_1697613641.png", + "isParent": "0", + "url": "\/man-hinh-23-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3507", + "title": "M\u00e0n h\u00ecnh 24 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3507_1697613950.png", + "isParent": "0", + "url": "\/man-hinh-24-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3508", + "title": "M\u00e0n h\u00ecnh 25 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3508_1697613997.png", + "isParent": "0", + "url": "\/man-hinh-25-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3509", + "title": "M\u00e0n h\u00ecnh 27 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3509_1697614123.png", + "isParent": "0", + "url": "\/man-hinh-27-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3510", + "title": "M\u00e0n h\u00ecnh 29 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3510_1697614176.png", + "isParent": "0", + "url": "\/man-hinh-29-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3511", + "title": "M\u00e0n h\u00ecnh 32 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3511_1697614233.png", + "isParent": "0", + "url": "\/man-hinh-32-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3512", + "title": "M\u00e0n h\u00ecnh 34 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3512_1697614346.png", + "isParent": "0", + "url": "\/man-hinh-34-inches", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3513", + "title": "M\u00e0n h\u00ecnh > 34 inches", + "parentId": "3501", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3513_1697614599.png", + "isParent": "0", + "url": "\/man-hinh-34-inches-1", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3515", + "title": "CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I", + "parentId": "281", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3515_1697185434.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3515_1697600371.png", + "isParent": "1", + "url": "\/chon-do-phan-giai", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3518", + "title": "1600 x 900", + "parentId": "3515", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/1600-x-900", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3519", + "title": "1920 x 1080 (FHD)", + "parentId": "3515", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3519_1697187046.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3519_1697616153.png", + "isParent": "0", + "url": "\/1920-x-1080-fhd", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3521", + "title": "2560 x 1080 (WFHD)", + "parentId": "3515", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/2560-x-1080-wfhd", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3522", + "title": "2560 x 1440 (QHD 2K)", + "parentId": "3515", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3522_1697616306.png", + "isParent": "0", + "url": "\/2560-x-1440-qhd-2k", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3523", + "title": "3440x1440 (WQHD)", + "parentId": "3515", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/3440x1440-wqhd", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3526", + "title": "3840 x 2160 (UHD 4K)", + "parentId": "3515", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3526_1697616457.png", + "isParent": "0", + "url": "\/3840-x-2160-uhd-4k", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3528", + "title": "CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T", + "parentId": "281", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3528_1697185773.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3528_1697600385.png", + "isParent": "1", + "url": "\/tan-so-quet", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3529", + "title": "60 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3529_1697601198.png", + "isParent": "0", + "url": "\/60-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3530", + "title": "75 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3530_1697601290.png", + "isParent": "0", + "url": "\/75-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3531", + "title": "100 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3531_1697601037.png", + "isParent": "0", + "url": "\/100-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3532", + "title": "144 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3532_1697601086.png", + "isParent": "0", + "url": "\/144-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3533", + "title": "165 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3533_1697601414.png", + "isParent": "0", + "url": "\/165-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3534", + "title": "170 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3534_1697601992.png", + "isParent": "0", + "url": "\/170-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3535", + "title": "240 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3535_1697602064.png", + "isParent": "0", + "url": "\/240-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3537", + "title": "200 Hz", + "parentId": "3528", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3537_1697603427.png", + "isParent": "0", + "url": "\/200-hz", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3697", + "title": "180hz", + "parentId": "3528", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/180hz", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3624", + "title": "M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA", + "parentId": "281", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3624_1697185808.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3624_1697600424.png", + "isParent": "0", + "url": "\/man-hinh-do-hoa", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + } + ] + }, + { + "id": "407", + "title": "LAPTOP", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_407_1697165601.png", + "big_image": "", + "isParent": "1", + "url": "\/laptop", + "is_featured": "1", + "summary": "

    Mua Laptop v\u0103n ph\u00f2ng, gaming laptop, laptop \u0111\u1ed3 h\u1ecda, ch\u01a1i game, v\u1edbi m\u1eabu m\u00e3 \u0111\u00e3 d\u1ea1ng v\u00e0 nhi\u1ec1u \u01b0u \u0111\u00e3i, tr\u1ea3 g\u00f3p 0%. Mua ngay t\u1ea1i Nguy\u1ec5n C\u00f4ng PC nh\u00e9!<\/span><\/p>", + "children": [ + { + "id": "3440", + "title": "LAPTOP GAMING", + "parentId": "407", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3440_1696932541.png", + "isParent": "0", + "url": "\/laptop-gaming", + "is_featured": "0", + "summary": "

    Laptop gaming \u0111\u01b0\u1ee3c m\u00e1y t\u00ednh Nguy\u1ec5n C\u00f4ng ph\u00e2n ph\u1ed1i lu\u00f4n \u0111\u1ea3m b\u1ea3o ch\u1ea5t l\u01b0\u1ee3ng, ph\u00e2n ph\u1ed1i ch\u00ednh h\u00e3ng v\u00e0 nhi\u1ec1u \u01b0u \u0111\u00e3i<\/p>", + "children": [] + }, + { + "id": "3441", + "title": "CH\u1eccN THEO NHU C\u1ea6U", + "parentId": "407", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3441_1696998746.png", + "isParent": "1", + "url": "\/chon-theo-nhu-cau", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3446", + "title": "Laptop Gaming", + "parentId": "3441", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3446_1696994946.png", + "isParent": "0", + "url": "\/laptop-gaming-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3447", + "title": "Laptop \u0110\u1ed3 H\u1ecda - Ki\u1ebfn Tr\u00fac", + "parentId": "3441", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3447_1696995798.png", + "isParent": "0", + "url": "\/laptop-do-hoa-kien-truc", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3448", + "title": "Laptop V\u0103n Ph\u00f2ng", + "parentId": "3441", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3448_1696999001.png", + "isParent": "0", + "url": "\/laptop-van-phong", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3449", + "title": "Laptop M\u1ecfng Nh\u1eb9", + "parentId": "3441", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3449_1696999165.png", + "isParent": "0", + "url": "\/laptop-mong-nhe", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3442", + "title": "CH\u1eccN THEO KHO\u1ea2NG GI\u00c1", + "parentId": "407", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3442_1696998521.png", + "isParent": "1", + "url": "\/chon-theo-khoang-gia", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3459", + "title": "D\u01b0\u1edbi 10 Tri\u1ec7u", + "parentId": "3442", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/duoi-10-trieu", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3460", + "title": "10 Tri\u1ec7u - 15 Tri\u1ec7u", + "parentId": "3442", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/10-trieu-15-trieu", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3461", + "title": "15 Tri\u1ec7u - 20 Tri\u1ec7u", + "parentId": "3442", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/15-trieu-20-trieu", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3462", + "title": "20 Tri\u1ec7u - 30 Tri\u1ec7u", + "parentId": "3442", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/20-trieu-30-trieu", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3463", + "title": "30 Tri\u1ec7u - 50 Tri\u1ec7u", + "parentId": "3442", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/30-trieu-50-trieu", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3464", + "title": "50 Tri\u1ec7u - 100 Tri\u1ec7u", + "parentId": "3442", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/50-trieu-100-trieu", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3465", + "title": "Tr\u00ean 100 Tri\u1ec7u", + "parentId": "3442", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tren-100-trieu", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3443", + "title": "CH\u1eccN THEO CPU", + "parentId": "407", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3443_1696996834.png", + "isParent": "1", + "url": "\/chon-theo-cpu", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3451", + "title": "Intel Core i3", + "parentId": "3443", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3451_1693384673.png", + "big_image": "", + "isParent": "0", + "url": "\/laptop-intel-core-i3", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3450", + "title": "Intel Celeron\/Pentium", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/intel-celeronpentium", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3452", + "title": "Intel Core i5", + "parentId": "3443", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3452_1693364963.png", + "big_image": "", + "isParent": "0", + "url": "\/intel-core-i5", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3453", + "title": "Intel Core i7", + "parentId": "3443", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3453_1693383694.png", + "big_image": "", + "isParent": "0", + "url": "\/intel-core-i7", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3454", + "title": "Intel Core i9", + "parentId": "3443", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3454_1693384364.png", + "big_image": "", + "isParent": "0", + "url": "\/intel-core-i9", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3455", + "title": "AMD Ryzen 3", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/amd-ryzen-3", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3456", + "title": "AMD Ryzen 5", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/amd-ryzen-5", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3457", + "title": "AMD Ryzen 7", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/amd-ryzen-7", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3458", + "title": "AMD Ryzen 9", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/amd-ryzen-9", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3475", + "title": "Apple M1", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/apple-m1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3593", + "title": "Apple M2", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/apple-m2", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3713", + "title": "Intel Core Ultra 7", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/intel-core-ultra-7", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3714", + "title": "Intel Core Ultra 9", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/intel-core-ultra-9", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3698", + "title": "Intel Core Ultra 5", + "parentId": "3443", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/intel-core-ultra-5", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3439", + "title": "CH\u1eccN THEO H\u00c3NG", + "parentId": "407", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3439_1696998444.png", + "isParent": "1", + "url": "\/laptop-chon-theo-hang", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "462", + "title": "Laptop Dell", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_462_1696996927.png", + "isParent": "0", + "url": "\/laptop-dell", + "is_featured": "0", + "summary": "

    Laptop Dell ch\u00ednh h\u00e3ng c\u00f3 nhi\u1ec1u l\u1ef1a ch\u1ecdn c\u1ea5u h\u00ecnh v\u1edbi gi\u00e1 r\u1ebb ph\u00f9 h\u1ee3p v\u1edbi nhi\u1ec1u \u0111\u1ed1i t\u01b0\u1ee3ng...<\/p>", + "children": [] + }, + { + "id": "3281", + "title": "Laptop HP", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3281_1696996998.png", + "isParent": "0", + "url": "\/laptop-hp", + "is_featured": "0", + "summary": "

    Laptop HP ch\u00ednh h\u00e3ng c\u00f3 gi\u00e1 t\u1ed1t nh\u1ea5t t\u1ea1i Nguy\u1ec5n C\u00f4ng pc, b\u1ea3o h\u00e0nh ch\u00ednh h\u00e3ng...<\/p>", + "children": [] + }, + { + "id": "460", + "title": "Laptop Lenovo", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_460_1696997088.png", + "isParent": "0", + "url": "\/laptop-lenovo", + "is_featured": "0", + "summary": "

    Laptop Lenovo ch\u00ednh h\u00e3ng c\u00f3 gi\u00e1 t\u1ed1t nh\u1ea5t t\u1ea1i Nguy\u1ec5n C\u00f4ng pc, b\u1ea3o h\u00e0nh ch\u00ednh h\u00e3ng...<\/p>", + "children": [] + }, + { + "id": "3083", + "title": "Laptop LG", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3083_1696997162.png", + "isParent": "0", + "url": "\/laptop-lg", + "is_featured": "0", + "summary": "

    Laptop LG h\u1ebf h\u1ec7 m\u1edbi, mang v\u1ebb \u0111\u1eb9p hi\u1ec7n \u0111\u1ea1i cao c\u1ea5p c\u00f9ng nhi\u1ec1u t\u00ednh n\u0103ng \u0111\u00e1ng gi\u00e1 cho m\u00e1y v\u1eeba m\u1ecfng nh\u1eb9 c\u00f9ng v\u1edbi c\u1ea5u h\u00ecnh cao...<\/p>", + "children": [] + }, + { + "id": "461", + "title": "Laptop Asus", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_461_1696996863.png", + "isParent": "0", + "url": "\/laptop-asus", + "is_featured": "0", + "summary": "

    Laptop Asus ch\u00ednh h\u00e3ng gi\u00e1 \u01b0u \u0111\u00e3i, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u c\u1ea5u h\u00ecnh: core i3, core i5, core i7, ryzen, c\u00f3 h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3395", + "title": "Laptop Gigabyte", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3395_1696997193.png", + "isParent": "0", + "url": "\/laptop-gigabyte", + "is_featured": "0", + "summary": "

    Laptop Gigabyte Ch\u00ednh H\u00e3ng, ch\u00ednh h\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, gi\u00e1 th\u00e0nh h\u1ee3p l\u00fd, C\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn.<\/p>", + "children": [] + }, + { + "id": "3268", + "title": "Laptop MSI", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3268_1696997213.png", + "isParent": "0", + "url": "\/laptop-msi", + "is_featured": "0", + "summary": "

    Laptop MSI GL, GV, GE, GS, GT, PE, PX d\u1eabn \u0111\u1ea7u v\u1ec1 hi\u1ec7u n\u0103ng cho game th\u1ee7, thi\u1ebft k\u1ebf m\u1ea1nh m\u1ebd, \u0111\u1eadm ch\u1ea5t game mang l\u1ea1i tr\u1ea3i nghi\u1ec7m tuy\u1ec7t v\u1eddi cho b\u1ea1n.<\/p>", + "children": [] + }, + { + "id": "3332", + "title": "Laptop Acer", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3332_1696997275.png", + "isParent": "0", + "url": "\/laptop-acer", + "is_featured": "0", + "summary": "

    Laptop Acer ch\u00ednh h\u00e3ng, hi\u1ec7u n\u0103ng m\u1ea1nh m\u1ebd, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u \u0111\u1ed3 h\u1ecda c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3354", + "title": "Laptop Apple Macbook", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3354_1696997346.png", + "isParent": "0", + "url": "\/laptop-apple-macbook", + "is_featured": "0", + "summary": "

    Laptop Apple Ch\u00ednh H\u00e3ng m\u1edbi 100%, b\u1ea3o h\u00e0nh 12 th\u00e1ng, mi\u1ec5n ph\u00ed ship H\u00e0 N\u1ed9i v\u00e0 TPHCM, giao h\u00e0ng to\u00e0n qu\u1ed1c, h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3375", + "title": "Laptop Microsoft Surface", + "parentId": "3439", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3375_1696997431.png", + "isParent": "0", + "url": "\/laptop-microsoft-surface", + "is_featured": "0", + "summary": "

    Laptop Microsoft Surface Ch\u00ednh H\u00e3ng, m\u1edbi 100%, mi\u1ec5n ph\u00ed ship H\u00e0 N\u1ed9i v\u00e0 TPHCM, giao h\u00e0ng to\u00e0n qu\u1ed1c, h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + } + ] + } + ] + }, + { + "id": "284", + "title": "THI\u1ebeT B\u1eca L\u01afU TR\u1eee", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_284_1635499064.png", + "big_image": "", + "isParent": "1", + "url": "\/o-cung-hdd-ssd", + "is_featured": "0", + "summary": "

    Thi\u1ebft B\u1ecb L\u01b0u Tr\u1eef ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [ + { + "id": "3274", + "title": "\u1ed4 C\u1ee8NG SSD", + "parentId": "284", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3274_1709002868.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3274_1697181124.png", + "isParent": "0", + "url": "\/o-cung-ssd", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng SSD t\u1ed1c \u0111\u1ed9 cao, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3273", + "title": "\u1ed4 c\u1ee9ng HDD", + "parentId": "284", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3273_1697181228.png", + "isParent": "0", + "url": "\/o-cung-hdd", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng HDD ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3275", + "title": "\u1ed4 c\u1ee9ng di \u0111\u1ed9ng", + "parentId": "284", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3275_1697184310.png", + "isParent": "0", + "url": "\/o-cung-di-dong", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng di \u0111\u1ed9ng t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3311", + "title": "USB", + "parentId": "284", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3311_1697185083.png", + "big_image": "", + "isParent": "0", + "url": "\/usb", + "is_featured": "0", + "summary": "

    USB t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng<\/p>", + "children": [] + }, + { + "id": "3428", + "title": "\u1ed4 \u0110\u0129a Quang", + "parentId": "284", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-dia-quang", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3476", + "title": "CH\u1eccN THEO H\u00c3NG", + "parentId": "284", + "thumnail": "", + "big_image": "", + "isParent": "1", + "url": "\/chon-theo-hang", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3401", + "title": "\u1ed4 c\u1ee9ng Silicon Power", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-silicon-power", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Silicon Power ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3397", + "title": "\u1ed4 c\u1ee9ng Kingfast", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-kingfast", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Kingfast t\u1ed1c \u0111\u1ed9 nhanh, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "452", + "title": "\u1ed4 c\u1ee9ng Western digital", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-western-digital", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Western digital ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "450", + "title": "\u1ed4 c\u1ee9ng Transcend", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-transcend", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Transcend ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3301", + "title": "\u00d4\u0309 c\u01b0\u0301ng Toshiba", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-toshiba", + "is_featured": "0", + "summary": "

    \u00d4\u0309 c\u01b0\u0301ng Toshiba ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3285", + "title": "\u1ed4 c\u1ee9ng TerraMaster", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-terramaster", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng TerraMaster t\u1ed1c \u0111\u1ed9 cao, dung l\u01b0\u1ee3ng l\u1edbn, d\u1ec5 t\u01b0\u01a1ng th\u00edch, ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t, c\u00f3 h\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t<\/p>", + "children": [] + }, + { + "id": "1390", + "title": "\u1ed4 c\u1ee9ng Team", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/team-o-cung-hdd-ssd", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Team ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "453", + "title": "\u1ed4 c\u1ee9ng Seagate", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-seagate", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Seagate ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "457", + "title": "\u1ed4 c\u1ee9ng Samsung", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-sam-sung", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Samsung ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "1459", + "title": "\u1ed4 c\u1ee9ng PNY", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/pny", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng PNY ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "454", + "title": "\u1ed4 c\u1ee9ng Plextor", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-plextor", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Plextor ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "1384", + "title": "\u1ed4 c\u1ee9ng Kingspec", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-kingspec", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Kingspec ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "1382", + "title": "\u1ed4 c\u1ee9ng Kingmax", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-kingmax", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Kingmax ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "458", + "title": "\u1ed4 c\u1ee9ng Kingston", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-kingston", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Kingston ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "1380", + "title": "\u1ed4 c\u1ee9ng Intel", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-intel", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Intel ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "1961", + "title": "\u1ed4 c\u1ee9ng HSGT", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/hsgt", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng HSGT ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3249", + "title": "\u1ed4 c\u1ee9ng Gigabyte", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/gigabyte", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Gigabyte ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "2746", + "title": "\u1ed4 c\u1ee9ng Galax", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-galax", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Galax ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "1422", + "title": "\u1ed4 c\u1ee9ng Fuhler", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-fuhler", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Fuhler t\u1ed1c \u0111\u1ed9 cao, d\u1ec5 t\u01b0\u01a1ng th\u00edch, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "1388", + "title": "\u1ed4 c\u1ee9ng Faspeed", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-faspeed", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Faspeed t\u1ed1c \u0111\u1ed9 cao, d\u1ec5 t\u01b0\u01a1ng th\u00edch, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch, mi\u1ec5n ph\u00ed l\u1eafp \u0111\u1eb7t, b\u1ea3o h\u00e0nh nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3257", + "title": "\u1ed4 C\u1ee9ng Corsair", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-corsair", + "is_featured": "0", + "summary": "

    \u1ed4 C\u1ee9ng Corsair ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t nh\u1ea5t v\u1edbi ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "451", + "title": "\u1ed4 c\u1ee9ng Colorful", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-colorful", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Colorful t\u1ed1c \u0111\u1ed9 nhanh, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "1393", + "title": "\u1ed4 c\u1ee9ng Biostar", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/0-cung-biostar", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Biostar t\u1ed1c \u0111\u1ed9 nhanh, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "456", + "title": "\u1ed4 c\u1ee9ng Apacer", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-apacer", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Apacer \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "455", + "title": "\u1ed4 c\u1ee9ng Adata", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-adata", + "is_featured": "0", + "summary": "

    \u1ed4 c\u1ee9ng Adata ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ed9 \u1ed5n \u0111\u1ecbnh cao, t\u1ed1c \u0111\u1ed9 nhanh, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1ee9c dung l\u01b0\u1ee3ng ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3671", + "title": "\u1ed4 c\u1ee9ng KIOXIA", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-kioxia", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3712", + "title": "\u1ed4 c\u1ee9ng MSI", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-msi", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3680", + "title": "\u00d4 c\u1ee9ng AGI", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-agi", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3687", + "title": "\u1ed4 c\u1ee9ng HIKSEMI", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-hiksemi", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3690", + "title": "\u1ed4 c\u1ee9ng Lexar", + "parentId": "3476", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/o-cung-lexar", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3477", + "title": "CH\u1eccN THEO DUNG L\u01af\u1ee2NG", + "parentId": "284", + "thumnail": "", + "big_image": "", + "isParent": "1", + "url": "\/chon-theo-dung-luong", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3478", + "title": "8GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/8gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3481", + "title": "64GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/64gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3479", + "title": "16GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/16gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3480", + "title": "32GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/32gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3482", + "title": "120GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/120gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3483", + "title": "128GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/128gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3484", + "title": "240GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/240gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3487", + "title": "250GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/250gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3488", + "title": "256GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/256gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3489", + "title": "480GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/480gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3490", + "title": "500GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/500gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3491", + "title": "512GB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/512gb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3492", + "title": "1TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/1tb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3493", + "title": "2TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/2tb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3494", + "title": "3TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/3tb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3495", + "title": "4TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/4tb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3496", + "title": "6TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/6tb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3497", + "title": "8TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/8tb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3498", + "title": "10TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/10tb", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3499", + "title": "Tr\u00ean 10TB", + "parentId": "3477", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tren-10tb", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "1255", + "title": "T\u1ea2N NHI\u1ec6T PC - COOLING", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_1255_1635499164.png", + "big_image": "", + "isParent": "1", + "url": "\/tan-nhiet", + "is_featured": "0", + "summary": "

    Mua t\u1ea3n nhi\u1ec7t kh\u00ed, t\u1ea3n nhi\u1ec7t n\u01b0\u1edbc m\u00e1y t\u00ednh, T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc AIO, Fan t\u1ea3n nhi\u1ec7t, Kem T\u1ea3n Nhi\u1ec7t PC v\u1edbi m\u1eabu m\u00e3 \u0111\u00e3 d\u1ea1ng v\u00e0 nhi\u1ec1u \u01b0u \u0111\u00e3. Mua ngay t\u1ea1i Nguy\u1ec5n C\u00f4ng PC!<\/p>", + "children": [ + { + "id": "3272", + "title": "Keo T\u1ea3n Nhi\u1ec7t", + "parentId": "1255", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/keo-tan-nhiet", + "is_featured": "0", + "summary": "

    Keo T\u1ea3n Nhi\u1ec7t cao c\u1ea5p gi\u00e1 t\u1ed1t, l\u00e0m m\u00e1t hi\u1ec7u qu\u1ea3, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3271", + "title": "Fan t\u1ea3n nhi\u1ec7t", + "parentId": "1255", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/quat-tan-nhiet", + "is_featured": "0", + "summary": "

    Fan t\u1ea3n nhi\u1ec7t cao c\u1ea5p gi\u00e1 t\u1ed1t, l\u00e0m m\u00e1t hi\u1ec7u qu\u1ea3, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3269", + "title": "T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc AIO", + "parentId": "1255", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tan-nhiet-nuoc-aio", + "is_featured": "0", + "summary": "

    T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc AIO cao c\u1ea5p gi\u00e1 t\u1ed1t, l\u00e0m m\u00e1t hi\u1ec7u qu\u1ea3, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3270", + "title": "T\u1ea3n Nhi\u1ec7t Kh\u00ed", + "parentId": "1255", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tan-nhiet-khi", + "is_featured": "0", + "summary": "

    T\u1ea3n Nhi\u1ec7t Kh\u00ed cao c\u1ea5p gi\u00e1 t\u1ed1t, l\u00e0m m\u00e1t hi\u1ec7u qu\u1ea3, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3630", + "title": "T\u1ea2N N\u01af\u1edaC CUSTOM", + "parentId": "1255", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tan-nuoc-custom", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + } + ] + }, + { + "id": "3403", + "title": "THI\u1ebeT B\u1eca V\u0102N PH\u00d2NG", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3403_1646643598.png", + "big_image": "", + "isParent": "1", + "url": "\/thiet-bi-van-phong", + "is_featured": "0", + "summary": "

    Thi\u1ebft B\u1ecb V\u0103n Ph\u00f2ng ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c lo\u1ea1i thi\u1ebft b\u1ecb ph\u1ee5 v\u1ee5 m\u1ecdi nhu c\u1ea7u v\u00e0 t\u00e1c v\u1ee5 v\u0103n ph\u00f2ng c\u1ee7a qu\u00fd kh\u00e1ch. Mua ngay t\u1ea1i Nguy\u1ec5n C\u00f4ng PC.<\/p>", + "children": [ + { + "id": "3405", + "title": "Ma\u0301y in", + "parentId": "3403", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3405_1722938343.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3405_1722938343.png", + "isParent": "0", + "url": "\/may-in", + "is_featured": "0", + "summary": "

    Ma\u0301y in Ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c m\u1eabu m\u00e3 c\u1ee7a c\u00e1c th\u01b0\u01a1ng hi\u1ec7u n\u1ed5i ti\u1ebfng, ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u in \u1ea5n c\u1ee7a qu\u00fd kh\u00e1ch<\/p>", + "children": [] + }, + { + "id": "3591", + "title": "M\u00c1Y T\u00cdNH B\u1ea2NG", + "parentId": "3403", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3591_1722938533.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3591_1722938533.png", + "isParent": "0", + "url": "\/may-tinh-bang", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3594", + "title": "M\u00c1Y CHI\u1ebeU", + "parentId": "3403", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3594_1722938685.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3594_1722938685.png", + "isParent": "0", + "url": "\/may-chieu", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3598", + "title": "GI\u00c1 TREO M\u00c0N H\u00ccNH", + "parentId": "3403", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3598_1722938828.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3598_1722938828.png", + "isParent": "0", + "url": "\/gia-treo-man-hinh", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3636", + "title": "THI\u1ebeT B\u1eca CHUY\u1ec2N \u0110\u1ed4I, D\u00c2Y C\u00c1P", + "parentId": "3403", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3636_1722939064.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3636_1722939064.png", + "isParent": "0", + "url": "\/thiet-bi-chuyen-doi-day-cap", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3647", + "title": "CAMERA", + "parentId": "3403", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3647_1722938963.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3647_1722938963.png", + "isParent": "0", + "url": "\/camera", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + } + ] + }, + { + "id": "410", + "title": "PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_410_1635499139.png", + "big_image": "", + "isParent": "1", + "url": "\/phu-kien", + "is_featured": "0", + "summary": "

    Nh\u1eefng thi\u1ebft b\u1ecb \u0111\u01b0\u1ee3c coi l\u00e0 Gaming Gear ph\u1ed5 bi\u1ebfn nh\u1ea5t l\u00e0 b\u00e0n ph\u00edm ch\u01a1i game, chu\u1ed9t Gaming, tai nghe Gaming. Th\u1eddi gian g\u1ea7n \u0111\u00e2y, v\u1edbi s\u1ef1 ph\u00e1t tri\u1ec3n m\u1ea1nh m\u1ebd c\u1ee7a ng\u00e0nh c\u00f4ng nghi\u1ec7p ch\u01a1i Game<\/p>", + "children": [ + { + "id": "3445", + "title": "Linh ki\u1ec7n Laptop", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3445_1696997999.png", + "isParent": "1", + "url": "\/linh-kien-laptop", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3444", + "title": "Ph\u1ee5 ki\u1ec7n Laptop", + "parentId": "3445", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3444_1696998163.png", + "isParent": "0", + "url": "\/phu-kien-laptop", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "1522", + "title": "THI\u1ebeT B\u1eca \u00c2M THANH", + "parentId": "410", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_1522_1646708628.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1522_1697097187.png", + "isParent": "1", + "url": "\/am-thanh", + "is_featured": "0", + "summary": "

    Thi\u1ebft b\u1ecb \u00c2m Thanh cho m\u00e1y t\u00ednh, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3309", + "title": "Tai Nghe", + "parentId": "1522", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3309_1722910108.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3309_1697103006.png", + "isParent": "1", + "url": "\/tai-nghe", + "is_featured": "1", + "summary": "

    Tai Nghe cho m\u00e1y t\u00ednh, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3356", + "title": "Tai Nghe ZIDLI", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3356_1722911937.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3356_1722911937.png", + "isParent": "0", + "url": "\/tai-nghe-zidli", + "is_featured": "0", + "summary": "

    Tai Nghe ZIDLI ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3377", + "title": "Tai Nghe XIBERIA", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3377_1722911843.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3377_1722911843.png", + "isParent": "0", + "url": "\/tai-nghe-xiberia", + "is_featured": "0", + "summary": "

    Tai Nghe XIBERIA m\u1edbi 100%, ch\u00ednh h\u00e3ng, mi\u1ec5n ph\u00ed ship H\u00e0 N\u1ed9i v\u00e0 TPHCM, giao h\u00e0ng to\u00e0n qu\u1ed1c, h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>", + "children": [] + }, + { + "id": "3324", + "title": "Tai nghe Steelseries", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3324_1722912047.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3324_1722912047.png", + "isParent": "0", + "url": "\/tai-nghe-steelseries", + "is_featured": "0", + "summary": "

    Tai nghe Steelseries ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3318", + "title": "Tai nghe Razer", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3318_1722912108.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3318_1722912108.png", + "isParent": "0", + "url": "\/tai-nghe-razer", + "is_featured": "0", + "summary": "

    Tai nghe Razer Gaming ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3326", + "title": "Tai nghe Logitech", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3326_1722912230.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3326_1722912230.png", + "isParent": "0", + "url": "\/tai-nghe-logitech", + "is_featured": "0", + "summary": "

    Tai nghe Logitech ch\u00ednh h\u00e3ng, gi\u00e1 t\u1ed1t, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3319", + "title": "Tai nghe HyperX", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3319_1722912701.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3319_1722912701.png", + "isParent": "0", + "url": "\/tai-nghe-hyperx", + "is_featured": "0", + "summary": "

    Tai nghe Kingston HyperX ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3385", + "title": "Tai Nghe Gigabyte", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3385_1722912618.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3385_1722912618.png", + "isParent": "0", + "url": "\/tai-nghe-gigabyte", + "is_featured": "0", + "summary": "

    Tai Nghe Gigabyte ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3379", + "title": "Tai Nghe Eaglend", + "parentId": "3309", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tai-nghe-eaglend", + "is_featured": "0", + "summary": "Tai Nghe Eaglend Ch\u00ednh H\u00e3ng, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.", + "children": [] + }, + { + "id": "3320", + "title": "Tai nghe E-dra", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3320_1722913347.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3320_1722913347.png", + "isParent": "0", + "url": "\/tai-nghe-e-dra", + "is_featured": "0", + "summary": "

    Tai nghe E-dra ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3325", + "title": "Tai nghe Dareu", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3325_1722913481.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3325_1722913481.png", + "isParent": "0", + "url": "\/tai-nghe-dareu", + "is_featured": "0", + "summary": "

    Tai nghe Dareu ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3322", + "title": "Tai nghe Corsair", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3322_1722913602.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3322_1722913602.png", + "isParent": "0", + "url": "\/tai-nghe-corsair", + "is_featured": "0", + "summary": "

    Tai nghe Corsair ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3333", + "title": "Tai nghe Cooler Master", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3333_1722913725.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3333_1722913725.png", + "isParent": "0", + "url": "\/tai-nghe-cooler-master", + "is_featured": "0", + "summary": "

    Tai nghe Cooler Master ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, ch\u1ea5t \u00e2m trung th\u1ef1c, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3323", + "title": "Tai nghe ASUS", + "parentId": "3309", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3323_1722913830.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3323_1722913830.png", + "isParent": "0", + "url": "\/tai-nghe-asus", + "is_featured": "0", + "summary": "

    Tai nghe ASUS ch\u00ednh h\u00e3ng ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3327", + "title": "Tai nghe kh\u00e1c", + "parentId": "3309", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/tai-nghe-khac", + "is_featured": "0", + "summary": "Tai nghe nhi\u1ec1u h\u00e3ng kh\u00e1c nhau, gi\u00e1 r\u1ebb, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.", + "children": [] + } + ] + }, + { + "id": "3308", + "title": "Loa", + "parentId": "1522", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3308_1697103187.png", + "isParent": "0", + "url": "\/loa", + "is_featured": "0", + "summary": "

    Loa vi t\u00ednh, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "1550", + "title": "Card \u00e2m thanh", + "parentId": "1522", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1550_1697103345.png", + "isParent": "0", + "url": "\/card-am-thanh", + "is_featured": "0", + "summary": "

    Card \u00e2m thanh cho m\u00e1y t\u00ednh, v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + } + ] + }, + { + "id": "1147", + "title": "Mouse - Chu\u1ed9t", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1147_1697097304.png", + "isParent": "1", + "url": "\/chuot-mouse", + "is_featured": "0", + "summary": "

    Mouse - Chu\u1ed9t m\u00e1y t\u00ednh ch\u00ednh h\u00e3ng gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3562", + "title": "Chu\u1ed9t theo h\u00e3ng", + "parentId": "1147", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3562_1697698514.png", + "isParent": "1", + "url": "\/chuot-theo-hang", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3312", + "title": "Chu\u1ed9t Asus", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3312_1722931183.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3312_1722931183.png", + "isParent": "0", + "url": "\/chuot-asus", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Asus ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3291", + "title": "Chu\u1ed9t E-DRA", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3291_1722931212.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3291_1722931212.png", + "isParent": "0", + "url": "\/chuot-e-dra", + "is_featured": "0", + "summary": "

    Chu\u1ed9t E-DRA ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3232", + "title": "Chu\u1ed9t Fuhlen", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3232_1722931228.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3232_1722931228.png", + "isParent": "0", + "url": "\/chuot-fuhlen", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Fuhlen ch\u00ednh h\u00e3ng, si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3231", + "title": "Chu\u1ed9t Dareu", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3231_1722931264.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3231_1722931264.png", + "isParent": "0", + "url": "\/chuot-dareu", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Dareu ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3230", + "title": "Chu\u1ed9t SteelSeries", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3230_1722931282.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3230_1722931282.png", + "isParent": "0", + "url": "\/chuot-steel-series", + "is_featured": "0", + "summary": "

    Chu\u1ed9t SteelSeries ch\u00ednh h\u00e3ng, si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3228", + "title": "Chu\u1ed9t Razer", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3228_1722931300.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3228_1722931300.png", + "isParent": "0", + "url": "\/chuot-razer", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Razer ch\u00ednh h\u00e3ng, si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3227", + "title": "Chu\u1ed9t Corsair", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3227_1722931326.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3227_1722931326.png", + "isParent": "0", + "url": "\/chuot-corsair", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Corsair ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3226", + "title": "Chu\u1ed9t Logitech", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3226_1722931340.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3226_1722931340.png", + "isParent": "0", + "url": "\/chuot-logitech", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Logitech ch\u00ednh h\u00e3ng, si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3361", + "title": "Chu\u1ed9t Zowie", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3361_1722931460.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3361_1722931460.png", + "isParent": "0", + "url": "\/chuot-zowie", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Zowie Ch\u00ednh H\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3338", + "title": "Chu\u1ed9t Motospeed", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3338_1722931561.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3338_1722931561.png", + "isParent": "0", + "url": "\/chuot-motospeed", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Motospeed ch\u00ednh h\u00e3ng, si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3330", + "title": "Chu\u1ed9t Akko", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3330_1722931742.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3330_1722931742.png", + "isParent": "0", + "url": "\/chuot-akko", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Akko ch\u00ednh h\u00e3ng ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3334", + "title": "Chu\u1ed9t Cooler Master", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3334_1722931576.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3334_1722931576.png", + "isParent": "0", + "url": "\/chuot-cooler-master", + "is_featured": "0", + "summary": "

    Chu\u1ed9t Cooler Master ch\u00ednh h\u00e3ng, si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u lo\u1ea1i n\u00fat b\u1ea5m v\u00e0 m\u1eaft \u0111\u1ecdc m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch. \u0110\u1ea3m b\u1ea3o gi\u00e1 t\u1ed1t nh\u1ea5t th\u1ecb tr\u01b0\u1eddng.<\/p>", + "children": [] + }, + { + "id": "3640", + "title": "Chu\u1ed9t Lecoo", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3640_1722931866.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3640_1722931866.png", + "isParent": "0", + "url": "\/chuot-lecoo", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3643", + "title": "Chu\u1ed9t Newmen", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3643_1722932005.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3643_1722932005.png", + "isParent": "0", + "url": "\/chuot-newmen", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3676", + "title": "Chu\u1ed9t Glorious", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3676_1722932059.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3676_1722932059.png", + "isParent": "0", + "url": "\/chuot-glorious", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3678", + "title": "Chu\u1ed9t AULA", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3678_1722932073.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3678_1722932073.png", + "isParent": "0", + "url": "\/chuot-aula", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3682", + "title": "Chu\u1ed9t RAPOO", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3682_1722932113.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3682_1722932113.png", + "isParent": "0", + "url": "\/chuot-rapoo", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3683", + "title": "Chu\u1ed9t Machenike", + "parentId": "3562", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3683_1722932146.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3683_1722932146.png", + "isParent": "0", + "url": "\/chuot-machenike", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3328", + "title": "Chu\u1ed9t kh\u00e1c", + "parentId": "3562", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/chuot-khac", + "is_featured": "0", + "summary": "

    C\u00e1c lo\u1ea1i Chu\u1ed9t kh\u00e1c si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c lo\u1ea1i forrm c\u1ea7m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3732", + "title": "Chu\u1ed9t ATK", + "parentId": "3562", + "thumnail": "", + "big_image": "", + "isParent": "0", + "url": "\/chuot-atk", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "3564", + "title": "Chu\u1ed9t Kh\u00f4ng D\u00e2y", + "parentId": "1147", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3564_1697698617.png", + "isParent": "0", + "url": "\/chuot-khong-day", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3565", + "title": "Chu\u1ed9t C\u00f3 D\u00e2y", + "parentId": "1147", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3565_1697698641.png", + "isParent": "0", + "url": "\/chuot-co-day", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "1235", + "title": "B\u00e0n Ph\u00edm", + "parentId": "410", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_1235_1697164195.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1235_1697097370.png", + "isParent": "1", + "url": "\/ban-phim", + "is_featured": "0", + "summary": "

    B\u00e0n Ph\u00edm cho m\u00e1y t\u00ednh, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3541", + "title": "B\u00e0n ph\u00edm kh\u00f4ng d\u00e2y", + "parentId": "1235", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3541_1750214699.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3541_1697699324.png", + "isParent": "0", + "url": "\/ban-phim-khong-day", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3543", + "title": "B\u00e0n ph\u00edm c\u00f3 d\u00e2y", + "parentId": "1235", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3543_1697699344.png", + "isParent": "0", + "url": "\/ban-phim-co-day-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3544", + "title": "B\u00e0n ph\u00edm theo h\u00e3ng", + "parentId": "1235", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3544_1697699673.png", + "isParent": "1", + "url": "\/ban-phim-theo-hang-1", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3559", + "title": "B\u00e0n ph\u00edm ASUS", + "parentId": "3544", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3559_1697700476.png", + "isParent": "0", + "url": "\/ban-phim-asus-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3547", + "title": "B\u00e0n ph\u00edm COOLER MASTER", + "parentId": "3544", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3547_1697701045.png", + "isParent": "0", + "url": "\/ban-phim-cooler-master-1-2", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3549", + "title": "B\u00e0n ph\u00edm AKKO", + "parentId": "3544", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3549_1697701114.png", + "isParent": "0", + "url": "\/ban-phim-akko-1-2", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3550", + "title": "B\u00e0n ph\u00edm AOC", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3550_1722915833.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3550_1722915833.png", + "isParent": "0", + "url": "\/ban-phim-aoc", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3551", + "title": "B\u00e0n ph\u00edm E-DRA", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3551_1722915161.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3551_1722915161.png", + "isParent": "0", + "url": "\/ban-phim-e-dra-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3552", + "title": "B\u00e0n ph\u00edm DAREU", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3552_1722915276.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3552_1722915276.png", + "isParent": "0", + "url": "\/ban-phim-dareu-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3554", + "title": "B\u00e0n ph\u00edm RAZER", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3554_1722915465.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3554_1722915465.png", + "isParent": "0", + "url": "\/ban-phim-razer-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3556", + "title": "B\u00e0n ph\u00edm LOGITECH", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3556_1722915115.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3556_1722915115.png", + "isParent": "0", + "url": "\/ban-phim-logitech-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3557", + "title": "B\u00e0n ph\u00edm FUHLEN", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3557_1722931045.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3557_1722931045.png", + "isParent": "0", + "url": "\/ban-phim-fuhlen-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3558", + "title": "B\u00e0n ph\u00edm CORSAIR", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3558_1722915544.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3558_1722915544.png", + "isParent": "0", + "url": "\/ban-phim-corsair-1", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3560", + "title": "B\u00e0n ph\u00edm FL Esport", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3560_1722939469.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3560_1722939469.png", + "isParent": "0", + "url": "\/ban-phim-fl-esport", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3608", + "title": "B\u00e0n ph\u00edm Sharkoon", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3608_1722915766.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3608_1722915766.png", + "isParent": "0", + "url": "\/ban-phim-sharkoon", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3629", + "title": "B\u00e0n ph\u00edm NZXT", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3629_1722917398.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3629_1722917398.png", + "isParent": "0", + "url": "\/ban-phim-nzxt", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3635", + "title": "B\u00e0n ph\u00edm RAPOO", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3635_1722916485.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3635_1722916485.png", + "isParent": "0", + "url": "\/ban-phim-rapoo", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3653", + "title": "B\u00e0n ph\u00edm MIKIT", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3653_1722917510.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3653_1722917510.png", + "isParent": "0", + "url": "\/ban-phim-mikit", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3677", + "title": "B\u00e0n Ph\u00edm Glorious", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3677_1722917772.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3677_1722917772.png", + "isParent": "0", + "url": "\/glorious", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3679", + "title": "B\u00e0n ph\u00edm AULA", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3679_1722916095.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3679_1722916095.png", + "isParent": "0", + "url": "\/ban-phim-aula", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3681", + "title": "B\u00e0m ph\u00edm MACHENIKE", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3681_1722919111.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3681_1722919111.png", + "isParent": "0", + "url": "\/bam-phim-machenike", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3694", + "title": "B\u00e0n ph\u00edm Adata", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3694_1722939336.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3694_1722939336.png", + "isParent": "0", + "url": "\/ban-phim-adata", + "is_featured": "0", + "summary": "", + "children": [] + }, + { + "id": "3696", + "title": "B\u00e0n ph\u00edm Newmen", + "parentId": "3544", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_3696_1723192701.png", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3696_1723192701.png", + "isParent": "0", + "url": "\/ban-phim-newmen-1", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + } + ] + }, + { + "id": "3307", + "title": "Gh\u1ebf GAMING", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3307_1697098285.png", + "isParent": "1", + "url": "\/ghe-gaming", + "is_featured": "0", + "summary": "

    Gh\u1ebf GAMING v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ec7m \u0111\u00fac nguy\u00ean kh\u1ed1i \u00eam \u00e1i, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [ + { + "id": "3568", + "title": "Gh\u1ebf theo h\u00e3ng", + "parentId": "3307", + "thumnail": "", + "big_image": "", + "isParent": "1", + "url": "\/ghe-theo-hang", + "is_featured": "0", + "summary": "", + "children": [ + { + "id": "3316", + "title": "Gh\u1ebf Warrior", + "parentId": "3568", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3316_1698291480.png", + "isParent": "0", + "url": "\/ghe-warrior", + "is_featured": "0", + "summary": "

    Gh\u1ebf Warrior v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ec7m \u0111\u00fac nguy\u00ean kh\u1ed1i \u00eam \u00e1i, da cao c\u1ea5p si\u00eau b\u1ec1n, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3391", + "title": "Gh\u1ebf MSI", + "parentId": "3568", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3391_1698291685.png", + "isParent": "0", + "url": "\/ghe-msi", + "is_featured": "0", + "summary": "

    Gh\u1ebf MSI v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ec7m \u0111\u00fac nguy\u00ean kh\u1ed1i \u00eam \u00e1i, da cao c\u1ea5p si\u00eau b\u1ec1n, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3286", + "title": "Gh\u1ebf E-Dra", + "parentId": "3568", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3286_1698291997.png", + "isParent": "0", + "url": "\/ghe-e-dra", + "is_featured": "0", + "summary": "

    Gh\u1ebf E-Dra v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ec7m \u0111\u00fac nguy\u00ean kh\u1ed1i \u00eam \u00e1i, da cao c\u1ea5p si\u00eau b\u1ec1n, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3336", + "title": "Gh\u1ebf DXRacer", + "parentId": "3568", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3336_1698292147.png", + "isParent": "0", + "url": "\/ghe-dxracer", + "is_featured": "0", + "summary": "

    Gh\u1ebf DXRacer ch\u00ednh h\u00e3ng, gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t t\u1ea1i nh\u00e0 mi\u1ec5n ph\u00ed.<\/p>", + "children": [] + }, + { + "id": "3363", + "title": "Gh\u1ebf Corsair", + "parentId": "3568", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3363_1698292277.png", + "isParent": "0", + "url": "\/ghe-corsair", + "is_featured": "0", + "summary": "

    Gh\u1ebf CORSAIR ch\u00ednh h\u00e3ng, gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, tho\u00e1ng kh\u00ed, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t t\u1ea1i nh\u00e0 mi\u1ec5n ph\u00ed.<\/p>", + "children": [] + }, + { + "id": "3314", + "title": "Gh\u1ebf Cooler Master", + "parentId": "3568", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3314_1698292306.png", + "isParent": "0", + "url": "\/ghe-cooler-master", + "is_featured": "0", + "summary": "

    Gh\u1ebf Cooler Master ch\u00ednh h\u00e3ng, gi\u00e1 t\u1ed1t, v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, khung th\u00e9p d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ec7m \u0111\u00fac nguy\u00ean kh\u1ed1i \u00eam \u00e1i, da cao c\u1ea5p si\u00eau b\u1ec1n, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3642", + "title": "Gh\u1ebf Razer", + "parentId": "3568", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3642_1698292350.png", + "isParent": "0", + "url": "\/ghe-razer", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + } + ] + } + ] + }, + { + "id": "3287", + "title": "Webcam", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3287_1697097765.png", + "isParent": "1", + "url": "\/webcam", + "is_featured": "0", + "summary": "

    Webcam si\u00eau n\u00e9t, h\u00ecnh \u1ea3nh r\u00f5 r\u00e0ng, t\u1ea7m nh\u00ecn xa, ph\u1ea1m vi quan s\u00e1t r\u1ed9ng, t\u01b0\u01a1ng th\u00edch t\u1ed1t, d\u1ec5 d\u00e0ng l\u1eafp \u0111\u1eb7t, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [ + { + "id": "3420", + "title": "Webcam ASUS", + "parentId": "3287", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3420_1697104129.png", + "isParent": "0", + "url": "\/webcam-asus", + "is_featured": "0", + "summary": "

    Webcam ASUS Ch\u00ednh h\u00e3ng, si\u00eau n\u00e9t, h\u00ecnh \u1ea3nh r\u00f5 r\u00e0ng, t\u1ea7m nh\u00ecn xa, ph\u1ea1m vi quan s\u00e1t r\u1ed9ng, t\u01b0\u01a1ng th\u00edch t\u1ed1t, d\u1ec5 d\u00e0ng l\u1eafp \u0111\u1eb7t, m\u1eabu m\u00e3 \u0111a d\u1ea1ng.<\/p>", + "children": [] + }, + { + "id": "3418", + "title": "Webcam HIKVISION", + "parentId": "3287", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3418_1697104207.png", + "isParent": "0", + "url": "\/webcam-hikvision", + "is_featured": "0", + "summary": "

    Webcam HIKVISION ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb, h\u00ecnh \u1ea3nh s\u1eafc n\u00e9t, g\u00f3c xem r\u1ed9ng, nhi\u1ec1u t\u00ednh n\u0103ng b\u1ed5 tr\u1ee3, \u0111\u1ea7y \u0111\u1ee7 m\u1eabu m\u00e3 m\u1edbi nh\u1ea5t.<\/p>", + "children": [] + }, + { + "id": "3288", + "title": "Webcam Logitech", + "parentId": "3287", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3288_1697104994.png", + "isParent": "0", + "url": "\/webcam-logitech", + "is_featured": "0", + "summary": "

    Webcam Logitech si\u00eau n\u00e9t, h\u00ecnh \u1ea3nh r\u00f5 r\u00e0ng, t\u1ea7m nh\u00ecn xa, ph\u1ea1m vi quan s\u00e1t r\u1ed9ng, t\u01b0\u01a1ng th\u00edch t\u1ed1t, d\u1ec5 d\u00e0ng l\u1eafp \u0111\u1eb7t, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3302", + "title": "Webcam Genius", + "parentId": "3287", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3302_1697105206.png", + "isParent": "0", + "url": "\/webcam-genius", + "is_featured": "0", + "summary": "

    Webcam Genius si\u00eau n\u00e9t, h\u00ecnh \u1ea3nh r\u00f5 r\u00e0ng, t\u1ea7m nh\u00ecn xa, ph\u1ea1m vi quan s\u00e1t r\u1ed9ng, t\u01b0\u01a1ng th\u00edch t\u1ed1t, d\u1ec5 d\u00e0ng l\u1eafp \u0111\u1eb7t, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + } + ] + }, + { + "id": "1118", + "title": "Pad di chu\u1ed9t", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1118_1697097941.png", + "isParent": "1", + "url": "\/pad-di-chuot", + "is_featured": "0", + "summary": "

    Pad di chu\u1ed9t ch\u00ednh h\u00e3ng, nhi\u1ec1u k\u00edch c\u1ee1, ch\u1ea5t li\u1ec7u \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3094", + "title": "Thi\u1ebft b\u1ecb chuy\u1ec3n \u0111\u1ed5i", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3094_1697098103.png", + "isParent": "0", + "url": "\/thiet-bi-chuyen-doi", + "is_featured": "0", + "summary": "

    Thi\u1ebft b\u1ecb chuy\u1ec3n \u0111\u1ed5i linh ho\u1ea1t, t\u01b0\u01a1ng th\u00edch t\u1ed1t, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3341", + "title": "Microphones", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3341_1697098343.png", + "isParent": "0", + "url": "\/microphones", + "is_featured": "0", + "summary": "

    Microphones \u0111\u1ed9 nh\u1ea1y cao, kh\u1eed \u1ed3n tuy\u1ec7t \u0111\u1ed1i, t\u01b0\u01a1ng th\u00edch t\u1ed1t, d\u1ec5 d\u00e0ng l\u1eafp \u0111\u1eb7t, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3383", + "title": "Tay c\u1ea7m ch\u01a1i Game", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3383_1697098433.png", + "isParent": "0", + "url": "\/tay-game", + "is_featured": "0", + "summary": "

    Tay Game ch\u00ednh h\u00e3ng, gi\u00e1 t\u1ed1t, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + }, + { + "id": "3411", + "title": "B\u00e0n GAMING", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3411_1697098613.png", + "isParent": "0", + "url": "\/ban-gaming", + "is_featured": "0", + "summary": "

    B\u00e0n GAMING gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p,khung d\u00e0y ch\u1eafc ch\u1eafn, \u0111\u1ea7y \u0111\u1ee7 k\u00edch c\u1ee1, h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t t\u1ea1i nh\u00e0 mi\u1ec5n ph\u00ed<\/p>", + "children": [] + }, + { + "id": "3413", + "title": "Thi\u1ebft B\u1ecb Studio, Stream", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3413_1697098872.png", + "isParent": "0", + "url": "\/thiet-bi-studio-stream", + "is_featured": "0", + "summary": "

    Thi\u1ebft B\u1ecb Studio, Stream<\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "1159", + "title": "Combo Gear", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_1159_1697099107.png", + "isParent": "0", + "url": "\/combo-chuot-phim-tai-nghe", + "is_featured": "0", + "summary": "

    Combo gear ch\u00ednh h\u00e3ng, ch\u1ea5t l\u01b0\u1ee3ng si\u00eau b\u1ec1n v\u1edbi nhi\u1ec1u m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3412", + "title": "Ph\u1ee5 Ki\u1ec7n GAMING Kh\u00e1c", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3412_1697100350.png", + "isParent": "0", + "url": "\/phu-kien-gaming-khac", + "is_featured": "0", + "summary": "

    C\u00e1c lo\u1ea1i Ph\u1ee5 Ki\u1ec7n GAMING Kh\u00e1c, gi\u00e1 t\u1ed1t v\u1edbi nhi\u1ec1u thi\u1ebft k\u1ebf \u0111\u1eb9p, \u0111\u1ea7y \u0111\u1ee7 m\u1eabu m\u00e3, c\u00f3 h\u1ed7 mua tr\u1ee3 tr\u1ea3 g\u00f3p th\u1ee7 t\u1ee5c nhanh g\u1ecdn<\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3590", + "title": "GH\u1ebe C\u00d4NG TH\u00c1I H\u1eccC", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3590_1697102488.png", + "isParent": "0", + "url": "\/ghe-cong-thai-hoc", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3597", + "title": "GH\u1ebe MASSAGE", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3597_1697102704.png", + "isParent": "0", + "url": "\/ghe-massage", + "is_featured": "0", + "summary": "

    <\/p>\r\n

    <\/div>", + "children": [] + }, + { + "id": "3661", + "title": "M\u00c1Y CH\u1ea0Y B\u1ed8", + "parentId": "410", + "thumnail": "", + "big_image": "https://nguyencongpc.vn\/media\/category\/cat_big_3661_1697102782.png", + "isParent": "0", + "url": "\/may-chay-bo", + "is_featured": "0", + "summary": "", + "children": [] + } + ] + }, + { + "id": "1751", + "title": "THI\u1ebeT B\u1eca M\u1ea0NG", + "parentId": "0", + "thumnail": "https://nguyencongpc.vn\/media\/category\/cat_icon_1751_1646708646.png", + "big_image": "", + "isParent": "0", + "url": "\/thiet-bi-mang", + "is_featured": "0", + "summary": "

    Thi\u1ebft b\u1ecb m\u1ea1ng t\u1ed1c \u0111\u1ed9 cao, b\u0103ng th\u00f4ng r\u1ed9ng, s\u00f3ng kh\u1ecfe, t\u01b0\u01a1ng th\u00edch t\u1ed1t, m\u1eabu m\u00e3 \u0111a d\u1ea1ng, \u0111\u1ea7y \u0111\u1ee7 c\u00e1c d\u00f2ng s\u1ea3n ph\u1ea9m m\u1edbi nh\u1ea5t ph\u1ee5c v\u1ee5 m\u1ecdi nhu c\u1ea7u c\u1ee7a qu\u00fd kh\u00e1ch.<\/p>", + "children": [] + } + ] + } + } +] + + + + diff --git a/src/components/layout/homepage/BoxProductDeal.tsx b/src/components/layout/homepage/BoxProductDeal.tsx new file mode 100644 index 0000000..4b2434d --- /dev/null +++ b/src/components/layout/homepage/BoxProductDeal.tsx @@ -0,0 +1,6 @@ +'use client'; +import React from 'react'; + +const BoxProductDeal: React.FC = () => {}; + +export default BoxProductDeal; diff --git a/src/components/layout/homepage/SliderHome.tsx b/src/components/layout/homepage/SliderHome.tsx new file mode 100644 index 0000000..997e5a5 --- /dev/null +++ b/src/components/layout/homepage/SliderHome.tsx @@ -0,0 +1,62 @@ +'use client'; +import React from 'react'; +import { Swiper, SwiperSlide } from 'swiper/react'; +import { Autoplay, Navigation, Pagination } from 'swiper/modules'; +import Image from 'next/image'; +import Link from 'next/link'; +import { bannerData } from './bannerData'; + +const SliderHome: React.FC = () => { + // data banner slider + const dataSlider = bannerData[0].homepage; + + return ( + <> + + {dataSlider?.banner_slider_homepage_main?.map((banner, index) => ( + + + {banner.title} + + + ))} + + + {dataSlider?.banner_under_slider_trangchu?.map((banner, index) => ( + + + {banner.title} + + + ))} + + + ); +}; + +export default SliderHome; diff --git a/src/components/layout/homepage/bannerData.ts b/src/components/layout/homepage/bannerData.ts new file mode 100644 index 0000000..959b7f9 --- /dev/null +++ b/src/components/layout/homepage/bannerData.ts @@ -0,0 +1,645 @@ +import { BannerType } from "@/src/types/Banner"; + + +export const bannerData: BannerType = [ + { + footer: { + "banner_feedback": [ + { + "id": "196", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/14_Feb499f6fcf67f5520d1a7eb5c2e316d7ca.jpg", + "desUrl": "\/ad.php?id=196", + "title": "", + "width": 790, + "height": 400, + "fileType": "", + "summary": "" + }, + { + "id": "188", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/13_Febfe8f184d41a91df0d0f4fe433afb4a30.jpg", + "desUrl": "\/ad.php?id=188", + "title": "", + "width": 790, + "height": 400, + "fileType": "", + "summary": "" + }, + { + "id": "189", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/13_Feb231f8f3ef1ee2d9605570a98f8b9d853.jpg", + "desUrl": "\/ad.php?id=189", + "title": "", + "width": 790, + "height": 400, + "fileType": "", + "summary": "" + }, + { + "id": "190", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/13_Feb815db13ba0e07cce7e5dbc99c3211970.jpg", + "desUrl": "\/ad.php?id=190", + "title": "", + "width": 790, + "height": 400, + "fileType": "", + "summary": "" + }, + { + "id": "191", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/13_Febbfe1281e7c753c3c0b844d2bacf7a3bd.jpg", + "desUrl": "\/ad.php?id=191", + "title": "", + "width": 790, + "height": 400, + "fileType": "", + "summary": "" + }, + { + "id": "192", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/13_Feb7ac521b18c28f89be733d85f4e7ea2c0.jpg", + "desUrl": "\/ad.php?id=192", + "title": "", + "width": 790, + "height": 400, + "fileType": "", + "summary": "" + }, + { + "id": "193", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/13_Feb4a9811eda56defbf8b032a1429876515.jpg", + "desUrl": "\/ad.php?id=193", + "title": "", + "width": 790, + "height": 400, + "fileType": "", + "summary": "" + } + ], + "banner_column_right": [ + { + "id": "285", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/29_Nov87b09c002980d1cbc1ba4f911dcf34fc.webp", + "desUrl": "\/ad.php?id=285", + "title": "", + "width": 600, + "height": 1812, + "fileType": "", + "summary": "" + } + ], + "banner_column_left": [ + { + "id": "286", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/01_Dec18c0af23ff50e3acf958695c258d4f6e.webp", + "desUrl": "\/ad.php?id=286", + "title": "", + "width": 600, + "height": 1812, + "fileType": "", + "summary": "" + } + ] + }, + header: { + "banner_buildpc": [ + { + "id": "406", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/11_Novf4f82c644b6ea5fbeb0ef6fc5ceb9c08.jpg", + "desUrl": "\/ad.php?id=406", + "title": "", + "width": 2360, + "height": 316, + "fileType": "1", + "summary": "" + }, + { + "id": "490", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Decf1b77a9ec940fcf31fa7359fe29e35f1.webp", + "desUrl": "\/ad.php?id=490", + "title": "", + "width": 1200, + "height": 161, + "fileType": "", + "summary": "" + }, + { + "id": "489", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Dec65c8fe933bee00be5c1c70f1f3f46085.webp", + "desUrl": "\/ad.php?id=489", + "title": "", + "width": 1200, + "height": 161, + "fileType": "", + "summary": "" + } + ], + "banner_header_top_mb_2023": [ + { + "id": "393", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/01_Deca35f147ff1e98fd991ac841136f42d66.webp", + "desUrl": "\/ad.php?id=393", + "title": "", + "width": 695, + "height": 67, + "fileType": "", + "summary": "" + }, + { + "id": "459", + "display": "\r\n\"Banner<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/01_Dec515584a8a6e976d27def69db45dbb176.webp", + "desUrl": "\/ad.php?id=459", + "title": "Banner tuy\u1ec3n d\u1ee5ng", + "width": 695, + "height": 67, + "fileType": "", + "summary": "" + } + ], + "banner_header_top": [ + { + "id": "429", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/01_Decc0f3e158e61fabaf09a74d48e1c357bd.webp", + "desUrl": "\/ad.php?id=429", + "title": "", + "width": 1909, + "height": 57, + "fileType": "", + "summary": "" + }, + { + "id": "392", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/01_Dec383fdcbc6361363bd6d14f05d2c88ee2.webp", + "desUrl": "\/ad.php?id=392", + "title": "", + "width": 1909, + "height": 57, + "fileType": "", + "summary": "" + } + ], + "banner_page_deal_2023": [ + { + "id": "299", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/16_Jan0020c1620255554792b53307703d1377.jpg", + "desUrl": "\/ad.php?id=299", + "title": "", + "width": 1500, + "height": 415, + "fileType": "banner", + "summary": "" + } + ], + "banner_column_left": [ + { + "id": "283", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/11_Aug8d0ed894020346db278b6035ca259ac3.png", + "desUrl": "\/ad.php?id=283", + "title": "", + "width": 103, + "height": 309, + "fileType": "", + "summary": "" + } + ], + "banner_column_right": [ + { + "id": "284", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/11_Augc702ee207c9927f84d0b6b8fb3551c45.png", + "desUrl": "\/ad.php?id=284", + "title": "", + "width": 103, + "height": 309, + "fileType": "", + "summary": "" + } + ] + }, + homepage: { + slider_home: [ + { + "id": "279", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/24_Augc1567e876be9163f19bc323a79c73808.jpg", + "desUrl": "\/ad.php?id=279", + "title": "", + "width": 851, + "height": 512, + "fileType": "banner", + "summary": "" + }, + { + "id": "260", + "display": "\r\n\"m\u00e0n<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/05_Jun639c4383913d27dcba82037f811c2fc8.avif", + "desUrl": "\/ad.php?id=260", + "title": "m\u00e0n h\u00ecnh gi\u00e1 c\u1ef1c t\u1ed1t", + "width": 851, + "height": 512, + "fileType": "banner", + "summary": "" + }, + { + "id": "253", + "display": "\r\n\"mua<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/05_Jun53d07914e5c6b10cb6c90ab6d0764a48.avif", + "desUrl": "\/ad.php?id=253", + "title": "mua tai nghe t\u1eb7ng qu\u00e0 si\u00eau hot c\u00f9ng asus", + "width": 851, + "height": 512, + "fileType": "banner", + "summary": "" + }, + { + "id": "251", + "display": "\r\n\"laptop<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/05_Jun420b2ba2878f28d1111a1770cfb6abfc.avif", + "desUrl": "\/ad.php?id=251", + "title": "laptop gigabyte si\u00eau \u01b0u \u0111\u00e3i", + "width": 851, + "height": 512, + "fileType": "banner", + "summary": "" + }, + { + "id": "224", + "display": "\r\n\"NCPC<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/05_Jun36c372c6e8f32efb5b72783f23feb186.avif", + "desUrl": "\/ad.php?id=224", + "title": "NCPC AMD", + "width": 851, + "height": 512, + "fileType": "banner", + "summary": "" + }, + { + "id": "171", + "display": "\r\n\"sale<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/11_Julbe8ebc111daa95ecfb856db2bbc0f6ca.jpg", + "desUrl": "\/ad.php?id=171", + "title": "sale cpu gi\u00e1 s\u1eadp s\u00e0n", + "width": 851, + "height": 512, + "fileType": "", + "summary": "" + } + ], + banner_under_slider_trangchu: [ + { + "id": "491", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/11_Dece4857620cf7d184a9d3936fe4eecdc36.jpg", + "desUrl": "\/ad.php?id=491", + "title": "", + "width": 1188, + "height": 322, + "fileType": "1", + "summary": "" + }, + { + "id": "492", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/12_Deca20095da1a168b02a30025be35d237b9.webp", + "desUrl": "\/ad.php?id=492", + "title": "", + "width": 1188, + "height": 322, + "fileType": "banner", + "summary": "" + }, + { + "id": "394", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Decc36a9d8d65ea1c144035372aed745741.webp", + "desUrl": "\/ad.php?id=394", + "title": "", + "width": 1188, + "height": 322, + "fileType": "", + "summary": "" + }, + { + "id": "465", + "display": "\r\n\"Banner<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Dec011428052819ba7366c840251d137c3b.webp", + "desUrl": "\/ad.php?id=465", + "title": "Banner build PC", + "width": 594, + "height": 161, + "fileType": "", + "summary": "" + }, + { + "id": "481", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/10_Sep8385f8a9ebfdbe7b458305ff37501d34.jpg", + "desUrl": "\/ad.php?id=481", + "title": "", + "width": 594, + "height": 161, + "fileType": "banner", + "summary": "" + }, + { + "id": "461", + "display": "\r\n\"PC-V\u0103n-Ph\u00f2ng\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/05_Juna4d65cc940a1d9c49f480f7a9f657d08.jpg", + "desUrl": "\/ad.php?id=461", + "title": "PC-V\u0103n-Ph\u00f2ng", + "width": 594, + "height": 161, + "fileType": "", + "summary": "" + }, + { + "id": "483", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/10_Oct22fa126f13f9570bea797e94cbf56a97.jpg", + "desUrl": "\/ad.php?id=483", + "title": "", + "width": 2368, + "height": 640, + "fileType": "1", + "summary": "" + }, + { + "id": "484", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/10_Dec28dc7805471758017b6d35df068f8cb2.webp", + "desUrl": "\/ad.php?id=484", + "title": "", + "width": 1000, + "height": 271, + "fileType": "banner", + "summary": "" + }, + { + "id": "486", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/14_Novec0d3a223da7bc911d7f552ec03b5d41.jpg", + "desUrl": "\/ad.php?id=486", + "title": "", + "width": 1000, + "height": 271, + "fileType": "1", + "summary": "" + }, + { + "id": "494", + "display": "\"\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/16_Decac1ad4e087162c861dd29e24a52b16b5.webp", + "desUrl": "\/ad.php?id=494", + "title": "", + "width": 1188, + "height": 322, + "fileType": "1", + "summary": "" + } + ], + banner_slider_mobile_2023: [ + { + "id": "358", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/08_Dec42942cfd2c8d57ce55e7f436291cff20.jpg", + "desUrl": "\/ad.php?id=358", + "title": "", + "width": 1538, + "height": 744, + "fileType": "", + "summary": "" + } + ], + banner_product_category: [ + { + "id": "297", + "display": "\r\n\"277\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/01_Jul6c180927820e683f758cb146a18e89d8.jpg", + "desUrl": "\/ad.php?id=297", + "title": "277", + "width": 1201, + "height": 161, + "fileType": "banner", + "summary": "" + } + ], + banner_slider_homepage_main: [ + { + "id": "291", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/08_Dec46cb8ed4b30c59ee06a4010d1491caf3.webp", + "desUrl": "\/ad.php?id=291", + "title": "", + "width": 1500, + "height": 426, + "fileType": "", + "summary": "" + } + ], + banner_underslider_trangchu_mobile: [ + { + "id": "493", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/12_Dec960e661cc3007d40210dc449562e8cb4.webp", + "desUrl": "\/ad.php?id=493", + "title": "", + "width": 1538, + "height": 448, + "fileType": "banner", + "summary": "" + }, + { + "id": '400', + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Dece61807a2c9c98fbf6df2b30f5dbe5c9a.jpg", + "desUrl": "\/ad.php?id=400", + "title": "", + "width": 1538, + "height": 448, + "fileType": "1", + "summary": "" + }, + { + "id": "466", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/14_Nov5f56ffcefe6a47200d17733246d3ab04.webp", + "desUrl": "\/ad.php?id=466", + "title": "", + "width": 769, + "height": 224, + "fileType": "", + "summary": "" + }, + { + "id": "397", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Dec2587b97c4cb08c46d195bacf675fa933.webp", + "desUrl": "\/ad.php?id=397", + "title": "", + "width": 1538, + "height": 448, + "fileType": "", + "summary": "" + }, + { + "id": "395", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Dec9a01020b2317cb3ba49586af6c9f7005.webp", + "desUrl": "\/ad.php?id=395", + "title": "", + "width": 1538, + "height": 448, + "fileType": "", + "summary": "" + }, + { + "id": "462", + "display": "\r\n\"PCVP-mobile\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/05_Junab6cdd7abf3dc9d00c4e5615caf68ae9.jpg", + "desUrl": "\/ad.php?id=462", + "title": "PCVP-mobile", + "width": 769, + "height": 224, + "fileType": "", + "summary": "" + } + ], + banner_bot_home: [ + { + "id": "74", + "display": "\r\n\"D\u1ecbch<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Auge40067f94bca8b5dcbc47a28e5d75e0e.jpg", + "desUrl": "\/ad.php?id=74", + "title": "D\u1ecbch v\u1ee5 b\u1ea3o h\u00e0nh m\u00e1y t\u00ednh si\u00eau t\u1ed1c", + "width": 421, + "height": 250, + "fileType": "banner", + "summary": "D\u1ecbch v\u1ee5 b\u1ea3o h\u00e0nh si\u00eau t\u1ed1c 1 \u0111\u1ed5i 1: V\u1edbi c\u00e1c s\u1ea3n ph\u1ea9m \u0111\u01b0\u1ee3c ph\u00e2n ph\u1ed1i b\u1edfi Nguy\u1ec5n C\u00f4ng PC s\u1ebd \u0111\u01b0\u1ee3c cam k\u1ebft 1 ..." + }, + { + "id": "73", + "display": "\r\n\"H\u1ed7<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Aug55a6088409dc421d3390179a7712c5cd.jpg", + "desUrl": "\/ad.php?id=73", + "title": "H\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p", + "width": 421, + "height": 250, + "fileType": "banner", + "summary": "M\u00e1y t\u00ednh Nguy\u1ec5n C\u00f4ng s\u1ebd h\u1ed7 tr\u1ee3 mua tr\u1ea3 g\u00f3p online v\u1edbi nh\u1eefng kh\u00e1ch h\u00e0ng s\u1edf h\u1eefu th\u1ebb ghi n\u1ee3 n\u1ed9i \u0111\u1ecba (VISA\/MASTER\/JCB) \u0111\u01b0\u1ee3c ph\u00e1t h\u00e0nh b\u1edfi m\u1ed9t trong c\u00e1c ng\u00e2n h\u00e0ng Citibank, ..." + }, + { + "id": "127", + "display": "\r\n\"Ch\u01b0\u01a1ng<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Aug9c6a33a9de23f9ee17a345a30b989d60.jpg", + "desUrl": "\/ad.php?id=127", + "title": "Ch\u01b0\u01a1ng tr\u00ecnh sale cpu", + "width": 421, + "height": 250, + "fileType": "", + "summary": "" + }, + { + "id": "140", + "display": "\r\n\"m\u00e0n<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Augbf48ab9cd4431c53d804405df0685f03.jpg", + "desUrl": "\/ad.php?id=140", + "title": "m\u00e0n h\u00ecnh ch\u00ednh h\u00e3ng", + "width": 421, + "height": 250, + "fileType": "", + "summary": "" + } + ], + banner_mid_home: [ + { + "id": "86", + "display": "\r\n\"Laptop<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Augfcc9fb432f0f13cca14b830b8c0f3a7b.jpg", + "desUrl": "\/ad.php?id=86", + "title": "Laptop gaming mu\u00f4n v\u00e0n gi\u00e1 s\u1ed1c", + "width": 421, + "height": 250, + "fileType": "banner", + "summary": "Mua laptop gaming ch\u00ednh h\u00e3ng, gi\u00e1 r\u1ebb t\u1eeb c\u00e1c th\u01b0\u01a1ng hi\u1ec7u n\u1ed5i ti\u1ebfng nh\u01b0: Acer, Asus, HP, MSI, Dell, Lenovo, \u0111\u1ed5i m\u1edbi trong v\u00f2ng 7 ng\u00e0y - Mi\u1ec5n ph\u00ed n\u00e2ng c\u1ea5p RAM ..." + }, + { + "id": "85", + "display": "\r\n\"Laptop<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Auge66ba57e695249705f3e4fb06a97cf81.jpg", + "desUrl": "\/ad.php?id=85", + "title": "Laptop v\u0103n ph\u00f2ng", + "width": 421, + "height": 250, + "fileType": "", + "summary": "Laptop v\u0103n ph\u00f2ng Acer, Asus, HP, MSI ch\u00ednh h\u00e3ng gi\u00e1 r\u1ebb. Mua online t\u1ea1i NGUYENCONG giao h\u00e0ng to\u00e0n qu\u1ed1c - H\u1ed7 tr\u1ee3 tr\u1ea3 g\u00f3p 0%. Xem ngay!" + }, + { + "id": "128", + "display": "\r\n\"build<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Aug199ab2453bb196abad65eee2dcb86c89.jpg", + "desUrl": "\/ad.php?id=128", + "title": "build pc", + "width": 421, + "height": 250, + "fileType": "banner", + "summary": "" + } + ], + banner_right_home: [ + { + "id": "2", + "display": "\"Video\"\/", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/22_Oct35b55e8600025c38ca65ddd9aec06e74.jpg", + "desUrl": "\/ad.php?id=2", + "title": "Video", + "width": 421, + "height": 250, + "fileType": "banner", + "summary": "E80Xj9oD2Yo" + }, + { + "id": "216", + "display": "\r\n\"thu<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/02_Augf62bb067892116a818d10e4edd030b7b.jpg", + "desUrl": "\/ad.php?id=216", + "title": "thu m\u00e1y t\u00ednh c\u0169 \u0111\u1ed5i m\u1edbi m\u00e1y t\u00ednh m\u1edbi", + "width": 421, + "height": 250, + "fileType": "", + "summary": "" + } + ], + banner_collection_pc: [ + { + "id": "433", + "display": "\r\n\"\"\/<\/a>", + "fileUrl": "https://nguyencongpc.vn\/media\/banner\/10_Junbf5b7840a8b53bc96c3e785d54580559.webp", + "desUrl": "\/ad.php?id=433", + "title": "", + "width": 500, + "height": 500, + "fileType": "", + "summary": "" + } + ] + } + } +] \ No newline at end of file diff --git a/src/styles/globals.css b/src/styles/globals.css new file mode 100644 index 0000000..1b831b3 --- /dev/null +++ b/src/styles/globals.css @@ -0,0 +1,6282 @@ +@import 'tailwindcss'; +@plugin 'daisyui'; +@import 'swiper/css'; +@import 'swiper/css/navigation'; +@import 'swiper/css/pagination'; + +:root { + --background: #ffffff; + --foreground: #171717; + --green: #36ac4a; + --red: #e31223; + --color-primary: #0f5b99; + --white: #fff; + --black: #000; +} +.color-primary { + color: var(--color-primary); +} +.color-white { + color: var(--white); + font-style: normal; +} +.color-black { + color: var(--black); +} +.color-red { + color: var(--red); +} +.color-green { + color: var(--green); +} +.bg-white { + background: #fff; +} +.bg-gray { + background: #f4f4f4; +} +*, +::after, +::before { + margin: 0; + padding: 0; + -webkit-box-sizing: inherit; + box-sizing: inherit; +} +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --font-sans: var(--font-geist-sans); + --font-mono: var(--font-geist-mono); +} + +@media (prefers-color-scheme: dark) { + :root { + --background: #0a0a0a; + --foreground: #ededed; + } +} + +body { + background: var(--background); + color: var(--foreground); + font-family: 'SF Pro Display', sans-serif; + line-height: 18px; + font-weight: 400; + color: rgb(70, 70, 70); + background-color: rgb(255, 255, 255); + min-width: 1220px; + word-break: break-word; +} +html { + font-size: 14px; + scroll-behavior: smooth; + line-height: 16px; +} +a, +a:hover { + color: inherit; + -webkit-transition: color 0.2s ease-out; + -o-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; + outline: 0; + text-decoration: none; +} +a:hover { + color: var(--color-primary); +} +li, +ol, +ul { + list-style: none; +} +.position-relative { + position: relative; +} +table { + border-collapse: collapse; + width: 100%; +} +.w-100 { + width: 100% !important; +} +.w-50 { + width: 50%; +} +.fz-16 { + font-size: 16px; +} +.mb-10 { + margin-bottom: 10px; +} +.mt-10 { + margin-top: 10px; +} +.mt-12 { + margin-top: 12px; +} +.mb-0 { + margin-bottom: 0 !important; +} +.gap-4 { + gap: 4px; +} +.gap-6 { + gap: 6px; +} +.gap-8 { + gap: 8px; +} +.gap-10 { + gap: 10px; +} +.gap-16 { + gap: 16px; +} +.gap-12 { + gap: 12px; +} +.gap-14 { + gap: 14px; +} +.gap-20 { + gap: 20px; +} +.pt-12 { + padding-top: 12px !important; +} +.text-center { + text-align: center; +} +img { + display: block; + max-width: 100%; + height: auto; +} +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-moz-placeholder, +textarea::-moz-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-ms-input-placeholder, +textarea::-ms-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-moz-placeholder, +textarea::-moz-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-ms-input-placeholder, +textarea::-ms-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-moz-placeholder, +textarea::-moz-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input::-ms-input-placeholder, +textarea::-ms-input-placeholder { + font-family: 'SF Pro Display', sans-serif; +} +input, +input::placeholder, +select, +textarea, +textarea::placeholder { + font-family: 'SF Pro Display', sans-serif; +} +.nd { + font-size: 13pt; + line-height: 1.5; + text-align: justify; +} +.nd h1 { + display: block; + font-size: 2em; + -webkit-margin-before: 0.67em; + -webkit-margin-after: 0.67em; + -webkit-margin-start: 0; + -webkit-margin-end: 0; + font-weight: 700; + margin: 0.67em 0; +} +.nd h2 { + display: block; + font-size: 1.5em; + -webkit-margin-before: 0.83em; + -webkit-margin-after: 0.83em; + -webkit-margin-start: 0; + -webkit-margin-end: 0; + font-weight: 700; + margin: 0.83em 0; +} +.nd h4 { + display: block; + -webkit-margin-before: 1.33em; + -webkit-margin-after: 1.33em; + -webkit-margin-start: 0; + -webkit-margin-end: 0; + font-weight: 700; + font-size: 1em; +} +.nd ul { + padding-left: 40px !important; + margin: 1em 0; + list-style: initial; +} +.nd ol li, +.nd ul li { + list-style: initial !important; +} +.nd ol { + padding-left: 40px !important; + margin: 1em 0; + list-style: decimal !important; +} +.nd ol li { + list-style-type: decimal !important; +} +.nd p { + margin: 12px 0; + font-size: 17px !important; + line-height: 25px !important; +} +.nd span { + font-size: 17px !important; + line-height: 25px !important; +} +.nd table { + border-collapse: collapse; +} +.nd table td, +.nd table th { + border: solid 1px #ddd; + padding: 5px; +} +.nd a { + color: #4285f4; +} +.nd { + line-height: 1.45; +} +.nd table td img { + max-width: 9999px; +} +.nd h1 { + font-size: 24px; +} +.nd h2 { + font-size: 22px; +} +.nd h3 { + font-size: 20px; +} +.nd h4 { + font-size: 18px; +} +.border-error { + border: 2px solid red !important; +} +.font-weight-400 { + font-weight: 400; +} +.font-weight-500 { + font-weight: 500; +} +.font-weight-600 { + font-weight: 600; +} +.font-weight-700 { + font-weight: 700; +} +.font-weight-800 { + font-weight: 800; +} +.boder-radius-10 { + border-radius: 10px; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + -o-border-radius: 10px; +} +.line-clamp-1 { + -webkit-line-clamp: 1; + -webkit-box-orient: vertical; + overflow: hidden; + display: -webkit-box; +} +.line-clamp-2 { + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + overflow: hidden; + display: -webkit-box; +} +.line-clamp-3 { + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + overflow: hidden; + display: -webkit-box; +} +.line-clamp-6 { + -webkit-line-clamp: 6; + -webkit-box-orient: vertical; + overflow: hidden; + display: -webkit-box; +} +.d-block { + display: block !important; +} +.d-none, +.hide { + display: none !important; +} +.grid { + display: -ms-grid; + display: grid; + gap: 12px; +} +.grid--product-info { + -ms-grid-columns: 2fr 1fr; + grid-template-columns: 2fr 1fr; +} +.grid--product-details { + -ms-grid-columns: 3fr 1fr; + grid-template-columns: 3fr 1fr; +} +.grid--product-details-inside { + -ms-grid-columns: 5.13fr 6.48fr; + grid-template-columns: 7fr 5.76fr; +} +.d-flex { + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} +.align-items-end { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; +} +.flex-1 { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; +} +.order-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; +} +.align-items-start { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; +} +.align-items-center { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} +.justify-content-end { + -ms-flex-pack: end !important; + -webkit-box-pack: end !important; + justify-content: flex-end !important; +} +.justify-content-center { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} +.justify-content-between { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} +.justify-content-around { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-around; +} +.flex-around { + -ms-flex-pack: distribute; + justify-content: space-around; +} +.flex-column { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; +} +.flex-row { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; +} +.flex-wrap { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-wrap: row; + flex-wrap: wrap; +} +.swiper-button-next, +.swiper-button-prev { + width: 28px !important; + height: 44px !important; + background: #d9d9d9; + opacity: 0.5; +} +.swiper-button-prev { + transform: translateX(-10px); + -webkit-transform: translateX(-10px); + -moz-transform: translateX(-10px); + -ms-transform: translateX(-10px); + -o-transform: translateX(-10px); +} +.swiper-button-next { + -webkit-transform: translateX(10px); + -ms-transform: translateX(10px); + transform: translateX(10px); +} +.swiper-button-next::after, +.swiper-button-prev::after { + font-size: 18px !important; + color: var(--black); +} +.swiper { + width: 100%; + height: 100%; + margin-left: auto; + margin-right: auto; +} +.swiper-slide img { + display: block; + width: 100%; +} +.swiper-pagination-bullet { + width: 12px !important; + height: 12px !important; + background: #0009 !important; + opacity: 1 !important; +} +.swiper-pagination-bullet-active { + background: #0f5b9a !important; + width: 42px !important; + height: 12px !important; + border-radius: 10px !important; +} +.swiper-slide-thumb-active { + border: 1px solid var(--color-primary) !important; +} +.container { + max-width: 1224px; + padding: 0 12px; + margin: 0 auto; +} +.box-empty { + font-size: 32px; + line-height: 36px; + padding: 40px 0; + color: #0f5b99; + width: 100%; +} +.static-html a, +.static-html b, +.static-html h1, +.static-html h2, +.static-html h3, +.static-html h4, +.static-html h5, +.static-html h6, +.static-html ol, +.static-html p, +.static-html span, +.static-html strong, +.static-html ul { + padding: revert !important; + font-family: 'SF Pro Display', sans-serif; + line-height: 26px; + font-size: 16px !important; +} +.static-html a { + color: #4285f4; +} +@-webkit-keyframes shake { + 0% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } + 10% { + -webkit-transform: rotate(-25deg) scale(1) skew(1deg); + } + 20% { + -webkit-transform: rotate(25deg) scale(1) skew(1deg); + } + 30% { + -webkit-transform: rotate(-25deg) scale(1) skew(1deg); + } + 40% { + -webkit-transform: rotate(25deg) scale(1) skew(1deg); + } + 50% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } + 100% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } +} +@keyframes shake { + 0% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } + 10% { + -webkit-transform: rotate(-25deg) scale(1) skew(1deg); + } + 20% { + -webkit-transform: rotate(25deg) scale(1) skew(1deg); + } + 30% { + -webkit-transform: rotate(-25deg) scale(1) skew(1deg); + } + 40% { + -webkit-transform: rotate(25deg) scale(1) skew(1deg); + } + 50% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } + 100% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } +} +@-webkit-keyframes gradient { + 0% { + background-position: 0 0; + } + 100% { + background-position: -200% 0; + } +} +@keyframes gradient { + 0% { + background-position: 0 0; + } + 100% { + background-position: -200% 0; + } +} +.success-form-svg { + display: block; + height: 80px; + width: 80px; + color: #0f5b99; +} +.circle { + stroke-dasharray: 76; + stroke-dashoffset: 76; + -webkit-animation: draw 0.5s forwards; + animation: draw 0.5s forwards; +} +.tick { + stroke-dasharray: 18; + stroke-dashoffset: 18; + -webkit-animation: draw 0.5s forwards 0.6s; + animation: draw 0.5s forwards 0.6s; +} +@-webkit-keyframes draw { + to { + stroke-dashoffset: 0; + } +} +@keyframes draw { + to { + stroke-dashoffset: 0; + } +} +@-webkit-keyframes phonering { + 0% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } + 10% { + -webkit-transform: rotate(-25deg) scale(1) skew(1deg); + } + 20% { + -webkit-transform: rotate(25deg) scale(1) skew(1deg); + } + 30% { + -webkit-transform: rotate(-25deg) scale(1) skew(1deg); + } + 40% { + -webkit-transform: rotate(25deg) scale(1) skew(1deg); + } + 50% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } + 100% { + -webkit-transform: rotate(0) scale(1) skew(1deg); + } +} +.global-fixed-right a { + font-size: 22px; + width: 45px; + height: 45px; + position: fixed; + border-radius: 50%; + z-index: 999; + -webkit-transition: 0.4s all; + -o-transition: 0.4s all; + transition: 0.4s all; + right: 10px; + color: #fff; +} +.global-fixed-right .fix-face { + bottom: 300px; + background: #4267b2; +} +.global-fixed-right .fix-youtube { + bottom: 250px; + background: red; +} +.global-fixed-right .scroll-top-btn { + bottom: 200px; + background: var(--swiper-theme-color); + border: 1px solid var(--swiper-theme-color); + color: #fff; +} +.global-fixed-right .messenger { + background: #fff; + bottom: 50px; + width: 170px; + padding: 10px; + border-radius: 15px; + -webkit-box-shadow: 0 1px 2px 1px #01010133; + box-shadow: 0 1px 2px 1px #01010133; + color: #007bff; + font-size: 14px; + height: 65px; +} +.global-fixed-right .messenger img { + width: 40px; + height: 40px; + margin-right: 10px; +} +.global-fixed-right .scroll-top-btn:hover { + color: #fff; + background: var(--swiper-theme-color); + border: none; +} +.global-fixed-left { + position: fixed; + left: 20px; + bottom: 50px; + width: 80px; + z-index: 9999; +} +.global-fixed-left .fixed sale { + width: 56px; + height: 56px; + position: relative; + cursor: pointer; + -webkit-box-shadow: 0 3px 10px 0 #000; + box-shadow: 0 3px 10px 0 #000; + -webkit-animation: uptocallmini_offline 2s 0 cubic-bezier(0.42, 0, 0.2, 0.8) infinite; + animation: uptocallmini_offline 2s 0 cubic-bezier(0.42, 0, 0.2, 0.8) infinite; + border-radius: 50% !important; +} +@-webkit-keyframes uptocallmini_offline { + 0% { + -webkit-box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 0 transparent, + 0 0 0 0 rgba(53, 161, 32, 0); + box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 0 transparent, + 0 0 0 0 rgba(53, 161, 32, 0); + } + 10% { + -webkit-box-shadow: + 0 0 8px 6px #35a120, + 0 0 12px 10px transparent, + 0 0 12px 14px #35a120; + box-shadow: + 0 0 8px 6px #35a120, + 0 0 12px 10px transparent, + 0 0 12px 14px #35a120; + } + 100% { + -webkit-box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 40px transparent, + 0 0 0 40px rgba(53, 161, 32, 0); + box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 40px transparent, + 0 0 0 40px rgba(53, 161, 32, 0); + } +} +@keyframes uptocallmini_offline { + 0% { + -webkit-box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 0 transparent, + 0 0 0 0 rgba(53, 161, 32, 0); + box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 0 transparent, + 0 0 0 0 rgba(53, 161, 32, 0); + } + 10% { + -webkit-box-shadow: + 0 0 8px 6px #1cb2ed, + 0 0 12px 10px transparent, + 0 0 12px 14px #1cb2ed; + box-shadow: + 0 0 8px 6px #1cb2ed, + 0 0 12px 10px transparent, + 0 0 12px 14px #1cb2ed; + } + 100% { + -webkit-box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 40px transparent, + 0 0 0 40px rgba(53, 161, 32, 0); + box-shadow: + 0 0 8px 6px rgba(53, 161, 32, 0), + 0 0 0 40px transparent, + 0 0 0 40px rgba(53, 161, 32, 0); + } +} +.cart-success { + width: 500px; + height: 300px; + background: #fff; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + position: fixed; +} +.text-cart-success { + font-size: 24px; + font-weight: 600; + line-height: 1.6; + padding-top: 30px; + color: var(--color-primary); +} +.ease-015s { + -webkit-transition: all ease 0.15s; + -o-transition: all ease 0.15s; + transition: all ease 0.15s; +} +.success-form { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 99999; + background: rgba(0, 0, 0, 0.5); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} +.global-tooltip, +.tippy-box { + display: none; + position: absolute; + -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + background-color: #fff; + color: #000; + border-radius: 10px; + width: 440px; + z-index: 999; + overflow: hidden; +} +.tooltip-name { + -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + border-radius: 10px 10px 0 0; + padding: 12px; + background: -webkit-gradient( + linear, + left bottom, + left top, + color-stop(10.84%, #0167d5), + color-stop(104.56%, #0f5b99) + ); + background: -o-linear-gradient(bottom, #0167d5 10.84%, #0f5b99 104.56%); + background: linear-gradient(0deg, #0167d5 10.84%, #0f5b99 104.56%); + color: #fff; + font-size: 18px; + line-height: 26px; + text-transform: uppercase; +} +.tooltip-descreption { + margin-top: 16px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding: 0 8px; +} +.tooltip-descreption-price { + padding: 0 12px; + padding-bottom: 6px; +} +.tooltip-descreption-price p { + font-weight: 600; + line-height: 24px; +} +.tooltip-descreption-info { + margin-left: 80px; + color: #105fbd; + font-weight: 600; + line-height: 24px; +} +.tooltip-input { + -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + margin-top: 12px; + background-color: var(--color-primary); + padding-left: 10px; + margin: 0 12px; + font-size: 18px; + color: #fff; + border-radius: 8px; +} +.tooltip-input span { + padding: 10px 0; +} +.box-tooltip-gift { + border: 1px solid #0f5b99; + margin: 0 10px 10px; +} +.tooltip-gift { + background: #fff; + -webkit-box-shadow: unset; + box-shadow: unset; + border-radius: unset; +} +.tooltip-gift .icon-gift { + background: var(--color-primary); + color: #fff; + font-weight: 700; + font-size: 16px; + line-height: 40px; + position: relative; + margin: 6px 0 11px -30px; + max-width: 170px; + width: 100%; + padding-left: 40px; +} +.tooltip-gift .icon-gift::before { + content: ''; + border-top: 8px solid #105fbd; + border-left: 8px solid transparent; + position: absolute; + left: 0; + top: 100%; +} +.tooltip-gift .icon-gift i { + width: 18px; + height: 18px; + background-position: -59px -98px; + position: absolute; + top: 12px; + left: 16px; +} +.tooltip-gift .icon-gift::after { + content: ''; + width: 28px; + height: 28px; + background: #fff; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; + top: 6px; + right: -13px; +} +.icon-database { + margin-right: 12px; + padding: 10px; + border: 1px solid var(--color-primary); + border-radius: 10px; + -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); +} +.tooltip-list { + line-height: 24px; + padding: 20px; +} +.tooltip-list ul { + font-size: 14px; + list-style: none; +} +.tooltip-descreption-info .card-price-origin-line-through { + position: absolute; + top: 50%; + left: 0; + width: 100%; + border-bottom: 1px solid #000; +} +.box-tooltip-gift .tooltip-list-gift { + line-height: 20px; + padding: 0 20px 20px; +} +.box-tooltip-gift .tooltip-list-gift p { + margin-bottom: 4px; +} +.sprite { + background-image: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/spritesheet1.png); + background-repeat: no-repeat; + display: block; + background-size: 366px 284px !important; +} +.sprite-more { + background-image: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/sprite_more.png); + background-repeat: no-repeat; + display: block; + background-size: 116.5px 107.5px !important; +} +.sprite-1doi1-detail { + width: 16px; + height: 21px; + background-position: -3px -3px; +} +.sprite-account-header { + width: 25px; + height: 26px; + background-position: -24px -3px; +} +.sprite-article-header { + width: 25px; + height: 21px; + background-position: -54px -3px; +} +.sprite-bct-fotoer { + width: 132px; + height: 40px; + background-position: -84px -3px; +} +.sprite-big-play-video-article { + width: 58px; + height: 41px; + background-position: -221px -3px; +} +.sprite-buildpc-header { + width: 14px; + height: 25px; + background-position: -3px -49px; +} +.sprite-camket-detail { + width: 21px; + height: 21px; + background-position: -21px -49px; +} +.sprite-cart-comboset-detail { + width: 19px; + height: 17px; + background-position: -47px -49px; +} +.sprite-cart-detail { + width: 19px; + height: 19px; + background-position: -70px -49px; +} +.sprite-cart-header { + width: 23px; + height: 21px; + background-position: -94px -49px; +} +.sprite-clock-item-article { + width: 13px; + height: 13px; + background-position: -122px -49px; +} +.sprite-deal-hot-category { + width: 26px; + height: 33px; + background-position: -140px -49px; +} +.sprite-delete-cart { + width: 14px; + height: 14px; + background-position: -170px -49px; +} +.sprite-discount-sp { + width: 45px; + height: 19.5px; + background-position: -188.5px -48.5px; +} +.sprite-dohoa-category { + width: 61px; + height: 61px; + background-position: -170px -73px; +} +.sprite-doitra-footer { + width: 24px; + height: 31px; + background-position: -239px -49px; +} +.sprite-fb-footer { + width: 33px; + height: 33px; + background-position: -3px -85px; +} +.sprite-fire-deal { + width: 29px; + height: 29px; + background-position: -41px -85px; +} +.sprite-flashsale-detail { + width: 34px; + height: 33px; + background-position: -74px -85px; +} +.sprite-gaming-category { + width: 60px; + height: 61px; + background-position: -3px -139px; +} +.sprite-giaohang-footer { + width: 40px; + height: 31px; + background-position: -236px -85px; +} +.sprite-giaohang-header { + width: 20px; + height: 16px; + background-position: -113px -85px; +} +.sprite-gift-detail { + width: 24px; + height: 25px; + background-position: -113px -120px; +} +.sprite-hoctap-category { + width: 61px; + height: 61px; + background-position: -142px -139px; +} +.sprite-hotro-footer { + width: 36px; + height: 36px; + background-position: -236px -120px; +} +.sprite-hotrotragop-detail { + width: 21px; + height: 21px; + background-position: -68px -161px; +} +.sprite-icon-deal-home { + width: 21px; + height: 41px; + background-position: -93px -161px; +} +.sprite-icon-hot-deal { + width: 50px; + height: 20px; + background-position: -207px -161px; +} +.sprite-icon-mayanh-detail { + width: 20px; + height: 21px; + background-position: -262px -161px; +} +.sprite-icon-play-video-detail { + width: 29px; + height: 21px; + background-position: -207px -185px; +} +.sprite-icon-reply-detail { + width: 19px; + height: 15px; + background-position: -68px -186px; +} +.sprite-icon-review-homepage { + width: 18px; + height: 15px; + background-position: -119px -161px; +} +.sprite-icon-send-detail { + width: 19px; + height: 20px; + background-position: -241px -186px; +} +.sprite-icon-video-detail { + width: 31px; + height: 23px; + background-position: -3px -211px; +} +.sprite-instagram-footer { + width: 33px; + height: 33px; + background-position: -39px -211px; +} +.sprite-item-gift-detail { + width: 21px; + height: 22px; + background-position: -77px -211px; +} +.sprite-lienhe-header { + width: 23px; + height: 23px; + background-position: -103px -211px; +} +.sprite-like-productdetail { + width: 20px; + height: 19px; + background-position: -130px -211px; +} +.sprite-location-detail { + width: 17px; + height: 23px; + background-position: -267px -49px; +} +.sprite-manhinh-category { + width: 60px; + height: 61px; + background-position: -155px -211px; +} +.sprite-mongnhe-category { + width: 61px; + height: 61px; + background-position: -220px -211px; +} +.sprite-news-detail { + width: 25px; + height: 21px; + background-position: -284px -3px; +} +.sprite-play-youtube { + width: 49px; + height: 49px; + background-position: -314px -3px; +} +.sprite-ram-category { + width: 61px; + height: 61px; + background-position: -289px -56px; +} +.sprite-sanphammoi-detail { + width: 20px; + height: 21px; + background-position: -276px -122px; +} +.sprite-search-header { + width: 17px; + height: 17px; + background-position: -301px -122px; +} +.sprite-share-detail { + width: 22px; + height: 19px; + background-position: -323px -122px; +} +.sprite-tainghe-category { + width: 61px; + height: 61px; + background-position: -301px -145px; +} +.sprite-thanhtoan-footer { + width: 41px; + height: 41px; + background-position: -285px -211px; +} +.sprite-tiktok-footer { + width: 33px; + height: 33px; + background-position: -331px -211px; +} +.sprite-tintuc-category { + width: 20px; + height: 21px; + background-position: -3px -249px; +} +.sprite-tragop-header { + width: 30px; + height: 25px; + background-position: -28px -249px; +} +.sprite-youtube-fotoer { + width: 33px; + height: 33px; + background-position: -63px -249px; +} +.sprite-zalo-footer { + width: 33px; + height: 33px; + background-position: -101px -249px; +} +.sprite-PC { + width: 13px; + height: 17px; + background-position: -5px -5px; +} +.sprite-danh-gia-category { + width: 15px; + height: 15px; + background-position: -28px -5px; +} +.sprite-gia-giam-category { + width: 15px; + height: 15px; + background-position: -53px -5px; +} +.sprite-gia-tang-cateogry { + width: 15px; + height: 15px; + background-position: -53px -30px; +} +.sprite-laptop { + width: 23px; + height: 17px; + background-position: -5px -54px; +} +.sprite-linhkien { + width: 17px; + height: 17px; + background-position: -38px -54px; +} +.sprite-manhinh { + width: 19px; + height: 17px; + background-position: -65px -54px; +} +.sprite-phimchuot { + width: 19px; + height: 18px; + background-position: -78px -5px; +} +.sprite-phongnet { + width: 19px; + height: 17px; + background-position: -93px -33px; +} +.sprite-thietbi { + width: 15px; + height: 17px; + background-position: -93px -60px; +} +.sprite-trao-doi-category { + width: 17px; + height: 17px; + background-position: -5px -86px; +} +.sprite-star-5 { + background: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/star.png); + background-size: 90px 100px !important; + display: block; + width: 90px; + height: 16px; +} +.star0 { + background-position: -269px 218px !important; +} +.star1 { + background-position: -269px 234px !important; +} +.star2 { + background-position: -269px 250px !important; +} +.star3 { + background-position: -269px 267px !important; +} +.star4 { + background-position: -269px 183px !important; +} +.star5 { + background-position: -269px 300px !important; +} +.sprite-1star { + background: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/star_rating.png); + display: block; +} +.rating-selection { + display: inline-block; +} +.rating-selection input { + opacity: 0; + float: right; + width: 17px; + height: 17px; + padding: 0; + margin: 0 0 0 -16px; +} +.rating-selection label:hover, +.rating-selection label:hover ~ label { + background-position: -16px -57px !important; +} +.rating-input:checked ~ .rating-star, +.rating-input:checked ~ .rating-star:hover { + background-position: -16px -57px !important; +} +.rating-selection label { + position: relative; + float: right; + display: block; + width: 17px; + height: 17px; + margin: 0 3px; + background-position: -16px -28px !important; +} +.global-menu-breadcrumb { + width: 190px; + height: 36px; + background: #000; + border-radius: 5px; + color: #fff; + margin-right: 16px; +} +.box-breadcrumb-global { + padding-top: 10px; +} +.global-breadcrumb ol { + padding-bottom: 13px; + line-height: 19px; + color: #464646; +} +.global-breadcrumb li span { + margin: 0 6px; + color: #3a3a3a; + font-size: 13px; +} +.global-breadcrumb li .gach-cheo { + margin: 0 3px; + text-decoration: none; + font-size: 10px; +} +.global-breadcrumb li span:hover { + color: var(--color-primary); +} +.global-breadcrumb li:last-child .gach-cheo { + display: none; +} +.paging a { + margin-left: 6px; + padding: 4px 8px; + line-height: 20px; + background: #ebebeb; + border-radius: 4px; + text-align: center; + font-size: 14px; + color: #3a3a3a; +} +.paging a.current, +.paging a:hover { + background: #0a76e4; + border: solid 1px #0a76e4; + color: #fff; + font-weight: 600; +} +.box-question { + background: #fff; + padding: 14px 12px; + margin-top: 12px; +} +.box-question .title-question { + font-size: 20px; + line-height: 24px; + color: #0a76e4; + text-align: center; + text-transform: uppercase; + margin-bottom: 8px; +} +.box-question .item-question { + margin-bottom: 10px; + padding: 10px 15px; + border: 1px solid #b8b8b8; + color: #484848; +} +.box-question .item-question:last-child { + margin-bottom: 0; +} +.box-question .item-question.current i { + transform: rotate(90deg); + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); +} +.box-question .content-question { + font-size: 14px; + line-height: 18px; + margin-top: 10px; + display: none; +} +.box-question .content-question li { + list-style: disc; + margin-left: 12px; +} +.img-article img { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + max-width: 100%; + min-height: 100%; + margin: auto; + display: block; + -o-object-fit: cover; + object-fit: cover; + -webkit-transition: 0.5s all; + -o-transition: 0.5s all; + transition: 0.5s all; +} +.item-article-col { + margin-bottom: 14px; +} +.item-article-col .img-article-col { + width: 113px; + border-radius: 5px; +} +.item-article-col .img-article-col img { + border-radius: 5px; +} +.item-article-col .content-article-col { + width: calc(100% - 113px - 8px); + color: #000; +} +.item-article-col .content-article-col:hover { + color: var(--color-primary); +} +.title-box { + font-size: 24px; + color: #3a3a3a; + line-height: 28px; + text-transform: uppercase; + margin-bottom: 16px; +} +.title-update { + color: var(--red); + text-transform: uppercase; + font-size: 16px; + min-height: 50px; +} +.header .header-top img { + width: 100%; + height: 60px; +} +.header i { + -webkit-filter: brightness(0) invert(1); + filter: brightness(0) invert(1); +} +.header .header-middle .header-menu-category .box-title i, +.header .icon-search { + -webkit-filter: unset; + filter: unset; +} +.header .header-middle { + top: -20px; + padding: 8px 12px 12px; + background: linear-gradient(180deg, #2e9bfb 0%, #1d52e7 100%); + -webkit-box-shadow: 0 0 7px 0 rgba(130, 130, 130, 0.25); + box-shadow: 0 0 7px 0 rgba(130, 130, 130, 0.25); +} +.header .header-middle.header-fixed { + position: fixed; + top: 0; + left: 0; + z-index: 10; + min-width: 1224px; + right: 0; + -webkit-transition: 0.5s all; + -o-transition: 0.5s all; + transition: 0.5s all; +} +.header .header-middle.header-fixed .header-middle-left { + display: none; +} +.header .header-middle.header-fixed .header-menu-category { + display: block; +} +.header .header-middle.header-fixed .header-middle-right { + width: 100%; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} +.header .header-middle .header-menu-category { + display: none; + position: relative; +} +.header .header-middle .header-menu-category .box-title { + width: 200px; + height: 40px; + background: #fff; + border-radius: 5px; + color: var(--color-primary); + margin-right: 16px; + cursor: pointer; +} +.header .header-middle .header-menu-category .box-title .title-menu { + font-size: 13px; + text-transform: uppercase; + line-height: 16px; +} +.header .header-middle .header-menu-category .cau-noi { + width: 219px; + height: 18px; + top: 35px; +} +.header .header-middle .header-menu-category .list-menu { + top: 100%; + border-radius: 0 0 10px 10px; + visibility: hidden; + width: 200px; + background: #fff; + opacity: 0; + position: absolute; + left: 0; + z-index: 2; + -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); +} +.header .header-middle.header-fixed .header-menu-category:hover .list-menu { + opacity: 1; + visibility: visible; + -webkit-transition: 0.4s all; + -o-transition: 0.4s all; + transition: 0.4s all; + top: 135% !important; +} +.header .header-middle.header-fixed .list-menu .item:first-child:hover { + border-radius: unset; +} +.header .header-middle.header-fixed .list-menu .sub-menu-list { + background: #fff; + position: absolute; + z-index: 1; + top: 0; + left: 310px; + width: calc(1200px - 200px); + height: 501px; + overflow: auto; + font-size: 14px; + padding: 5px 16px; + -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); + opacity: 0; + visibility: hidden; +} +.header .header-middle.header-fixed .list-menu .item:hover .sub-menu-list { + display: -ms-grid; + display: grid; + -ms-grid-rows: -webkit-max-content; + -ms-grid-rows: max-content; + grid-template-rows: -webkit-max-content; + grid-template-rows: max-content; + gap: 30px 12px; + left: 200px; + opacity: 1; + visibility: visible; + -webkit-transition: 0.4s all; + -o-transition: 0.4s all; + transition: 0.4s all; +} +.header .header-middle.header-fixed .list-menu .sub-menu-list .cat-2 { + color: var(--swiper-theme-color); + font-size: 14px; + line-height: 22px; + text-transform: uppercase; + margin-bottom: 12px; +} +.header .header-middle.header-fixed .list-menu .sub-menu-list .cat-3 { + font-size: 13px; +} +.header .header-middle.header-fixed .list-menu .sub-menu-list .cat-3:hover { + color: var(--red); +} +.header .header-middle .header-search-group { + width: 438px; + height: 40px; + position: relative; + margin-right: 29px; +} +.header .header-middle .header-search-group { + width: 438px; + height: 40px; + position: relative; +} +.header .header-middle .form-group-input { + width: 100%; + background: #fff; + border: none; + border-radius: 5px; + padding-left: 12px; + outline: 0; + font-size: 14px; + height: 40px; + color: #464646; +} +.header .header-middle .form-group-input::-webkit-input-placeholder { + color: #aaa; +} +.header .header-middle .form-group-input::-moz-placeholder { + color: #aaa; +} +.header .header-middle .form-group-input:-ms-input-placeholder { + color: #aaa; +} +.header .header-middle .form-group-input::-ms-input-placeholder { + color: #aaa; +} +.header .header-middle .form-group-input::placeholder { + color: #aaa; +} +.header .header-middle .search-btn-header { + border: none; + background: unset; + outline: 0; + position: absolute; + top: 0; + right: 0; + bottom: 0; + cursor: pointer; +} +.header .header-middle .search-btn-header:hover i { + -webkit-filter: invert(24%) sepia(95%) saturate(1799%) hue-rotate(201deg) brightness(89%) + contrast(91%); + filter: invert(24%) sepia(95%) saturate(1799%) hue-rotate(201deg) brightness(89%) contrast(91%); + -webkit-transition: color 0.2s ease-out; + -o-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; +} +.header .header-middle .search-results { + display: none; + border: 1px solid #ddd; + background: #fff; + position: absolute; + top: 100%; + left: 0; + width: 100%; + z-index: 999; +} +.header .header-middle .search-results-list { + max-height: 345px; + overflow: auto; + z-index: 999; +} +.header .header-middle .search-results a.item:hover { + background-color: #f5f5f5; +} +.header .header-middle .box-header .wrapper, +.p-img, +.product-detail-page .pd-info-left-group { + overflow: hidden; +} +.header .header-middle .search-results .item { + background: #fff; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + gap: 10px; + padding: 10px; + width: 100%; + position: relative; + text-decoration: none; + font-weight: 400; +} +.footer-end-page, +.header .header-middle .account .title-list a:hover, +.product-detail-page .info-tech tr:nth-child(2n), +.search-results a.item:hover { + background-color: #f5f5f5; +} +.header .header-middle .search-results img { + width: 60px; +} +.header .header-middle .search-results .title { + font-size: 14px; + color: #333; +} +.header .header-middle .search-results .price { + color: #ec1c24; +} +.header .header-middle .box-tabs-header { + gap: 22px; + color: #fff; +} +.header .header-middle .box-tabs-header .item-tab-header:hover { + color: #fff; +} +.header .header-middle .box-tabs-header .item-tab-header:hover .icon-item-tab { + top: -5px; + -webkit-transition: 0.2s ease-in; + -o-transition: 0.2s ease-in; + transition: 0.2s ease-in; +} +.header .header-middle .box-tabs-header .icon-item-tab { + height: 25px; + position: relative; + width: 25px; + top: 0; + -webkit-transition: 0.2s ease-out; + -o-transition: 0.2s ease-out; + transition: 0.2s ease-out; +} +.header .header-middle .box-tabs-header span { + font-size: 12px; + text-transform: capitalize; + line-height: 14px; +} +.header .header-middle .icon-cart-header { + position: relative; +} +.header .header-middle .icon-cart-header .cart-count { + font-size: 10px; + background: #fff; + width: 13px; + height: 13px; + border-radius: 50%; + text-align: center; + line-height: 13px; + font-weight: 700; + color: #f60000; + font-size: 10px; + position: absolute; + top: -2px; + right: -5px; + text-decoration: unset; +} +.header .header-middle .cau-noi { + width: 143px; + height: 14px; + position: absolute; + top: 38px; + opacity: 0; + right: 0; +} +.header .header-middle .cart-ttip { + opacity: 0; + position: absolute; + background-color: #fff; + border-radius: 10px; + width: 360px; + height: auto; + right: 0; + z-index: 99; + -webkit-box-shadow: 0 1px 6px #000; + box-shadow: 0 1px 6px #000; + visibility: hidden; + top: 130px; + color: #000; +} +.header .header-middle .cart-ttip i { + -webkit-filter: unset !important; + filter: unset !important; +} +.header .header-middle .cart-ttip-price-button { + border-radius: 5px; + padding: 10px; + background: #0f5b99; + text-align: center; + margin: 10px; + color: #fff; + font-weight: 700; +} +.header .header-middle .cart-ttip-price-button:hover { + background: var(--swiper-theme-color); +} +.header .header-middle .cart-ttip-item-container { + max-height: 300px; + overflow: auto; + padding: 0 10px; +} +.header .header-middle .compare-item { + font-size: 14px; + padding: 10px 0; + border-bottom: 1px solid #d9d9d9; +} +.header .header-middle .price-compare { + color: #da251c; + font-size: 18px; + line-height: 20px; +} +.header .header-middle .cart-ttip-item-container .compare-item:hover { + background: var(--color-global); +} +.header .header-middle .cart-ttip-item-container .compare-item:hover .compare-item-text p { + color: #fff !important; +} +.header .header-middle .cart-ttip-item-container .compare-item:hover .header-cart-item-price b { + color: red !important; +} +.header .header-middle .cart-ttip .cart-ttip-price { + padding: 12px; + border-top: 1px solid var(--swiper-theme-color); +} +.header .header-middle .cart-ttip .cart-ttip-price p:first-child { + font-size: 15px; +} +.header .header-middle .cart-ttip .cart-ttip-price p:nth-child(2) { + font-size: 13px; + color: #da251c; +} +.header .header-middle .cart-ttip .cart-ttip-price p:last-child { + font-size: 20px; + color: #da251c; +} +.header .header-middle .compare-item .compare-item-text .name-compare-item:hover { + color: #e10034; +} +.header .header-middle .compare-item:last-child { + border: none !important; +} +.header .header-middle .compare-item .compare-item-text span { + line-height: 32px; +} +.header .header-middle .img-compare { + width: 80px; +} +.header .icon-showroom { + font-size: 16px; + color: #fff; + border: 1px solid #fff; + border-radius: 50%; + width: 33px; + height: 33px; + line-height: 33px; + text-align: center; + margin: 0 10px 0 25px; +} +.header-null-cart { + text-align: center; + padding: 30px; + color: #000; + font-weight: 600; + font-size: 20px; +} +#js-header-cart:hover .cart-ttip { + opacity: 1; + visibility: visible; + -webkit-transition: 0.6s all; + -o-transition: 0.6s all; + transition: 0.6s all; + top: 46px; +} +.header .header-bottom { + background: #2366ef; + color: #000; + padding-top: 10px; +} +.header .header-bottom .title-header-bottom { + color: #fff; +} +.header .header-bottom .item-category-header { + padding-bottom: 10px; +} +.header .header-bottom .item-category-header:hover .list-category-child { + opacity: 1; + visibility: visible; + -webkit-transform: translateY(-28px); + -ms-transform: translateY(-28px); + transform: translateY(-28px); + -webkit-transition: 0.3s ease-in; + -o-transition: 0.3s ease-in; + transition: 0.3s ease-in; +} +.header .header-bottom .list-category-child { + position: absolute; + top: 35px; + border-radius: 5px; + background: #fff; + padding: 0 12px; + z-index: 99; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + width: 100%; + opacity: 0; + top: 55px; + visibility: hidden; + -webkit-transition: 0.3s ease-out; + -o-transition: 0.3s ease-out; + transition: 0.3s ease-out; + left: 0; + max-height: 535px; + overflow: auto; +} +.header .header-bottom .list-category-child .box-left { + width: 70%; + border-right: 1px solid #e3e3e3; + padding: 12px 0; +} +.header .header-bottom .list-category-child .box-left .sub-menu { + margin-bottom: 16px; + width: calc(100% / 4 - 8px); +} +.header .header-bottom .list-category-child .box-left .list-child-lv3 .child-lv3:hover { + color: var(--red); +} +.header .header-bottom .list-category-child .box-left .list-child-lv3 a { + margin-bottom: 8px; +} +.header .header-bottom .list-category-child .box-left .sub-menu .child-lv2 { + text-transform: uppercase; +} +.header .header-bottom .list-category-child .box-left .sub-menu .child-lv2:hover { + color: var(--color-primary); +} +.header .header-bottom .list-category-child .box-right { + padding: 12px 0 12px 12px; +} +.header .header-bottom .list-category-child .box-right .title { + font-size: 18px; + margin-bottom: 16px; +} +.header .header-bottom .list-category-child .box-right .img-item { + width: 80px; +} +.header .header-bottom .list-category-child .box-right .price-item { + color: var(--red); +} +.header .header-bottom .list-category-child .box-right .item-product-bestsale { + margin-bottom: 12px; +} +.header .header-bottom .list-category-child .box-right .item-product-bestsale:hover .product-name { + color: var(--color-primary); +} +#popup-hotline { + max-width: 750px; + padding: 0; + max-height: 650px; + display: none; + border-radius: 10px; +} +#popup-hotline.active { + position: fixed; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + background: #fff; + overflow: auto; + z-index: 9999; + display: block; +} +#popup-hotline .title-content-pop { + font-size: 20px; + text-transform: uppercase; + color: var(--color-primary); + font-weight: 500; + margin-bottom: 14px; +} +#business .title-pop, +#popup-hotline .title-pop { + width: 100%; + float: left; + padding: 10px 15px; + font-size: 20px; + font-weight: 700; +} +#business .content-pop, +#popup-hotline .content-pop { + width: 100%; + float: left; + padding: 15px; +} +#business .item-pop, +#popup-hotline .item-pop { + width: 100%; + float: left; + margin-bottom: 20px; +} +#business .item-pop .title-item-pop, +#popup-hotline .item-pop .title-item-pop { + width: 100%; + float: left; + font-weight: 700; + padding-bottom: 5px; + margin-bottom: 10px; + border-bottom: solid 1px #e1e1e1; +} +#business .item-pop .item-people, +#popup-hotline .item-pop .item-people { + width: 100%; + float: left; + margin-bottom: 5px; +} +#business .item-pop .item-people a, +#popup-hotline .item-pop .item-people a { + font-weight: 700; + margin-right: 10px; + color: #ffb233; +} +#business .item-cskh, +#popup-hotline .item-cskh { + width: 100%; + float: left; + font-size: 18px; +} +.list-menu .item { + padding: 6px 10px; + cursor: pointer; +} +.list-menu .item:hover { + background: #0a76e4; +} +.list-menu .item:first-child:hover { + border-radius: 10px 10px 0 0; +} +.list-menu .item:last-child:hover { + border-radius: 0 0 10px 10px; +} +.list-menu .item:hover .cat-title { + color: #fff; +} +.list-menu .item:hover .icon-menu { + -webkit-filter: brightness(0) invert(1); + filter: brightness(0) invert(1); +} +.list-menu .item:last-child { + margin-bottom: 0; +} +.list-menu .item .icon-menu { + width: 20px; +} +.list-menu .item .cat-title { + text-transform: uppercase; + color: #000; + font-size: 12px; + line-height: 16px; + margin-left: 8px; +} +.footer .footer-policy { + background: #e5e5e5; + padding: 27px 0; +} +.footer .footer-policy .item { + width: 25%; + padding: 15px 12px; + border-radius: 10px; + height: 88px; + background: #fff; +} +.footer .footer-policy .box-title-policy { + margin-left: 10px; +} +.footer .footer-policy .box-title-policy b { + text-transform: uppercase; + font-size: 16px; + line-height: 18px; + font-weight: 500; + color: #000; + margin-bottom: 4px; +} +.footer .footer-policy .box-title-policy span { + text-transform: capitalize; +} +.footer .box-info-main { + background: #fff; +} +.footer .footer-list-info-main { + padding: 18px 10px 20px; + font-size: 13px; + line-height: 24px; + gap: 10px; +} +.footer .footer-list-info-main .item-info-main { + width: 25%; +} +.footer .footer-list-info-main .list-social-footer { + margin: 10px 0; + gap: 8px; +} +.footer .footer-list-info-main .bct-footer { + margin-bottom: 10px; +} +.footer .footer-list-info-main .item-social { + border-radius: 5px; +} +.footer .footer-list-info-main p { + font-size: 14px; + color: #000; + text-transform: uppercase; + margin-bottom: 10px; +} +.footer .footer-list-info-main a { + display: block; +} +.footer .footer-list-info-main a:hover { + text-decoration: underline; + color: var(--color-primary); +} +.footer .footer-bottom { + background: #f4f4f4; + padding: 15px 0; + font-size: 13px; + line-height: 20px; +} +.footer .footer-bottom .list-contact-footer { + gap: 20px; +} +.footer .footer-bottom a:hover { + text-decoration: underline; + color: var(--color-primary); +} +.fixed-left { + position: fixed; + top: 127px; + left: calc(50% - 770px); + -webkit-transition: 0.4s all; + -o-transition: 0.4s all; + transition: 0.4s all; +} +.fixed-right { + position: fixed; + top: 127px; + right: calc(50% - 770px); + -webkit-transition: 0.4s all; + -o-transition: 0.4s all; + transition: 0.4s all; +} +.fixed-left.active, +.fixed-right.active { + top: 73px; +} +.fixed_banner.show { + display: block; +} +.product-item { + position: relative; + border-radius: 5px; + background: #fff; + padding: 12px 13px; + position: relative; + -webkit-box-shadow: 0 -1px 9px 0 rgba(164, 164, 164, 0.25); + box-shadow: 0 -1px 9px 0 rgba(164, 164, 164, 0.25); + min-width: 0; +} +.product-item .product-image { + position: relative; + display: block; + margin-bottom: 6px; + padding-bottom: 100%; + width: 100%; +} +.product-item .product-image img { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + max-width: 100%; + max-height: 100%; + margin: auto; + display: block; + transition: 0.4s all; + -webkit-transition: 0.4s all; + -moz-transition: 0.4s all; + -ms-transition: 0.4s all; + -o-transition: 0.4s all; +} +.product-item .product-image:hover img { + bottom: 15px; +} +.product-item .product-info .product-title { + text-transform: capitalize; + margin-bottom: 8px; + font-size: 14px; + font-weight: 400; + height: 54px; + word-break: break-word; +} +.product-item .product-info .product-title:hover { + color: var(--color-primary); +} +.product-item .product-info .product-martket-main { + height: 20px; +} +.product-item .product-info .product-market-price { + color: #575757; + text-decoration: line-through; + margin-right: 6px; +} +.product-item .product-info .product-percent-price { + position: relative; + background: #be1f2d; + border-radius: 7px; + color: #fff; + padding: 1px 8px; +} +.product-item .product-info .product-price-main { + margin-top: 6px; + font-size: 20px; + line-height: 28px; + color: #be1f2d; +} +.product-item .product-info .product-price p { + color: #36ac4a; +} +.product-item .product-info .product-offer { + margin-top: 3px; + color: #6f6f6f; + height: 36px; + font-family: inherit !important; +} +.product-item .product-info .product-item .product-info .product-offer * { + font-family: inherit !important; +} +.product-item .product-info .product-offer p, +.product-item .product-info .product-offer span, +.product-item .product-info .product-offer strong { + font-size: 14px !important; +} +.product-item .p-type-holder { + position: absolute; + top: -13px; + right: -5px; + z-index: 1; +} +.product-item .p-type-holder-2 { + top: unset; + bottom: -6px; + right: unset; + left: -5px; + z-index: 1; +} +.product-item .p-type-holder .p-icon-type { + display: block; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + margin-bottom: 6px; + width: 50px; +} +.product-item .p-type-holder .p-icon-hot { + background-image: url(https://nguyencongpc.vn/media/lib/10-01-2024/ncpc-icon-pro-hot-01-2024.png); + height: 37px; + width: 24px; + margin-left: auto; +} +.product-item .p-type-holder .p-icon-new { + background-image: url(https://nguyencongpc.vn/media/lib/10-01-2024/ncpc-icon-pro-new-01-2024.png); + height: 37px; + width: 24px; + background-size: 100%; +} +.product-item .p-type-holder .p-icon-best-sale { + background-image: url(https://nguyencongpc.vn/media/lib/10-01-2024/ncpc-icon-pro-bestsale-01-2024.png); + width: 69px; + height: 24px; + margin-top: 8px; +} +.item-article .title-article h3 { + font-size: 14px; + height: 36px; +} +.item-article .img-article .incon-play-youtube { + display: none; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} +.item-article .time-article { + color: #9e9e9e; + margin-top: 4px; +} +.title-box-article { + font-size: 20px; + color: #000; + line-height: 24px; + padding: 0 12px 12px; + border-bottom: 1px solid #d6d6d6; +} +.box-artilce-col-right { + padding: 18px 15px; + background: #fff; + -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + border-radius: 12px; + color: #000; +} +.box-artilce-col-right-product .descreption-article, +.box-artilce-col-right-product .time-article { + display: none; +} +.box-artilce-col-right-product .title-article h3 { + font-size: 14px; + font-weight: 400; +} +.box-artilce-col-right .title-article p { + font-size: 20px; + line-height: 24px; +} +.box-artilce-col-right .list-article-col-right { + margin-top: 16px; +} +.box-artilce-col-right .list-article-col-right .img-article { + width: 134px; + padding-bottom: 24%; + overflow: hidden; +} +.box-artilce-col-right .list-article-col-right .img-article .icon-play { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} +.box-artilce-col-right .list-article-col-right .content-article { + width: calc(100% - 134px - 12px); +} +.box-artilce-col-right .list-article-col-right .content-article .time-article { + color: #9e9e9e; +} +.box-artilce-col-right.box-article-video-featured .incon-play-youtube { + display: block; +} +.box-artilce-col-right .list-article-col-right .content-article:hover { + color: var(--color-primary); +} +.page-product-detail .box-artilce-col-right .incon-play-youtube, +.page-product-detail .box-artilce-col-right .list-article-related .incon-play-youtube { + display: none; +} +.page-product-detail .box-article-video-featured .icon-video-feature { + display: block; +} +.btn-article-col { + width: 300px; + margin: 0 auto; + border: 1px solid var(--swiper-theme-color); + border-radius: 8px; + margin-top: 14px; + padding: 10px 0; + cursor: pointer; + color: var(--swiper-theme-color); +} +.btn-article-col:hover { + border: 1px solid var(--red); + color: var(--red) !important; +} +.page-hompage .box-banner-homepage .swiper-pagination { + bottom: 50px; +} +.page-hompage .box-banner-homepage .swiper-pagination-bullet-active { + background: #fff !important; +} +.page-hompage .box-banner-right { + position: absolute; + right: 70px; + top: 30px; + z-index: 10; +} +.page-hompage .box-banner-under-slider { + margin-top: -50px; +} +.page-hompage .box-product-deal { + padding: 12px; + margin: 20px 0; +} +.page-hompage .box-product-deal .title-deal { + margin-top: 10px; + gap: 16px; + margin-bottom: 20px; + color: #fff; + font-size: 16px; +} +.page-hompage .box-product-deal .title-deal .title { + font-size: 32px; + line-height: 48px; + text-transform: uppercase; + color: #feea32; +} +.global-time-deal { + white-space: nowrap; +} +.page-hompage .box-product-deal .box-list-item-deal { + min-height: 300px; +} +.page-hompage .box-product-deal .box-list-item-deal .product-item { + padding: 12px 11px; +} +.page-hompage .box-product-deal .box-list-item-deal .product-item .icon-hot-deal { + position: absolute; + left: 0; + top: 0; +} +.page-hompage .box-product-collection-homepage .box-list-item-collection { + min-height: 300px; + position: relative; +} +.page-hompage .box-product-collection-homepage .box-banner-collection { + width: 365px; +} +.page-hompage .box-product-collection-homepage .box-list-item-collection .box-empty { + color: var(--red); +} +.page-hompage .box-product-deal .banner-title-deal p { + position: absolute; + color: #fff; + text-transform: uppercase; + font-size: 24px; + font-weight: 28px; + font-style: italic; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} +.page-hompage .box-product-deal .global-time-deal p { + color: #cb1c21; + border-radius: 3px; + background: #fff; + padding: 8px; + font-size: 16px; + width: 32px; + height: 28px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + font-weight: 600; +} +.btn-product, +.page-hompage .box-product-deal .btn-deal { + color: #105fbd; + text-transform: capitalize; + border-radius: 36px; + height: 32px; + width: 124px; + background: #ffff; + border-radius: 36px; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0 18px; + margin: 0 auto; + margin-top: 14px; +} +.btn-product:hover, +.page-hompage .box-product-deal .btn-deal:hover { + background: var(--color-primary); + color: #fff; +} +.box-product-deal .p-quantity-sale { + position: relative; + height: 20px; + margin: 10px 0 15px; +} +.box-product-deal .p-quantity-sale i { + position: absolute; + left: -9px; + bottom: 1px; + z-index: 2; +} +.box-product-deal .p-quantity-sale .bg-gradient { + background-color: #ebebeb; + border-radius: 14px; + height: 100%; +} +.box-product-deal .p-quantity-sale p { + position: absolute; + top: 0; + left: 0; + width: 100%; + background: #ffb22f; + border-radius: 7px; + height: 100%; +} +.box-product-deal .p-quantity-sale span { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + color: var(--black); + font-weight: 400; + font-size: 11px; + width: 100%; + text-align: center; +} +.page-hompage .box-product-deal .box-number-sale { + width: 56px; + height: 56px; + border-radius: 50%; + background: var(--blue); + color: #fff; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + position: absolute; + top: 12px; + left: 13px; +} +.page-hompage .box-product-collection-homepage { + padding: 14px 12px; + margin: 20px 0; +} +.page-hompage .box-product-collection-homepage .box-title-collection { + padding: 8px 0 16px; +} +.page-hompage .box-product-collection-homepage .btn-collection, +.page-hompage .box-product-deal .button-deal { + font-size: 16px; +} +.page-hompage .box-product-collection-homepage .btn-collection:hover, +.page-hompage .box-product-deal .button-deal:hover { + color: #feea32; +} +.page-hompage .box-product-collection-homepage .title-collection-homepage { + font-size: 32px; + line-height: 38px; + color: #ffffff; + text-transform: uppercase; + text-align: center; +} +.page-hompage .box-product-collection-homepage .product-item { + min-height: 338px; +} +.page-hompage .title-box-product-home .title { + font-size: 22px; + line-height: 24px; + text-transform: uppercase; + color: #000; + text-align: center; + margin-bottom: 12px; +} +.page-hompage .title-box-product-home .border-title { + width: 437px; + height: 2px; + background-color: #ebebeb; + position: relative; +} +.page-hompage .title-box-product-home .border-title::after { + content: ''; + background: #ff9f00; + width: 145px; + height: 2px; + position: absolute; + left: 50%; + bottom: 0; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); +} +.page-hompage .box-product-bestsale .box-list-product-bestsale { + grid-template-columns: repeat(5, 1fr); + margin-top: 22px; + min-height: 300px; +} +.page-hompage .box-category-outstanding { + margin: 20px 0; + padding: 14px 12px; + background: #fff; +} +.page-hompage .box-category-outstanding .title { + text-transform: uppercase; +} +.page-hompage .box-category-outstanding .background-category { + background: #fff !important; + margin: 16px 0 20px; + padding: 33px 40px 22px; + -webkit-box-shadow: 0 2px 10px 0 rgba(172, 172, 172, 0.25); + box-shadow: 0 2px 10px 0 rgba(172, 172, 172, 0.25); +} +.page-hompage .box-category-outstanding .list-category-outstanding { + -webkit-box-shadow: 0 2px 10px 0 rgba(172, 172, 172, 0.25); + box-shadow: 0 2px 10px 0 rgba(172, 172, 172, 0.25); +} +.page-hompage .box-category-outstanding .list-category-outstanding .item-category { + -webkit-box-flex: 0; + -ms-flex: 0 0 10%; + flex: 0 0 10%; + padding: 0 18px; + margin: 16px 0; +} +.page-hompage .box-category-outstanding .list-category-outstanding .item-category-img { + width: 100%; + height: 50px; + position: relative; +} +.page-hompage .box-category-outstanding .list-category-outstanding img { + position: absolute; + inset: 0; + max-width: 100%; + max-height: 100%; + margin: auto; + width: auto; +} +.page-hompage .box-category-outstanding .list-category-outstanding .title { + font-size: 14px; + margin-top: 12px; + text-align: center; + text-transform: capitalize; + color: #3a3a3a; +} +.page-hompage .box-category-outstanding .list-category-outstanding .item-category:hover .title { + color: var(--color-primary); +} +.page-hompage .banner-category { + margin-bottom: 20px; +} +.page-hompage .box-product-category { + margin-bottom: 20px; + padding: 14px 12px; + background: #fff; +} +.page-hompage .box-product-category .title { + width: 30%; +} +.page-hompage .box-product-category .box-list-item-category { + padding: 2px; + min-height: 300px; +} +.page-hompage .box-product-category .list-category-child { + margin-bottom: 16px; +} +.page-hompage .box-product-category .list-category-child .title-category { + padding: 0 8px; + font-size: 16px; + color: #454545; + line-height: 22px; + text-transform: capitalize; + border-right: 1px solid #b8b8b8; +} +.page-hompage .box-product-category .list-category-child .title-category:hover { + color: var(--color-primary); +} +.page-hompage .box-product-category .list-category-child .title-all-category { + font-size: 16px; + line-height: 22px; + text-transform: capitalize; + padding-left: 12px; + color: #0a76e4; + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + text-align: right; +} +.page-hompage .box-product-category .product-item { + min-height: 364px; +} +.box-relative-product .product-item { + min-height: 364px; +} +.page-hompage .box-product-category .list-category-child .title-all-category:hover { + color: red; +} +.page-hompage .box-product-category .banner-category { + margin-top: 30px; + min-height: 150px; +} +.page-hompage .box-product-category .banner-category .item-banner-category { + position: relative; + overflow: hidden; + display: block; +} +.page-hompage .box-product-category .banner-category .item-banner-category:hover::before { + width: 112%; + background-color: rgba(255, 255, 255, 0); + -webkit-transition: all 0.65s ease-out; + -o-transition: all 0.65s ease-out; + transition: all 0.65s ease-out; + z-index: 2; +} +.page-hompage .box-product-category .banner-category .item-banner-category::before { + content: ''; + position: absolute; + top: 0; + left: -6%; + bottom: 0; + width: 0; + height: 100%; + background-color: rgba(255, 255, 255, 0.5); + -webkit-transition: none; + -o-transition: none; + transition: none; + -webkit-transform: skewX(-25deg); + -ms-transform: skewX(-25deg); + transform: skewX(-25deg); +} +.page-hompage .box-article-group { + margin-bottom: 30px; + padding: 14px 12px; + background: #fff; +} +.page-hompage .box-article-group .title-box { + margin-bottom: 0; +} +.page-hompage .box-article-group .title-box .title { + text-transform: uppercase; +} +.page-hompage .box-article-group .list-article-group .item-article { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 25%; + border: 1px solid #ebebeb; + border-radius: 10px; + padding: 8px 8px 10px; +} +.page-hompage .box-videos-group .list-article-group .item-article { + border: none; + border-radius: unset; + padding: 0; +} +.page-hompage .box-article-group .list-article-group .item-article .img-article { + display: block; + padding-bottom: 60%; + position: relative; + overflow: hidden; +} +.page-hompage .box-article-group .list-article-group .item-article .descreption-article, +.page-hompage .box-article-group .list-article-group .item-article .time-article { + display: none; +} +.page-hompage .btn-article-group { + color: #0a76e4; + font-size: 18px; +} +.page-hompage .btn-article-group:hover { + color: var(--red); +} +.page-hompage .box-article-group .list-article-group { + margin-top: 16px; + min-height: 200px; +} +.page-hompage .box-article-group .list-videos-group .incon-play-youtube { + display: block; +} +.page-hompage .box-article-group .list-videos-group .video-img { + position: relative; + margin-bottom: 10px; + display: block; + overflow: hidden; + border-radius: 10px; +} +.page-hompage .box-videos-group .video-img:hover img { + -webkit-transform: scale(1.05); + -ms-transform: scale(1.05); + transform: scale(1.05); +} +.page-hompage .box-article-group .video-img img { + -o-transition: 0.5s all; + transition: 0.5s all; + -webkit-transition: 0.5s all; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + border-radius: 10px; +} +.page-hompage .box-article-group .list-videos-group .video-img i { + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + z-index: 3; +} +.page-hompage .box-article-group .list-videos-group .video-text { + font-size: 16px; + line-height: 18px; +} +.page-hompage .box-article-group .video-item { + display: block; + width: calc(100% / 4 - 12px); +} +.page-hompage .box-article-group .video-item:hover { + color: #0f5b9a; +} +.page-hompage .box-review-from-customer { + margin: 20px 0; + padding: 14px 12px; + background: #fff; +} +.page-hompage .box-review-from-customer .title-box .title { + text-transform: uppercase; +} +.page-hompage .box-review-from-customer .item-review-customer-hompage { + position: relative; + border-radius: 10px; + padding: 17px 22px 34px 12px; + border: 1px solid var(--12, #ebebeb); +} +.page-hompage .box-review-from-customer .item-review-customer-hompage::after { + content: ''; + position: absolute; + bottom: 0; + right: 0; + width: 60%; + height: 3px; + background: #3d73c3; + border-radius: 10px; +} +.page-hompage .box-review-from-customer .item-review-customer-hompage::before { + content: ''; + position: absolute; + right: 0; + height: 65%; + width: 3px; + background: #3d73c3; + border-radius: 10px; + bottom: 0; +} +.page-hompage .box-review-from-customer .item-review-customer-hompage .left-review::before { + content: ''; + position: absolute; + background: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/icon-nhaykep.png); + left: -5px; + top: -10px; + width: 17px; + height: 14px; +} +.page-hompage .box-review-from-customer .list-review-customer-homepage { + margin-top: 20px; + min-height: 150px; +} +.page-hompage .box-review-from-customer .border-review-item { + position: absolute; + bottom: 0; + right: 0; + z-index: 1; + width: 302px; +} +.page-hompage .box-review-from-customer .left-review img { + width: 88px; + height: 88px; + border-radius: 50%; +} +.page-hompage .box-review-from-customer .swiper-pagination { + position: relative; + bottom: 0; + margin-top: 14px; +} +.page-hompage .box-review-from-customer .right-reivew { + width: calc(100% - 100px); + margin-left: 12px; +} +.page-hompage .box-review-from-customer .right-reivew img { + width: 80px; +} +.page-hompage .box-review-from-customer .right-reivew .author-review { + color: #0f5b9a; + margin: 8px 0 6px; + display: block; +} +.page-hompage .box-article-global { + margin-bottom: 20px; +} +.page-hompage .box-article-global .list-article-global { + margin-top: 20px; +} +.page-hompage .box-article-global .list-article-global .img-article { + position: relative; + overflow: hidden; + display: block; + border-radius: 10px; + padding-bottom: 60%; + width: 100%; +} +.page-hompage .box-article-global .list-article-global .item-article::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), #000); + background-image: -webkit-gradient( + linear, + left top, + left bottom, + from(rgba(0, 0, 0, 0)), + to(#000) + ); + background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000); + z-index: 2; + border-radius: 10px; +} +.page-hompage .box-article-global .list-article-global .img-article:hover img { + -webkit-transform: scale(1.05); + -ms-transform: scale(1.05); + transform: scale(1.05); +} +.page-hompage .box-article-global .list-article-global img { + border-radius: 10px; + -o-transition: 0.5s all; + transition: 0.5s all; + -webkit-transition: 0.5s all; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); +} +.page-hompage .box-article-global .list-article-global .box-left, +.page-hompage .box-article-global .list-article-global .box-right { + width: 50%; +} +.page-hompage .box-article-global .item-article { + position: relative; + color: #fff; +} +.page-hompage .box-article-global .content-article-item { + position: absolute; + bottom: 16px; + left: 12px; + text-shadow: 1px 1px 1px #000; + z-index: 3; +} +.page-hompage .box-article-global .box-left .content-article-item .title { + font-size: 24px; + line-height: 28px; + color: #fff; + margin-bottom: 6px; +} +.page-hompage .box-article-global .content-article-item .title { + font-size: 16px; + margin-bottom: 4px; +} +.page-hompage .box-article-global .content-article-item .title:hover { + color: #c71e1e; +} +.page-hompage .box-article-global .content-article-item .time-aricle-item span { + line-height: 16px; + color: #9e9e9e; + font-weight: 300; + display: block; + margin-left: 8px; +} +.page-hompage .box-article-global .content-article-item .title-article h3 { + height: auto; +} +.page-hompage .box-article-global .box-right .item-article { + width: calc(100% / 2 - 6px); + height: 183px; +} +.page-hompage .box-article-global .box-right .title { + font-size: 16px; + line-height: 20px; + margin-bottom: 3px; + color: #fff; +} +.page-hompage .box-article-global .box-right .content-article-item { + bottom: 10px; +} +.page-category { + margin: 0 auto; + background: #f4f4f4; + padding-top: 12px; + padding-bottom: 12px; +} +.page-category .box-banner-category { + margin-bottom: 20px; +} +.page-category .box-top-product-categroy { + padding: 17px 12px; + background: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/background-category.png) + no-repeat; + background-size: 100% 100%; + min-height: 350px; + border-radius: 10px; + margin-bottom: 12px; +} +.page-category .name-category { + font-size: 26px; + line-height: 32px; + margin-bottom: 12px; + text-align: center; + color: var(--color-primary); +} +.page-category .box-top-product-categroy .product-item .icon-hot-deal { + display: none; + position: absolute; + top: 0; + left: 0; +} +.page-category .box-top-product-categroy .title { + font-size: 32px; + line-height: 36px; + color: #fff; + text-align: center; + text-transform: uppercase; + margin-bottom: 12px; +} +.page-category .box-top-product-categroy .product-item { + min-height: 343px; +} +.page-category .box-content-category { + width: 100%; + margin: 20px 0; +} +.page-category .box-content-category .category-child { + padding: 16px 0; + background: #fff; + text-align: center; + color: #000; +} +.page-category .box-content-category .category-child li { + width: calc(100% / 8); +} +.page-category .box-content-category .category-child li:hover { + color: var(--color-primary); +} +.page-category .box-content-category .category-child li:nth-child(n + 9) { + margin-top: 15px; +} +.page-category .box-content-category .category-child li .txt { + padding: 0 10px; +} +.page-category .box-content-category .category-child .border-img { + border-radius: 50%; + height: 60px; + margin: 0 auto 10px; + width: 60px; + background-color: #f0f0f0; + background-position: center; + background-repeat: no-repeat; + background-size: 39px; +} +.page-category .box-content-category .category-child img { + width: 28px; +} +.page-category .box-content-category .box-filter-category { + background: #fff; + padding: 13px 0 18px; + margin: 12px 0; +} +.page-category .box-content-category .info-filter-category { + padding: 12px; + color: #000; + border-bottom: 1px solid #ebebeb; +} +.page-category .box-content-category .info-filter-category:last-child { + border-bottom: 0; +} +.page-category .box-content-category .info-filter-category .title { + width: 120px; + font-weight: 500; +} +.page-category .box-content-category .list-filter-category .item { + border-radius: 3px; + border: 1px solid #d6d6d6; + background: #f8f8f8; + padding: 5px 10px; + font-size: 14px; + color: #000; + cursor: pointer; + position: relative; +} +.page-category .box-content-category .list-filter-last .item { + background: #fff; +} +.page-category .box-content-category .list-filter-active .item { + background: var(--swiper-theme-color); + color: #fff; +} +.page-category .box-content-category .list-filter-active .item:hover { + color: #fff !important; +} +.page-category .box-content-category .list-filter-active .delete-filter-all { + background: var(--red); + border: none !important; +} +.page-category .box-content-category .list-filter-active .delete-filter-all:hover { + background: red; +} +.page-category .box-content-category .list-filter-category ul { + position: absolute; + z-index: 11; + background-color: #fff; + padding: 10px 0; + width: 200px; + -webkit-box-shadow: 0 0 5px 0 #969696; + box-shadow: 0 0 5px 0 #969696; + left: 0; + top: 100%; + -webkit-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + -webkit-transition: 0.5s all; + -o-transition: 0.5s all; + transition: 0.5s all; + -webkit-transform-origin: top left; + -ms-transform-origin: top left; + transform-origin: top left; + padding: 14px 10px; +} +.page-category .box-content-category .list-filter-category .item:hover ul { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + -webkit-transition: 0.5s all; + -o-transition: 0.5s all; + transition: 0.5s all; + -webkit-transform-origin: top right; + -ms-transform-origin: top right; + transform-origin: top right; +} +.page-category .box-content-category .list-filter-category ul li { + margin-bottom: 8px; +} +.page-category .box-content-category .list-filter-category ul li a { + color: #000; +} +.page-category .box-content-category .list-filter-category ul li:hover a { + color: #0a76e4; +} +.page-category .box-content-category .list-filter-category .item.current, +.page-category .box-content-category .list-filter-category .item:hover, +.page-category .box-content-category .sort-option .item.selected { + color: #0a76e4; + border: 1px solid #0a76e4; +} +.page-category .box-content-category .list-filter-category .item.current i, +.page-category .box-content-category .sort-option .item.selected i { + -webkit-filter: invert(41%) sepia(70%) saturate(486%) hue-rotate(176deg) brightness(91%) + contrast(97%); + filter: invert(41%) sepia(70%) saturate(486%) hue-rotate(176deg) brightness(91%) contrast(97%); +} +.page-category .box-content-category .list-filter-category .item i { + margin-left: 6px; + display: block; + font-size: 12px; +} +.page-category .box-content-category .box-list-product-category { + padding: 10px 12px 18px; + background: #fff; +} +.page-category .box-content-category .sort-option .item { + padding: 8px 10px; + border: 1px solid #ececec; + color: #515151; + font-size: 13px; + line-height: 16px; + border-radius: 4px; +} +.page-category .box-content-category .sort-option .item:hover { + color: #0a76e4; + border: 1px solid #0a76e4; +} +.page-category .box-content-category .sort-option .item:hover i { + -webkit-filter: invert(41%) sepia(70%) saturate(486%) hue-rotate(176deg) brightness(91%) + contrast(97%); + filter: invert(41%) sepia(70%) saturate(486%) hue-rotate(176deg) brightness(91%) contrast(97%); +} +.page-category .box-content-category .sort-option .item i { + margin-right: 6px; +} +.page-category .box-content-category .sort-bar-select-category .item-sort-bar { + font-size: 20px; + gap: 2px; + color: #d6d6d6; +} +.page-category .box-content-category .sort-bar-select-category .item-sort-bar.active, +.page-category .box-content-category .sort-bar-select-category .item-sort-bar:hover { + color: #00a0f8; +} +.page-category .box-content-category .list-product-category { + margin: 12px 0 18px; +} +.page-category .box-content-category .list-product-flex .product-item { + width: calc(100% / 3 - 12px); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + gap: 12px; +} +.page-category .box-content-category .list-product-flex .product-image { + width: 50%; + padding-bottom: 50%; +} +.page-category .box-content-category .list-product-search .product-item { + width: calc(100% / 5 - 12px); +} +.page-category .paging { + margin-top: 24px; +} +.page-category .box-static-category { + margin: 20px 0; +} +.page-category .box-static-category .box-descreption-category { + width: 67%; +} +.page-category .box-static-category .box-static-content-category { + background: #fff; + padding: 18px 12px 14px; +} +.page-category .box-static-category .box-article-productList { + width: 33%; + background: #fff; + padding: 16px 12px; + height: -webkit-max-content; + height: -moz-max-content; + height: max-content; +} +.page-category .box-static-category .static-tag-list { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + gap: 12px; + margin-bottom: 12px; +} +.page-category .box-static-category .static-tag-list a { + border-radius: 5px; + font-size: 13px !important; + color: #484848; + border: 1px solid #ececec; + padding: 8px 12px !important; +} +.page-category .box-static-category .static-tag-list a:hover { + background: var(--color-primary); + color: #fff; +} +.page-category .box-static-category .info-descreption-category .static-html { + max-height: 525px; + overflow: hidden; +} +.page-category .box-static-category .info-descreption-category .static-html img { + display: block; + width: auto; +} +.page-category .box-static-category .info-descreption-category .static-html.active { + max-height: initial; +} +.page-category .box-static-category .info-descreption-category .static-html::after { + content: ''; + width: 100%; + height: 90px; + background: -webkit-gradient( + linear, + left top, + left bottom, + from(rgba(255, 255, 255, 0)), + color-stop(rgba(255, 255, 255, 0.8)), + to(white) + ); + background: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), #fff); + background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), #fff); + position: absolute; + left: 0; + bottom: -15px; + z-index: 9; +} +.page-category .box-static-category .title-article-productList { + font-size: 15px; + text-transform: uppercase; + line-height: 18px; + color: #000; + margin-bottom: 18px; +} +.page-category .box-static-category .title-article-productList img { + width: 25px; + margin-right: 6px; +} +.page-category .box-static-category .btn-article-productList { + font-size: 13px; + line-height: 16px; + color: #000; + -webkit-box-shadow: + 0 1px 2px 0 rgba(60, 64, 67, 0.1), + 0 2px 6px 2px rgba(60, 64, 67, 0.15); + box-shadow: + 0 1px 2px 0 rgba(60, 64, 67, 0.1), + 0 2px 6px 2px rgba(60, 64, 67, 0.15); + width: 335px; + padding: 9px 0; + border-radius: 0 0 10px 10px; + margin: 0 auto; + border: 1px solid #fff; +} +.page-category .box-static-category .btn-article-productList:hover { + background: #fff; + border: 1px solid var(--swiper-theme-color); + color: var(--swiper-theme-color); +} +.page-collection { + background: #fff; + padding-top: 0; +} +.page-collection .box-list-product-category { + padding: 0 !important; +} +.page-product-detail .box-content-product-detail .video-thumb::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.4); + z-index: 2; + border-radius: 10px; +} +.page-product-detail .box-content-product-detail .video-thumb .title-thumb-img { + font-size: 13px; + color: #fff; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + z-index: 9; +} +.page-product-detail .box-content-product-detail .box-left, +.page-product-detail .box-content-product-detail .box-right { + width: calc(100% / 2 - 6px); +} +.page-product-detail .box-content-product-detail .box-left .product-images-show .bigImage { + display: block; + position: relative; + margin-bottom: 6px; + padding-bottom: 100%; +} +.page-product-detail .box-content-product-detail .box-left .product-images-show .smallImage { + display: block; + position: relative; + margin-bottom: 6px; + padding-bottom: 15%; + border: 1px solid #d6d6d6; +} +.page-product-detail .box-content-product-detail .box-left .product-images-show .bigImage img, +.page-product-detail .box-content-product-detail .box-left .product-images-show .smallImage img { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + max-width: 100%; + max-height: 100%; + margin: auto; + display: block; +} +.page-product-detail .box-content-product-detail .box-right .product-name { + font-size: 18px; + line-height: 24px; + text-transform: capitalize; + margin-bottom: 12px; +} +.page-product-detail .box-content-product-detail .box-right .list-basic-product-info { + margin-bottom: 10px; +} +.page-product-detail .box-content-product-detail .box-right .item-basic { + margin-right: 20px; + font-size: 13px; + position: relative; + line-height: 15px; +} +.page-product-detail .box-content-product-detail .box-right .item-basic::after { + content: '|'; + position: absolute; + top: -1px; + right: -15px; + font-size: 16px; +} +.page-product-detail .box-content-product-detail .box-right .last-item-basic { + margin-right: 12px; +} +.page-product-detail .box-content-product-detail .box-right .last-item-basic::after { + content: ''; +} +.page-product-detail .box-content-product-detail .box-right .icon-fb { + margin-right: 12px; +} +.page-product-detail .box-content-product-detail .box-right .store-status-detail .title { + border-radius: 5px; + border: 1px solid #d6d6d6; + padding: 4px 10px; + font-size: 13px; + width: 220px; + cursor: pointer; +} +.page-product-detail .box-content-product-detail .box-right .store-status-detail .title:hover, +.page-product-detail .box-content-product-detail .box-right .store-status-detail.current .title { + border: 1px solid var(--color-primary); + color: var(--color-primary); +} +.page-product-detail + .box-content-product-detail + .box-right + .store-status-detail + .list-store-detail { + position: absolute; + background: #fff; + border: solid 1px #ccc; + top: 100%; + width: 300px; + z-index: 10; + padding: 12px; + border-radius: 5px; + opacity: 0; + visibility: hidden; + -webkit-transition: 0.3s ease-out; + -o-transition: 0.3s ease-out; + transition: 0.3s ease-out; +} +.page-product-detail + .box-content-product-detail + .box-right + .store-status-detail:hover + .list-store-detail { + opacity: 1; + visibility: visible; + -webkit-transform: translateY(-1px); + -ms-transform: translateY(-1px); + transform: translateY(-1px); + -webkit-transition: 0.3s ease-in; + -o-transition: 0.3s ease-in; + transition: 0.3s ease-in; +} +.page-product-detail + .box-content-product-detail + .box-right + .store-status-detail:hover + .list-store-detail + a { + display: block; + padding: 4px 4px 0; +} +.page-product-detail .box-content-product-detail .box-right .store-status-detail .item-store { + list-style: disc; + margin-left: 12px; + font-size: 13px; + line-height: 24px; +} +.page-product-detail .box-content-product-detail .box-flash-sale { + border: 1px solid #e31223; + height: 64px; + overflow: hidden; + margin-bottom: 16px; + color: #001644; + gap: 17px; + margin-top: 16px; +} +.page-product-detail .box-content-product-detail .box-flash-sale .box-middle { + width: 165px; +} +.page-product-detail .box-content-product-detail .box-flash-sale .box-left { + background: #e31223; + width: 210px; + height: 100%; +} +.page-product-detail .box-content-product-detail .box-flash-sale .box-left .title-deal { + font-size: 22px; + line-height: 28px; + margin-left: 8px; + text-transform: uppercase; + color: #fff; +} +.page-product-detail .box-content-product-detail .box-flash-sale .box-left::before { + content: ''; + position: absolute; + right: 0; + bottom: 0; + width: 0; + height: 0; + border-top: 0 solid transparent; + border-top: 64px solid transparent; + border-right: 30px solid #fff; +} +.page-product-detail .box-content-product-detail .box-flash-sale .item-time b { + border-radius: 5px; + background: #001644; + padding: 5px; + font-size: 16px; + color: #fff; + margin-bottom: 4px; + display: block; +} +.page-product-detail .box-content-product-detail .box-flash-sale .box-middle span { + margin-top: 4px; +} +.page-product-detail .box-content-product-detail .box-flash-sale .box-right { + width: 182px; + padding: 6px 12px 6px 0; + height: 60px; +} +.page-product-detail .box-content-product-detail .box-product-deal .bg-gradient { + background: #fecccc; + margin-top: 6px; +} +.page-product-detail .box-content-product-detail .box-price-detail { + position: relative; + align-items: baseline; + padding: 16px 16px 14px; + border: 3px solid #d92a2b; + color: #e31223; + background: #fef1e7; + gap: 20px; + margin-bottom: 16px; +} +.page-product-detail .box-content-product-detail .box-price-detail .price-detail { + font-size: 38px; + line-height: 36px; + color: #ff3f3f; +} +.page-product-detail .box-content-product-detail .box-price-detail .market-price-detail { + color: #9e9e9e; + font-size: 18px; + line-height: 22px; + text-decoration: line-through; +} +.page-product-detail .box-content-product-detail .box-price-detail .save-price-detail { + padding: 4px 8px; + background: linear-gradient(90deg, #f5763f, #d92a2b); + color: #fff; + border-radius: 5px; + box-shadow: 1px 2px 6px rgba(255, 119, 37, 0.5); + transform: translateY(-6px); +} +.page-product-detail .box-content-product-detail .box-price-detail .price-buildpc { + position: absolute; + top: 0; + left: 0; + font-size: 16px; + font-weight: 600; + padding: 6px 0 6px 20px; + color: #fff; + background: #d92a2b; + border-top-left-radius: 5px; +} +.page-product-detail .box-content-product-detail .box-price-detail .price-buildpc::after { + content: ''; + position: absolute; + top: 0; + left: 100%; + padding: 15px; + background: #d92a2b; + border-bottom-right-radius: 100px; +} +.page-product-detail .box-content-product-detail .box-price-detail .price-buildpc-space { + width: 100%; + height: 20px; +} +.page-product-detail .box-content-product-detail .box-offer-detail { + background: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/background_offer_detail.png) + no-repeat; + background-size: 100% 100%; + min-height: 200px; + padding: 4px; + margin-bottom: 16px; +} +.page-product-detail .box-content-product-detail .box-offer-detail .title-offer-detail { + padding: 6px 6px 12px; + color: #fff; +} +.page-product-detail .box-content-product-detail .box-offer-detail .title-offer-detail p { + margin-left: 8px; + font-size: 17px; + line-height: 22px; + text-transform: uppercase; +} +.page-product-detail .box-content-product-detail .box-offer-detail .list-info-offter { + background-color: #fff; + border-radius: 0 0 10px 10px; + padding: 12px 6px; + min-height: 158px; + font-size: 13px; + line-height: 24px; +} +.page-product-detail .box-content-product-detail .product-buy-quantity { + margin: 18px 0; + font-size: 13px; +} +.page-product-detail .box-content-product-detail .cart-quantity-select { + margin: 0 12px 0 32px; + border-radius: 5px; + border: 1px solid #d6d6d6; +} +.page-product-detail .box-content-product-detail .cart-quantity-select .js-quantity-change { + padding: 10px 12px; + text-decoration: none; + font-size: 16px; + text-align: center; +} +.page-product-detail .box-content-product-detail .cart-quantity-select input { + border: none; + width: 66px; + outline: 0; + text-align: center; + color: #000; + border-right: 1px solid #d6d6d6; + border-left: 1px solid #d6d6d6; +} +.page-product-detail .box-content-product-detail .addCart { + border-radius: 5px; + border: 1px solid #0a76e4; + padding: 10px 12px; + color: #0a76e4; +} +.page-product-detail .box-content-product-detail .addCart:hover { + background: #0f5b9a; + color: #fff; +} +.page-product-detail .box-content-product-detail .addCart:hover i { + -webkit-filter: brightness(10); + filter: brightness(10); + -webkit-transition: color 0.2s ease-out; + -o-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; +} +.page-product-detail .box-content-product-detail .detail-buy a { + width: calc(50% - 6px); + padding: 8px 12px; + text-align: center; + background: #0a76e4; + border-radius: 10px; + color: #fff; + font-size: 13px; +} +.page-product-detail .box-content-product-detail .detail-buy a:first-child { + background: #e31223; +} +.page-product-detail .box-content-product-detail .detail-buy a:hover { + background: #007eff !important; +} +.page-product-detail .box-content-product-detail .detail-buy a:first-child:hover { + background: #ff0015 !important; +} +.page-product-detail .box-content-product-detail .detail-buy a span { + width: 100%; + float: left; + font-weight: 20px; + text-transform: uppercase; + font-weight: 700; + font-size: 20px; + line-height: 30px; +} +.page-product-detail .box-content-product-detail .box-right .box-config-group { + background: #fff; + border: 1px solid #d6d6d6; + font-size: 13px; + color: #000; + padding: 12px 10px 16px; + margin: 16px 0; +} +.page-product-detail .box-content-product-detail .box-right .box-config-group .title { + font-size: 16px; + line-height: 20px; + color: #464646; + margin-bottom: 10px; +} +.page-product-detail .box-content-product-detail .box-right .item-config { + padding: 8px 12px; + border: 1px solid #d9d9d9; + text-align: center; + overflow: hidden; + cursor: pointer; + display: block; +} +.page-product-detail .box-content-product-detail .box-right .item-config.current, +.page-product-detail .box-content-product-detail .box-right .item-config:hover { + border: 1px solid #0a76e4; +} +.page-product-detail .box-content-product-detail .box-right .item-config.current::before { + position: absolute; + content: '\f00c'; + font-family: 'Font Awesome 5 Free'; + left: 2px; + top: -1px; + color: #fff; + font-size: 9px; + z-index: 9; + font-weight: 800; + font-size: 12px; +} +.page-product-detail .box-content-product-detail .box-right .item-config.current::after { + content: ''; + position: absolute; + left: 0; + top: 0; + width: 0; + height: 0; + border-top: 0 solid transparent; + border-bottom: 23px solid transparent; + border-left: 23px solid #0a76e4; +} +.page-product-detail .box-content-product-detail .box-right .price-config { + color: #ed1b24; + margin-top: 6px; +} +.page-product-detail .box-content-product-detail .box-product-summary { + border: 1px solid #d6d6d6; + padding: 12px; + margin: 16px 0; +} +.page-product-detail .box-content-product-detail .box-product-summary .title { + font-size: 16px; + line-height: 20px; + margin-bottom: 10px; +} +.page-product-detail .box-content-product-detail .box-product-summary .list-product-summary li { + position: relative; + margin-left: 16px; + font-size: 13px; + line-height: 25px; +} +.page-product-detail + .box-content-product-detail + .box-product-summary + .list-product-summary + li::after { + content: ''; + background: #000; + width: 4px; + height: 4px; + border-radius: 50%; + position: absolute; + left: -15px; + top: 11px; +} +.page-product-detail .button-showmore { + color: var(--swiper-theme-color); + margin-top: 6px; + font-size: 13px; + margin-left: 10px; +} +.page-product-detail + .box-content-product-detail + .box-product-summary + .list-product-summary + li:nth-child(n + 4) { + display: none; +} +.page-product-detail + .box-content-product-detail + .box-product-summary + .list-product-summary.active + li:nth-child(n + 4) { + display: block; +} +.page-product-detail .box-content-product-detail .list-product-comboset { + padding: 2px; + margin-bottom: 16px; +} +.page-product-detail .box-content-product-detail .list-product-comboset .product-item { + padding: 10px 8px; +} +.page-product-detail .box-content-product-detail .list-product-comboset .product-title { + font-size: 13px; + margin-bottom: 0; +} +.page-product-detail .box-content-product-detail .list-product-comboset .product-price-main { + margin-top: 0; +} +.page-product-detail .box-content-product-detail .list-product-comboset .price { + font-size: 16px; +} +.page-product-detail .box-content-product-detail .list-product-comboset .product-market-price { + font-size: 11px; + margin-right: 0; +} +.page-product-detail .box-content-product-detail .list-product-comboset .c-pro-change { + border: 1px solid #0a76e4; + color: #0a76e4; + width: 100%; + display: block; + text-align: center; + border-radius: 3px; + padding: 3px 0; + font-size: 13px; + margin-top: 10px; + cursor: pointer; +} +.page-product-detail .box-content-product-detail .list-product-comboset .c-pro-change:hover { + background: #0a76e4; + color: #fff; +} +.page-product-detail .box-content-product-detail .list-product-comboset .check-box-comboset { + position: absolute; + top: 10px; + left: 10px; + z-index: 9; +} +.page-product-detail .box-content-product-detail .save-price-combo { + font-style: italic; + color: #6f6f6f; +} +.page-product-detail .box-content-product-detail .buy_combo { + width: 215px; + background: #e31223; + color: #fff; + font-size: 16px; + text-transform: uppercase; + text-align: center; + border-radius: 5px; + padding: 11px 16px; +} +.page-product-detail .box-content-product-detail .buy_combo:hover { + background: #ff0318; +} +.page-product-detail .box-content-product-detail .comboset-info .addCart { + width: 100px; + border: 1px solid #f80000; + color: #f80000; + text-align: center; + padding: 10px; + font-size: 12px; + height: 40px; +} +.page-product-detail .box-content-product-detail .comboset-info .addCart:hover { + background: #f80000; + color: #fff; +} +.page-product-detail + .box-content-product-detail + .list-product-comboset + .check-box-comboset + input[type='checkbox']::before { + content: ''; + display: block; + position: absolute; + width: 16px; + height: 16px; + top: -2px; + left: -4px; + border: 2px solid #36ac4a; + border-radius: 3px; + background-color: #36ac4a; + border-radius: 50%; +} +.page-product-detail + .box-content-product-detail + .list-product-comboset + .check-box-comboset + input[type='checkbox']:checked:after { + content: ''; + display: block; + width: 5px; + height: 10px; + border: solid #fff; + border-width: 0 2px 2px 0; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; + top: 0; + left: 3px; +} +.page-product-detail .box-content-product-detail .box-comboset .title-comboset { + font-size: 16px; + margin-bottom: 12px; +} +.page-product-detail .box-content-product-detail .box-product-has-product { + border: 1px solid #d6d6d6; + background: #fff; + margin: 16px 0; + overflow: hidden; +} +.page-product-detail .box-content-product-detail .box-product-has-product .title { + text-transform: uppercase; + font-size: 16px; + line-height: 20px; + background: #e31223; + color: #fff; + padding: 8px 16px; + margin-bottom: 10px; +} +.page-product-detail .box-content-product-detail .box-product-has-product .list-showroom-detail { + padding: 0 12px; + font-size: 13px; +} +.page-product-detail .box-content-product-detail .box-product-has-product .list-showroom-detail a { + margin-bottom: 8px; + display: block; +} +.page-product-detail + .box-content-product-detail + .box-product-has-product + .list-showroom-detail + span { + margin-left: 10px; +} +.page-product-detail + .box-content-product-detail + .box-product-has-product + .list-showroom-detail + .item { + margin-bottom: 12px; +} +.page-product-detail .box-content-product-detail .box-product-policy-detal .title { + font-size: 16px; + text-transform: uppercase; + margin-bottom: 12px; +} +.page-product-detail .box-content-product-detail .box-product-policy-detal .item { + width: 50%; + font-size: 13px; + margin-bottom: 14px; +} +.page-product-detail .box-read-product-detail .box-left { + width: 66.5%; +} +.page-product-detail .box-read-product-detail .box-right { + width: 33.5%; +} +.page-product-detail .box-read-product-detail .box-descreption-detail { + -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + border-radius: 12px; + color: #000; + margin-bottom: 12px; + padding-bottom: 20px; +} +.page-product-detail .box-read-product-detail .box-descreption-detail .titlle-descreption { + padding: 18px 12px; + border-bottom: 1px solid #ebebeb; + font-size: 20px; + line-height: 26px; + text-transform: uppercase; +} +.page-product-detail .box-read-product-detail .box-descreption-detail .content-descreption-detail { + padding: 18px 12px; + overflow: hidden; + height: 500px; +} +.page-product-detail + .box-read-product-detail + .box-descreption-detail + .content-descreption-detail + img { + display: block; + width: auto; +} +.page-product-detail + .box-read-product-detail + .box-descreption-detail + .content-descreption-detail.active { + height: auto !important; +} +.page-product-detail + .box-read-product-detail + .box-descreption-detail + .content-descreption-detail::after { + content: ''; + position: absolute; + left: 0; + right: 0; + bottom: 0; + height: 50px; + background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff)); + background: -o-linear-gradient(transparent, #fff); + background: linear-gradient(transparent, #fff); +} +.page-product-detail + .box-read-product-detail + .box-descreption-detail + .content-descreption-detail.active::after { + position: relative; +} +.page-product-detail .box-read-product-detail .box-question { + -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); +} +.page-product-detail .box-read-product-detail .box-spec { + -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + border-radius: 12px; + padding: 18px 12px; + color: #000; +} +.page-product-detail .box-read-product-detail .box-spec table tbody tr:nth-child(n + 9) { + display: none; +} +.page-product-detail .box-read-product-detail .box-spec .title { + font-size: 20px; + line-height: 26px; + margin-bottom: 14px; +} +.page-product-detail .box-read-product-detail .box-spec .content-spec table tr:nth-child(odd) { + background: #f5f8fd; +} +.page-product-detail .box-read-product-detail .box-spec .content-spec table tr:nth-child(2n + 2) { + background: #fff; +} +.page-product-detail .box-read-product-detail .box-spec .content-spec table td { + padding: 16px 12px; +} +.fancybox-content .content-spec a:hover, +.page-product-detail .box-read-product-detail .box-spec .content-spec table td a:hover { + color: var(--color-primary) !important; +} +.page-product-detail .box-read-product-detail .box-spec .content-spec table td:first-child { + font-weight: 700; +} +.content-spec { + background: #f5f8fd; +} +.content-spec table tr:nth-child(2n) { + background: #fff; +} +.content-spec table td { + padding: 16px 12px; +} +.content-spec table td:first-child { + font-weight: 700; +} +.box-top-centent-spec { + background-color: #d70018; + padding: 20px 16px; + font-size: 18px; + color: #fff; +} +.btn-conten-spec-delete { + margin: 0 12px 20px; + color: #fff; + text-align: center; + background-color: #c51f27; + border-radius: 10px; + padding: 10px 12px; + text-align: center; + font-size: 16px; +} +.btn-conten-spec-delete:hover { + background-color: #9b191e; + color: #fff; +} +.box-top-centent-spec .delelte-content-spec { + width: 22px; + height: 22px; + background: #940606; + border-radius: 50%; + cursor: pointer; +} +.fancybox-slide--html { + padding: 16px; +} +.fancybox-content .content-spec { + margin: 25px 14px; + max-height: -webkit-max-content; + max-height: -moz-max-content; + max-height: max-content; +} +.fancybox-content { + padding: 0 !important; + max-width: 800px; + width: 100%; +} +.page-product-detail .review-info { + border: 1px solid #dedede; + background: #fff; +} +.page-product-detail .review-info .avgRate { + border-right: 1px solid #dedede; + width: 37%; + color: #000; +} +.page-product-detail .review-info .avgRate span { + font-size: 32px; + line-height: 34px; + margin-bottom: 12px; +} +.page-product-detail .review-info .box-avg-rate-count { + width: calc(100% - 37%); + padding: 16px 12px; +} +.page-product-detail .review-info .avg-rate-count { + font-size: 12px; + line-height: 18px; + color: #000; + padding: 0; +} +.page-product-detail .review-info .rate-number i { + padding-left: 4px; + color: #ff981f; +} +.page-product-detail .review-info .nhan-xet-bar { + width: 72%; + height: 8px; + background: #dedede; + border-radius: 5px; + margin: 0 14px 0 20px; + position: relative; +} +.page-product-detail .review-info .nhan-xet-bar .percent { + position: absolute; + left: 0; + top: 0; + bottom: 0; + background: #ee1b25; + border-radius: 5px; +} +.page-product-detail .review-info .total-avg-rate { + width: 14%; +} +.page-product-detail .box-review .text-danh-gia { + text-align: center; + margin-top: 12px; +} +.page-product-detail .box-review .button-review a { + line-height: 30px; + color: #fff; + padding: 5px 20px; + background: #1781e0; + border-radius: 8px; + display: block; + text-align: center; + margin-top: 14px; + width: 278px; +} +.page-product-detail .box-review .review_reply_content { + border: 1px solid #dedede; + outline: 0; + padding: 15px; + width: 100%; + height: 122px; + border-radius: 12px; + resize: none; + margin: 16px 0; +} +.page-product-detail .box-review .button-review a:hover { + background: #0086ff; +} +.page-product-detail .box-review .infomation-customer tr { + margin-bottom: 16px; +} +.page-product-detail .box-review .infomation-customer td:first-child { + width: 100px; + padding-left: 0 !important; +} +.page-product-detail .box-review .infomation-customer td { + width: 100%; +} +.page-product-detail .box-review .form-control { + display: block; + width: 100%; + height: 32px; + background-color: #fff; + border: 1px solid #dedede; + border-radius: 5px; + outline: 0; + padding: 0 12px; +} +.page-product-detail .box-review .btn-review { + background: var(--red); + border-radius: 5px; + padding: 10px 30px; + color: #fff; + width: 150px; + display: block; + text-align: center; +} +.page-product-detail .box-review .btn-review:hover { + background: #ff0015; +} +.page-product-detail .box-read-product-detail .box-comment, +.page-product-detail .box-read-product-detail .box-review { + background: #fff; + -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.25); + border-radius: 12px; + padding: 18px 13px 23px; + margin-bottom: 12px; + color: #000; +} +.page-product-detail .box-read-product-detail .box-comment { + background: #f5f5f5; +} +.page-product-detail .box-read-product-detail .box-comment .comment_reply_content { + background: #fff; + padding: 16px; + color: #444; + line-height: 20px; + outline: 0; + resize: none; + width: 100%; + border: none; + height: 90px; + margin-bottom: 10px; +} +.page-product-detail .box-read-product-detail .box-comment .btn-send-form-comment { + border-radius: 8px; + background: #0a76e4; + color: #fff; + padding: 12px; + height: -webkit-max-content; + height: -moz-max-content; + height: max-content; + width: 85px; +} +.page-product-detail .box-read-product-detail .box-comment .btn-send-form-comment:hover { + background: #007eff; +} +.page-product-detail .box-read-product-detail .item-comment { + margin-bottom: 16px; +} +.page-product-detail .box-read-product-detail .avatar-user { + background: #c8c8c8; + width: 20px; + height: 20px; + border-radius: 3px; +} +.page-product-detail .box-read-product-detail .comment-name .note { + border-radius: 3px; + background: #0f5b99; + margin-left: 14px; + padding: 2px 4px; + font-size: 12px; + color: #fff; +} +.page-product-detail .box-read-product-detail .comment-form-right { + color: #555; + font-size: 12px; + line-height: 18px; +} +.page-product-detail .box-read-product-detail .comment-content { + padding: 14px 16px; + background: #fff; + color: #3a3a3a; + min-height: 70px; + margin-left: 20px; +} +.page-product-detail .box-read-product-detail .comment-content .item-img-review { + width: 100px; + margin: 0 10px 10px 0; +} +.page-product-detail .box-read-product-detail .box-review .comment-content { + background: #f3f3f3; +} +.page-product-detail .box-read-product-detail .box-review .comment-content .text-review b { + width: 70px; + margin-right: 12px; +} +.page-product-detail .box-read-product-detail .reply-list-container { + margin-left: 20px; +} +.page-product-detail .box-read-product-detail .info_feeback { + position: absolute; + right: 12px; + bottom: 12px; + color: #36ac4a; +} +.page-product-detail .box-read-product-detail .reply-form-group { + border: 1px solid #d9d9d9; + border-radius: 12px; + overflow: hidden; + margin: 15px 0 15px 12px; + background: #fff; +} +.page-product-detail .box-read-product-detail .reply-form-group textarea { + display: block; + padding: 14px; + resize: none; + outline: 0; + height: 122px; + -webkit-box-shadow: none; + box-shadow: none; + border: 0; + border-bottom: 1px solid #d9d9d9; + width: 100%; +} +.page-product-detail .box-read-product-detail .form-input { + padding: 12px; +} +.page-product-detail .box-read-product-detail .inputText { + border: 1px solid #d9d9d9; + height: 38px; + padding: 0 0 0 10px; + margin-right: 10px; + min-width: 250px; + border-radius: 5px; + outline: 0; +} +.page-product-detail .box-read-product-detail .btn-send-comment { + color: #fff; + font-weight: 500; + font-size: 14px; + background: #007aff; + border-radius: 5px; + padding: 10px; + border: none; + cursor: pointer; +} +.page-product-detail .box-read-product-detail .avatar-admin { + background: #000; +} +.page-product-detail .box-read-product-detail .btn-send-form-comment:hover { + background: #007eff; +} +.page-product-detail .box-read-product-detail .send-comment-mobile { + display: none; +} +.page-product-detail .box-artilce-col-right .incon-play-youtube { + display: none; +} +.page-product-detail .box-artilce-col-right .icon-video-feature { + display: block; +} +.page-product-detail .box-relative-product { + margin-top: 30px; +} +#newCommentBox { + overflow: hidden; + position: fixed; + left: 0; + right: 0; + bottom: 0; + height: 100vh; + background: rgba(0, 0, 0, 0.5); + z-index: 9; +} +#newCommentBox .comment-box-container { + display: block; + overflow: hidden; + position: relative; + width: 100%; + max-width: 520px; + margin: 10% auto auto; + background: #fff; + border-radius: 5px; +} +#newCommentBox .comment-box-container .title { + display: block; + overflow: hidden; + padding: 10px; + font-size: 17px; + color: #161616; + border-bottom: 1px solid #f2f2f2; + font-weight: 700; +} +#newCommentBox .comment-box-container .back-btn { + float: right; + width: 30px; + height: 30px; + position: absolute; + top: 10px; + right: 5px; + color: #161616; + font-size: 18px; +} +#newCommentBox .comment-box-container .form-wrap { + display: block; + overflow: hidden; + background: #fff; + padding: 10px; +} +#newCommentBox .comment-box-container .sex label { + margin-bottom: 0; + margin-right: 30px; +} +#newCommentBox .comment-box-container .sex .radio { + display: inline-block; +} +#newCommentBox .comment-box-container .sex .radio input { + display: none; +} +#newCommentBox .comment-box-container .form-wrap input { + display: block; + padding: 8px; + width: 100%; + margin: 10px 0; + height: 35px; + border: 1px solid #dadada; + background: #fff; + border-radius: 4px; + font-size: 14px; + outline: 0; +} +#newCommentBox .comment-box-container .sex .radio .icon { + height: 13px; + width: 13px; + display: inline-block; + vertical-align: middle; + margin-right: 4px; + position: relative; + margin-top: -3px; + border-radius: 50% !important; + background: #fff; + border: 2px solid #e20505; + overflow: hidden; +} +#newCommentBox .comment-box-container .sex .radio input:checked ~ .icon::before { + background-color: #e20505; + content: ''; + display: block; + width: 5px; + height: 5px; + border-radius: 100%; + left: 2px; + top: 2px; + font-size: 11px; + color: #fff; + position: absolute; +} +#newCommentBox .comment-box-container .form-wrap input { + display: block; + padding: 8px; + width: 100%; + margin: 10px 0; + height: 35px; + border: 1px solid #dadada; + background: #fff; + border-radius: 4px; + font-size: 14px; +} +#newCommentBox .comment-box-container .btn-send-form-cmt { + display: block; + width: 100%; + margin: 0 auto 10px; + padding: 8px; + height: 40px; + font-size: 14px; + color: #fff; + text-transform: uppercase; + border: 1px solid #e20505; + border-radius: 4px; + background: #e20505; + cursor: pointer; + text-align: center; +} +.page-product-detail .box-read-product-detail .box-comment .title-comment, +.page-product-detail .box-read-product-detail .box-review .title-review { + font-size: 18px; + line-height: 26px; + margin-bottom: 12px; +} +.page-product-detail .box-history-product .box-list-history-product { + margin-top: 6px; + padding: 2px; +} +.popup-change-pro { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1; + background-color: rgba(0, 0, 0, 0.8); + -webkit-transform: scale(0.8); + -ms-transform: scale(0.8); + transform: scale(0.8); + opacity: 0; + -webkit-transition: 0.3s all; + -o-transition: 0.3s all; + transition: 0.3s all; +} +.popup-change-pro.active { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + opacity: 1; + z-index: 99999; + -webkit-transition: 0.3s all; + -o-transition: 0.3s all; + transition: 0.3s all; +} +.popup-change-pro .popup-main { + width: 900px; + margin: auto; + background-color: #fff; + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + padding-bottom: 10px; + height: calc(100vh - 40px); +} +.popup-change-pro .popup-main .head { + padding: 0 1%; + height: 26px; + overflow: hidden; + margin-top: 10px; +} +.popup-change-pro .popup-main .head .title { + font-weight: 700; + font-size: 16px; + float: left; +} +.popup-change-pro .popup-main .head .close { + position: absolute; + right: 10px; + font-style: normal; + cursor: pointer; + width: 40px; + height: 40px; + font-size: 24px; + line-height: 32px; + float: right; + border: solid 1px #e1e1e1; + border-radius: 50%; + text-align: center; +} +.popup-change-pro .popup-main .c-btn { + cursor: pointer; + display: block; + text-transform: uppercase; + font-size: 11px; + color: #ed1b24; + border: solid 1px #ed1b24; + text-align: center; + margin: auto; + margin-top: 10px; + padding: 6px 0; + border-radius: 2px; +} +.popup-change-pro .list-product-change { + height: calc(100vh - 77px); + overflow: auto; +} +.js-load-change .c-pro-item { + margin: 1%; + width: 23%; + border: solid 1px #eee; +} +.js-load-change .c-pro-item:nth-child(4n + 1) { + clear: both; +} +.page-search { + background: #fff; + padding: 0 !important; +} +.page-search .box-filter-category { + margin: 0 !important; + padding: 0 !important; +} +.page-search .current-cate-title { + display: inline-block; + position: relative; + margin: 0 0 12px 12px; +} +.page-search .current-cate-title .current-cate-text { + display: inline-block; + font-size: 24px; + color: #0f5b99; + text-transform: uppercase; + letter-spacing: 1px; + margin-bottom: 0; + line-height: 28px; +} +.page-search .current-cate-title .current-cate-total { + color: #999; +} +.page-search .current-cate-title::after { + content: ''; + position: absolute; + border-bottom: 2px solid #0f5b99; + width: 100%; + left: 0; + bottom: -2px; +} +.page-deal .box-product-deal { + margin: 0 !important; +} +.page-deal .box-title-deal { + background: url(https://nguyencongpc.vn/static/assets/nguyencong_2023/images/background-deal.png) + no-repeat; + background-size: 100% 100%; + margin-top: 18px; + padding: 12px 0 14px; + font-size: 32px; + color: #feea32; + line-height: 38px; + text-transform: uppercase; +} +.page-deal .box-list-item-deal { + margin-top: 18px; +} +.page-deal .box-list-item-deal .product-item { + width: calc(100% / 4 - 12px); +} +.page-deal .box-list-item-deal .product-item .icon-cart-deal { + width: 32px; + height: 32px; + border-radius: 50%; + background: #ebebeb; +} +.page-deal .box-list-item-deal .product-item .js-item-deal-time { + font-size: 13px; + padding: 2px 0; + border-radius: 3px; + border: 0.6px dashed #cb1c21; + color: #cb1c21; + text-align: center; + margin-bottom: 8px; +} +.page-deal .box-list-item-deal .product-item .buy-now-deal { + border-radius: 5px; + background: #cb1c21; + font-size: 16px; + color: #fff; + width: 100%; + display: block; + text-align: center; + padding: 7px 0; +} +.page-deal .box-list-item-deal .product-item:first-child, +.page-deal .box-list-item-deal .product-item:nth-child(2) { + width: calc(100% / 2 - 6px); + border-radius: 22px; + background: #0f5b9a; + padding: 10px 8px 28px; +} +.page-deal .box-list-item-deal .product-item:first-child .item-deal, +.page-deal .box-list-item-deal .product-item:nth-child(2) .item-deal { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + gap: 12px; + border-radius: 22px; + padding: 18px 14px; + background: #fff; +} +.page-deal .box-list-item-deal .product-item:first-child .icon-cart-deal, +.page-deal .box-list-item-deal .product-item:nth-child(2) .icon-cart-deal { + display: none; +} +.page-deal .box-list-item-deal .product-item:first-child .product-image, +.page-deal .box-list-item-deal .product-item:nth-child(2) .product-image { + width: 50%; + padding-bottom: 46%; +} +.page-deal .box-list-item-deal .product-item:first-child .text-deal-item, +.page-deal .box-list-item-deal .product-item:nth-child(2) .text-deal-item { + display: block !important; +} +.page-cart { + background: #f0f0f0; + padding: 20px 0 40px; +} +.page-cart .container-cart { + max-width: 796px; + padding: 0 12px; + margin: 0 auto; + background: #fff; +} +.page-cart .cart-header-title { + margin: 0 auto 12px; + padding: 12px; + font-size: 15px; + line-height: 18px; + font-weight: 500; +} +.page-cart .cart-header-title .back-homepage:hover { + color: var(--swiper-theme-color); +} +.page-cart .box-info-cart { + padding: 12px 0; + margin-bottom: 44px; +} +.page-cart .box-delete-all { + margin: 0 12px 12px; +} +.page-cart .delete-cart-all { + border-radius: 3px; + border: 1px solid #d6d6d6; + padding: 4px 10px; + cursor: pointer; +} +.page-cart .delete-cart-all:hover { + color: var(--swiper-theme-color); + border: 1px solid var(--swiper-theme-color); +} +.page-cart .cart-item-info { + padding: 16px 12px 12px; + border-bottom: 1px solid #ebebeb; +} +.page-cart .cart-item-info .cart-item-left { + width: 60%; +} +.page-cart .cart-item-info .cart-item-img { + width: 120px; + margin-right: 10px; +} +.page-cart .cart-item-info .cart-item-img .icon-deal-cart { + width: 30px; + position: absolute; + left: -10px; + top: 0; +} +.page-cart .cart-item-info .box-change-quantity { + width: 100px; + height: 32px; +} +.page-cart .cart-item-info .quantity-change { + border: 1px solid #d6d6d6; + padding: 10px 8px; + height: 32px; + cursor: pointer; + color: #b8b8b8; +} +.page-cart .cart-item-info .quantity-change:hover { + color: var(--swiper-theme-color); +} +.page-cart .cart-item-info .box-change-quantity input { + width: 50px; + height: 32px; + padding: 0; + text-align: center; + outline: 0; + font-size: 16px; + border: none; + border-top: 1px solid #d6d6d6; + border-bottom: 1px solid #d6d6d6; +} +.page-cart .cart-item-info .price-cart-item .price { + color: #e31223; + margin-bottom: 6px; +} +.page-cart .cart-item-info .price-cart-item .marketPrice { + font-size: 13px; + color: #9e9e9e; + text-decoration: line-through; +} +.page-cart .cart-item-info .delete-item-cart { + text-align: right; + width: 24px; + height: 24px; + border-radius: 50%; + background: #f1f1f1; +} +.page-cart .title-section-cart { + font-size: 16px; + line-height: 22px; + text-transform: uppercase; + color: var(--swiper-theme-color); + margin-bottom: 12px; +} +.page-cart .box-cart-info-customer { + margin: 20px 12px 16px; +} +.page-cart .box-cart-info-customer .list-info-customer input, +.page-cart .box-cart-info-customer .list-info-customer select, +.page-cart .box-cart-info-customer .list-info-customer textarea { + width: 100%; + border: 1px solid #d6d6d6; + padding: 13px 12px; + border-radius: 5px; + color: #000; + margin-bottom: 12px; + outline: 0; +} +.page-cart .box-cart-info-customer .list-info-customer select { + color: #b8b8b8; +} +.page-cart .box-cart-info-customer .list-info-customer input::-webkit-input-placeholder, +.page-cart .box-cart-info-customer .list-info-customer textarea::-webkit-input-placeholder { + color: #b8b8b8; +} +.page-cart .box-cart-info-customer .list-info-customer input::-moz-placeholder, +.page-cart .box-cart-info-customer .list-info-customer textarea::-moz-placeholder { + color: #b8b8b8; +} +.page-cart .box-cart-info-customer .list-info-customer input:-ms-input-placeholder, +.page-cart .box-cart-info-customer .list-info-customer textarea:-ms-input-placeholder { + color: #b8b8b8; +} +.page-cart .box-cart-info-customer .list-info-customer input::-ms-input-placeholder, +.page-cart .box-cart-info-customer .list-info-customer textarea::-ms-input-placeholder { + color: #b8b8b8; +} +.page-cart .box-cart-info-customer .list-info-customer input::placeholder, +.page-cart .box-cart-info-customer .list-info-customer textarea::placeholder { + color: #b8b8b8; +} +.page-cart .box-cart-info-customer .list-info-customer textarea { + height: 80px; +} +.page-cart .box-cart-info-customer .list-info-customer .tax-title { + margin-bottom: 14px; + font-size: 13px; +} +.page-cart .box-cart-info-customer .list-info-customer .tax-title input { + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + margin-bottom: 0; +} +.page-cart .box-payment { + padding: 0 12px; +} +.page-cart .box-payment .list-method-payment { + margin-bottom: 16px; +} +.page-cart .box-payment .list-price { + font-size: 16px; +} +.page-cart .box-payment .list-price .price-total2 { + margin-top: 10px; +} +.page-cart .box-payment .has-vat { + width: 100%; + float: left; + font-size: 16px; + text-align: right; + margin-top: 10px; + margin-bottom: 16px; +} +.page-cart .list-btn-cart .js-send-cart:hover { + background: #ff0015; +} +.page-cart .list-btn-cart .btn-tra-gop:hover { + background: #c97e01 !important; +} +.page-cart .list-btn-cart .btn-tra-gop, +.page-cart .list-btn-cart .list-print-cart a, +.page-cart .list-btn-cart button { + width: 100%; + background: #e31223; + border: none; + outline: 0; + color: #fff; + text-transform: uppercase; + font-size: 18px; + line-height: 22px; + padding: 11px 0; + border-radius: 5px; + margin-bottom: 12px; + display: block; + text-align: center; + cursor: pointer; +} +.page-cart .list-btn-cart .list-print-cart a { + background: #fff; + border: 1px solid #0a76e4; + color: #0a76e4; +} +.page-cart .list-btn-cart .list-print-cart a:hover { + background: #0a76e4; + color: #fff; +} +.page-cart .not-cart { + margin: 0 auto; + text-align: center; + padding: 30px 0; + padding: 0 8px; + max-width: 1216px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding-bottom: 50px; +} +.page-cart .not-cart img { + max-width: 100%; + width: unset; +} +.page-cart .not-cart p { + padding: 20px 0; + font-weight: 500; +} +.page-cart .not-cart a { + margin: 10px 0; + padding: 10px; + background: #e10034; + display: block; + width: 15%; + margin: 0 auto; + color: #fff; + border-radius: 8px; + text-transform: uppercase; +} +.page-cart .item-offer .title { + font-size: 12px; + color: #e31223; + cursor: pointer; + margin-bottom: 4px; +} +.page-cart .item-offer .title span { + color: var(--swiper-theme-color); + margin-left: 4px; +} +.page-cart .item-offer .item-offer-content { + background: #fff; + border-radius: 10px; + overflow: hidden; + border: 1px solid #0d699e; + -webkit-box-shadow: 0 0 11px 0 rgba(13, 105, 158, 0.2); + box-shadow: 0 0 11px 0 rgba(13, 105, 158, 0.2); + padding: 12px; + position: absolute; + top: 100%; + z-index: 1; + width: 420px; + display: none; +} +.item-offer-content span, +.page-cart .item-offer .item-offer-content p { + display: block; + position: relative; + line-height: 1.9; + margin: 0; +} +.page-cart .item-offer:hover .item-offer-content { + display: block; +} +.send-cart-error, +.send-cart-success { + max-width: 824px; + margin: auto; + background: #fff; + margin-top: 20px; +} +.send-cart-title { + padding: 30px 10px; + text-align: center; +} +.send-cart-title-name { + font-weight: 600; + color: var(--swiper-theme-color); + font-size: 28px; + margin-bottom: 8px; +} +.send-cart-title-descreption { + font-weight: 300; + font-size: 14px; + line-height: 20px; + text-align: center; +} +.red-text { + color: var(--swiper-theme-color); +} +.send-cart-title-descreption a { + font-weight: 700; + text-decoration: none; +} +.send-cart-info { + padding: 20px 15px; + margin-top: 12px; + background: #f2f2f2; + font-weight: 300; +} +.send-cart-info p { + margin-bottom: 16px; + width: 100%; +} +.send-cart-info b { + font-weight: 700; + width: 200px; + display: inline-block; +} +.send-cart-info span { + width: calc(100% - 200px); +} +.send-cart-detail-product { + margin-top: 15px; + -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%); + box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%); + border: 1px solid #dee2e6 !important; +} +.send-cart-product-title { + padding: 20px 15px; + font-size: 18px; + font-weight: 600; + text-transform: uppercase; + border-bottom: 1px solid #dee2e6; +} +.send-cart-product-info { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding: 15px; + width: 100%; + border-bottom: 1px solid #dee2e6; +} +.send-cart-item-left { + width: 82px; + margin-right: 8px; + text-align: center; +} +.send-cart-item-left img { + width: 100%; + height: 100%; +} +.send-cart-item-center a { + font-size: 14px; + font-weight: 600; + color: #222; + text-decoration: none; +} +.send-cart-item-center { + width: 362px; +} +.send-cart-item-right { + width: calc(100% - 362px - 82px); + text-align: right; + line-height: 20px; +} +.new-price, +.total-price { + font-size: 18px; + color: var(--swiper-theme-color); + font-weight: 800; +} +.new-price { + color: #000 !important; +} +.old-price { + font-size: 16px; + color: #888; + text-decoration: line-through; +} +.number-item { + font-weight: 700; + font-size: 12px; +} +.total-item { + color: var(--swiper-theme-color); + font-size: 16px; + font-weight: 800; +} +.send-cart-total { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 15px; +} +.send-cart-total p:first-child { + font-size: 16px; + font-weight: 700; +} +.again-cart { + display: block; + text-decoration: none; + padding: 22px 0 100px; + text-align: center; + color: var(--swiper-theme-color); + font-weight: 600; + font-size: 22px; + text-transform: uppercase; +} +.send-cart-item-center a:hover { + color: #d60000; +} +.send-cart-error-descreption { + text-align: center; +} +.send-cart-error-title { + color: var(--swiper-theme-color); + font-size: 28px; + font-weight: 700; + margin: 15px 0; +} +.send-cart-error-descreption p:nth-child(3) { + font-size: 15px; + margin-bottom: 15px; +} +.send-cart-error-descreption p:last-child { + font-size: 15px; + margin-bottom: 48px; +} +.sprite-send-cart-face { + background-position: -103px -96.5px !important; + width: 30px; + height: 30px; + background-size: 155px 131.5px !important; + margin: 0 auto; +} +.col-left-article { + width: 66.5%; +} +.page-article .box-article-home-top .swiper-pagination { + position: relative; + bottom: 0; +} +.page-article .tabs-category-article { + padding: 8px 0; + gap: 60px; + margin-bottom: 12px; +} +.page-article .tabs-category-article .item-tab-article h2 { + font-size: 13px; + text-transform: uppercase; + color: #000; +} +.page-article a:hover { + color: var(--color-primary); +} +.page-article .img-article { + overflow: hidden; + display: block; + position: relative; + width: 100%; +} +.page-article img { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + -webkit-transition: 0.5s all; + -o-transition: 0.5s all; + transition: 0.5s all; +} +.page-article img:hover { + -webkit-transform: scale(1.05); + -ms-transform: scale(1.05); + transform: scale(1.05); +} +.page-article .tabs-category-article a.active .title-cate-article, +.page-article .tabs-category-article a:hover .title-cate-article { + color: var(--swiper-theme-color); + text-decoration: underline; + font-weight: 600; +} +.border-box-article { + -webkit-box-shadow: 0 1px 6px 0 rgba(155, 155, 155, 0.25); + box-shadow: 0 1px 6px 0 rgba(155, 155, 155, 0.25); + background: #fff; + padding: 12px 0; +} +.page-article .box-new-article { + padding: 15px 12px; +} +.page-article .box-new-article .box-left { + width: 56%; +} +.page-article .box-new-article .box-left .item-article { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + gap: 4px; +} +.page-article .box-new-article .box-left .item-article .img-article { + padding-bottom: 67%; +} +.page-article .box-new-article .box-right { + font-size: 14px; +} +.page-article .box-new-article .box-right h3 { + font-size: 14px; +} +.page-article .box-new-article .box-right .img-article { + width: 128px; + padding-bottom: 24.5%; +} +.page-article .box-new-article .box-left .title-article { + margin: 6px 0; + display: block; +} +.page-article .box-new-article .item-article .title-article h3 { + font-weight: 600; + font-size: 16px; + height: auto; +} +.page-article .box-new-article .box-right .item-article .title-article h3 { + font-size: 14px; +} +.page-article .box-new-article .descreption-article { + display: none; +} +.page-article .box-view-article .list-most-view-article { + padding: 21px 16px 24px 13px; +} +.page-article .box-view-article .list-most-view-article li:first-child span { + background: var(--color-primary); +} +.page-article .box-view-article .list-most-view-article li { + counter-increment: my-awesome-counter; + position: relative; +} +.page-article .box-view-article .list-most-view-article li::before { + content: counter(my-awesome-counter); + font-size: 24px; + font-weight: 600; + position: absolute; + left: 12px; + color: #fff; +} +.page-article .box-view-article .list-most-view-article li:first-child span { + background: var(--swiper-theme-color); +} +.page-article .box-view-article .item-most-view-article span { + width: 38px; + height: 38px; + background: #d6d6d6; + border-radius: 50%; + color: #fff; + font-size: 24px; +} +.page-article .box-video-article { + padding: 16px 12px; + background: #2a2a2a; + margin: 12px 0; + color: #fff; +} +.page-article .box-video-article .title-video-article .title { + font-size: 20px; + line-height: 24px; +} +.page-article .box-video-article .title-video-article .follow-youtube { + border-radius: 5px; + background: red; + padding: 6px 8px; +} +.page-article .box-video-article .title-video-article .follow-youtube:hover { + background: #d90404; + color: #fff; +} +.page-article .box-video-article .title-video-article .follow-youtube i { + font-size: 26px; +} +.page-article .box-video-article .list-video-article { + margin-top: 18px; +} +.page-article .box-video-article .list-video-article .box-left .item-article-video .img-article { + padding-bottom: 72%; +} +.page-article .box-video-article .box-right .icon-play, +.page-article + .box-video-article + .list-video-article + .box-left + .item-article-video + .icon-play-small { + display: none; +} +.page-article .box-video-article .box-right .icon-play-small { + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + max-width: unset; + min-height: unset; + width: 26px; + right: unset; + bottom: unset; +} +.page-article + .box-video-article + .list-video-article + .box-left + .item-article-video + .title-article-video { + display: none; +} +.page-article .box-video-article .box-left { + width: 36.6%; +} +.page-article .box-video-article .box-right { + width: calc(100% - 36.6% - 12px); +} +.page-article .box-video-article .icon-play { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + -webkit-transform: translate(-50%, -50%); + -moz-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + -o-transform: translate(-50%, -50%); +} +.page-article .box-video-article .box-left img { + height: 100%; + -o-object-fit: cover; + object-fit: cover; +} +.page-article .box-video-article .item-article-video { + height: -webkit-max-content; + height: -moz-max-content; + height: max-content; + width: 100%; +} +.page-article .box-video-article .box-right .img-article-video { + width: 140px; + display: block; + padding-bottom: 24.5%; +} +.page-article .box-article-tech { + height: -webkit-max-content; + height: -moz-max-content; + height: max-content; +} +.page-article .box-article-guide .list-article-col-right, +.page-article .box-article-hot .list-article-hot, +.page-article .box-article-tech .list-article-tech { + padding: 14px 12px 0; + color: #000; +} +.page-article .box-article-tech .list-article-tech .item-article { + margin-bottom: 16px; +} +.page-article .box-article-tech .list-article-tech .item-article h3 { + font-size: 18px; + height: auto; +} +.page-article .box-article-tech .list-article-tech .img-article { + width: 280px; + padding-bottom: 21%; +} +.page-article .box-article-tech .list-article-tech .time-article { + margin: 7px 0; +} +.page-article .box-article-tech .btn-article-col { + width: 365px; + margin: 0 auto; +} +.box-article-category .box-article-global { + margin-bottom: 0; + margin-top: 30px; +} +.box-article-category .box-article-global .item-article { + width: calc(100% / 3 - 12px); +} +.box-article-category .box-article-global .btn-article-col { + width: 280px; + margin: 20px auto 30px; +} +.page-article .box-article-hot .list-article-hot .item-article:first-child { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + color: #000; +} +.page-article .box-article-hot .list-article-hot .item-article:first-child .img-article { + padding-bottom: 62%; +} +.page-article .box-article-hot .list-article-hot .item-article:first-child h3 { + font-size: 16px; + font-weight: 600; + height: auto; +} +.page-article .box-article-hot .list-article-hot .time-article { + margin: 6px 0; +} +.page-article .box-article-hot .list-article-hot .item-article:nth-child(n + 2) { + margin-top: 9px; +} +.page-article .box-article-hot .list-article-hot .item-article:nth-child(n + 2) .img-article { + width: 133px; + padding-bottom: 24%; +} +.page-article + .box-article-hot + .list-article-hot + .item-article:nth-child(n + 2) + .descreption-article { + display: none; +} +.box-article-category .box-artice-review .item-article { + width: 100%; +} +.page-article-category { + padding-bottom: 30px; +} +.page-article-category .box-article-global .list-article-global .descreption-article, +.page-article-category .box-article-news .descreption-article { + display: none; +} +.page-article-category .box-article-global .list-article-global { + padding: 0 12px; +} +.box-article-detail { + padding: 12px 12px 30px; + background: #fff; +} +.box-article-detail .article-detail-page { + display: block !important; +} +.box-article-detail .article-detail-page .col-md-4, +.box-article-detail .article-detail-page .col-md-8 { + max-width: 800px; + margin: 0 auto; + padding: 0; +} +.box-article-detail .box-article-detail-title { + width: 100%; + margin-bottom: 20px; +} +.box-article-detail .box-article-detail-title h1 { + width: 100%; + font-size: 30px; + font-weight: 700; + line-height: 40px; +} +.box-article-detail .box-article-detail-title .title { + width: 100%; + float: left; + font-size: 18px; + color: #777; +} +.box-article-detail .box-article-detail-ct { + width: 100%; + float: left; + margin-bottom: 50px; +} +.box-article-detail img:hover { + -webkit-transform: unset !important; + -ms-transform: unset !important; + transform: unset !important; +} +.box-article-detail .box-article-detail-cmt { + width: 100%; + float: left; +} +.box-article-detail .box-article-detail-cmt iframe { + width: 100% !important; +} +.box-article-detail .box-article-relay .article-list { + width: 100%; + gap: 20px 12px; +} +.box-article-detail .box-article-relay .article-list .item-article { + width: calc(100% / 3 - 8px); +} +.box-article-detail .box-article-relay .article-list .item-article .img-article { + padding-bottom: 60%; +} +.box-article-detail .box-article-relay .article-list .item-article .descreption-article { + display: none; +} +.box-article-detail .box-article-relay .article-list .item-article .time-article { + margin-top: 6px; +} +.box-article-detail .author-avatar img { + width: 80px; +} +.box-article-detail .author-name { + font-weight: 600; + font-size: 16px; + display: block; +} +.box-article-detail .title-ar { + width: 100%; + float: left; + border-bottom: solid 1px #e1e1e1; + position: relative; + font-size: 24px; + text-transform: uppercase; + color: #000; + font-weight: 700; + margin-bottom: 20px; + line-height: 34px; +} +.box-article-detail .title-ar::after { + content: ''; + width: 60px; + height: 1px; + float: left; + background: #0f5b9a; + position: absolute; + left: 0; + bottom: -1px; + z-index: 1; +} +.box-article-detail .title-ar span { + color: #0f5b9a; +} +.box-login { + padding-bottom: 30px; +} +.box-login .col-left, +.box-login .col-right { + width: 50%; +} +.box-login .col-left tr td:first-child, +.box-register tr td:first-child { + width: 140px; +} +.box-login .col-left tr, +.box-register tr { + margin-bottom: 12px; +} +.box-login .col-left tr td input, +.box-register tr td button, +.box-register tr td input, +.box-register tr td select, +.btn-contact { + width: 100%; + padding: 8px 12px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + line-height: 16px; + outline: 0; +} +.box-register .register-sex input { + width: unset; +} +.box-login .btn-login, +.btn-contact, +.btn-customer { + width: 150px !important; + background: var(--color-primary); + color: #fff; + margin-right: 12px; + cursor: pointer; +} +.box-login .btn-login:hover, +.btn-customer:hover { + background: var(--swiper-theme-color); +} +.box-login .item-social { + width: 50%; +} +.social-login-btn { + width: 100%; + height: 41px; + border-radius: 3px; + margin-bottom: 5px; +} +.btn-google { + background: #df4a32; +} +.btn-facebook { + background: #3b5998; +} +.social-login-icon { + height: 41px; + width: 41px; + background: rgba(0, 0, 0, 0.15); + color: #fff; + font-size: 16px; + text-align: center; + line-height: 41px; + border-radius: 4px 0 0 4px; +} +.social-login-txt { + color: #fff; + font-weight: 600; + margin: 0 auto; +} +.box-register h1 { + font-size: 18px; + font-weight: 500; + line-height: 22px; + margin-bottom: 30px; +} +.forgot-password-content { + max-width: 800px; + padding-top: 20px; + margin: 0 auto; +} +.forgot-password-content h2 { + font-size: 26px; + font-weight: 600; + margin-bottom: 16px; +} +.forgot-password-content p { + font-size: 16px; + margin-bottom: 20px; +} +.forgot-password-content table { + width: 100%; +} +.forgot-password-content input { + width: 100%; + padding: 10px 8px; + font-size: 18px; + border-radius: 5px; + outline: 0; + border: 1px solid var(--color-primary); +} +.forgot-password-content td:first-child { + font-size: 18px; + width: 270px; +} +.btn-forgot-password { + display: block; + width: 50% !important; + margin: 30px auto; + height: 46px; + border: 0; + border-radius: 6px; + background-color: var(--color-primary); + font-size: 18px; + font-weight: 600; + color: #fff; + margin-top: 30px; + cursor: pointer; +} +.account { + padding: 30px 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + gap: 10px; + font-size: 16px; +} +.account .col-left { + border-right: 1px solid #f5f5f5; +} +.account .left-title { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin: 0 60px 20px 0; + width: 220px; +} +.account .left-title span { + font-size: 16px; + font-weight: 400; +} +.account .left-title p { + font-size: 18px; + margin-top: 4px; +} +.account .title-list { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} +.account .title-list a { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + gap: 8px; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 10px 14px; +} +.account .title-list a:hover { + background-color: #f5f5f5; +} +.account .col-right { + padding: 10px; +} +.account .col-right h2 { + font-size: 22px; + font-weight: 600; + margin-bottom: 16px; +} +.info-page table { + width: 520px; +} +.account .col-right .form-input { + width: 100%; + padding-left: 13px; + border-radius: 5px; + border: 1px solid #e1e1e1; + height: 38px; + margin-bottom: 8px; +} +.btn-change { + padding: 10px 20px; + border: none; + background-color: var(--color-primary); + color: #fff; + border-radius: 5px; + font-size: 16px; + cursor: pointer; +} +.order-page table { + font-size: 16px; +} +.order-page td { + padding: 10px; + border: 1px solid #ccc; +} +.red-bold { + color: #d91605; + font-weight: 600; +} +.box-contact .form-group { + margin-bottom: 16px; +} +.box-contact .col-form-label { + margin-bottom: 8px; + display: block; +} +.box-contact .input-holder input { + width: 100%; + padding: 8px 12px; + outline: 0; + border: 1px solid #ced4da; + color: #495057; + border-radius: 5px; +} +.brand-page { + padding: 20px 10px; + margin-bottom: 30px; +} +.brand-page .featured-brand { + width: 100%; + float: left; + margin-bottom: 30px; +} +.brand-page .featured-brand .title-n { + width: 100%; + float: left; + font-size: 18px; + text-transform: uppercase; + font-weight: 700; + margin-bottom: 20px; +} +.brand-page .featured-brand .list-n { + width: 100%; + float: left; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} +.brand-page .featured-brand .list-n li { + width: 12.5%; + float: left; + text-align: center; + margin-bottom: 10px; +} +.brand-page .featured-brand .list-n li img { + max-height: 25px; +} +.brand-page .brand-list { + margin-bottom: 30px; +} +.brand-page .brand-list .first-letter { + float: left; + margin-right: 30px; +} +.brand-page .brand-list .first-letter .title-n { + float: left; + font-size: 18px; + text-transform: uppercase; + font-weight: 700; + line-height: 25px; +} +.brand-page .brand-list .list-letter { + float: left; +} +.brand-page .brand-list .list-letter li { + float: left; + margin-right: 25px; + font-size: 16px; + line-height: 25px; +} +.brand-page .brand-item { + margin-bottom: 20px; +} +.brand-page .brand-item .smallTitle { + font-size: 18px; + font-weight: 700; + margin-bottom: 10px !important; + line-height: 30px; + border-bottom: solid 1px #ccc; +} +.brand-page .brand-item .list-unstyled { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} +.brand-page .brand-item .list-unstyled li { + text-align: center; + padding: 0 10px; + margin-bottom: 20px; + text-transform: capitalize; +} +.brand-page .brand-item .list-unstyled li img { + max-height: 25px; + width: auto; +} +.brand-page a { + color: #222; +} +.brand-page a:hover { + color: var(--color-primary); +} +.brand-detail-page .category-nav-list img { + width: 40px; +} +.name-item-drive { + width: 240px; + padding: 0 8px !important; + margin: 14px 0 !important; +} +.page-error .box-error-404 { + gap: 30px; + margin: 50px auto; +} +.page-error .box-img img { + max-width: 500px; +} +.page-error .error-content h3 { + color: #30425b; + font-size: 48px; + font-weight: 500; + line-height: 57px; + max-width: 460px; + text-align: center; + margin-bottom: 30px; +} +.page-error .list-contact .item-contact { + margin: 0 10px; + width: 130px; +} +.page-error .list-contact .item-contact p { + color: #666; + font-size: 12px; + line-height: 17px; + margin-bottom: 5px; + text-align: center; +} +.page-error .list-contact .item-contact img { + width: 75px; +} +.page-error .error-content .link { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + border-radius: 20px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + height: 40px; +} +.page-error .error-content .link--blue { + background-color: #2f80ed; +} +.page-error .error-content .link--yellow { + background-color: #0f5b99; + padding: 12px; +} +.page-error .error-content .link-tel { + color: #000; + font-size: 16px; + font-weight: 700; +} +.error-content .txt { + color: #30425b; + font-size: 24px; + line-height: 27px; + margin-bottom: 15px; +} +#adv-popup .background { + display: none; + position: fixed; + height: 100% !important; + width: 100%; + top: 0; + left: 0; + background: #000; + z-index: 9999999; + opacity: 0.8; +} +#adv-popup .banner { + display: none; + position: fixed; + z-index: 99999991; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + top: 50%; + left: 50%; +} +#adv-popup .close { + font-size: 25px; + right: 0; + top: 0; + color: red; + font-weight: 700; + position: absolute; + opacity: 1; + text-shadow: none; + cursor: pointer; +} +#adv-popup .banner img { + max-width: 100%; + display: block; + margin: auto; + width: auto; + height: auto; +} +.box-article-detail .box-article-detail-ct .swiper-slide { + margin: 0 10px 10px 0; + width: calc(100% / 3 - 10px); + border: solid 1px #cacaca; + border-radius: 8px; + overflow: hidden; +} +#content-desc p { + -webkit-margin-after: 1em; + margin-block-end: 1em; +} +#content-desc h1, +#content-desc h2, +#content-desc h4, +#content-desc h5, +#content-desc h6 { + -webkit-margin-after: 0.83em; + margin-block-end: 0.83em; +} +#content-desc h3 { + -webkit-margin-after: 1em; + margin-block-end: 1em; +} +.build-pc .popup-select.active .fa-search { + -webkit-filter: unset; + filter: unset; +} +#fancybox-showroom { + max-width: 1000px; +} +.popup-showrom-container { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} +.popup-showrom-container .group-title { + border-bottom: 1px solid; + padding: 0 10px; + font-size: 16px; + font-weight: 700; + line-height: 44px; + width: 100%; +} +.popup-showrom-container .item { + padding: 15px; + font-size: 16px; + line-height: 1.6; + width: calc(50% - 10px); + margin-bottom: 20px; + border-radius: 12px; + background: -webkit-gradient(linear, left top, left bottom, from(#3343da), to(#85b6e3)); + background: -o-linear-gradient(#3343da, #85b6e3); + background: linear-gradient(#3343da, #85b6e3); + color: #fff; +} +.popup-showrom-container .item .item-title { + font-size: 18px; + font-weight: 700; + color: #fff; +} +.popup-showrom-container .item p { + margin: 0 0 9px 0; +} +.popup-showrom-container .item iframe { + display: block; + min-height: 250px; +} +.global-menu-container { + position: relative; + width: 200px; + margin-right: 20px; + padding-bottom: 10px; +} +.global-menu-container .group-title { + background: #fff; + border-radius: 6px; + padding: 0 12px; + line-height: 32px; + font-weight: 700; + text-transform: uppercase; + color: #0f5b99; + cursor: pointer; +} +.global-menu-container .global-menu-holder { + opacity: 0; + visibility: visible; + z-index: -1; + position: absolute; + -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + width: 200px; + height: 464px; + -webkit-transition: 0.3s all; + -o-transition: 0.3s all; + transition: 0.3s all; + top: calc(100% + 20px); +} +.global-menu-container .group-title i { + -webkit-filter: inherit; + filter: inherit; + margin: 0 5px 0 0; +} +.global-menu-container:hover .global-menu-holder { + opacity: 1; + visibility: visible; + top: 100%; + z-index: 99; +} +.global-menu-holder .item:first-child .cat-1 { + border-radius: 5px 5px 0 0; +} +.global-menu-holder .sub-menu-list { + display: none; + background: #fff; + position: absolute; + left: 200px; + top: 0; + height: 464px; + overflow: auto; + width: 1000px; + -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + border-radius: 0 10px 10px 0; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 15px 10px 15px 15px; +} +.global-menu-holder .item .cat-1 { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding: 6px 10px; + line-height: 24px; + background: #fff; + -webkit-transition: unset; + -o-transition: unset; + transition: unset; + height: 100%; +} +.global-menu-holder .item .cat-1 img { + margin-right: 10px; + width: 20px; + height: -webkit-fit-content; + height: -moz-fit-content; + height: fit-content; +} +.global-menu-holder .item .cat-1 .cat-title { + width: calc(100% - 30px); + display: block; + font-size: 12px; +} +.global-menu-holder .item:last-child .cat-1 { + border-radius: 0 0 5px 5px; +} +.global-menu-holder .item:hover .cat-1 { + color: #fff; + background: #0a76e4; +} +.global-menu-holder .item:hover .cat-1 img { + -webkit-filter: brightness(0) invert(1); + filter: brightness(0) invert(1); +} +.global-menu-holder .item:hover .sub-menu-list { + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} +.global-menu-holder .item { + height: calc(100% / 12); +} +.global-menu-holder .sub-menu-list .sub-cat-2 { + width: 25%; + padding: 0 15px 20px 0; +} +.global-menu-holder .sub-menu-list a { + display: table; + margin: 0 0 10px; + line-height: 20px; +} +.global-menu-holder .sub-menu-list .cat-2 { + font-weight: 700; + color: var(--swiper-theme-color); + font-size: 14px; + line-height: 22px; + text-transform: uppercase; + margin-bottom: 12px; +} +.global-menu-holder .sub-menu-list a:hover { + color: #e31223; +} +.header { + position: relative; +} +.header .banner-header-right { + position: absolute; + right: 0; +} +.header .banner-header-left { + position: absolute; + left: 0; +} +@media (max-width: 1400px) { + .header .banner-header-right img, + .header .banner-header-left img { + width: 84px; + } +} +.page-product-detail .box-right .content-spec table * { + width: auto !important; + word-break: normal; +} +.article-search-container { + margin-bottom: 12px; + padding: 0; + display: flex; + align-items: center; + justify-content: space-between; + position: relative; + overflow: hidden; + border: 1px solid #e1e1e1; +} +.article-search-container input { + height: 40px; + padding: 0 10px; + width: calc(100% - 40px); + background: #fff; + margin: 0; + border: 0; + outline: none; +} +.article-search-container button { + height: 40px; + width: 40px; + text-align: center; + border: 0; + outline: none; + cursor: pointer; + background: #0f5b99; + color: #fff; + font-size: 16px; +} +#paging-comment a { + border-radius: 50%; + padding: 5px 12px; +} +#paging-comment a.active { + background: #0a76e4; + border: solid 1px #0a76e4; + color: #fff; + font-weight: 600; +} +#paging-comment .paging { + display: flex; + align-items: center; + justify-content: center; +} +.btn-more { + display: block; + width: 200px; + height: 40px; + text-align: center; + line-height: 40px; + border: 1px solid #1781e0; + border-radius: 5px; + margin: 0 auto; + color: #1781e0; +} +.btn-more:hover { + background: #1781e0; + color: #fff; +} +.box-review .item-comment:nth-child(n + 3) { + display: none; +} +.overlay { + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + background: rgba(0, 0, 0, 0.6); + z-index: 99; + display: none; +} +.overlay.active { + display: block; +} +#popup-hotline .content-pop .item-people .phone { + font-weight: 700; + margin-right: 10px; + color: #ffb233; + width: 100px; + display: inline-block; +} + +.p-icon-holder * { + position: absolute; + height: auto; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-repeat: no-repeat; + background-position: center; + background-size: 100% 100%; + z-index: 1; +} +.icon-marketing * { + position: absolute; + height: auto; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-repeat: no-repeat; + background-position: center; + background-size: 100% 100%; + z-index: 1; +} diff --git a/src/styles/sf-pro-display.css b/src/styles/sf-pro-display.css new file mode 100644 index 0000000..7f756c1 --- /dev/null +++ b/src/styles/sf-pro-display.css @@ -0,0 +1,72 @@ +@font-face { + font-family: 'SF Pro Display'; + font-style: normal; + font-weight: 400; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYREGULAR.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: italic; + font-weight: 100; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYULTRALIGHTITALIC.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: italic; + font-weight: 200; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYTHINITALIC.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: italic; + font-weight: 300; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYLIGHTITALIC.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: normal; + font-weight: 500; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYMEDIUM.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: italic; + font-weight: 600; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYSEMIBOLDITALIC.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: normal; + font-weight: 700; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYBOLD.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: italic; + font-weight: 800; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYHEAVYITALIC.woff') format('woff'); +} +@font-face { + font-family: 'SF Pro Display'; + font-style: italic; + font-weight: 900; + src: + local('SF Pro Display'), + url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYBLACKITALIC.woff') format('woff'); +} diff --git a/src/types/Banner.ts b/src/types/Banner.ts new file mode 100644 index 0000000..ce94830 --- /dev/null +++ b/src/types/Banner.ts @@ -0,0 +1,50 @@ +export interface BannerItem { + id: string, + display: string, + fileUrl: string, + desUrl: string, + title: string, + width: number, + height: number, + fileType: string, + summary: string +} + +export interface BannerFooterData { + banner_feedback: BannerItem[]; + banner_column_right: BannerItem[]; + banner_column_left: BannerItem[]; + +} + +export interface BannerHeaderData { + banner_buildpc: BannerItem[]; + banner_header_top_mb_2023: BannerItem[]; + banner_header_top: BannerItem[]; + banner_page_deal_2023: BannerItem[]; + banner_column_left: BannerItem[]; + banner_column_right: BannerItem[]; +} + +export interface BannerHomePageData { + slider_home: BannerItem[]; + banner_under_slider_trangchu: BannerItem[]; + banner_slider_mobile_2023: BannerItem[]; + banner_product_category: BannerItem[]; + banner_slider_homepage_main: BannerItem[]; + banner_underslider_trangchu_mobile: BannerItem[]; + banner_bot_home: BannerItem[]; + banner_mid_home: BannerItem[]; + banner_right_home: BannerItem[]; + banner_collection_pc: BannerItem[]; +} + + +export interface TemplateBanner { + footer: BannerFooterData; + header: BannerHeaderData; + homepage: BannerHomePageData; +} + +export type BannerType = TemplateBanner[]; + diff --git a/src/types/Menu.ts b/src/types/Menu.ts new file mode 100644 index 0000000..231987a --- /dev/null +++ b/src/types/Menu.ts @@ -0,0 +1,21 @@ +export interface Category { + id: string; + title: string; + parentId: string; + thumnail: string; + big_image: string; + isParent: string; + url: string; + is_featured: string; + summary: string; + children: Category[]; // Đệ quy: Quan trọng nhất để định nghĩa cấp con +} + +export interface ProductCategory { + product: { + all_category: Category[]; + }; +} + + +export type MenuTypes = ProductCategory[]; diff --git a/tsconfig.json b/tsconfig.json index 3a13f90..607086d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,9 @@ } ], "paths": { - "@/*": ["./*"] + "@/*": ["./*"], + "@components/*": ["./src/components/*"], + "@types/*": ["./src/types/*"] } }, "include": [