/* ===================================================================
   Baylion Networks — Bootstrap 3 Custom Overrides
   Used with: Bootstrap 3.3.7 + jQuery 1.12.4
   =================================================================== */

/* ===== CSS Variables ===== */
:root {
    --color-blue: #2563EB;
    --color-blue-dark: #1D4ED8;
    --color-blue-light: #60A5FA;
    --color-blue-soft: #DBEAFE;
    --color-green: #16A34A;
    --color-orange: #F97316;
    --color-purple: #9333EA;
    --color-dark-bg: #0F172A;
    --color-dark-bg-2: #1E293B;
    --color-text-muted: #64748B;
}

/* ===== Global ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: #F5F6FA url(../images/bg.jpg) repeat-y center top;
    font-size: 12px;
}

/* 修改container全局默认 */
.container {
    padding-left: 5px;
    /* 修改左右内边距 */
    padding-right: 5px;
}


.navbar-nav {
    margin-top: 10px;
    margin-right: 10px;
}

.navbar-default {
    border: none;
    background: #F5F6FA url(../images/bg.jpg) repeat-y center top;
    min-height: 80px;
}

.navbar-default .navbar-nav>li>a {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    padding: 15px 14px;
    transition: color 0.2s;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #2563EB;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #2563EB;
    background: transparent;
    font-weight: 600;
}

.banner {
    margin-top: 80px;
}

.img-responsive {
    max‑width: 100%;
    height: auto;
}

.btn-blue {
    background: #2883e9;
    color: #fff;
    border: none;
}

.btn-blue:hover {
    background: #1c6fc9;
    color: #fff;
}

.border-h-left {
    border-left: 1px solid #dee1e9;
}

.margin-top-20 {
    margin-top: 20px;
    ;
}

/* ===== Info Card ===== */
.info-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card-body {
    padding: 10px;
    height: 220px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-card .card-divider {
    width: 25px;
    height: 2px;
    background: #2563EB;
    border-radius: 1px;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.6;
}

/* ===== technology ===== */
.technology_section_divider {
    width: 30px;
    height: 2px;
    background: #2563EB;
    border-radius: 1px;
    margin-bottom: 12px;
}

.feature-row {
    padding: 40px 0;
    background: #f7f8fc;
}

.feature-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #dde0ec;
    height: 200px;
}

/* 最后一列去掉右边分割线 */
.feature-item:last-child {
    border-right: none;
}

.feature-title {
    font-size: 14px;
    font-weight: bold;
    color: #111833;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 12px;
    color: #444966;
    line-height: 1.6;
}

/* 响应式处理分割线 */
@media (max-width:991px) {
    .feature-item {
        border-right: none;
        border-bottom: 1px solid #dde0ec;
        padding: 30px 15px;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

.tech-path-section {
    padding: 20px 0;
    background: #f5f7fb;
}

.tech-path-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
}

.tech-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 0 10px 24px 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}
.tech-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.tech-card-title {
    font-size: 14px;
    font-weight: bold;
    color: #2563eb;
    text-align: center;
    padding: 20px 10px 16px;
    margin: 0;
}


.tech-card-list {
    padding: 20px 5px 0;
    margin: 0;
    list-style: none;
    flex: 1;
}

.tech-card-list li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #334155;
    line-height: 1.5;
}

.tech-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #334155;
}

/* 箭头连接 */
.tech-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    color: #2563eb;
    font-size: 32px;
    font-weight: bold;
}
/**----------contact---------**/
.contact_left_10{
    padding-left: 10px;
}
.contact_top_10{
    padding-top: 30px;
}
.contact_blue{
    color: #2563eb;
}
/**----------team---------**/
.team-behind {
  margin-top:100px;
}
.team-title {
  padding-top: 20px;
  font-weight: bold;
  color: #1e1b4b;
}
.team-divider {
  width: 50px;
  height: 4px;
  background: #2563eb;
  margin-bottom: 25px;
  border-radius: 2px;
}
.team-desc {
  font-size: 12px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}
.team-right {
  display: flex;
  align-items: center;
}
.team-feature {
  text-align: center;
  padding: 20px 15px;
  height: 200px;
}
.team-feature.border-left {
  border-left: 1px solid #e2e8f0;
}
.team-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.team-feature-title {
  font-size: 12px;
  font-weight: bold;
  color: #1e1b4b;
  margin-bottom: 15px;
}
.team-feature-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.team-leadership{
    margin: 20px 0;
}

.team-path-section{
    margin-bottom: 50px;
}
.tech-card-img {
    width: 100%;
    height: 86px;
    border-radius: 5px;
    object-fit: cover;
    display: block;
}

.team-info{
    height: 150px;
}
.team-card-img {
    margin: 10px 0;
    width: 100%;
    object-fit: cover;
    display: block;
}
.team-card-title {
    color: #2563eb;
    padding-bottom: 10px;
}
.team-pic{
    height: 30px;
    line-height: 30px;
}
.team-card-list {
    padding: 20px 5px 0;
    height: 150px;
    margin: 0;
    list-style: none;
    flex: 1;
}

.team-card-list li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: 10px;
    color: #334155;
    line-height: 1.5;
}

.team-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #334155;
}
.team-in-icon{
    margin:10px 0 0 5px;
}
/* 响应式：平板及以下垂直排列 */
@media (max-width:991px) {
    .tech-path-row {
        flex-direction: column;
    }

    .tech-card {
        margin: 0 0 20px 0;
    }

    .tech-arrow {
        flex: 0 0 30px;
        transform: rotate(90deg);
    }

    .tech-card-img {
        height: 200px;
        
    }
}

/* ===== Footer ===== */
.site-footer {
    background: #0F172A;

}

.site-footer-lbg {
    background: #0F172A;
    color: #ebebf3;
    padding: 10px;
}

.site-footer-rbg {
    background: #0F172A;
    color: #ebebf3;
    padding: 10px;
}

.inverstors-bg{
    background: url(../images/fg_2.jpg) no-repeat right;
    height: 112px;
}

.footer-inc{
    padding: 10px;
    font-weight: bold;
    color: #a1a4a9;
    text-align: center;
}

.footer-line {
    border-left: 1px solid #2d386b;
}

.stat‑block {
  padding: 0 20px;
  margin: 20px 0;
  text-align: center;
}
.stat‑big {
    font-size: 20px;
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
}
.stat‑small {
  color: #ffffff;
  opacity: 0.85;
  padding-bottom: 10px;
}


.text-link {
    color: #60A5FA;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.text-link:hover {
    color: #93C5FD;
    text-decoration: none;
}

/* 新增适配样式，写在页面内，不改动外部css文件 */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.features-item {
    margin-bottom: 24px;
}

/* 移动端适配 */
@media (max-width: 767px) {
    .features .row>div {
        width: 100%;
        float: none;
    }

    .features .col-xs-4 {
        margin-bottom: 30px;
        margin-left: 0 !important;
    }

    .features .row .flex {
        flex-wrap: wrap;
    }

    .btn-blue {
        width: 100%;
    }
}