:root {
    --primary: #0094ff;
    --primary-light: #26f6b7;
    --primary-dark: #0072c5;
    --primary-glow: rgba(0, 148, 255, 0.4);
    --dark-bg: #0D1117;
    --dark-card: #161B22;
    --dark-border: #30363D;
    --text-primary: #F0F6FC;
    --text-secondary: #8B949E;
    --text-dark: #1F2328;
    --white: #FFFFFF;
    --light-bg: #F6F8FA;
    --success: #3FB950;
    --warning: #D29922;
    --danger: #F85149;
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:  "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Header (深色科技感) === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    height: 70px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--white);
}

.logo-text {
    width:113px;
	overflow:hidden;
	height:45px;
}
.logo-text img {
	width:100%;
	height:auto;
	display:block;
}

.logo-geo {
    color: var(--primary);
    margin-left: 2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-demo {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.btn-demo:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn-back {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-back:hover {
    color: var(--text-primary);
}

/* === Hero Section (深色科技感首屏) === */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1A1F2E 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 148, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 148, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(80px);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 148, 255, 0.1);
    border: 1px solid rgba(0, 148, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 30px;
    font-weight:normal;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	font-size:56px;
	font-weight:bold;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-demo-info {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 60px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-glow {
    flex-direction: column;
    padding: 16px 40px;
}

.btn-glow .btn-price {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    color: #e7e7e7;
    border-color: var(--dark-border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-icon {
    font-size: 12px;
}

.btn-icon.iconfont {
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

/* === Hero Stats === */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 32px 48px;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

/* === Section Common === */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 148, 255, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* === Trend Section === */
.trend-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin: 0 auto;
}

.trend-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.trend-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.trend-icon .iconfont {
    font-size: 40px;
    color: var(--primary);
}

.trend-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.trend-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.trend-list {
    margin-top: 16px;
}

.trend-list li {
    padding: 10px 0;
    font-size: 15px;
    color: #4B5563;
    border-bottom: 1px dashed #E5E7EB;
    position: relative;
    padding-left: 24px;
}

.trend-list li::before {
    content: '"';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.trend-card-warning {
    background: linear-gradient(135deg, #d9f0fd 0%, #b7def4 100%);
    border-color: rgba(0, 148, 255, 0.2);
}

.trend-highlight {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.trend-highlight span {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}

/* === Pain Section === */
.section-pain {
    background: var(--white) !important;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.pain-card {
    background: var(--light-bg);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.pain-card:hover {
    border-color: var(--primary);
    background: #d9f0fd;
}

.pain-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.pain-icon .iconfont {
    font-size: 36px;
    color: var(--primary);
}

.pain-card p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
}

.pain-solution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--dark-bg), #1A1F2E);
    border-radius: 16px;
    padding: 40px 48px;
}

.solution-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.solution-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* === GEO Compare Section === */
.geo-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.geo-item {
    flex: 1;
    padding: 32px;
    border-radius: 16px;
    background: var(--light-bg);
    border: 2px solid #E5E7EB;
}

.geo-old {
    opacity: 0.7;
}

.geo-new {
    background: linear-gradient(135deg, #d9f0fd 0%, #b7def4 100%);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 148, 255, 0.15);
}

.geo-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.geo-new .geo-label {
    color: var(--primary);
}

.geo-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.geo-step {
    padding: 8px 14px;
    background: var(--white);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.geo-new .geo-step {
    background: var(--white);
}

.geo-step.highlight {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.geo-arrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.geo-vs {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-secondary);
    padding: 16px;
}

.geo-summary {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin: 0 auto;
}

.geo-summary strong {
    color: var(--primary);
    font-weight: 700;
}

/* === Flow Section === */
.flow-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.flow-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.flow-step {
    position: relative;
    text-align: center;
}

.flow-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.flow-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.flow-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 148, 255, 0.1);
}

.flow-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.flow-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Features Section === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 148, 255, 0.1);
}

.feature-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.feature-icon .iconfont {
    font-size: 40px;
    color: var(--primary);
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Compare Table Section === */
.compare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.compare-table th,
.compare-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.compare-table thead th {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.compare-table thead th.highlight-col {
    background: var(--primary);
    position: relative;
}

.col-badge {
    position: absolute;
    right: 16px;
    background: var(--white);
    color: var(--primary);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.compare-table td.highlight-col {
    background: #d9f0fd;
}

.compare-table tbody tr:hover {
    background: var(--light-bg);
}

.compare-table .check {
    color: var(--success);
    font-weight: 700;
    margin-right: 8px;
}

.compare-table .cross {
    color: var(--danger);
    font-weight: 700;
    margin-right: 8px;
    opacity: 0.6;
}

/* === Pricing Section === */
.section-pricing {
    background: var(--light-bg) !important;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card-hot {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 148, 255, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-badge .iconfont {
    font-size: 14px;
    margin-right: 4px;
}

.pricing-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-symbol {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    vertical-align: top;
}

.price-num {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-original {
    font-size: 16px;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-left: 8px;
}

.pricing-tag {
    display: inline-block;
    background: rgba(0, 148, 255, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid #F3F4F6;
    padding-left: 28px;
    position: relative;
}

.pricing-features li.yes::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-features li.no {
    color: #9CA3AF;
}

.pricing-features li.no::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #D1D5DB;
}

/* 即将推出标签 */
.coming-soon {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    margin-left: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    vertical-align: middle;
}

.pricing-renew {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-upgrade {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

/* === FAQ Section === */
.faq-list {
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}

.faq-q::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 24px 0 68px;
}

.faq-item.active .faq-a {
    max-height: 500px;
    padding-bottom: 20px;
}

/* === CTA Section === */
.section-cta {
    background: linear-gradient(135deg, var(--dark-bg), #1A1F2E) !important;
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: #d9f0fd;
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
    border-color: var(--white);
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-contact {
    font-size: 15px;
    color: var(--text-secondary);
}

.cta-contact strong {
    color: var(--primary);
    font-weight: 700;
}

.cta-note {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 8px;
}

/* === Footer === */
.footer {
    background: var(--dark-bg);
    color: var(--text-secondary);
    padding: 48px 0 24px;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    color: var(--text-secondary);
    font-size: 13px;
}

/* === Float Button === */
.float-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.float-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 30px var(--primary-glow);
    transition: all 0.3s ease;
}

.float-btn-trigger:hover {
    transform: scale(1.05);
}

.float-icon {
    font-size: 18px;
}

.float-icon .iconfont {
    font-size: 20px;
}

.float-btn-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.float-btn-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
}

.float-option:last-child {
    border-bottom: none;
}

.float-option:hover {
    background: #d9f0fd;
}

.float-option-name {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.float-option-price {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}

.float-option-hot {
    background: #d9f0fd;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        gap: 24px;
        padding: 24px 32px;
    }

    .stat-num {
        font-size: 26px;
    }

    .geo-compare {
        flex-direction: column;
    }

    .geo-item {
        max-width: 100%;
    }

    .geo-vs {
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 45%;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .trend-grid {
        grid-template-columns: 1fr;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-line {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .float-btn {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .pain-solution {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
    }

    .flow-timeline {
        grid-template-columns: 1fr;
    }

    .cta-badges {
        flex-direction: column;
        gap: 8px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* === Buy Modal === */
.buy-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.buy-modal.show {
    opacity: 1;
    visibility: visible;
}

.buy-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.buy-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.buy-modal.show .buy-modal-content {
    transform: scale(1) translateY(0);
}

.buy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.buy-modal-close:hover {
    background: #E5E7EB;
    transform: rotate(90deg);
}

.buy-modal-close .iconfont {
    font-size: 18px;
    color: var(--text-secondary);
}

.buy-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.buy-modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.buy-modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.buy-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.buy-modal-qrcode {
    text-align: center;
}

.buy-modal-qrcode img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    border: 2px solid var(--light-bg);
    margin-bottom: 12px;
}

.buy-modal-qrcode p {
    font-size: 14px;
    color: var(--text-secondary);
}

.buy-modal-divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.buy-modal-divider::before,
.buy-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}

.buy-modal-divider span {
    font-size: 14px;
    color: var(--text-secondary);
}

.buy-modal-qq {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.qq-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #12B7F5, #0D9FD9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qq-icon .iconfont {
    font-size: 28px;
    color: var(--white);
}

.qq-info {
    flex: 1;
}

.qq-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.qq-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.qq-copy {
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qq-copy:hover {
    background: var(--primary-light);
}

.buy-modal-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.buy-modal-footer p {
    font-size: 13px;
    color: var(--text-secondary);
}


/* 微信支付弹窗 */
.ey-modal-body {
    padding: 24px;
}
.comp-wxpay {
    text-align: center;
    padding-bottom: 50px;
}
.comp-wxpay-order {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-left: 200px;
    color: #595959;
    border-bottom: 1px solid #f3f3f3;
}
.comp-wxpay-order-title {
    padding-bottom: 12px;
}
.comp-wxpay-order-desc-value {
    color: #00c800;
    font-size: 20px;
}
.comp-wxpay-order-desc-label, .comp-wxpay-order-title {
    font-weight: 600;
}
.ey-loading {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 28px;
    min-height: 14px;
}
.ey-loading-content {
    flex: 1;
    min-height: 0;
}
.ey-loading:not(.ey-loading-loading)>.ey-loading-content {
    transition: visibility 0s,opacity .3s;
}
.comp-wxpay-qrcode {
    display: flex;
    padding-top: 20px;
    padding-left: 200px;
}
.comp-wxpay-qrcode-content-wrap {
    margin-bottom: 5px;
}
.comp-wxpay-qrcode-content-notice {
    line-height: 30px;
    font-size: 12px;
    color: #fff;
    background-color: #00c800;
    margin-top: 10px;
}
.comp-wxpay-qrcode-tip {
    margin-left: 40px;
    margin-top: -10px;
}
.comp-wxpay-qrcode-tip>img {
    width: 200px;
    height: 276px;
}
.comp-toaster {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20230516;
    width: 100%;
}
.comp-toaster-notice {
    height: 59px;
    line-height: 59px;
    text-align: center;
    background: #fdecec;
    color: red;
}
/* 3列定价布局 */
.pricing-cards-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
}
@media (max-width: 900px) {
.pricing-cards-3 {
            grid-template-columns: 1fr;
            max-width: 420px;
 }
}

.mobilehead {display:none}

input:focus {
    outline: none;
}
textarea:focus {
    outline: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	outline: none;
}
/*弹框留资*/
.fudong {position:fixed; top:-100%; left:0px; z-index:9999999;}
.lzjuli {padding-top:3%; padding-bottom:5%}
.liuziliao {width:100%; overflow:hidden; height:100%; background:linear-gradient(135deg, var(--dark-bg), #1A1F2E) !important; transition: all 0.1s linear 0s;}
.liuziliao div.m i {width:50px; overflow:hidden; height:50px; text-align:center; position:absolute; top:-4%; right:-3%; z-index:999999; cursor:pointer}
.liuziliao div.m i img {width:100%; overflow:hidden; height:auto; display:block}
.liuziliao div.m {width:60%; max-width:1200px; height:auto; display:grid; display: -webkit-grid; grid-template-columns: 2fr 1fr; gap: 2%; position:relative}
.liuziliao div.m div.l {width:auto; padding:5%; background:#030724; border-radius:12px; flex:1; float:left; border:1px solid #0d144b}
.liuziliao div.m div.l dl {width:100%; overflow:hidden}
.liuziliao div.m div.l dl dt {width:100%; text-align:left; line-height:26px; color:#FFF; font-size:16px; padding-bottom:1%}
.liuziliao div.m div.l dl dd {width:100%; text-align:left; padding-bottom:2%}
.liuziliao div.m div.l dl dd input {width:100%; overflow:hidden; border:1px solid #253652; background:#253652; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd input:focus {width:100%; overflow:hidden; border:1px solid #00d7f0; background:#2e4160; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd select {width:100%; overflow:hidden; border:1px solid #253652; background:url(../images/xlk.png) right no-repeat #253652; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd select:focus {width:100%; overflow:hidden; border:1px solid #00d7f0; background:url(../images/xlk.png) right no-repeat #2e4160; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd textarea {width:100%; overflow:hidden; min-height:120px; border:1px solid #253652; background:#253652; border-radius:8px; padding:2%; font-size:18px; color:#fff}
.liuziliao div.m div.l dl dd textarea:focus {width:100%; overflow:hidden; min-height:120px; border:1px solid #00d7f0; background:#2e4160; border-radius:8px; padding:2%; font-size:18px; color:#fff}
.liuziliao div.m div.l dl dd button {width:100%; overflow:hidden; border:1px solid #00b4ff; background:#00b4ff; border-radius:8px; padding:2%; font-size:18px; color:#fff; margin-top:1%; transition: all 0.1s linear 0s;}
.liuziliao div.m div.l dl dd button:hover {width:100%; overflow:hidden; border:1px solid #00b4ff; background:#00b4ff; border-radius:8px; padding:2%; font-size:18px; color:#fff; margin-top:1%; box-shadow: 0 0 15px rgba(0, 180, 255, 0.7), 0 0 30px rgba(97, 246, 255, 0.4); transform: translateY(-2px); cursor:pointer; transition: all 0.1s linear 0s;}

.liuziliao div.m div.r {width:auto; overflow:hidden; padding:5%; background:#030724; border-radius:12px; flex:1; float:right; border:1px solid #0d144b}
.liuziliao div.m div.r h3 {width:100%; overflow:hidden; text-align:left; font-size:24px; color:#4384ef; padding-bottom:3%; margin-bottom:6%; border-bottom:1px solid #0f3572}
.liuziliao div.m div.r dl {width:100%; overflow:hidden; text-align:left; font-size:16px; color:#FFF; line-height:24px; font-weight:normal;}
.liuziliao div.m div.r dl dt {width:10%; overflow:hidden; height:26px; text-align:left; display:block; line-height:30px; font-size:22px; color:#FFF; padding-bottom:10px;}
.liuziliao div.m div.r dl dd {width:90%; overflow:hidden; display:block; line-height:24px; padding-bottom:10px;}
.liuziliao div.m div.r dl dd img {width:40%; overflow:hidden; height:auto; display:block; margin-top:15px;}
.liuziliao div.m div.r dl dd span {width:40%; overflow:hidden; text-align:center; line-height:25px; font-size:14px; color:#565fa2}
.liuziliao div.m div.r p {width:100%; overflow:hidden; display:block; padding-top:20px; font-size:20px; color:#FFF}


.mobilenav {display:none}

.blognews {width:100%; overflow:hidden; background:#000}
.blognews h1 {width:100%; overflow:hidden; margin:0px auto; max-width:1200px; text-align:center; font-size: 36px; font-weight: 800; background-clip: text; -webkit-background-clip: text; color: transparent; background-image: linear-gradient(90deg, #00B4FF, #61F6FF); margin-top:4%}
.blognews div.m {width:90%; margin:0px auto; max-width:1200px; display:grid; display: -webkit-grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2%; margin-top:2%; margin-bottom:3%}
.blognews div.m dl {width:auto; overflow:hidden; background:#171a2c; border-radius:10px; padding:3%; border:1px solid #1a3c50; transition: all 0.1s linear 0s;}
.blognews div.m dl:hover {box-shadow: 0 0 45px rgba(0, 180, 255, 0.4), 0 0 30px rgba(97, 246, 255, 0.2); transform: translateY(-6px); transition: all 0.3s linear 0s;}
.blognews div.m dl a {width:100%; overflow:hidden; display:block}
.blognews div.m dl a dt {width:100%; overflow:hidden; max-height:180px;}
.blognews div.m dl a dt img {width:100%; overflow:hidden; height:auto; display:block}
.blognews div.m dl a dd {width:100%; overflow:hidden; padding:3%}
.blognews div.m dl a dd span {width:100%; overflow:hidden; text-align:left; font-size:14px; color:#9ca3af; display:block; margin-top:3%}
.blognews div.m dl a dd h3 {width:100%; overflow:hidden; text-align:left; font-size:20px; color:#09F; display:block; line-height:26px; margin-top:3%}
.blognews div.m dl a dd p {width:100%; overflow:hidden; line-height:30px; font-size:14px; color:#eee; text-align:right; padding-top:2%}
.blognews div.m dl a dd p strong {width:auto; overflow:hidden; display:block; font-weight:normal}
.blognews div.m dl a dd p i {width:30px; overflow:hidden; height:30px; text-align:right; line-height:30px; font-size:20px; display:block}

.blognews a.an {width:300px; overflow:hidden; padding:3%; line-height:40px; padding-top:0px; padding-bottom:0px; border:1px solid var(--primary); font-size:16px; color:var(--primary); border-radius:5px; margin:0px auto; margin-bottom:4%; cursor:pointer; transition: all 0.3s linear 0s;}
.blognews a.an:hover {width:300px; overflow:hidden; padding:3%; line-height:40px; padding-top:0px; padding-bottom:0px; border:1px solid var(--primary); font-size:16px; color:var(--primary); border-radius:5px; margin:0px auto; margin-bottom:4%; cursor:pointer; transition: all 0.3s linear 0s;box-shadow: 0 0 45px rgba(0, 180, 255, 0.4), 0 0 30px rgba(97, 246, 255, 0.2); transform: translateY(-6px);}

.bloglist {width:100%; overflow:hidden; padding-top:70px; padding-bottom:5%}
.bloglist div.nrnav {width:100%; overflow:hidden; margin:0px auto; text-align:center; padding-top:2.5%; padding-bottom:2.5%; background:#fcfcfc; border-bottom:1px solid #ddd; text-align:center; font-size:16px; color:#333}
.bloglist div.nrnav a {color:var(--primary)}
.bloglist div.nrnav a:hover {color:#F30}

.bloglist div.m {width:90%; margin:0px auto; max-width:1200px; margin-top:4%; display:grid; display: -webkit-grid; grid-template-columns: 1fr 7fr; gap: 2%;}
.bloglist div.m div.l {width:auto; padding-top:10%}
.bloglist div.m div.l a {width:140px; overflow:hidden; height:48px; text-align:center; line-height:48px; font-size:18px; color:#333; display:block;}
.bloglist div.m div.l a:hover {width:140px; overflow:hidden; height:48px; text-align:center; line-height:48px; font-size:18px; display:block; text-decoration:none; color: #FFF; background: -webkit-gradient(linear, left bottom, left top, from(#0094ff), to(#0dddea)); background: linear-gradient(0deg, #0094ff 0%, #0dddea 100%); border-radius: 5px; -webkit-box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46); box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46);}
.bloglist div.m div.l a.ahover {color: #FFF; background: -webkit-gradient(linear, left bottom, left top, from(#0094ff), to(#0dddea)); background: linear-gradient(0deg, #0094ff 0%, #0dddea 100%); border-radius: 5px; -webkit-box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46); box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46);}

.bloglist div.m div.r {width:auto; padding:3%; background:#fcfcfc; border-radius:12px;}
.bloglist div.m div.r dl {width:100%; overflow:hidden; padding-bottom:20px; margin-bottom:20px; border-bottom:1px solid #ddd;}
.bloglist div.m div.r dl a {width:100%; overflow:hidden; height:auto; display:grid; display: -webkit-grid; grid-template-columns: 2fr 6fr; gap: 2%;}
.bloglist div.m div.r dl a dt {width:auto; overflow:hidden; height:auto; border-radius:6px;}
.bloglist div.m div.r dl a dt img {width:100%; overflow:hidden; height:auto; display:block}
.bloglist div.m div.r dl a dd {width:auto; overflow:hidden;}
.bloglist div.m div.r dl a dd h3 {width:100%; overflow:hidden; height:auto; text-align:left; font-size:18px; font-weight:700px; color:#333; line-height:26px; padding-top:5px}
.bloglist div.m div.r dl a:hover dd h3 {width:100%; overflow:hidden; height:auto; text-align:left; font-size:18px; font-weight:700px; color:#0094ff; line-height:26px; padding-top:5px}
.bloglist div.m div.r dl a dd p {width:100%; overflow:hidden; display:block; padding-top:15px; font-size:14px; line-height:24px; text-align:left; color:#666}
.bloglist div.m div.r dl a dd p em {width:25px; overflow:hidden; height:25px; text-align:left; line-height:28px; display:block; float:left; margin-right:5px; font-size:20px; color:#666}
.bloglist div.m div.r dl a dd p b {width:auto; overflow:hidden; display:block; float:left; line-height:25px; font-weight:normal; padding-right:20px;}
.bloglist div.m div.r dl a dd span {width:100%; overflow:hidden; display:block; padding-top:15px; font-size:12px; line-height:25px; text-align:left; color:#999}

.bloglist div.m div.r div.newsshow {width:auto; overflow:hidden;}
.bloglist div.m div.r div.newsshow h1 {width:100%; overflow:hidden; text-align:left; line-height:40px; font-size:30px; color:#000; margin-top:30px;}
.bloglist div.m div.r div.newsshow h2 {width:100%; overflow:hidden; text-align:left; line-height:40px; font-size:15px; color:#777; margin-top:10px; font-weight:normal}
.bloglist div.m div.r div.newsshow h2 span {float:left; display:block; padding-right:30px;}
.bloglist div.m div.r div.newsshow h2 div.fx {width:240px; overflow:hidden; height:40px; float:right; display:block}
.bloglist div.m div.r div.newsshow h2 div.fx a {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:block !important; float:left !important; margin-right:10px !important; color:#87878f !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #87878f !important; text-align:center !important}
.bloglist div.m div.r div.newsshow h2 div.fx a:hover {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:block !important; float:left !important; margin-right:10px !important; color:#fff !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #23a6d5 !important; background:#23a6d5 !important; text-align:center !important; text-decoration:none !important}

.bloglist div.m div.r div.newsshow div.newsshowmain {width:100%; overflow:hidden; margin:0px auto; padding-top:40px; text-align:left; line-height:35px; font-size:18px; color:#333; margin-bottom:120px; padding-bottom:50px; margin-bottom:30px; border-bottom:1px solid #ddd}
.bloglist div.m div.r div.newsshow div.newsshowmain p {width:100%; overflow:hidden; display:block; font-size:18px; line-height:35px; padding-bottom:20px;}
.bloglist div.m div.r div.newsshow div.newsshowmain img {width:auto !important; overflow:hidden !important; display:block !important; margin:0px auto !important; margin-top:10px !important; margin-bottom:10px !important; max-width:100% !important}
.bloglist div.m div.r div.newsshow div.newsshowmain div.sm {width:auto; overflow:hidden; padding-top:40px; font-size:12px; text-align:left; line-height:22px; color:#333}


.bloglist div.m div.r div.newsshow div.tag {width:100%; overflow:hidden; text-align:center}
.bloglist div.m div.r div.newsshow div.tag span {width:auto; overflow:hidden; line-height:25px; text-align:center; padding-left:20px; padding-right:20px; display:inline-block; margin-left:5px; margin-right:5px; font-size:14px; color:#666;border:1px solid #eee;}
.bloglist div.m div.r div.newsshow div.tag a {width:auto; overflow:hidden; line-height:25px; text-align:center; padding-left:20px; padding-right:20px; display:inline-block; margin-left:5px; margin-right:5px; font-size:14px; border:1px solid #eee; color:#999}
.bloglist div.m div.r div.newsshow div.tag a:hover {width:auto; overflow:hidden; line-height:25px; text-align:center; padding-left:20px; padding-right:20px; display:inline-block; margin-left:5px; margin-right:5px; font-size:14px; border:1px solid #38cdba; background:#38cdba; text-decoration:none; color:#fff}
.bloglist div.m div.r div.newsshow div.ffx {width:100%; overflow:hidden; text-align:center; margin-top:20px;}
.bloglist div.m div.r div.newsshow div.ffx  a {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:inline-block !important; float:none !important; margin-right:10px !important; color:#87878f !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #87878f !important; text-align:center !important}
.bloglist div.m div.r div.newsshow div.ffx  a:hover {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:inline-block !important; float:none !important; margin-right:10px !important; color:#fff !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #23a6d5 !important; background:#23a6d5 !important; text-align:center !important; text-decoration:none !important}

.bloglist div.m div.r div.newsshow div.nextup {width:100%; overflow:hidden; margin-top:20px; padding-bottom:20px; border-bottom:1px solid #eee;}
.bloglist div.m div.r div.newsshow div.nextup a {width:50%; overflow:hidden; text-align:left; line-height:26px; font-size:14px; color:#333; display:block; float:left}
.bloglist div.m div.r div.newsshow div.nextup a:hover {width:50%; overflow:hidden; text-align:left; line-height:26px; font-size:14px; color:#23a6d5; display:block; float:left}

.bloglist div.m div.r div.newsshow div.xglist {width:100%; overflow:hidden; margin-top:20px; margin-bottom:30px;}
.bloglist div.m div.r div.newsshow div.xglist h3 {width:100%; overflow:hidden; height:30px; text-align:left; line-height:30px; font-size:18px; font-weight:normal; color:#333; margin-bottom:20px;}
.bloglist div.m div.r div.newsshow div.xglist h3 span {width:4px; overflow:hidden; height:16px; display:block; float:left; margin-top:7px; margin-bottom:7px; margin-right:10px; background:#23a6d5; border:0px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr {width:100%; display:grid; display: -webkit-grid; grid-template-columns: 1fr 1fr; gap: 2%;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl {width:auto; overflow:hidden; float:left; padding-bottom:25px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a {width:100%; overflow:hidden; height:auto; display:grid; display: -webkit-grid; grid-template-columns: 190px 1fr; gap: 2%;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dt {width:auto; overflow:hidden; height:auto; border-radius:6px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dt img {width:100%; overflow:hidden; height:auto; display:block;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dd {width:auto; overflow:hidden; text-align:left; line-height:26px; font-size:16px; color:#333; font-weight:bold}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dd p {width:100%; overflow:hidden; display:block; text-align:left; font-size:12px; color:#999; font-weight:normal; padding-top:6px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a:hover dd {width:auto; overflow:hidden; text-align:left; line-height:26px; font-size:16px; color:#38cdba; font-weight:bold}

/*分页*/
.pagelistfy {width:auto; overflow:hidden; margin:0px auto; margin-bottom:0px; text-align:center}
.pagelistfy ul li {width:auto; overflow:hidden; height:37px; display:inline-block; padding-left:2px; padding-right:2px;}
.pagelistfy ul li a {width:auto; overflow:hidden; height:35px; display:block; padding-left:15px; padding-right:15px; text-align:center; line-height:35px; font-size:16px; color:#777; border:1px solid #ddd; border-radius:5px; background:#fff}
.pagelistfy ul li a:hover {width:auto; overflow:hidden; height:35px; display:block; padding-left:15px; padding-right:15px; text-align:center; line-height:35px; font-size:16px; color:#fff; border:1px solid #0094ff; border-radius:5px; background:#0094ff; text-decoration:none; cursor:pointer}
.pagelistfy ul li a.ahover {width:auto; overflow:hidden; height:35px; display:block; padding-left:15px; padding-right:15px; text-align:center; line-height:35px; font-size:16px; color:#fff; border:1px solid #0094ff; border-radius:5px; background:#0094ff; text-decoration:none; cursor:pointer}
.pagelistfy ul li.active a {width:auto; overflow:hidden; height:35px; display:block; padding-left:15px; padding-right:15px; text-align:center; line-height:35px; font-size:16px; color:#fff; border:1px solid #0094ff; border-radius:5px; background:#0094ff; text-decoration:none; cursor:pointer}



/*移动端顶部*/
@media (max-width: 768px) {
.header {display:none}
.float-btn {display:none}
.mobilehead {width:100%; height:3.125rem; min-height:50px; background:#000; position:fixed; top:0px; left:0px; z-index:999999999; display:block;}
.mobilehead div.m {width:94%; overflow:hidden; height:3.125rem; min-height:50px; margin:0px auto; display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:center; align-items:center; align-content:center;}
.mobilehead div.m div.l {width:30%; overflow:hidden; height:3.125rem; min-height:50px; text-align:left; display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-start; align-items:center; align-content:center;}
.mobilehead div.m div.l a {width:100%; overflow:hidden; height:2.6rem; display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-start; align-items:center; align-content:center;}
.mobilehead div.m div.l a img {width:100%; overflow:hidden; height:auto; display:block}
.mobilehead div.m div.r {width:70%; overflow:hidden; height:3.125rem; min-height:50px; display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-end; align-items:center; align-content:center;}
.mobilehead div.m div.r a {width:2.4rem; overflow:hidden; height:3rem; text-align:right; line-height:3rem; color:#FFF; display:block; font-size:1.5rem}

.fudong {position:fixed; top:-100%; left:0px; z-index:9999999;}
.lzjuli {padding-top:3%; padding-bottom:5%}
.liuziliao {width:100%; overflow:hidden; height:100%; background:linear-gradient(135deg, var(--dark-bg), #1A1F2E) !important; transition: all 0.1s linear 0s;}
.liuziliao div.m i {width:40px; overflow:hidden; height:40px; text-align:center; position:absolute; top:-4%; right:-3%; z-index:999999; cursor:pointer}
.liuziliao div.m i img {width:100%; overflow:hidden; height:auto; display:block}
.liuziliao div.m {width:90%; height:auto; position:relative; flex-wrap:wrap !important; display:block !important}
.liuziliao div.m div.l {width:100%; padding:5%; background:#030724; border-radius:12px; flex:1; float:left; border:1px solid #0d144b}
.liuziliao div.m div.l dl {width:100%; overflow:hidden}
.liuziliao div.m div.l dl dt {width:100%; text-align:left; line-height:26px; color:#FFF; font-size:16px; padding-bottom:1%}
.liuziliao div.m div.l dl dd {width:100%; text-align:left; padding-bottom:2%}
.liuziliao div.m div.l dl dd input {width:100%; overflow:hidden; border:1px solid #253652; background:#253652; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd input:focus {width:100%; overflow:hidden; border:1px solid #00d7f0; background:#2e4160; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd select {width:100%; overflow:hidden; border:1px solid #253652; background:url(../images/xlk.png) right no-repeat #253652; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd select:focus {width:100%; overflow:hidden; border:1px solid #00d7f0; background:url(../images/xlk.png) right no-repeat #2e4160; border-radius:8px; padding:2%; font-size:15px; color:#718bb6}
.liuziliao div.m div.l dl dd textarea {width:100%; overflow:hidden; min-height:120px; border:1px solid #253652; background:#253652; border-radius:8px; padding:2%; font-size:18px; color:#fff}
.liuziliao div.m div.l dl dd textarea:focus {width:100%; overflow:hidden; min-height:120px; border:1px solid #00d7f0; background:#2e4160; border-radius:8px; padding:2%; font-size:18px; color:#fff}
.liuziliao div.m div.l dl dd button {width:100%; overflow:hidden; border:1px solid #00b4ff; background:#00b4ff; border-radius:8px; padding:2%; font-size:18px; color:#fff; margin-top:1%; transition: all 0.1s linear 0s;}
.liuziliao div.m div.l dl dd button:hover {width:100%; overflow:hidden; border:1px solid #00b4ff; background:#00b4ff; border-radius:8px; padding:2%; font-size:18px; color:#fff; margin-top:1%; box-shadow: 0 0 15px rgba(0, 180, 255, 0.7), 0 0 30px rgba(97, 246, 255, 0.4); transform: translateY(-2px); cursor:pointer; transition: all 0.1s linear 0s;}

.liuziliao div.m div.r {width:auto; overflow:hidden; padding:5%; background:#030724; border-radius:12px; flex:1; float:right; border:1px solid #0d144b}
.liuziliao div.m div.r h3 {width:100%; overflow:hidden; text-align:left; font-size:24px; color:#4384ef; padding-bottom:3%; margin-bottom:6%; border-bottom:1px solid #0f3572}
.liuziliao div.m div.r dl {width:100%; overflow:hidden; text-align:left; font-size:16px; color:#FFF; line-height:24px; font-weight:normal;}
.liuziliao div.m div.r dl dt {width:10%; overflow:hidden; height:26px; text-align:left; display:block; line-height:30px; font-size:22px; color:#FFF; padding-bottom:10px;}
.liuziliao div.m div.r dl dd {width:90%; overflow:hidden; display:block; line-height:24px; padding-bottom:10px;}
.liuziliao div.m div.r dl dd img {width:40%; overflow:hidden; height:auto; display:block; margin-top:15px;}
.liuziliao div.m div.r dl dd span {width:40%; overflow:hidden; text-align:center; line-height:25px; font-size:14px; color:#565fa2}
.liuziliao div.m div.r p {width:100%; overflow:hidden; display:block; padding-top:20px; font-size:20px; color:#FFF}
.yclx {display:none}


.mobilenav {width:100%; overflow:hidden; height:100%; display:block; position:fixed; top:0px; right:-100%; z-index:9999999999999; background:url(../images/tm.png); display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-end; align-items:stretch; align-content:stretch; transition: all 0.2s linear 0s}
.mobilenav div.m {width:50%; overflow:hidden; height:auto; background:#000; position:relative; padding-top:6%}
.mobilenav div.m i {width:2.5rem; overflow:hidden; height:2.5rem; display:block; text-align:center; position:absolute; top:0.4rem; right:0.3rem; cursor:pointer}
.mobilenav div.m i img {width:100%; overflow:hidden; height:auto; display:block}
.mobilenav div.m a {width:80%; overflow:hidden; margin:0px auto; display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-start; align-items:center; align-content:center; line-height:2.5rem; color:#fff; font-size:1rem}
.mobilenav div.m a.ahover {width:80%; overflow:hidden; margin:0px auto; display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-start; align-items:center; align-content:center; line-height:2.5rem; color:#fff; font-weight:bold}


.blognews {width:100%; overflow:hidden; background:#000}
.blognews h1 {width:100%; overflow:hidden; margin:0px auto; text-align:center; font-size: 26px; font-weight: 800; background-clip: text; -webkit-background-clip: text; color: transparent; background-image: linear-gradient(90deg, #00B4FF, #61F6FF); margin-top:8%}
.blognews div.m {width:90%; margin:0px auto; max-width:1200px; display:grid; display: -webkit-grid; grid-template-columns: 1fr; gap: 0%; margin-top:6%; margin-bottom:3%}
.blognews div.m dl {width:auto; overflow:hidden; background:#171a2c; border-radius:10px; padding:3%; border:1px solid #1a3c50; transition: all 0.1s linear 0s; margin-bottom:5%}
.blognews div.m dl:hover {box-shadow: 0 0 45px rgba(0, 180, 255, 0.4), 0 0 30px rgba(97, 246, 255, 0.2); transform: translateY(-6px); transition: all 0.3s linear 0s;}
.blognews div.m dl a {width:100%; overflow:hidden; display:block}
.blognews div.m dl a dt {width:100%; overflow:hidden; max-height:180px;}
.blognews div.m dl a dt img {width:100%; overflow:hidden; height:auto; display:block}
.blognews div.m dl a dd {width:100%; overflow:hidden; padding:3%}
.blognews div.m dl a dd span {width:100%; overflow:hidden; text-align:left; font-size:14px; color:#9ca3af; display:block; margin-top:3%}
.blognews div.m dl a dd h3 {width:100%; overflow:hidden; text-align:left; font-size:20px; color:#09F; display:block; line-height:26px; margin-top:3%}
.blognews div.m dl a dd p {width:100%; overflow:hidden; line-height:30px; font-size:14px; color:#eee; text-align:right; padding-top:2%}
.blognews div.m dl a dd p strong {width:auto; overflow:hidden; display:block; font-weight:normal}
.blognews div.m dl a dd p i {width:30px; overflow:hidden; height:30px; text-align:right; line-height:30px; font-size:20px; display:block}

.blognews a.an {width:300px; overflow:hidden; padding:3%; line-height:40px; padding-top:0px; padding-bottom:0px; border:1px solid var(--primary); font-size:16px; color:var(--primary); border-radius:5px; margin:0px auto; margin-bottom:7%; cursor:pointer; transition: all 0.3s linear 0s;}
.blognews a.an:hover {width:300px; overflow:hidden; padding:3%; line-height:40px; padding-top:0px; padding-bottom:0px; border:1px solid var(--primary); font-size:16px; color:var(--primary); border-radius:5px; margin:0px auto; margin-bottom:7%; cursor:pointer; transition: all 0.3s linear 0s;box-shadow: 0 0 45px rgba(0, 180, 255, 0.4), 0 0 30px rgba(97, 246, 255, 0.2); transform: translateY(-6px);}


/**************新闻*****************/
.bloglist {width:100%; overflow:hidden; padding-top:3.125rem; padding-bottom:5%}
.bloglist div.nrnav {width:100%; overflow:hidden; margin:0px auto; text-align:center; padding-top:2.5%; padding-bottom:2.5%; background:#fcfcfc; border-bottom:1px solid #ddd; text-align:center; font-size:16px; color:#333}
.bloglist div.nrnav a {color:var(--primary)}
.bloglist div.nrnav a:hover {color:#F30}

.bloglist div.m {width:90%; margin:0px auto; margin-top:4%; display:grid; display: -webkit-grid; grid-template-columns: 1fr; gap: 0.5%;}
.bloglist div.m div.l {width:auto; padding-top:3%; display:grid; display: -webkit-grid; grid-template-columns: 1fr 1fr 1fr; gap: 2%; display:none}
.bloglist div.m div.l a {width:auto; overflow:hidden; height:48px; text-align:center; line-height:48px; font-size:18px; color:#333; display:block;}
.bloglist div.m div.l a:hover {width:auto; overflow:hidden; height:48px; text-align:center; line-height:48px; font-size:18px; display:block; text-decoration:none; color: #FFF; background: -webkit-gradient(linear, left bottom, left top, from(#0094ff), to(#0dddea)); background: linear-gradient(0deg, #0094ff 0%, #0dddea 100%); border-radius: 5px; -webkit-box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46); box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46);}
.bloglist div.m div.l a.ahover {color: #FFF; background: -webkit-gradient(linear, left bottom, left top, from(#0094ff), to(#0dddea)); background: linear-gradient(0deg, #0094ff 0%, #0dddea 100%); border-radius: 5px; -webkit-box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46); box-shadow: 0px 3px 11px 0px rgba(0, 188, 211, 0.46);}

.bloglist div.m div.r {width:auto; padding:0%; background:#fff; border-radius:0px;}
.bloglist div.m div.r dl {width:100%; overflow:hidden; padding-bottom:5%; margin-bottom:5%; border-bottom:1px solid #ddd;}
.bloglist div.m div.r dl a {width:100%; overflow:hidden; height:auto; display:grid; display: -webkit-grid; grid-template-columns: 1fr; gap: 2%;}
.bloglist div.m div.r dl a dt {width:auto; overflow:hidden; height:auto; border-radius:6px;}
.bloglist div.m div.r dl a dt img {width:100%; overflow:hidden; height:auto; display:block}
.bloglist div.m div.r dl a dd {width:auto; overflow:hidden;}
.bloglist div.m div.r dl a dd h3 {width:100%; overflow:hidden; height:auto; text-align:left; font-size:18px; font-weight:700px; color:#333; line-height:26px; padding-top:5px}
.bloglist div.m div.r dl a:hover dd h3 {width:100%; overflow:hidden; height:auto; text-align:left; font-size:18px; font-weight:700px; color:#0094ff; line-height:26px; padding-top:5px}
.bloglist div.m div.r dl a dd p {width:100%; overflow:hidden; display:block; padding-top:15px; font-size:14px; line-height:24px; text-align:left; color:#666}
.bloglist div.m div.r dl a dd p em {width:25px; overflow:hidden; height:25px; text-align:left; line-height:28px; display:block; float:left; margin-right:5px; font-size:20px; color:#666}
.bloglist div.m div.r dl a dd p b {width:auto; overflow:hidden; display:block; float:left; line-height:25px; font-weight:normal; padding-right:20px;}
.bloglist div.m div.r dl a dd span {width:100%; overflow:hidden; display:block; padding-top:15px; font-size:12px; line-height:25px; text-align:left; color:#999}

.bloglist div.m div.r div.newsshow {width:auto; overflow:hidden;}
.bloglist div.m div.r div.newsshow h1 {width:100%; overflow:hidden; text-align:left; line-height:40px; font-size:30px; color:#000; margin-top:10px;}
.bloglist div.m div.r div.newsshow h2 {width:100%; overflow:hidden; text-align:left; line-height:40px; font-size:15px; color:#777; margin-top:10px; font-weight:normal; border-bottom:1px solid #dcdcdc; padding-bottom:15px;}
.bloglist div.m div.r div.newsshow h2 span {float:left; display:block; padding-right:20px; line-height:24px;}
.bloglist div.m div.r div.newsshow h2 div.fx {width:100%; overflow:hidden; height:40px; float:right; display:block}
.bloglist div.m div.r div.newsshow h2 div.fx a {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:block !important; float:left !important; margin-right:10px !important; color:#87878f !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #87878f !important; text-align:center !important}
.bloglist div.m div.r div.newsshow h2 div.fx a:hover {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:block !important; float:left !important; margin-right:10px !important; color:#fff !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #23a6d5 !important; background:#23a6d5 !important; text-align:center !important; text-decoration:none !important}

.bloglist div.m div.r div.newsshow div.newsshowmain {width:100%; overflow:hidden; margin:0px auto; padding-top:20px; text-align:left; line-height:35px; font-size:18px; color:#333; margin-bottom:120px; padding-bottom:50px; margin-bottom:30px; border-bottom:1px solid #ddd}
.bloglist div.m div.r div.newsshow div.newsshowmain p {width:100%; overflow:hidden; display:block; font-size:18px; line-height:35px; padding-bottom:20px;}
.bloglist div.m div.r div.newsshow div.newsshowmain img {width:auto !important; overflow:hidden !important; display:block !important; margin:0px auto !important; margin-top:10px !important; margin-bottom:10px !important; max-width:100% !important}
.bloglist div.m div.r div.newsshow div.newsshowmain div.sm {width:auto; overflow:hidden; padding-top:40px; font-size:12px; text-align:left; line-height:22px; color:#333}


.bloglist div.m div.r div.newsshow div.tag {width:100%; overflow:hidden; text-align:center}
.bloglist div.m div.r div.newsshow div.tag span {width:auto; overflow:hidden; line-height:25px; text-align:center; padding-left:20px; padding-right:20px; display:inline-block; margin-left:5px; margin-right:5px; font-size:14px; color:#666;border:1px solid #eee;}
.bloglist div.m div.r div.newsshow div.tag a {width:auto; overflow:hidden; line-height:25px; text-align:center; padding-left:20px; padding-right:20px; display:inline-block; margin-left:5px; margin-right:5px; font-size:14px; border:1px solid #eee; color:#999}
.bloglist div.m div.r div.newsshow div.tag a:hover {width:auto; overflow:hidden; line-height:25px; text-align:center; padding-left:20px; padding-right:20px; display:inline-block; margin-left:5px; margin-right:5px; font-size:14px; border:1px solid #38cdba; background:#38cdba; text-decoration:none; color:#fff}
.bloglist div.m div.r div.newsshow div.ffx {width:100%; overflow:hidden; text-align:center; margin-top:20px;}
.bloglist div.m div.r div.newsshow div.ffx  a {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:inline-block !important; float:none !important; margin-right:10px !important; color:#87878f !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #87878f !important; text-align:center !important}
.bloglist div.m div.r div.newsshow div.ffx  a:hover {width:30px !important; overflow:hidden !important; padding:0px !important; height:30px !important; display:inline-block !important; float:none !important; margin-right:10px !important; color:#fff !important; border-radius:100px !important; line-height:30px !important; font-size:22px !important; border:2px solid #23a6d5 !important; background:#23a6d5 !important; text-align:center !important; text-decoration:none !important}

.bloglist div.m div.r div.newsshow div.nextup {width:100%; overflow:hidden; margin-top:20px; padding-bottom:20px; border-bottom:1px solid #eee;}
.bloglist div.m div.r div.newsshow div.nextup a {width:100%; overflow:hidden; text-align:left; line-height:26px; font-size:14px; color:#333; display:block; float:left}
.bloglist div.m div.r div.newsshow div.nextup a:hover {width:100%; overflow:hidden; text-align:left; line-height:26px; font-size:14px; color:#23a6d5; display:block; float:left}

.bloglist div.m div.r div.newsshow div.xglist {width:100%; overflow:hidden; margin-top:20px; margin-bottom:30px;}
.bloglist div.m div.r div.newsshow div.xglist h3 {width:100%; overflow:hidden; height:30px; text-align:left; line-height:30px; font-size:18px; font-weight:normal; color:#333; margin-bottom:20px;}
.bloglist div.m div.r div.newsshow div.xglist h3 span {width:4px; overflow:hidden; height:16px; display:block; float:left; margin-top:7px; margin-bottom:7px; margin-right:10px; background:#23a6d5; border:0px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr {width:100%; display:grid; display: -webkit-grid; grid-template-columns: 1fr; gap: 2%;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl {width:auto; overflow:hidden; float:left; padding-bottom:25px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a {width:100%; overflow:hidden; height:auto; display:grid; display: -webkit-grid; grid-template-columns: 120px 1fr; gap: 2%;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dt {width:auto; overflow:hidden; height:auto; border-radius:6px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dt img {width:100%; overflow:hidden; height:auto; display:block;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dd {width:auto; overflow:hidden; text-align:left; line-height:26px; font-size:16px; color:#333; font-weight:bold}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a dd p {width:100%; overflow:hidden; display:block; text-align:left; font-size:12px; color:#999; font-weight:normal; padding-top:6px;}
.bloglist div.m div.r div.newsshow div.xglist div.nr dl a:hover dd {width:auto; overflow:hidden; text-align:left; line-height:26px; font-size:16px; color:#38cdba; font-weight:bold}

/*分页*/
.pagelistfy {width:auto; overflow:hidden; margin:0px auto; margin-bottom:4%; text-align:center}
.pagelistfy ul li {width:auto; overflow:hidden; height:37px; display:inline-block; padding-left:2px; padding-right:2px;}
.pagelistfy ul li a {width:auto; overflow:hidden; height:35px; display:block; padding-left:15px; padding-right:15px; text-align:center; line-height:35px; font-size:16px; color:#777; border:1px solid #ddd; border-radius:5px; background:#fff}
.pagelistfy ul li a:hover {width:auto; overflow:hidden; height:35px; display:block; padding-left:15px; padding-right:15px; text-align:center; line-height:35px; font-size:16px; color:#fff; border:1px solid #0094ff; border-radius:5px; background:#0094ff; text-decoration:none; cursor:pointer}
.pagelistfy ul li a.ahover {width:auto; overflow:hidden; height:35px; display:block; padding-left:15px; padding-right:15px; text-align:center; line-height:35px; font-size:16px; color:#fff; border:1px solid #0094ff; border-radius:5px; background:#0094ff; text-decoration:none; cursor:pointer}
/***************新闻****************/
}









.juzuo {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-start; align-items:center; align-content:center;}
.juzhong {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:center; align-items:center; align-content:center;}
.juyou {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-end; align-items:center; align-content:center;}
.liangduan {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:nowrap; justify-content:space-between; align-items:center; align-content:center;}

.juzuohh {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:wrap; justify-content:flex-start; align-items:center; align-content:center;}
.juzhonghh {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:wrap; justify-content:center; align-items:center; align-content:center;}
.juyouhh {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:wrap; justify-content:flex-end; align-items:center; align-content:center;}
.liangduanhh {display:flex; display: -webkit-flex; flex-direction:row; flex-wrap:wrap; justify-content:space-between; align-items:center; align-content:center;}





.gaoliang {color:#0094ff !important; font-weight:bold !important}

















