:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #f72585;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --success: #4cc9f0;
    --warning: #f8961e;
    --danger: #e5383b;
    --card-bg: rgba(255, 255, 255, 0.85);
    --header-height: 90px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --light-gray: #f5f7fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --black: #212529;
    --border-color: #e2e8f0;
    --text-color: #2d3748;
    --text-light: #718096;
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --accent: #ff6b6b;
    --text-dark: #333;
    --text-medium: #555;
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
    --radius: 12px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Noto Sans SC',Poppins,sans-serif;
    background: linear-gradient(135deg,#f5f7fa 0,#e4edf5 100%);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-width: 1200px
}

section {
    margin: 50px 0
}

.sticky {
    position: sticky;
    top: 166px;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right,var(--primary),var(--accent));
    border-radius: 2px;
    margin: 20px auto 0
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
    min-width: 1200px
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary)
}

.logo img {
    height: 50px
}

.logo span {
    color: var(--accent)
}

.logo i {
    font-size: 2rem;
    animation: pulse 2s infinite
}

.search-box {
    display: flex;
    width: 600px;
    box-shadow: var(--shadow);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgb(199 199 199 / 50%)
}

.search-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,.1)
}

.search-box input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    outline: 0;
    font-size: 1rem;
    background: var(--light)
}

.search-box button {
    padding: 0 30px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition)
}

.search-box button:hover {
    background: linear-gradient(135deg,var(--secondary),var(--primary))
}

.user-actions {
    display: flex;
    gap: 15px
}

.user-actions a {
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid rgb(199 199 199 / 50%)
}

.user-actions .login {
    background: var(--light);
    color: var(--dark)
}

.user-actions .login:hover {
    background: #e9ecef;
    transform: translateY(-3px)
}

.user-actions .post {
    background: linear-gradient(135deg,var(--accent),#b5179e);
    color: #fff
}

.user-actions .post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247,37,133,.3)
}

nav {
    margin-top: 20px
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px
}

nav ul li {
    position: relative
}

nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 50px;
    color: var(--gray);
    transition: var(--transition);
    font-size: 16px;
}

nav ul li a img {
    height: 18px
}

nav ul li a:hover,nav ul li.active>a {
    background: rgba(67,97,238,.1);
    color: var(--primary)
}

nav ul li a i {
    font-size: 1.1rem
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    width: 220px;
    box-shadow: var(--shadow);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
    padding: 10px
}

.dropdown-menu .active {
    background: rgba(67,97,238,.1);
    color: var(--primary)
}

nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition)
}

.dropdown-menu a:hover {
    background: rgba(67,97,238,.08);
    color: var(--primary);
    padding-left: 25px
}

.hero-slider {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
    box-shadow: var(--shadow)
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 80px
}

.slide.active {
    opacity: 1
}

.slide-content {
    max-width: 600px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    animation: fadeInUp 1s ease
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2
}

.slide-content p {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 1.1rem
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: 0;
    font-size: 1rem
}

.btn-primary {
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    color: #fff
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67,97,238,.3)
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 25px;
    margin-top: 40px
}

.category-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.5)
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,rgba(67,97,238,.05),rgba(63,55,201,.05));
    z-index: -1;
    opacity: 0;
    transition: var(--transition)
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1)
}

.category-card:hover::before {
    opacity: 1
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 2rem
}

.category-icon img {
    width: 100%;
    height: 100%
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark)
}

.category-card p {
    color: var(--gray);
    font-size: .95rem;
    margin-bottom: 20px
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: .95rem
}

.category-link:hover {
    gap: 8px
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.5)
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1)
}

.info-image {
    height: 200px;
    overflow: hidden;
    position: relative
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.info-card:hover .info-image img {
    transform: scale(1.05)
}

.info-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600
}

.info-content {
    padding: 25px
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark)
}

.info-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent)
}

.info-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    height: 100px;
    overflow: auto
}

.info-description::-webkit-scrollbar {
    width: 4px;
    background-color: rgba(245,247,255,.3)
}

.info-description::-webkit-scrollbar-thumb {
    background-color: #afafaf;
    border-radius: 4px
}

.info-description::-webkit-scrollbar-track {
    background: rgba(200,200,200,.1)
}

.info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,.05);
    color: var(--gray);
    font-size: .9rem
}

.info-location {
    display: flex;
    align-items: center;
    gap: 5px
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 30px
}

.business-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.5)
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1)
}

.business-image {
    height: 180px;
    overflow: hidden;
    position: relative
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.business-card:hover .business-image img {
    transform: scale(1.05)
}

.business-content {
    padding: 25px
}

.business-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.business-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7
}

.business-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: .9rem
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--warning)
}

footer {
    background: linear-gradient(135deg,#2b2d42,#1d1e2c);
    color: rgba(255,255,255,.8);
    padding: 40px 0 30px;
    position: relative;
    min-width: 1200px
}

.footer-top {
    margin-bottom: 40px
}

.footer-column h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px
}

.footer-column ul {
    list-style: none;
    overflow: auto
}

.footer-column ul li {
    margin-bottom: 10px;
    float: left;
    margin-right: 20px;
    background-color: rgb(255 255 255 / 18%);
    padding: 5px 10px;
    border-radius: 6px
}

.footer-column ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition)
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px)
}

.footer-column .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    transition: var(--transition)
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px)
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    font-size: .9rem
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.gov-news-module .news-module {
    box-sizing: border-box;
    color: var(--black);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.5);
    padding: 25px
}

.gov-news-module h2 {
    color: var(--secondary);
    font-size: 24px;
    position: relative;
    font-weight: 700;
    margin-bottom: 20px
}

.gov-news-module h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right,var(--primary),var(--accent));
    border-radius: 2px
}

.gov-news-module .module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.gov-news-module .view-more {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color .3s
}

.gov-news-module .view-more:hover {
    color: var(--primary)
}

.gov-news-module .view-more i {
    margin-left: 5px
}

.gov-news-module .news-container {
    display: flex;
    margin: unset;
    box-shadow: unset;
    background: unset;
    border-radius: unset;
    overflow: hidden;
    gap: 20px
}

.gov-news-module .featured-news {
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 438px;
    float: left
}

.gov-news-module .featured-news img {
    transition: transform .3s;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gov-news-module .featured-news:hover img {
    transform: scale(1.05)
}

.gov-news-module .featured-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top,rgba(0,0,0,.8),transparent);
    color: var(--white)
}

.gov-news-module .featured-news-content h3 {
    font-size: 20px;
    margin-bottom: 10px
}

.gov-news-module .featured-news-content p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: .9
}

.gov-news-module .featured-news-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    opacity: .8
}

.gov-news-module .news-date {
    margin-right: 15px
}

.gov-news-module .news-list {
    display: flex;
    flex-direction: column;
    width: 438px;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    border-bottom: unset
}

.gov-news-module .news-item {
    padding: 15px;
    border-bottom: #f0f8ff;
    display: block;
    border-bottom: 1px solid var(--medium-gray);
    border-radius: 8px
}

.gov-news-module .news-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #353333;
    font-weight: unset;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.gov-news-module .news-item:hover h3 {
    color: var(--primary)
}

.gov-news-module .news-item-meta {
    display: flex;
    justify-content: space-between;
    color: var(--dark-gray);
    font-size: 12px
}

.gov-news-module .category-tag {
    background-color: var(--light-gray);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px
}

.gov-news-module .tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray)
}

.gov-news-module .tab {
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: color .3s;
    font-size: 16px
}

.gov-news-module .tab.active {
    color: var(--primary);
    font-weight: 600
}

.gov-news-module .tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary)
}

.xinxiItem-scope .info-detail {
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.05)
}

.xinxiItem-scope .info-header {
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px
}

.xinxiItem-scope .info-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px
}

.xinxiItem-scope .info-title h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
    margin-right: 15px
}

.xinxiItem-scope .category-tag {
    background-color: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px
}

.xinxiItem-scope .info-meta {
    display: flex;
    color: #666;
    font-size: 14px
}

.xinxiItem-scope .info-meta span {
    margin-right: 20px
}

.xinxiItem-scope .info-content {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
    min-height: 200px
}

.xinxiItem-scope .info-content .card-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    width: 500px;
    margin-top: 20px
}

.xinxiItem-scope .info-content .card-img img {
    width: 100%;
    height: 138px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgb(199 199 199 / 50%)
}

.xinxiItem-scope .user-info {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.xinxiItem-scope .user-profile {
    display: flex;
    align-items: center
}

.xinxiItem-scope .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--primary)
}

.xinxiItem-scope .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.xinxiItem-scope .user-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333
}

