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

       body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }


        /* ========== 导航栏 ========== */
       

        /* ========== 品牌头部卡片 ========== */
        .brand-hero {
            background: linear-gradient(135deg, #f8fafc 0%, #f0f4fa 100%);
            border-radius: 1.5rem;
            margin: 2rem 0;
            padding: 2rem;
            box-shadow: 0 8px 28px -8px rgba(0,0,0,0.08);
        }
        .brand-hero-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .brand-pic {
            width: 260px;
            height: 160px;
            border-radius: 1rem;
            background: #ffffff;
            padding: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            flex-shrink: 0;
        }
        .brand-pic img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .brand-info {
            flex: 1;
            min-width: 300px;
            margin-left: 30px;
        }
        .brand-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }
        .brand-title h1 {
            font-size: 1.8rem;
            color: #1e3a5f;
            font-weight: 700;
        }
        .brand-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .brand-tag {
            padding: 0.3rem 0.8rem;
            background: rgba(44, 98, 128, 0.1);
            border-radius: 2rem;
            font-size: 0.75rem;
            color: #2c6280;
        }
        .brand-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .brand-meta-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        .brand-meta-label {
            font-size: 0.75rem;
            color: #7c8b9c;
        }
        .brand-meta-value {
            font-size: 0.9rem;
            color: #2c5a7a;
            font-weight: 500;
        }
        .brand-products {
            margin-top: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .brand-products span {
            font-size: 0.85rem;
            color: #5a6e7c;
        }
        .product-tag {
            padding: 0.3rem 0.8rem;
            background: #f0f4f8;
            border-radius: 1rem;
            font-size: 0.8rem;
            color: #2c5a7a;
        }

        /* ========== 内容区域 ========== */
        .content-wrapper {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .main-content {
            flex: 2.5;
            min-width: 300px;
        }

        .sidebar {
            flex: 1;
            min-width: 300px;
        }

        /* ========== 通用卡片样式 ========== */
        .card {
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 8px 28px -8px rgba(0,0,0,0.08);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }

        .card-header {
            padding: 1rem 0;
            border-bottom: 2px solid #eef2f8;
            margin-bottom: 1rem;
        }
        .card-header h3 {
            font-size: 1.2rem;
            color: #1e3a5f;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card-header p {
            font-size: 0.75rem;
            color: #8aa2b8;
            margin-top: 0.3rem;
        }
        
        /* ========== 分类首字 Logo ========== */
.char-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, #f0f4fa 0%, #e8f0f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c6280;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.industry-item:hover .char-logo {
    background: linear-gradient(135deg, #2c6280 0%, #3a7ca5 100%);
    color: #ffffff;
    transform: scale(1.08);
}

        /* ========== 品牌介绍卡片 - 图文左右布局 ========== */
        .intro-card {
            padding: 0;
        }
        .intro-card-header {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            align-items: flex-start;
        }
        .intro-card .intro-image {
            width: 470px;
            height: 290px;
            border-radius: 0.8rem;
            overflow: hidden;
            flex-shrink: 0;
            display: none;
        }
        .intro-card .intro-image img {
            width: 470px;
            height: 290px;
            display: block;
            object-fit: cover;
        }
        .intro-card .intro-right {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .intro-card .card-header {
            padding: 0 1.5rem 0 0;
            margin-bottom: 0;
            border-bottom: none;
        }
        .intro-card .card-header h3 {
            font-size: 1.2rem;
            color: #1e3a5f;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .intro-card .card-header h3::before {
            content: '';
            display: inline-block;
            width: 3px;
            height: 1.2rem;
            background: #c9783a;
            border-radius: 2px;
        }
        .intro-card .intro-summary {
            font-size: 0.85rem;
            color: #3a627a;
            line-height: 1.8;
            padding: 0 1.5rem 0 0;
            margin-top: 1rem;
        }
        .intro-card .intro-summary p {
            margin-bottom: 0.8rem;
            text-align: justify;
        }
        .intro-card .intro-text {
            font-size: 0.9rem;
            color: #3a627a;
            line-height: 1.8;
            margin-bottom: 1rem;
            padding: 0 1.5rem;
        }
        .intro-card .intro-text p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .intro-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: #fafdff;
            border-radius: 0.8rem;
            margin-top: 1rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .intro-footer .source {
            font-size: 0.8rem;
            color: #7c97af;
        }
        .intro-footer .actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        .intro-footer .action-btn {
            font-size: 0.8rem;
            color: #5685a8;
            padding: 0.4rem 0.8rem;
            background: rgba(86, 133, 168, 0.1);
            border-radius: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .intro-footer .action-btn:hover {
            background: rgba(86, 133, 168, 0.2);
        }
        .intro-footer .update-time {
            font-size: 0.75rem;
            color: #9bb2c7;
        }

        /* ========== 企业信息表格 ========== */
    .company-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }
        .company-table th {
            text-align: left;
            padding: 0.75rem 1rem;
            background: #fafdff;
            font-weight: 600;
            color: #2c5a7a;
            border-bottom: 1px solid #eef2f8;
        }
        .company-table td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #f0f4f8;
            color: #3a627a;
        }
        .company-table td:first-child {
            background: #fafdff;
            color: #7c97af;
            width: 140px;
        }
        .company-table tr:hover td {
            background: #fafcff;
        }

        /* ========== 旗下品牌列表 ========== */
        /* 去掉品牌卡片链接下划线 */
.brand-item {
  text-decoration: none !important;
}
/* 去掉里面文字的下划线 */
.brand-item p {
  text-decoration: none !important;
}
        .brand-list {
            
            display: grid;
            gap: 1rem;
        }
        .brand-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: #fbfdff;
            border-radius: 1rem;
            border: 1px solid #eff3f8;
            transition: all 0.2s;
        }
        .brand-item:hover {
            border-color: #cbdde9;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .brand-item-pic {
            width: 80px;
            height: 80px;
            border-radius: 0.8rem;
            background: #ffffff;
            padding: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .brand-item-pic img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .brand-item-content h4 {
            font-size: 1rem;
            color: #1e3a5f;
            margin-bottom: 0.5rem;
        }
        .brand-item-content p {
            font-size: 0.8rem;
            color: #6a849c;
            line-height: 1.5;
        }

        /* ========== 行业榜单 ========== */
        .industry-list {
            display: grid;
            gap: 0.8rem;
        }
        .industry-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #fbfdff;
            border-radius: 1rem;
            border: 1px solid #eff3f8;
            text-decoration: none;
            transition: all 0.2s;
        }
        .industry-item:hover {
            background: #f5f9ff;
            border-color: #cbdde9;
        }
        .industry-item .pic {
            width: 48px;
            height: 48px;
            border-radius: 0.8rem;
            overflow: hidden;
            flex-shrink: 0;
        }
        .industry-item .pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .industry-item .name {
            flex: 1;
            font-size: 0.9rem;
            color: #2c4f6e;
            font-weight: 500;
        }
        .industry-item .ranking {
            font-size: 1rem;
            color: #d48c5c;
            font-weight: 700;
        }

        /* ========== 资讯列表 ========== */
        .news-item {
  text-decoration: none !important;
}

.nwes-item p {
  text-decoration: none !important;
}
   
        .news-list {
            display: grid;
            gap: 1rem;
        }
        .news-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: #fbfdff;
            border-radius: 1rem;
            border: 1px solid #eff3f8;
            transition: all 0.2s;
        }
        .news-item:hover {
            border-color: #cbdde9;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .news-item .pic {
            width: 120px;
            height: 80px;
            border-radius: 0.8rem;
            overflow: hidden;
            flex-shrink: 0;
            display: none;
        }
        .news-item .pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-item .content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-item .title {
            font-size: 0.95rem;
            color: #1e4a6b;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        .news-item .desc {
            font-size: 0.8rem;
            color: #6a849c;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ========== 新闻卡片网格 ========== */
                .news-card-title {
  text-decoration: none !important;
}

 .news-card {
  text-decoration: none !important;
}
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .news-card {
            background: #ffffff;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid #eff3f8;
            transition: all 0.2s;
        }
        .news-card:hover {
            border-color: #cbdde9;
            transform: translateY(-3px);
            box-shadow: 0 8px 18px -8px rgba(0,0,0,0.12);
        }
        .news-card-img {
            width: 100%;
            height: 140px;
            overflow: hidden;
            display: none;
        }
        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .news-card:hover .news-card-img img {
            transform: scale(1.05);
        }
        .news-card-content {
            padding: 1rem;
        }
        .news-card-title {
            font-size: 1.3rem;
            color: #1e4a6b;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card-desc {
            font-size: 0.8rem;
            color: #6a849c;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ========== 侧边栏样式 ========== */
        .sidebar-card {
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 8px 28px -8px rgba(0,0,0,0.08);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-card-header {
            padding-bottom: 1rem;
            border-bottom: 2px solid #eef2f8;
            margin-bottom: 1rem;
        }
        .sidebar-card-header h3 {
            font-size: 1.1rem;
            color: #1e3a5f;
            font-weight: 600;
        }

        /* 认证信息 */
        .auth-info {
            text-align: center;
        }
        .auth-logo {
            width: 100px;
            height: 60px;
            margin: 0 auto 1rem;
            display: none;
        }
        .auth-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .auth-title h2 {
            font-size: 1rem;
            color: #1e3a5f;
            margin-bottom: 0.5rem;
        }
        .auth-claim {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: #2c6280;
            color: #ffffff;
            border-radius: 1.5rem;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }
        .auth-tags {
            font-size: 0.75rem;
            color: #6a849c;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .auth-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
            margin-bottom: 1rem;
        }
        .auth-stat {
            padding: 0.8rem;
            background: #fafdff;
            border-radius: 0.8rem;
            text-align: center;
        }
        .auth-stat .n {
            font-size: 1.2rem;
            color: #2c6280;
            font-weight: 700;
        }
        .auth-stat .label {
            font-size: 0.7rem;
            color: #7c97af;
        }
        .auth-btn {
            display: block;
            width: 100%;
            padding: 0.8rem;
            background: #2c6280;
            color: #ffffff;
            border: none;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }
        .auth-btn:hover {
            background: #1e4a6b;
        }

        /* 二维码 */
        .qrcode-section {
            text-align: center;
            padding: 1rem;
            background: #fafdff;
            border-radius: 1rem;
            margin-bottom: 1rem;
        }
        .qrcode-title {
            font-size: 0.9rem;
            color: #1e3a5f;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .qrcode-img {
            width: 100px;
            height: 100px;
            margin: 0 auto;
            background: #ffffff;
            padding: 8px;
            border-radius: 0.5rem;
        }
        .qrcode-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .qrcode-tip {
            font-size: 0.75rem;
            color: #7c97af;
            margin-top: 0.5rem;
        }

        /* 榜单标签页 */
           .rank-name {
  text-decoration: none !important;
}

 
        .tab-header {
            display: flex;
            border-bottom: 2px solid #eef2f8;
            margin-bottom: 1rem;
        }
        .tab-btn {
            flex: 1;
            padding: 0.8rem;
            background: none;
            border: none;
            font-size: 0.85rem;
            color: #7c97af;
            cursor: pointer;
            position: relative;
            transition: color 0.2s;
        }
        .tab-btn.active {
            color: #2c6280;
            font-weight: 600;
        }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #2c6280;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid #f0f4f8;
        }
        .rank-item:last-child {
            border-bottom: none;
        }
        .rank-badge {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .rank-badge.top1 { background: linear-gradient(135deg, #d48c5c, #c2a575); color: #fff; }
        .rank-badge.top2 { background: linear-gradient(135deg, #b89a7a, #a89068); color: #fff; }
        .rank-badge.top3 { background: linear-gradient(135deg, #c2a575, #b89858); color: #fff; }
        .rank-badge.default { background: #f0f4f8; color: #7c97af; }
        .rank-name {
            flex: 1;
            font-size: 0.85rem;
            color: #2c5a7a;
            font-weight: 500;
        }
        .rank-score {
            font-size: 0.8rem;
            color: #c9783a;
            font-weight: 600;
        }

        /* 相关品牌推荐 */
        .related-brands {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.8rem;
        }
        .related-brand {
            background: #fafdff;
            border-radius: 0.8rem;
            overflow: hidden;
            border: 1px solid #eff3f8;
            transition: all 0.2s;
        }
        .related-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .related-brand img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ========== 底部 ========== */
        .footer {
            margin-top: 3rem;
            padding: 2rem 0 3rem;
            border-top: 1px solid #eef2f8;
            text-align: center;
        }
        .footer p {
            color: #8aa2b8;
            font-size: 0.8rem;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .related-brands {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 900px) {
            .content-wrapper {
                flex-direction: column;
            }
            .brand-hero-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .brand-meta {
                justify-content: center;
            }
            .nav-links {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            .related-brands {
                grid-template-columns: repeat(2, 1fr);
            }
            .brand-meta {
                flex-direction: column;
                align-items: center;
            }
            .company-table {
                font-size: 0.8rem;
            }
            .company-table td:first-child {
                width: 100px;
            }
        }

        @media (max-width: 550px) {
            .container {
                padding: 0 1rem;
            }
            .brand-hero {
                padding: 1.5rem 1rem;
                border-radius: 1rem;
            }
            .card {
                padding: 1rem;
                border-radius: 1rem;
                
            }
            .news-item {
                flex-direction: column;
            }
            .news-item .pic {
                width: 100%;
                height: 160px;
            }
            .auth-stats {
                grid-template-columns: 1fr;
            }
            /* 品牌介绍卡片响应式 */
            .intro-card-header {
                flex-direction: column;
            }
            .intro-card .intro-image {
                width: 100%;
                height: auto;
            }
            .intro-card .intro-image img {
                width: 100%;
                height: auto;
            }
            .intro-card .intro-summary {
                padding: 0;
                margin-top: 1rem;
            }
            .intro-card .card-header {
                padding: 0;
            }
        }

        /* 小屏幕适配 */
        @media (max-width: 768px) {
            .intro-card-header {
                flex-direction: column;
            }
            .intro-card .intro-image {
                width: 100%;
                max-width: 470px;
                margin: 0 auto;
            }
            .intro-card .intro-image img {
                width: 100%;
            }
        }

        /* 查看更多链接 */
        .view-more {
            display: block;
            text-align: center;
            padding: 0.8rem;
            margin-top: 1rem;
            color: #5685a8;
            font-size: 0.85rem;
            text-decoration: none;
            background: rgba(86, 133, 168, 0.1);
            border-radius: 2rem;
            transition: background 0.2s;
        }
        .view-more:hover {
            background: rgba(86, 133, 168, 0.2);
        }

        /* 展开/收缩按钮 */
      

        /* 相关行业两列布局 */
        .sidebar-card .industry-list.two-col {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
        }
        .sidebar-card .industry-list.two-col .industry-item {
            padding: 0.8rem;
        }
        .sidebar-card .industry-list.two-col .industry-item .pic {
            width: 36px;
            height: 36px;
        }
        .sidebar-card .industry-list.two-col .industry-item .name {
            font-size: 0.8rem;
        }
        .sidebar-card .industry-list.two-col .industry-item .ranking {
            display: none;
        }

        /* 隐藏元素 */
        .hide {
            display: none !important;
        }

       





/* 公共弹窗样式 */


/* 客服代码 */


/* 美化 placeholder */


/* firefox 19+ */
:-ms-input-placeholder {
	color: #999;
}
/* ie */
input:-moz-placeholder {
	color: #999;
}
/* webkit专用 */
#field2::-webkit-input-placeholder,
#field3::-webkit-input-placeholder,
#field4::-webkit-input-placeholder {
	color: #999;
}
/* mozilla专用 */
#field2::-moz-placeholder,
#field3::-moz-placeholder,
#field4::-moz-placeholder {
	color: #999;
}

/* 广告图片上增加：广告字样 */
.adwording {
	position: relative;
	display:inline-block;
}
.adwording .ad-text{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	color: #fff;
	font-size: 13px;
	padding: 2px 5px;
	background: #8d8d8db5;
} 


/* footer */
.app_friendly_link{
	background-color: #83898c!important;
}
.public_footer{
  background: #5D6569;
  width: 100%;
  /* height: 320px; */
  height: auto;
	padding-bottom: 36px;
}
  .public_footer .footer_first{
		display: flex;
		justify-content: center;
	}
  .public_footer .footer_nav{
    padding: 30px 80px 0;
    height: 25px; 
    overflow: hidden;
    text-align: center;
  }
  .public_footer .footer_nav ul{
    display: inline-block;
    overflow: hidden;
  }
  .public_footer .footer_nav li{
    float: left;
    margin-left: 34px;
  }
  .public_footer .footer_nav li.first{
    margin-left: 0;
  }
  .public_footer .footer_nav a{
		font-family: 'pingfang SC','helvetica neue',arial,'hiragino sans gb','microsoft yahei ui','microsoft yahei',simsun,sans-serif,'微软雅黑';
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 400;
  }
  /* 二维码 */
  .public_footer .footer_code{
    padding-top: 24px;
    overflow: hidden;
    text-align: center;
  }
  .public_footer .footer_code ul{
    display: inline-block;
    overflow: hidden;
  }
  .public_footer .footer_code li{
    float: left;
    margin-left: 50px;
    width: 74px;
    text-align: center;
  }
  .public_footer .footer_code li.first{
    margin-left: 0px;
  }
	.public_footer .footer_code li .code{
		width: 72px;
		height: 72px;
		border: 1px solid #aeb2b4;
		border-radius: 7px;
		overflow: hidden;
	}
  .public_footer .footer_code li img[data-src]{
    width: 72px;
    height: 72px;
    display: inline-block;
  }
  .public_footer .footer_code .title {
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 400;
    width: 74px;
    text-align: center;
    padding-top: 4px;
  }
  /* contact */
  .public_footer .footer_contact{
    padding-top: 23px;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
		height: 30px;
  }
  .public_footer .footer_contact .item {
    display: inline-block;
    text-align: left; 
  }
  .public_footer .footer_contact .line{
    width: 2px;
    background-color: #aeb2b4;
    height: 13px;
    overflow: hidden;
    margin: 0 40px; 
  }
	.public_footer .footer_contact .number{
		font-size: 22px;
	}

	.public_footer .copyright_style{
		font-size: 12px;
		color: #999999; 
		display: flex;
		justify-content: center;
		height: 22px;
    align-items: center;
		padding-top: 13px;
	}