/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #1e88e5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 顶部条 */
.head-top {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    font-size: 12px;
    color: #666;
    line-height: 36px;
}

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

.head-top .right a {
    color: #666;
    margin-left: 15px;
}

.head-top .right a:hover {
    color: #1e88e5;
}

/* 头部 */
.head-center {
    padding: 20px 0;
    background: #fff;
}

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

.logo img {
    height: 90px;
}

.phone-num {
    text-align: right;
}

.phone-num small {
    display: block;
    color: #666;
    font-size: 13px;
}

.phone-num span {
    font-size: 26px;
    color: #1e88e5;
    font-weight: bold;
}

/* 主导航 */
.main-nav {
    background: #1e88e5;
    height: 50px;
    line-height: 50px;
}

.main-nav .container {
    display: flex;
    justify-content: flex-start;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav-menu > li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 0 35px;
    color: #fff;
    font-size: 16px;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    background: #ff6600;
    color: #fff;
}

.main-nav li {
    position: relative;
}

.main-nav .submenu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #1e88e5;
    min-width: 200px;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.main-nav .submenu a {
    padding: 0 20px;
    line-height: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.main-nav li:hover > .submenu {
    display: block;
}

/* Banner */
.banner-slider {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

.banner-slider .banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.banner-slider .banner-item.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-slider .banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-slider .banner-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.banner-slider .banner-dots span.active {
    background: #ff6600;
}

/* 通用区块标题 */
.section-title {
    text-align: center;
    padding: 50px 0 30px;
}

.section-title h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: #ff6b00;
}

.section-title p {
    color: #999;
    font-size: 14px;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: #ff6600;
    margin: 15px auto 0;
}

/* 首页产品分类 */
.product-cats {
    background: #f9f9f9;
    padding-bottom: 50px;
}

.product-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-cats-grid .item {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.product-cats-grid .item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #1e88e5;
}

.product-cats-grid .item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    object-fit: cover;
    border-radius: 50%;
}

.product-cats-grid .item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-cats-grid .item p {
    color: #999;
    font-size: 12px;
    line-height: 1.6;
}

/* 关于我们 */
.about-section {
    padding-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content .text h3 {
    font-size: 24px;
    color: #1e88e5;
    margin-bottom: 20px;
}

.about-content .text p {
    color: #666;
    margin-bottom: 15px;
    text-indent: 2em;
}

.about-content .text a.more {
    display: inline-block;
    padding: 10px 30px;
    background: #ff6600;
    color: #fff;
    border-radius: 4px;
    margin-top: 10px;
}

.about-content .text a.more:hover {
    background: #e55a00;
}

.about-content .image img {
    width: 100%;
    border-radius: 4px;
}

/* 优势 */
.advantage-section {
    background: #1e88e5;
    padding: 60px 0;
    color: #fff;
}

.advantage-section .section-title h2,
.advantage-section .section-title p {
    color: #fff;
}

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

.advantage-grid .item .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 32px;
}

.advantage-grid .item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.advantage-grid .item p {
    font-size: 13px;
    opacity: 0.9;
}

/* 产品列表 */
.product-list-section {
    padding-bottom: 60px;
}

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