.xinxiItem-scope .user-details p {
    margin: 0;
    color: #666;
    font-size: 14px
}

.xinxiItem-scope .contact-info {
    display: flex;
    flex-direction: column
}

.xinxiItem-scope .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333
}

.xinxiItem-scope .contact-item i {
    margin-right: 8px;
    color: var(--secondary)
}

.xinxiItem-scope .contact-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s;
    margin-top: 10px
}

.xinxiItem-scope .contact-btn:hover {
    background: var(--secondary)
}

.info-listing .header {
    margin-bottom: 30px
}

.info-listing .header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary)
}

.info-listing .filters {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    margin-bottom: 20px
}

.info-listing .filter-section {
    margin-bottom: 15px
}

.info-listing .filter-section:last-child {
    margin-bottom: 0
}

.info-listing .filter-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center
}

.info-listing .filter-title i {
    margin-right: 8px;
    color: var(--primary)
}

.info-listing .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.info-listing .filter-option {
    padding: 3px 10px;
    background-color: var(--light-gray);
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s ease;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    margin-right: 5px
}

.info-listing .filter-option:hover {
    background-color: rgba(67,97,238,.1)
}

.info-listing .filter-option.active {
    background-color: var(--primary);
    color: #fff
}

.info-listing .content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.info-listing .card {
    background-color: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .3s ease,box-shadow .3s ease;
    position: relative;
    width: calc(25% - 15px);
    break-inside: avoid;
    border: 1px solid rgb(221 221 221)
}

.info-listing .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.1)
}

.info-listing .card .settop {
    position: absolute;
    width: 37px;
    top: -1px;
    left: -3px
}

.info-listing .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden
}

.info-listing .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.info-listing .card:hover .card-image img {
    transform: scale(1.05)
}

.info-listing .card-content {
    padding: 15px
}

.info-listing .card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    padding: 15px;
    background-color: #4253e2;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0
}

.info-listing .card-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px
}

.info-listing .card-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px
}

.info-listing .card-img img {
    width: 100%;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgb(199 199 199 / 50%)
}

.info-listing .card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.info-listing .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.info-listing .card-tag {
    font-size: 12px;
    padding: 3px 8px;
    background-color: var(--light-gray);
    border-radius: 4px;
    color: var(--text-light)
}

.info-listing .load-more {
    text-align: center;
    margin-top: 30px
}

.info-listing .load-more-btn {
    padding: 10px 25px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .2s ease
}

.info-listing .load-more-btn:hover {
    background-color: var(--secondary)
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-family: "Segoe UI",sans-serif;
    color: #6c757d
}

.pagination-wrapper a,.pagination-wrapper span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer
}

.pagination-wrapper a {
    border: 1px solid #e9ecef;
    background-color: #fff;
    color: #495057
}

.pagination-wrapper a:hover {
    border-color: #409eff;
    color: #409eff
}

.pagination-wrapper .active {
    border: 1px solid #409eff;
    background-color: #409eff;
    color: #fff;
    cursor: default
}

.pagination-wrapper .disabled {
    border: 1px solid #e9ecef;
    background-color: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed
}

.page-stat {
    color: #6c757d;
    font-size: .95rem
}

@media (max-width: 768px) {
    .pagination-wrapper {
        gap:4px;
        padding: 8px 0
    }

    .pagination-wrapper a,.pagination-wrapper span {
        min-width: 32px;
        height: 32px;
        font-size: .9rem
    }
}

.news-container {
    display: flex;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
    background: #fff;
    border-radius: 10px
}

.news-sidebar {
    width: 220px;
    padding: 20px;
    background: #f8f9fa;
    border-right: 1px solid #eee;
    border-radius: 10px 0 0 10px
}

.sidebar-title {
    font-size: 18px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--primary)
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.category-list li {
    margin-bottom: 10px;
    transition: all .3s ease
}

.category-list li a {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all .3s ease
}

.category-list li:hover a {
    color: var(--primary);
    background: rgba(67,97,238,.05)
}

.category-list li.active a {
    color: #fff;
    background: var(--primary)
}

.news-content {
    flex: 1;
    padding: 20px
}

.news-content .news-overflow {
    overflow: auto;
    overflow-x: hidden
}

.news-content .news-overflow::-webkit-scrollbar {
    width: 4px;
    background-color: rgba(245,247,255,.3)
}

.news-content .news-overflow::-webkit-scrollbar-thumb {
    background-color: #afafaf;
    border-radius: 4px
}

.news-content .news-overflow::-webkit-scrollbar-track {
    background: rgba(200,200,200,.1)
}

.news-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: transform .3s ease
}

.news-item:hover {
    transform: translateX(5px)
}

.news-image {
    flex-shrink: 0;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 4px
}

.news-image img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    transition: transform .5s ease
}

.news-item:hover .news-image img {
    transform: scale(1.05)
}

.news-info {
    flex: 1
}

.news-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #535353
}

.news-item:hover .news-title {
    color: var(--primary)
}

.news-desc {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-meta {
    display: flex;
    font-size: 13px;
    color: #999
}

.news-meta span {
    margin-right: 15px
}

.article-container:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    transform: translateY(-2px)
}

.markdown-body {
    padding-top: 30px;
    border-top: 1px solid #e5e5e5
}

.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6 {
    margin-top: 1.5em;
    margin-bottom: .75em;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 1px solid #eaecef;
    padding-bottom: .3em
}

.markdown-body h1 {
    font-size: 2em
}

.markdown-body h2 {
    font-size: 1.75em
}

.markdown-body h3 {
    font-size: 1.5em
}

.markdown-body h4 {
    font-size: 1.25em
}

.markdown-body p {
    margin-bottom: 1.2em
}

.markdown-body ol,.markdown-body ul {
    padding-left: 2em;
    margin-bottom: 1em
}

.markdown-body code {
    padding: .2em .4em;
    background-color: #f3f4f5;
    border-radius: 3px;
    font-family: SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;
    font-size: .9em
}

.markdown-body pre {
    padding: 1em;
    overflow: auto;
    background-color: #f6f8fa;
    border-radius: 6px;
    margin: 1em 0
}

.markdown-body pre code {
    background-color: transparent;
    padding: 0
}

.markdown-body blockquote {
    padding: .5em 1em;
    border-left: 4px solid #42b983;
    background-color: #f8f8f8;
    margin: 1em 0;
    color: #666
}

.markdown-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0
}

.markdown-body td,.markdown-body th {
    border: 1px solid #dfe2e5;
    padding: .6em 1em
}

.markdown-body th {
    background-color: #f2f2f2
}

.markdown-body a {
    color: #3eaf7c;
    text-decoration: none;
    transition: color .2s
}

.markdown-body a:hover {
    color: #2c8c6b;
    text-decoration: underline
}

.markdown-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 1em auto;
    transition: transform .3s ease
}

.markdown-body img:hover {
    transform: scale(1.01)
}

.markdown-body hr {
    height: 1px;
    background-color: #e1e4e8;
    border: none;
    margin: 2em 0
}

@media (prefers-color-scheme: dark) {
    .article-container {
        background-color:#1a1a1a;
        color: #e0e0e0
    }

    .markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6 {
        color: #e0e0e0;
        border-bottom-color: #333
    }

    .markdown-body code {
        background-color: #2d2d2d
    }

    .markdown-body pre {
        background-color: #2d2d2d
    }

    .markdown-body blockquote {
        background-color: #252525;
        border-left-color: #42b983
    }

    .markdown-body td,.markdown-body th {
        border-color: #444
    }

    .markdown-body th {
        background-color: #333
    }

    .markdown-body a {
        color: #5caf8a
    }

    .markdown-body a:hover {
        color: #7cc2a0
    }

    .markdown-body hr {
        background-color: #444
    }
}

.article-meta {
    color: #666;
    font-size: .9rem;
    margin-bottom: 15px
}

.article-category {
    color: #1a73e8;
    font-weight: 500;
    margin-right: 10px
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0
}

.article .card-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    width: 500px;
    margin-top: 20px
}

.article .card-img img {
    width: 100%;
    height: 138px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgb(199 199 199 / 50%)
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.1)
}

.author-name {
    font-weight: 600;
    color: #111
}

.author-title {
    color: #666;
    font-size: .9rem
}

.tool-shop .sort-bar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    padding: 20px;
    margin-bottom: 20px
}

.tool-shop .sort-options {
    float: right
}

.tool-shop .sort-options a {
    display: inline-block;
    margin-left: 15px;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all .3s
}

.tool-shop .sort-options a.active,.tool-shop .sort-options a:hover {
    color: #fff;
    background-color: var(--primary)
}

.tool-shop .main-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 20px
}

.tool-shop .shop-list {
    flex-grow: 1
}

.tool-shop .shop-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    overflow: hidden;
    transition: transform .2s;
    margin-bottom: 20px
}

.tool-shop .shop-item:hover {
    transform: translateY(-3px)
}

.tool-shop .shop-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333
}

.tool-shop .shop-link {
    flex-direction: row
}

.tool-shop .shop-thumb {
    width: 25%;
    height: 198px;
    background-color: #bfbfbf
}

.tool-shop .shop-info {
    padding: 20px;
    flex-grow: 1
}

.tool-shop .shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tool-shop .shop-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px
}

.tool-shop .shop-meta {
    color: #666;
    font-size: .9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center
}

.tool-shop .shop-meta i {
    margin-right: 5px
}

.tool-shop .shop-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
    flex-wrap: wrap
}

.tool-shop .shop-tag {
    background: #f5f7fa;
    padding: 4px 12px;
    border-radius: 6px;
    color: #666;
    font-size: 12px;
    font-weight: unset
}

.tool-shop .shop-footer {
    text-align: right;
    padding: 15px 0;
    border-top: 1px solid #f0f2f5;
    font-size: .9rem;
    color: #409eff;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.tool-shop .sidebar {
    flex: 0 0 300px;
    max-width: 300px
}

.tool-shop .widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    padding: 20px;
    margin-bottom: 20px
}

.tool-shop .qrcode-container {
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: center
}

.tool-shop .safety-tip {
    line-height: 1.6;
    color: #666;
    text-align: left;
    font-size: 14px;
    margin-top: 20px
}

.tool-shop .text-sm {
    text-align: center
}

.empty-state {
    text-align: center;
    padding: 50px 15px;
    color: #666
}

.empty-state img {
    max-width: 200px;
    margin-bottom: 15px
}

.shopItem-scope .shop-header {
    background: linear-gradient(135deg,var(--primary) 0,#3a0ca3 100%);
    border-radius: var(--radius);
    padding: 35px 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    position: relative;
    color: #fff
}

.shopItem-scope .shop-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,.05);
    border-radius: 50%
}

.shopItem-scope .shop-header::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,.03);
    border-radius: 50%
}

.shopItem-scope .header-content {
    display: flex;
    position: relative;
    z-index: 2
}

.shopItem-scope .shop-logo-container {
    flex-shrink: 0;
    margin-right: 30px;
    position: relative
}

.shopItem-scope .shop-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.3);
    box-shadow: 0 6px 15px rgba(0,0,0,.2);
    transition: var(--transition)
}

.shopItem-scope .shop-logo:hover {
    transform: scale(1.05)
}

.shopItem-scope .vip-badge {
    background: linear-gradient(45deg,gold,#ff9800);
    color: #333;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,.2);
    width: 80px;
    text-align: center;
    margin-left: 20px;
    margin-top: 24px
}

.shopItem-scope .shop-info {
    flex-grow: 1;
    padding-right: 20px
}

.shopItem-scope .shop-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.shopItem-scope .shop-name {
    font-size: 28px;
    font-weight: 700;
    margin-right: 15px
}

.shopItem-scope .shop-type {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500
}

.shopItem-scope .stats-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 20px
}

.shopItem-scope .stat-item {
    background: rgba(255,255,255,.1);
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: var(--transition)
}

.shopItem-scope .stat-item:hover {
    background: rgba(255,255,255,.2);
    transform: translateY(-3px)
}

.shopItem-scope .stat-label {
    font-weight: 500;
    margin-right: 10px;
    min-width: 70px
}

.shopItem-scope .stat-value {
    font-weight: 600;
    font-size: 16px
}

.shopItem-scope .header-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    min-width: 220px
}

.shopItem-scope .phone-number {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: rgba(255,255,255,.1);
    padding: 12px 25px;
    border-radius: 10px;
    transition: var(--transition)
}

.shopItem-scope .phone-number:hover {
    background: rgba(255,255,255,.2)
}

.shopItem-scope .qr-container {
    position: relative;
    text-align: center
}

.shopItem-scope .qr-trigger {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition)
}

.shopItem-scope .qr-trigger:hover {
    background: rgba(255,255,255,.2)
}

.shopItem-scope .qr-trigger i {
    margin-right: 8px;
    font-size: 18px
}

.shopItem-scope .qr-popup {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    margin-bottom: 15px;
    display: none;
    z-index: 100;
    width: 220px;
    text-align: center
}

.shopItem-scope .qr-container:hover .qr-popup {
    display: block;
    animation: fadeIn .3s ease
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.shopItem-scope .qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px
}

.shopItem-scope .qr-text {
    color: var(--text-medium);
    font-size: 14px
}

.shopItem-scope .shop-nav {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden
}

.shopItem-scope .nav-items {
    display: flex;
    width: 458px
}

.shopItem-scope .nav-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    position: relative;
    transition: var(--transition)
}

.shopItem-scope .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background: var(--border)
}

.shopItem-scope .nav-item:hover {
    background: #e0deff;
    color: var(--primary)
}

.shopItem-scope .nav-item.active {
    color: var(--primary);
    font-weight: 600
}

.shopItem-scope .nav-item.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    border-radius: 2px 2px 0 0
}

.shopItem-scope .shop-main {
    display: flex;
    gap: 25px
}

.shopItem-scope .main-content {
    flex: 1;
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow)
}

.shopItem-scope .sidebar {
    flex: 0 0 300px;
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    padding-top: 0;
    box-shadow: var(--shadow);
    align-self: flex-start;
    position: sticky;
    top: 160px
}

.shopItem-scope .section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
    position: relative;
    text-align: left
}

.shopItem-scope .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary)
}

.shopItem-scope .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 25px;
    margin-top: 20px
}

.shopItem-scope .product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
    position: relative
}

.shopItem-scope .product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(67,97,238,.2)
}

.shopItem-scope .product-image {
    height: 200px;
    overflow: hidden;
    position: relative
}

.shopItem-scope .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.shopItem-scope .product-card:hover .product-image img {
    transform: scale(1.05)
}

.shopItem-scope .product-info {
    padding: 20px
}

.shopItem-scope .product-price {
    display: flex;
    align-items: center;
    margin-bottom: 12px
}

.shopItem-scope .price {
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    margin-right: 10px
}

.shopItem-scope .product-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    height: 48px;
    overflow: hidden
}

.shopItem-scope .sales-count {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center
}

.shopItem-scope .sales-count i {
    margin-right: 6px;
    color: var(--primary)
}

.shopItem-scope .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 20px;
    margin-top: 20px
}

.shopItem-scope .gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.shopItem-scope .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.shopItem-scope .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.shopItem-scope .gallery-item:hover img {
    transform: scale(1.08)
}

.shopItem-scope .info-list {
    margin-bottom: 30px
}

.shopItem-scope .info-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f3f3f3;
    align-items: center
}

.shopItem-scope .info-label {
    width: 90px;
    font-weight: 500;
    color: var(--text-dark)
}

.shopItem-scope .info-value {
    flex: 1;
    color: var(--text-medium)
}

.shopItem-scope .location-value {
    display: flex;
    align-items: center;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition)
}

.shopItem-scope .location-value:hover {
    color: var(--primary-dark)
}

.shopItem-scope .location-value i {
    margin-right: 8px
}

.shopItem-scope .description {
    line-height: 1.8;
    color: var(--text-medium);
    margin-top: 25px;
    font-size: 16px
}

.shopItem-scope .safety-alert {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px
}

.shopItem-scope .alert-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333
}

.shopItem-scope .alert-title i {
    color: #ffc107;
    font-size: 20px;
    margin-right: 10px
}

.shopItem-scope .alert-content {
    font-size: 15px;
    line-height: 1.7;
    color: #666
}

.shopItem-scope .business-hours {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid var(--primary)
}

.shopItem-scope .hours-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333
}

.shopItem-scope .hours-title i {
    color: var(--primary);
    font-size: 20px;
    margin-right: 10px
}

.shopItem-scope .hours-content {
    font-size: 15px;
    line-height: 1.7;
    color: #666
}

.news-index .module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #fff;
    border-bottom: 1px solid #eaeaea
}

.news-index .module-header h2 {
    font-size: 1.8rem;
    color: #1a5fb4;
    position: relative;
    padding-left: 15px
}

.news-index .module-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: #1a5fb4;
    border-radius: 2px
}

.news-index .view-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #1a5fb4;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all .3s ease
}

.news-index .view-more:hover {
    background: #0d4a9c;
    transform: translateX(5px)
}

.news-index .view-more i {
    margin-left: 8px;
    transition: transform .3s ease
}