.product-grid .item {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-grid .item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-grid .item .img {
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-grid .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-grid .item h3 {
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

/* 新闻资讯 */
.news-section {
    background: #f9f9f9;
    padding-bottom: 60px;
}

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

.news-grid .item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-grid .item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.news-grid .item .img {
    width: 160px;
    height: 120px;
    flex-shrink: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.news-grid .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-grid .item .info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.news-grid .item .info p {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-grid .item .info span {
    color: #999;
    font-size: 12px;
}

/* 页脚 */
.footer {
    background: #2a2a2a;
    color: #aaa;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}

.footer-grid p,
.footer-grid a {
    color: #aaa;
    line-height: 2;
    font-size: 13px;
}

.footer-grid a:hover {
    color: #1e88e5;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #aaa;
}

/* 返回顶部 */
.scrolltop {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #1e88e5;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    z-index: 99;
}

.scrolltop:hover {
    background: #ff6600;
}

/* 内页通用 */
.page-banner {
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.page-banner h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 36px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-main {
    padding: 40px 0;
}

.page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

/* 左侧分类导航 */
.side-nav {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.side-nav .title {
    background: #1e88e5;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
}

.side-nav a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px dashed #eee;
    color: #666;
    font-size: 14px;
}

.side-nav a:hover,
.side-nav a.active {
    background: #f5f5f5;
    color: #ff6600;
    padding-left: 25px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-product-item {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px dashed #eee;
    color: #666;
    font-size: 13px;
    transition: color 0.3s;
}

.side-product-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.side-product-item span {
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-product-item:hover {
    color: #ff6600;
}

/* 面包屑 */
.breadcrumb {
    background: #f5f5f5;
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb .container {
    color: #666;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #1e88e5;
}

.breadcrumb span {
    margin: 0 8px;
}

/* 内页产品列表 */
.product-list-page .product-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* 分页 */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 3px;
}

.pagination a:hover,
.pagination .current {
    background: #1e88e5;
    color: #fff;
    border-color: #1e88e5;
}

/* 产品列表页 - 案例中心 */
.case-section .section-header {
    background: #1e88e5;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 18px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-section .section-header h2 {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 0;
}

.case-section .section-header a {
    font-size: 13px;
    color: #fff;
}

.case-section .section-header a:hover {
    color: #ffee00;
}

.case-section {
    margin-top: 40px;
}

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

.case-grid-4 .item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.case-grid-4 .item .img {
    height: 160px;
    overflow: hidden;
}

.case-grid-4 .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-grid-4 .item:hover .img img {
    transform: scale(1.1);
}

.case-grid-4 .item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 25px 12px 10px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 文章列表 */
.news-list .item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.news-list .item .img {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.news-list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list .item .info h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.news-list .item .info p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 10px;
}

.news-list .item .info .date {
    color: #999;
    font-size: 12px;
}

/* 文章详情 */
.content-show {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.content-show h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.content-show .meta {
    color: #999;
    font-size: 13px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
    margin-bottom: 20px;
}

.content-show .content {
    line-height: 2;
    color: #666;
}

.content-show .content p {
    margin-bottom: 15px;
}

.content-show .content img {
    max-width: 100%;
    margin: 15px 0;
}

.prev-next {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    color: #666;
}

.prev-next a {
    color: #1e88e5;
}

/* 产品详情 */
.product-detail {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.product-detail h1 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.product-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.product-detail-top .img {
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.product-detail-top .img img {
    width: 100%;
}

.product-info h3 {
    color: #1e88e5;
    margin-bottom: 20px;
    font-size: 18px;
}

.product-info table {
    width: 100%;
    border-collapse: collapse;
}

.product-info td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.product-info td:first-child {
    width: 100px;
    color: #999;
}

.product-content h3 {
    color: #1e88e5;
    margin: 30px 0 15px;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
    font-size: 18px;
}

/* 悬浮侧栏 */
.float-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 98;
    background: #1e88e5;
}

.float-sidebar a {
    display: block;
    width: 50px;
    padding: 12px 10px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.float-sidebar a:hover {
    background: #ff6600;
}

/* 适合多种供给系统 */
.supply-systems {
    background: #fff;
    padding-bottom: 60px;
}

.supply-header {
    text-align: center;
    padding: 50px 0 30px;
}

.supply-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.supply-header p {
    color: #999;
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.supply-grid .item {
    text-align: center;
    padding: 25px 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s;
}

.supply-grid .item:hover {
    border-color: #1e88e5;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.supply-grid .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fff;
}

.supply-grid .icon-1 { background: #1e88e5; }
.supply-grid .icon-2 { background: #ff6600; }
.supply-grid .icon-3 { background: #1e88e5; }
.supply-grid .icon-4 { background: #ff6600; }
.supply-grid .icon-5 { background: #1e88e5; }
.supply-grid .icon-6 { background: #ff6600; }

.supply-grid h3 {
    font-size: 14px;
    color: #333;
}

/* 产品分类 + 产品展示 */
.product-showcase {
    background: #f9f9f9;
    padding-bottom: 60px;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.classification {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    align-self: start;
}

.classification-title {
    background: #1e88e5;
    color: #fff;
    padding: 20px;
}

.classification-title span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.classification-title h3 {
    font-size: 22px;
}

.classification-list a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px dashed #eee;
    color: #666;
    font-size: 14px;
    transition: all 0.3s;
}

.classification-list a:hover {
    background: #f5f5f5;
    color: #ff6600;
    padding-left: 25px;
}

.showcase-main {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.showcase-header .title span {
    font-size: 12px;
    color: #999;
}

.showcase-header .title h2 {
    font-size: 24px;
    color: #333;
}

.showcase-header .more {
    padding: 8px 20px;
    border: 1px solid #1e88e5;
    color: #1e88e5;
    border-radius: 4px;
    font-size: 13px;
}

.showcase-header .more:hover {
    background: #1e88e5;
    color: #fff;
}

.showcase-main .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* 案例展示 */
.case-showcase {
    background: #fff;
    padding-bottom: 60px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.case-grid .item {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.case-grid .item .img {
    height: 200px;
    overflow: hidden;
}

.case-grid .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-grid .item:hover .img img {
    transform: scale(1.1);
}

.case-grid .item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 12px 15px;
    font-size: 14px;
}

.case-more {
    text-align: center;
    margin-top: 30px;
}

.case-more a {
    display: inline-block;
    padding: 10px 35px;
    background: #ff6600;
    color: #fff;
    border-radius: 4px;
}

.case-more a:hover {
    background: #e55a00;
}

/* 新闻标签页 */
.news-tabs {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.news-tab-header {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    position: relative;
}

.news-tab-header a {
    padding: 15px 25px;
    font-size: 16px;
    color: #666;
    position: relative;
}

.news-tab-header a.active {
    color: #1e88e5;
    font-weight: bold;
}

.news-tab-header a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1e88e5;
}

.news-tab-header .tab-more {
    margin-left: auto;
    color: #999;
    font-size: 13px;
}

.news-tab-header .tab-more:hover {
    color: #ff6600;
}

.news-tab-panel {
    display: none;
}

.news-tab-panel.active {
    display: block;
}

.news-list-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.news-list-horizontal .item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-list-horizontal .item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.news-list-horizontal .item .img {
    width: 160px;
    height: 120px;
    flex-shrink: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.news-list-horizontal .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-horizontal .item .info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.news-list-horizontal .item .info p {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-list-horizontal .item .info span {
    color: #999;
    font-size: 12px;
}

/* 移动端隐藏 */
.mobile-header,
.mobile-menu-toggle {
    display: none;
}

/* 联系我们页面 */
.contact-page {
    padding-bottom: 50px;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-page-header .contact-subtitle {
    font-size: 14px;
    color: #999;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.contact-page-header .contact-title {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.contact-intro {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-logo {
    flex: 0 0 200px;
}

.contact-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 20px;
    color: #1e88e5;
    margin-bottom: 20px;
}

.contact-info h3 small {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.contact-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-products {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 25px 30px;
    border-radius: 4px;
}

.contact-card .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #1e88e5;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    flex: 0 0 50px;
}

.contact-card .text span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.contact-card .text p {
    font-size: 18px;
    color: #333;
}