.news-index .view-more:hover i {
    transform: translateX(3px)
}

.news-index .news-container {
    display: flex;
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px
}

.news-index .featured-news {
    flex: 1 1 100%;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: transform .3s ease
}

.news-index .featured-news:hover {
    transform: scale(1.02)
}

.news-index .featured-news a {
    display: block;
    text-decoration: none;
    color: inherit
}

.news-index .featured-news img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.news-index .featured-news:hover img {
    transform: scale(1.05)
}

.news-index .featured-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,rgba(0,0,0,.9),transparent);
    padding: 30px;
    color: #fff
}

.news-index .featured-news-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3
}

.news-index .featured-news-content p {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-index .featured-news-meta {
    display: flex;
    gap: 20px;
    font-size: .95rem;
    opacity: .9
}

.news-index .featured-news-meta span {
    display: flex;
    align-items: center;
    gap: 5px
}

.news-index .news-lists-container {
    overflow: auto;
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px)
}

.news-index .news-list {
    background: #f9fbfd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
    float: left;
    width: calc(50% - 20px);
    margin: 10px
}

.news-index .news-list-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea
}

.news-index .news-list-title i {
    color: #1a5fb4;
    font-size: 1.2rem
}

.news-index .news-list-title h3 {
    color: #1a5fb4;
    font-size: 1.4rem
}

.news-index .news-item {
    padding: 18px 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #fff;
    transition: all .3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,.03);
    border-left: 3px solid #1a5fb4;
    display: block;
    border-bottom: unset
}

.news-index .news-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(26,95,180,.15);
    border-left: 3px solid #ff6b00
}

.news-index .news-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.news-index .news-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    color: #666
}

.news-index .news-date {
    display: flex;
    align-items: center;
    gap: 5px
}

.news-index .category-tag {
    background: #e6f2ff;
    color: #1a5fb4;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 500
}

.news-index .hot-tag {
    background: #ffe8e8;
    color: #e74c3c
}

.news-index .new-tag {
    background: #e8f5e9;
    color: #27ae60
}

.news-index .section-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    font-size: .9rem
}

.index {
    min-width: 1200px
}

.index .main-container {
    display: flex;
    gap: 30px
}

.index .left-content {
    flex: 0 0 70%
}

.index .right-sidebar {
    position: sticky;
    top: 166px;
    height: fit-content
}

.index .module {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06)
}

.index .module-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.index .module-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px
}

.index .module-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: #ff6b35;
    border-radius: 2px
}

.index .more-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color .3s
}

.index .more-link:hover {
    color: #ff6b35
}

.index .article-module {
    margin-bottom: 30px
}

.index .slideshow-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px
}

.index .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .8s ease-in-out;
    background-size: cover;
    background-position: center
}

.index .slide.active {
    opacity: 1
}

.index .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,rgba(0,0,0,.6),rgba(0,0,0,.2))
}

.index .index-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    z-index: 2
}

.index .slide-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600
}

.index .slide-desc {
    font-size: 14px;
    opacity: .9;
    line-height: 1.5
}

.index .slide-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3
}

.index .slide-prev {
    left: 15px
}

.index .slide-next {
    right: 15px
}

.index .slide-btn {
    background: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center
}

.index .slide-btn:hover {
    background: rgba(255,255,255,.3);
    transform: scale(1.1)
}

.index .slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3
}

.index .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .3s
}

.index .indicator.active {
    background: #fff;
    transform: scale(1.2)
}

.index .article-lists {
    display: grid;
    grid-template-columns: minmax(300px,1fr) minmax(300px,1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%
}

.index .article-list {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06)
}

.index .list-title {
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 17px;
    font-weight: 600
}

.index .article-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: all .3s
}

.index .article-item:last-child {
    border-bottom: none
}

.index .article-item:hover {
    background: #f8f9fa;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px
}

.index .article-item-title {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: calc(100% - 100px)
}

.index .article-item-title a {
    color: #333;
    text-decoration: none;
    transition: color .3s
}

.index .article-item-title a:hover {
    color: #ff6b35
}

.index .article-item-date {
    color: #999;
    font-size: 12px;
    margin-left: auto
}

.index .classified-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06)
}

.index .classified-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all .3s;
    cursor: pointer
}

.index .classified-item:last-child {
    border-bottom: none
}

.index .classified-item:hover {
    background: #f8f9fa
}

.index .classified-image {
    width: 120px;
    height: 90px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
    flex-shrink: 0
}

.index .classified-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.index .classified-title {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.4;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.index .classified-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4
}

.index .classified-meta {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.index .classified-price {
    font-size: 16px;
    color: #ff6b35;
    font-weight: 600
}

.index .classified-location {
    font-size: 12px;
    color: #999
}

.index .classified-date {
    font-size: 12px;
    color: #999
}

.index .classified-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 8px
}

.index .classified-tag {
    background: #f0f0f0;
    color: #666;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px
}

.index .category-nav {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06)
}

.index .category-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333
}

.index .category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px
}

.index .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border-radius: 6px;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    color: #333
}

.index .category-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px)
}

.index .category-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    border-radius: 6px;
    background-size: cover;
    background-position: center
}

.index .category-name {
    font-size: 15px;
    text-align: center;
    line-height: 1.2
}

.index .business-list {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06)
}

.index .business-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333
}

.index .business-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all .3s
}

.index .business-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.index .business-item:hover {
    background: #f8f9fa;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 6px
}

.index .business-logo {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    margin-right: 12px;
    flex-shrink: 0
}

.index .business-info {
    flex: 1
}

.index .business-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
    white-space: unset;
    overflow: unset;
    text-overflow: unset
}

.index .business-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.index .business-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px
}

.index .business-stars {
    color: orange;
    font-size: 12px
}

.index .business-score {
    font-size: 11px;
    color: #999
}
.itemxx-scope .info-detail-container{font-family:"Microsoft YaHei",Arial,sans-serif;color:#333;max-width:1200px;margin:0 auto;padding:20px;box-sizing:border-box}
.itemxx-scope .info-main{background:#fff;padding:20px;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.05)}
.itemxx-scope .info-header{padding-bottom:15px;border-bottom:1px solid #eee;margin-bottom:20px}
.itemxx-scope .info-title{font-size:22px;font-weight:700;margin:0 0 10px 0;color:#222}
.itemxx-scope .info-meta{font-size:14px;color:#999}
.itemxx-scope .info-meta span{margin-right:15px}
.itemxx-scope .info-category{color:#38f}
.itemxx-scope .info-content{display:flex}
.itemxx-scope .info-detail{flex:1;padding-right:30px}
.itemxx-scope .info-sidebar{width:280px}
.itemxx-scope .info-gallery{margin-bottom:30px}
.itemxx-scope .main-image{margin-bottom:10px}
.itemxx-scope .main-image img{max-width:100%;height:auto;display:block;border:1px solid #eee}
.itemxx-scope .thumbnails{display:flex;gap:10px}
.itemxx-scope .thumbnails img{width:80px;height:60px;border:1px solid #eee;cursor:pointer}
.itemxx-scope .thumbnails img:hover{border-color:#38f}
.itemxx-scope .info-desc h3{font-size:18px;margin:0 0 15px 0;padding-bottom:10px;border-bottom:1px solid #eee}
.itemxx-scope .desc-content{line-height:1.8;margin-bottom:30px}
.itemxx-scope .info-attributes h3{font-size:18px;margin:0 0 15px 0;padding-bottom:10px;border-bottom:1px solid #eee}
.itemxx-scope .info-attributes ul{list-style:none;padding:0;margin:0}
.itemxx-scope .info-attributes li{display:flex;margin-bottom:10px;line-height:1.5}
.itemxx-scope .attr-name{width:80px;color:#999}
.itemxx-scope .attr-value{flex:1}
.itemxx-scope .seller-info{border:1px solid #eee;border-radius:4px;padding:15px}
.itemxx-scope .seller-header{display:flex;align-items:center;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #eee}
.itemxx-scope .seller-avatar img{width:60px;height:60px;border-radius:50%;margin-right:15px}
.itemxx-scope .seller-name h4{margin:0 0 5px 0;font-size:16px}
.itemxx-scope .seller-level{font-size:12px;color:#999;background:#f5f5f5;padding:2px 5px;border-radius:2px}
.itemxx-scope .contact-methods{margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #eee}
.itemxx-scope .contact-phone{display:flex;align-items:center;font-size:18px;color:#f60;text-decoration:none;margin-bottom:10px}
.itemxx-scope .icon-phone{display:inline-block;width:20px;height:20px;background:#f60;margin-right:10px;border-radius:50%;position:relative}
.itemxx-scope .icon-phone:after{content:"";position:absolute;width:10px;height:6px;border:2px solid #fff;border-top:none;border-radius:0 0 5px 5px;top:5px;left:5px}
.itemxx-scope .btn-contact{display:block;width:100%;padding:10px;background:#f60;color:#fff;border:none;border-radius:4px;font-size:16px;cursor:pointer}
.itemxx-scope .btn-contact:hover{background:#e55c00}
.itemxx-scope .location-info{margin-bottom:20px}
.itemxx-scope .location-info h5{font-size:16px;margin:0 0 10px 0}
.itemxx-scope .icon-location{display:inline-block;width:16px;height:16px;background:#38f;margin-right:5px;border-radius:50%;position:relative}
.itemxx-scope .icon-location:after{content:"";position:absolute;width:6px;height:6px;background:#fff;border-radius:50%;top:5px;left:5px}
.itemxx-scope .mini-map{margin-top:10px}
.itemxx-scope .mini-map img{width:100%;height:auto;border:1px solid #eee}
.itemxx-scope .price-info{text-align:center;padding:15px 0}
.itemxx-scope .price{font-size:28px;color:#f60;font-weight:700}
.itemxx-scope .original-price{font-size:14px;color:#999;text-decoration:line-through;margin:5px 0}
.itemxx-scope .price-tag{display:inline-block;font-size:12px;color:#f60;background:#fff0e6;padding:2px 8px;border-radius:10px}
.Mortgage{--primary-color:#4f46e5;--primary-dark:#3730a3;--primary-light:#a5b4fc;--secondary-color:#06b6d4;--success-color:#10b981;--warning-color:#f59e0b;--error-color:#ef4444;--text-primary:#1f2937;--text-secondary:#6b7280;--text-light:#9ca3af;--bg-primary:#ffffff;--bg-secondary:#f9fafb;--bg-tertiary:#f3f4f6;--border-color:#e5e7eb;--border-light:#f3f4f6;--shadow-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--shadow-md:0 4px 6px -1px rgba(0, 0, 0, 0.1);--shadow-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1);--shadow-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1);--radius-sm:6px;--radius-md:8px;--radius-lg:12px;--radius-xl:16px}
.Mortgage .btn-outline,.Mortgage .btn-primary{padding:10px 20px;border-radius:var(--radius-md);font-weight:500;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;gap:6px;font-size:14px}
.Mortgage .btn-outline{background:0 0;color:var(--text-secondary);border:1px solid var(--border-color)}
.Mortgage .btn-outline:hover{background:var(--bg-tertiary);border-color:var(--primary-color);color:var(--primary-color)}
.Mortgage .btn-primary{background:var(--primary-color);color:#fff;border:none}
.Mortgage .btn-primary:hover{background:var(--primary-dark);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.Mortgage .page-hero{background:linear-gradient(135deg,#667eea 0,#764ba2 100%);padding:60px 0;color:#fff;position:relative;overflow:hidden;min-width:1200px}
.Mortgage .page-hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-image:radial-gradient(circle at 25% 25%,rgba(255,255,255,.1) 2px,transparent 2px),radial-gradient(circle at 75% 75%,rgba(255,255,255,.1) 2px,transparent 2px);background-size:50px 50px;background-position:0 0,25px 25px}
.Mortgage .hero-container{max-width:1400px;margin:0 auto;padding:0 24px;display:flex;justify-content:space-between;align-items:center;position:relative;z-index:2}
.Mortgage .hero-content{flex:1}
.Mortgage .page-title{font-size:42px;font-weight:700;margin-bottom:12px;display:flex;align-items:center;gap:16px}
.Mortgage .page-title i{font-size:36px}
.Mortgage .page-subtitle{font-size:18px;opacity:.9}
.Mortgage .hero-stats{display:flex;gap:40px}
.Mortgage .stat-item{text-align:center}
.Mortgage .stat-number{font-size:32px;font-weight:700;margin-bottom:4px}
.Mortgage .stat-label{font-size:14px;opacity:.8}
.Mortgage .main-content{padding:40px 0}
.Mortgage .content-container{display:grid;grid-template-columns:1fr 400px;gap:20px}
.Mortgage .calculator-section{min-width:0}
.Mortgage .calculator-card,.Mortgage .results-card,.Mortgage .schedule-card,.Mortgage .tax-explanation-card{background:var(--bg-primary);border-radius:var(--radius-xl);box-shadow:var(--shadow-sm);border:1px solid var(--border-light);overflow:hidden}
.Mortgage .card-header{padding:24px;border-bottom:1px solid var(--border-light);background:linear-gradient(135deg,#fafafa 0,#fff 100%);display:flex;justify-content:space-between;align-items:center}
.Mortgage .card-header h2{font-size:20px;font-weight:600;color:var(--text-primary)}
.Mortgage .loan-types,.Mortgage .transaction-types{display:flex;gap:8px}
.Mortgage .loan-type-btn,.Mortgage .transaction-type-btn{padding:8px 16px;background:var(--bg-tertiary);border:1px solid var(--border-color);color:var(--text-secondary);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease;font-size:13px;font-weight:500}
.Mortgage .loan-type-btn.active,.Mortgage .loan-type-btn:hover,.Mortgage .transaction-type-btn.active,.Mortgage .transaction-type-btn:hover{background:var(--primary-color);color:#fff;border-color:var(--primary-color)}
.Mortgage .calculator-form{padding:32px}
.Mortgage .loan-section,.Mortgage .transaction-section{display:block}
.Mortgage .loan-section.hidden,.Mortgage .transaction-section.hidden{display:none}
.Mortgage .form-row{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:24px}
.Mortgage .form-group{display:flex;flex-direction:column;gap:8px}
.Mortgage .form-group label{font-weight:600;color:var(--text-primary);font-size:14px}
.Mortgage .input-group{position:relative;display:flex;align-items:center}
.Mortgage .input-group input{flex:1;padding:12px 16px;border:1px solid var(--border-color);border-radius:var(--radius-md);font-size:14px;transition:all .3s ease;background:var(--bg-primary)}
.Mortgage .input-group input:focus{outline:0;border-color:var(--primary-color);box-shadow:0 0 0 3px rgba(79,70,229,.1)}
.Mortgage .input-unit{position:absolute;right:16px;color:var(--text-light);font-size:13px;pointer-events:none}
.Mortgage .down-payment-options,.Mortgage .loan-term-options{display:flex;gap:8px;margin-top:8px}
.Mortgage .option-btn{padding:6px 12px;background:var(--bg-tertiary);border:1px solid var(--border-color);color:var(--text-secondary);border-radius:var(--radius-sm);cursor:pointer;transition:all .3s ease;font-size:12px}
.Mortgage .option-btn.active,.Mortgage .option-btn:hover{background:var(--primary-light);color:var(--primary-color);border-color:var(--primary-color)}
.Mortgage .rate-reference{margin-top:8px}
.Mortgage .rate-info{font-size:12px;color:var(--text-light);display:block;margin-bottom:8px}
.Mortgage .rate-options{display:flex;gap:8px}
.Mortgage .rate-btn{padding:4px 8px;background:var(--bg-tertiary);border:1px solid var(--border-color);color:var(--text-secondary);border-radius:var(--radius-sm);cursor:pointer;transition:all .3s ease;font-size:11px}
.Mortgage .rate-btn:hover{background:var(--primary-light);color:var(--primary-color);border-color:var(--primary-color)}
.Mortgage .house-count-options,.Mortgage .house-nature-options,.Mortgage .house-type-options,.Mortgage .loan-options,.Mortgage .payment-methods{display:flex;flex-direction:column;gap:12px}
.Mortgage .checkbox-option,.Mortgage .radio-option{display:flex;align-items:center;gap:12px;padding:16px;background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease}
.Mortgage .checkbox-option:hover,.Mortgage .radio-option:hover{background:var(--primary-light);border-color:var(--primary-color)}
.Mortgage .checkbox-option input[type=checkbox],.Mortgage .radio-option input[type=radio]{display:none}
.Mortgage .checkbox-custom,.Mortgage .radio-custom{width:20px;height:20px;border:2px solid var(--border-color);border-radius:50%;position:relative;transition:all .3s ease}
.Mortgage .checkbox-custom{border-radius:var(--radius-sm)}
.Mortgage .checkbox-option input[type=checkbox]:checked+.checkbox-custom,.Mortgage .radio-option input[type=radio]:checked+.radio-custom{border-color:var(--primary-color);background:var(--primary-color)}
.Mortgage .radio-option input[type=radio]:checked+.radio-custom::after{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:8px;height:8px;background:#fff;border-radius:50%}
.Mortgage .checkbox-option input[type=checkbox]:checked+.checkbox-custom::after{content:'✓';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;font-size:12px;font-weight:600}
.Mortgage .radio-content{flex:1}
.Mortgage .checkbox-title,.Mortgage .radio-title{font-weight:600;color:var(--text-primary);margin-bottom:2px}
.Mortgage .radio-desc{font-size:12px;color:var(--text-light)}
.Mortgage .form-hint,.Mortgage .provident-limit{margin-top:6px;font-size:12px;color:var(--text-light);display:flex;align-items:center;gap:4px}
.Mortgage .limit-info{color:var(--warning-color)}
.Mortgage .combination-split{display:flex;flex-direction:column;gap:24px}
.Mortgage .split-section{padding:20px;background:var(--bg-tertiary);border-radius:var(--radius-md);border:1px solid var(--border-color)}
.Mortgage .split-section h4{display:flex;align-items:center;gap:8px;font-size:16px;font-weight:600;color:var(--text-primary);margin-bottom:16px}
.Mortgage .split-section i{color:var(--primary-color)}
.Mortgage .city-selector select{width:100%;padding:12px 16px;border:1px solid var(--border-color);border-radius:var(--radius-md);font-size:14px;background:var(--bg-primary);cursor:pointer}
.Mortgage .calculate-actions{display:flex;gap:16px;margin-top:32px;padding-top:24px;border-top:1px solid var(--border-light)}
.Mortgage .calculate-btn,.Mortgage .reset-btn{flex:1;padding:16px 24px;border-radius:var(--radius-md);font-weight:600;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;gap:8px;font-size:16px}
.Mortgage .calculate-btn{background:var(--primary-color);color:#fff;border:none}
.Mortgage .calculate-btn:hover{background:var(--primary-dark);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.Mortgage .reset-btn{background:0 0;color:var(--text-secondary);border:1px solid var(--border-color)}
.Mortgage .reset-btn:hover{background:var(--bg-tertiary);border-color:var(--primary-color);color:var(--primary-color)}
.Mortgage .results-section{display:flex;flex-direction:column;gap:24px}
.Mortgage .result-summary{font-size:14px;color:var(--text-light)}
.Mortgage .results-content{padding:32px}
.Mortgage .result-overview,.Mortgage .tax-overview{display:flex;gap:10px;margin-bottom:32px}
.Mortgage .overview-item{flex:1;text-align:center;padding:8px;background:linear-gradient(135deg,#f8fafc 0,#fff 100%);border-radius:var(--radius-lg);border:1px solid var(--border-light)}
.Mortgage .overview-item.total{background:linear-gradient(135deg,var(--primary-color) 0,var(--primary-dark) 100%);color:#fff;flex:none;min-width:200px}
.Mortgage .overview-label{font-size:14px;color:var(--text-light);margin-bottom:8px}
.Mortgage .overview-item.total .overview-label{color:rgba(255,255,255,.8)}
.Mortgage .overview-value{font-size:28px;font-weight:700;color:var(--primary-color);margin-bottom:4px}
.Mortgage .overview-item.total .overview-value{color:#fff}
.Mortgage .overview-unit{font-size:14px;color:var(--text-light)}
.Mortgage .overview-item.total .overview-unit{color:rgba(255,255,255,.8)}
.Mortgage .result-chart{background:var(--bg-tertiary);border-radius:var(--radius-lg);padding:24px}
.Mortgage .chart-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}
.Mortgage .chart-header h3{font-size:16px;font-weight:600;color:var(--text-primary)}
.Mortgage .chart-legend{display:flex;gap:16px}
.Mortgage .legend-item{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-secondary)}
.Mortgage .legend-color{width:12px;height:12px;border-radius:2px}
.Mortgage .legend-color.principal{background:var(--primary-color)}
.Mortgage .legend-color.interest{background:var(--warning-color)}
.Mortgage .pie-chart{height:200px;display:flex;align-items:center;justify-content:center}
.Mortgage .chart-placeholder{display:flex;flex-direction:column;align-items:center;gap:8px;color:var(--text-light)}
.Mortgage .chart-placeholder i{font-size:32px}
.Mortgage .schedule-card{margin-top:24px}
.Mortgage .schedule-controls{display:flex;align-items:center;gap:12px}
.Mortgage .schedule-btn{padding:6px 12px;background:var(--bg-tertiary);border:1px solid var(--border-color);color:var(--text-secondary);border-radius:var(--radius-sm);cursor:pointer;transition:all .3s ease;font-size:12px}
.Mortgage .schedule-btn.active,.Mortgage .schedule-btn:hover{background:var(--primary-color);color:#fff;border-color:var(--primary-color)}
.Mortgage .schedule-content{padding:24px}
.Mortgage .schedule-table-wrapper{overflow-x:auto}
.Mortgage .schedule-table{width:100%;border-collapse:collapse;font-size:13px}
.Mortgage .schedule-table td,.Mortgage .schedule-table th{padding:12px;text-align:right;border-bottom:1px solid var(--border-light)}
.Mortgage .schedule-table th{background:var(--bg-tertiary);font-weight:600;color:var(--text-primary);position:sticky;top:0}
.Mortgage .schedule-table td:first-child,.Mortgage .schedule-table th:first-child{text-align:center}
.Mortgage .schedule-table tbody tr:hover{background:var(--bg-tertiary)}
.Mortgage .empty-row td{text-align:center;padding:40px}
.Mortgage .empty-state{display:flex;flex-direction:column;align-items:center;gap:8px;color:var(--text-light)}
.Mortgage .empty-state i{font-size:24px}
.Mortgage .tax-breakdown{background:var(--bg-tertiary);border-radius:var(--radius-lg);padding:24px}
.Mortgage .breakdown-header h3{font-size:16px;font-weight:600;color:var(--text-primary);margin-bottom:16px}
.Mortgage .breakdown-list{display:flex;flex-direction:column;gap:12px}
.Mortgage .breakdown-item{display:flex;justify-content:space-between;align-items:center;padding:16px;background:var(--bg-primary);border-radius:var(--radius-md);border:1px solid var(--border-light)}
.Mortgage .breakdown-name{font-weight:600;color:var(--text-primary)}
.Mortgage .breakdown-calculation{font-size:12px;color:var(--text-light);margin-top:2px}
.Mortgage .breakdown-amount{font-weight:600;color:var(--error-color);font-size:16px}
.Mortgage .breakdown-placeholder{display:flex;flex-direction:column;align-items:center;gap:8px;color:var(--text-light);padding:40px}
.Mortgage .breakdown-placeholder i{font-size:32px}
.Mortgage .explanation-content{padding:24px}
.Mortgage .explanation-tabs{display:flex;gap:8px;margin-bottom:24px;border-bottom:1px solid var(--border-light)}
.Mortgage .explanation-tab{padding:12px 16px;background:0 0;border:none;color:var(--text-secondary);cursor:pointer;transition:all .3s ease;font-weight:500;border-bottom:2px solid transparent}
.Mortgage .explanation-tab.active,.Mortgage .explanation-tab:hover{color:var(--primary-color);border-bottom-color:var(--primary-color)}
.Mortgage .explanation-panels{position:relative}
.Mortgage .explanation-panel{display:none}
.Mortgage .explanation-panel.active{display:block}
.Mortgage .explanation-panel h4{font-size:16px;font-weight:600;color:var(--text-primary);margin-bottom:16px}
.Mortgage .tax-rules{display:flex;flex-direction:column;gap:12px}
.Mortgage .rule-item{display:flex;justify-content:space-between;align-items:center;padding:16px;background:var(--bg-tertiary);border-radius:var(--radius-md);border:1px solid var(--border-light)}
.Mortgage .rule-condition{font-weight:500;color:var(--text-primary)}
.Mortgage .rule-rate{font-weight:600;color:var(--primary-color);font-size:16px}
.Mortgage .knowledge-section{background:var(--bg-primary);padding:60px 0;margin-top:60px}
.Mortgage .knowledge-header{text-align:center;margin-bottom:48px}
.Mortgage .knowledge-header h2{font-size:32px;font-weight:700;color:var(--text-primary);margin-bottom:12px}
.Mortgage .knowledge-header p{font-size:16px;color:var(--text-secondary)}
.Mortgage .knowledge-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;max-width:1200px;margin:0 auto;padding:0 24px}
.Mortgage .knowledge-card{background:var(--bg-primary);padding:32px;border-radius:var(--radius-xl);box-shadow:var(--shadow-sm);border:1px solid var(--border-light);text-align:center;transition:all .3s ease}
.Mortgage .knowledge-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.Mortgage .knowledge-icon{width:60px;height:60px;background:linear-gradient(135deg,var(--primary-color) 0,var(--primary-dark) 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.Mortgage .knowledge-icon i{font-size:24px;color:#fff}
.Mortgage .knowledge-card h3{font-size:18px;font-weight:600;color:var(--text-primary);margin-bottom:12px}
.Mortgage .knowledge-card p{font-size:14px;color:var(--text-secondary);line-height:1.6}


.layout-fang{--primary-color:#4f46e5;--primary-dark:#3730a3;--primary-light:#a5b4fc;--secondary-color:#06b6d4;--success-color:#10b981;--warning-color:#f59e0b;--error-color:#ef4444;--text-primary:#1f2937;--text-secondary:#6b7280;--text-light:#9ca3af;--bg-primary:#ffffff;--bg-secondary:#f9fafb;--bg-tertiary:#f3f4f6;--border-color:#e5e7eb;--border-light:#f3f4f6;--shadow-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--shadow-md:0 4px 6px -1px rgba(0, 0, 0, 0.1);--shadow-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1);--shadow-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1);--radius-sm:6px;--radius-md:8px;--radius-lg:12px;--radius-xl:16px;max-width:1400px;margin:0 auto;min-width:1200px;display:grid;grid-template-columns:1fr 320px;gap:20px}
.layout-fang .content-left{min-width:0}
.layout-fang .filter-section{background:var(--bg-primary);border-radius:var(--radius-md);padding:24px;margin-bottom:24px;box-shadow:var(--shadow-sm);border:1px solid var(--border-light)}
.layout-fang .filter-row{margin-bottom:20px}
.layout-fang .filter-row:last-child{margin-bottom:0}
.layout-fang .filter-group{display:flex;align-items:center;gap:16px}
.layout-fang .filter-group label{font-weight:600;color:var(--text-primary);min-width:60px;font-size:14px}
.layout-fang .filter-options{display:flex;gap:8px;flex-wrap:wrap;flex:1}
.layout-fang .filter-option{padding:8px 16px;background:var(--bg-tertiary);border:1px solid var(--border-color);color:var(--text-secondary);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease;font-size:13px}
.layout-fang .filter-option:hover{border-color:var(--primary-color);color:var(--primary-color)}
.layout-fang .filter-option.active{background:var(--primary-color);color:#fff;border-color:var(--primary-color)}
.layout-fang .filter-more{padding:8px 12px;background:0 0;border:1px dashed var(--border-color);color:var(--text-light);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease;font-size:13px;display:flex;align-items:center;gap:4px}
.layout-fang .filter-more:hover{border-color:var(--primary-color);color:var(--primary-color)}
.layout-fang .filter-actions{display:flex;gap:12px;margin-top:16px;padding-top:16px;border-top:1px solid var(--border-light)}
.layout-fang .filter-map,.layout-fang .filter-reset{padding:8px 16px;background:0 0;border:1px solid var(--border-color);color:var(--text-secondary);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease;display:flex;align-items:center;gap:6px;font-size:13px}
.layout-fang .filter-map:hover,.layout-fang .filter-reset:hover{border-color:var(--primary-color);color:var(--primary-color)}
.layout-fang .results-header{display:flex;justify-content:space-between;align-items:center;background:var(--bg-primary);padding:20px 24px;border-radius:var(--radius-md);margin-bottom:24px;box-shadow:var(--shadow-sm);border:1px solid var(--border-light)}
.layout-fang .results-info{display:flex;align-items:center;gap:16px}
.layout-fang .results-count strong{color:var(--primary-color);font-weight:600}
.layout-fang .results-tags{display:flex;gap:8px}
.layout-fang .result-tag{display:flex;align-items:center;gap:6px;padding:4px 12px;background:var(--primary-light);color:var(--primary-color);border-radius:var(--radius-md);font-size:12px;cursor:pointer}
.layout-fang .result-tag i{font-size:10px;opacity:.7}
.layout-fang .sort-controls{display:flex;align-items:center;gap:16px}
.layout-fang .view-toggle{display:flex;border:1px solid var(--border-color);border-radius:var(--radius-md);overflow:hidden}
.layout-fang .view-btn{padding:8px 12px;background:var(--bg-tertiary);border:none;color:var(--text-secondary);cursor:pointer;transition:all .3s ease}
.layout-fang .view-btn.active,.layout-fang .view-btn:hover{background:var(--primary-color);color:#fff}
.layout-fang .sort-dropdown{position:relative}
.layout-fang .sort-trigger{display:flex;align-items:center;gap:8px;padding:8px 16px;background:var(--bg-tertiary);border:1px solid var(--border-color);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease;font-size:14px}
.layout-fang .sort-trigger:hover{border-color:var(--primary-color)}
.layout-fang .sort-menu{position:absolute;top:100%;right:0;background:#fff;border:1px solid var(--border-color);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);margin-top:4px;min-width:160px;display:none;z-index:10}
.layout-fang .sort-item{padding:12px 16px;cursor:pointer;transition:background .2s ease;font-size:14px}
.layout-fang .sort-item:hover{background:var(--bg-tertiary)}
.layout-fang .sort-item.active{background:var(--primary-light);color:var(--primary-color)}
.layout-fang .property-list{display:flex;flex-direction:column;gap:24px}
.layout-fang .property-card{background:var(--bg-primary);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--border-light);transition:all .3s ease;position:relative}
.layout-fang .property-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:var(--primary-light)}
.layout-fang .property-card.featured{border:2px solid var(--warning-color);box-shadow:0 4px 20px rgba(245,158,11,.1)}
.layout-fang .property-badge{position:absolute;top:0;left:0;z-index:5}
.layout-fang .badge-vip{background:linear-gradient(45deg,gold,#ffed4e);color:#92400e;padding:6px 16px;border-radius:0 0 var(--radius-md) 0;font-size:12px;font-weight:600;text-shadow:0 1px 2px rgba(0,0,0,.1)}
.layout-fang .property-card{display:grid;grid-template-columns:320px 1fr 200px;min-height:240px}
.layout-fang .property-image{position:relative;overflow:hidden;height: 183px}
.layout-fang .property-image img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.layout-fang .property-card:hover .property-image img{transform:scale(1.05)}
.layout-fang .image-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to bottom,rgba(0,0,0,.1),transparent,rgba(0,0,0,.3));display:flex;justify-content:space-between;align-items:flex-end;padding:16px}
.layout-fang .image-count{display:flex;align-items:center;gap:6px;background:rgba(0,0,0,.7);color:#fff;padding:6px 12px;border-radius:var(--radius-md);font-size:12px;backdrop-filter:blur(4px)}
.layout-fang .image-actions{display:flex;gap:8px}
.layout-fang .action-btn{width:36px;height:36px;background:rgba(255,255,255,.9);border:none;border-radius:50%;color:var(--text-secondary);cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;backdrop-filter:blur(4px)}
.layout-fang .action-btn:hover{background:#fff;color:var(--primary-color);transform:scale(1.1)}
.layout-fang .property-tags{position:absolute;top:16px;left:16px;display:flex;gap:8px}
.layout-fang .property-tags span{padding:4px 10px;border-radius:var(--radius-md);font-size:11px;font-weight:500;backdrop-filter:blur(4px)}
.layout-fang .tag-metro{background:rgba(6,182,212,.9);color:#fff}
.layout-fang .tag-school{background:rgba(16,185,129,.9);color:#fff}
.layout-fang .tag-unique{background:rgba(245,158,11,.9);color:#fff}
.layout-fang .property-content{padding:24px;display:flex;flex-direction:column;gap:16px}
.layout-fang .property-header{display:flex;justify-content:space-between;align-items:flex-start;gap:16px}
.layout-fang .property-title{font-size:18px;font-weight:600;color:var(--text-primary);line-height:1.4;flex:1;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.layout-fang .property-status{flex-shrink:0}
.layout-fang .status-new{background:var(--error-color);color:#fff;padding:4px 8px;border-radius:var(--radius-sm);font-size:11px;font-weight:500}
.layout-fang .property-details{display:flex;gap:20px;flex-wrap:wrap}
.layout-fang .detail-item{display:flex;align-items:center;gap:6px;color:var(--text-secondary);font-size:13px}
.layout-fang .detail-item i{color:var(--primary-color);font-size:12px}
.layout-fang .property-location{display:flex;align-items:center;gap:8px;color:var(--text-secondary);font-size:14px}
.layout-fang .property-location i{color:var(--primary-color)}
.layout-fang .location-text{flex:1}
.layout-fang .location-distance{font-size:12px;color:var(--success-color);background:rgba(16,185,129,.1);padding:2px 8px;border-radius:var(--radius-sm)}
.layout-fang .property-highlights{display:flex;gap:8px;flex-wrap:wrap}
.layout-fang .highlight{padding:4px 10px;background:var(--bg-tertiary);color:var(--text-secondary);border-radius:var(--radius-md);font-size:12px;border:1px solid var(--border-color)}
.layout-fang .property-price-section{padding:24px;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-end;text-align:right;border-left:1px solid var(--border-light);background:linear-gradient(135deg,#fafafa 0,#fff 100%)}
.layout-fang .price-main{display:flex;align-items:baseline;gap:4px;margin-bottom:8px}
.layout-fang .price-number{font-size:32px;font-weight:700;color:var(--error-color);line-height:1}
.layout-fang .price-unit{font-size:16px;color:var(--error-color);font-weight:500}
.layout-fang .price-per-sqm{color:var(--text-light);font-size:13px;margin-bottom:8px}
.layout-fang .price-trend{display:flex;align-items:center;gap:4px;font-size:12px;color:var(--success-color)}
.layout-fang .trend-up{color:var(--success-color)}
.layout-fang .property-agent{padding:20px 24px;border-top:1px solid var(--border-light);display:flex;justify-content:space-between;align-items:center;background:var(--bg-secondary);grid-column:1/-1}
.layout-fang .agent-info{display:flex;align-items:center;gap:12px}
.layout-fang .agent-avatar{width:50px;height:50px;border-radius:50%;object-fit:cover;border:2px solid var(--border-light)}
.layout-fang .agent-details{display:flex;flex-direction:column;gap:4px}
.layout-fang .agent-name{font-weight:600;color:var(--text-primary);font-size:14px}
.layout-fang .agent-rating{display:flex;align-items:center;gap:8px}
.layout-fang .stars{display:flex;gap:2px}
.layout-fang .stars i{font-size:12px;color:var(--warning-color)}
.layout-fang .rating-text{font-size:12px;color:var(--text-light)}
.layout-fang .agent-actions{display:flex;gap:12px}
.layout-fang .contact-btn{padding:10px 16px;border-radius:var(--radius-md);font-weight:500;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;gap:6px;font-size:13px;border:none}
.layout-fang .contact-btn.primary{background:var(--primary-color);color:#fff}
.layout-fang .contact-btn.primary:hover{background:var(--primary-dark);transform:translateY(-1px)}
.layout-fang .contact-btn.secondary{background:0 0;color:var(--primary-color);border:1px solid var(--primary-color)}
.layout-fang .contact-btn.secondary:hover{background:var(--primary-color);color:#fff}
.layout-fang .load-more-section{text-align:center;margin:32px 0}
.layout-fang .load-more-btn{padding:16px 32px;background:var(--bg-primary);border:2px dashed var(--border-color);color:var(--text-secondary);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease;display:inline-flex;align-items:center;gap:8px;font-weight:500}
.layout-fang .load-more-btn:hover{border-color:var(--primary-color);color:var(--primary-color);background:var(--primary-light)}
 
.layout-fang .sidebar{position:sticky;top:166px;height:fit-content}
.layout-fang .sidebar-content{display:flex;flex-direction:column;gap:24px}
.layout-fang .sidebar-card{background:var(--bg-primary);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--border-light)}
.layout-fang .card-header{display:flex;justify-content:space-between;align-items:center;padding:20px 24px;border-bottom:1px solid var(--border-light);background:linear-gradient(135deg,#fafafa 0,#fff 100%)}
.layout-fang .card-header h3{display:flex;align-items:center;gap:8px;font-size:16px;font-weight:600;color:var(--text-primary)}
.layout-fang .card-header i{color:var(--primary-color)}
.layout-fang .more-link{display:flex;align-items:center;gap:4px;color:var(--text-light);text-decoration:none;font-size:13px;transition:color .3s ease}
.layout-fang .more-link:hover{color:var(--primary-color)}
.layout-fang .recommended-list{padding:24px;display:flex;flex-direction:column;gap:20px}
.layout-fang .recommended-item{display:flex;gap:12px;padding:16px;border-radius:var(--radius-md);transition:all .3s ease;cursor:pointer}
.layout-fang .recommended-item:hover{background:var(--bg-tertiary)}
.layout-fang .recommended-item img{width:100px;height:95px;object-fit:cover;border-radius:var(--radius-md);flex-shrink:0}
.layout-fang .recommended-info{flex:1;display:flex;flex-direction:column;gap:6px}
.layout-fang .recommended-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.layout-fang .recommended-details,.layout-fang .recommended-location{font-size:12px;color:var(--text-light)}
.layout-fang .recommended-price{font-size:16px;font-weight:600;color:var(--error-color);margin-top:4px}
.layout-fang .price-trend-chart{padding:24px}
.layout-fang .trend-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}
.layout-fang .trend-title{font-size:14px;color:var(--text-secondary)}
.layout-fang .trend-value{display:flex;align-items:baseline;gap:6px}
.layout-fang .current-price{font-size:20px;font-weight:700;color:var(--text-primary)}
.layout-fang .trend-change{display:flex;align-items:center;gap:4px;font-size:12px;padding:2px 6px;border-radius:var(--radius-sm)}
.layout-fang .trend-change.up{background:rgba(16,185,129,.1);color:var(--success-color)}
.layout-fang .chart-placeholder{height:120px;margin-bottom:16px;background:var(--bg-tertiary);border-radius:var(--radius-md);position:relative;overflow:hidden}
.layout-fang .trend-chart{width:100%;height:100%}
.layout-fang .trend-period{display:flex;gap:8px;justify-content:center}
.layout-fang .period-btn{padding:6px 12px;background:var(--bg-tertiary);border:1px solid var(--border-color);color:var(--text-secondary);border-radius:var(--radius-md);cursor:pointer;transition:all .3s ease;font-size:12px}
.layout-fang .period-btn.active,.layout-fang .period-btn:hover{background:var(--primary-color);color:#fff;border-color:var(--primary-color)}
.layout-fang .hot-communities{padding:24px;display:flex;flex-direction:column;gap:16px}
.layout-fang .community-item{display:flex;align-items:center;gap:12px;padding:12px;border-radius:var(--radius-md);transition:all .3s ease;cursor:pointer}
.layout-fang .community-item:hover{background:var(--bg-tertiary)}
.layout-fang .community-rank{width:24px;height:24px;background:var(--primary-color);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;flex-shrink:0}
.layout-fang .community-info{flex:1}
.layout-fang .community-name{font-size:14px;font-weight:600;color:var(--text-primary);margin-bottom:2px}
.layout-fang .community-location{font-size:12px;color:var(--text-light)}
.layout-fang .community-price{font-size:13px;font-weight:600;color:var(--error-color)}
.layout-fang .tools-grid{padding:24px;display:grid;grid-template-columns:1fr 1fr;gap:16px}
.layout-fang .tool-item{display:flex;flex-direction:column;align-items:center;gap:8px;padding:20px 12px;background:var(--bg-tertiary);border-radius:var(--radius-md);text-decoration:none;color:var(--text-secondary);transition:all .3s ease;text-align:center}
.layout-fang .tool-item:hover{background:var(--primary-light);color:var(--primary-color);transform:translateY(-2px)}
.layout-fang .tool-item i{font-size:24px}
.layout-fang .tool-item span{font-size:12px;font-weight:500}
.layout-fang .guide-list{padding:24px;display:flex;flex-direction:column;gap:12px}
.layout-fang .guide-item{display:flex;align-items:center;gap:12px;padding:12px;border-radius:var(--radius-md);text-decoration:none;color:var(--text-secondary);transition:all .3s ease;font-size:13px}
.layout-fang .guide-item:hover{background:var(--bg-tertiary);color:var(--primary-color)}
.layout-fang .guide-item i{color:var(--primary-color);font-size:14px}
.layout-fang .customer-service{background:linear-gradient(135deg,var(--primary-color) 0,var(--primary-dark) 100%);color:#fff;border:none}
.layout-fang .service-content{padding:32px 24px;text-align:center}
.layout-fang .service-icon{width:60px;height:60px;background:rgba(255,255,255,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.layout-fang .service-icon i{font-size:24px}
.layout-fang .service-content h3{font-size:18px;font-weight:600;margin-bottom:8px}
.layout-fang .service-content p{font-size:14px;opacity:.9;margin-bottom:20px;line-height:1.5}
.layout-fang .service-btn{background:#fff;color:var(--primary-color);border:none;padding:12px 24px;border-radius:var(--radius-md);font-weight:600;cursor:pointer;transition:all .3s ease;display:inline-flex;align-items:center;gap:8px}
.layout-fang .service-btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-md)}
