/* 阴影线 */
/* .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px; 
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05), transparent); 
    z-index: -1;
} */

/* .header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
      to right, 
      rgba(0, 0, 0, 0.1) 0%, 
      rgba(0, 0, 0, 0.3) 50%, 
      rgba(0, 0, 0, 0.1) 100%
    );
    transform: translateY(2px); 
    filter: blur(2px); 
  } */

/* .fixed-header-on .header.fixed.animated {
    background-color: rgba(255, 255, 255, 1);
} */

.logo img {
    width: 50%;
}

/* 联系我们提示信息 */
.connect-me-dialogmodal {
    position: relative‌;
    padding-top: 10%;
}
.connect-me-dialogheader {
    background-color:gray;
    height: 50px;
    text-align: center;
}
.connect-me-dialogcontent{
    height: 90px;
    font-weight: bold;
    font-size: 16px;
}
#connectMeInfoSubmitClose{
    margin: 0;
}


/* 导航首页菜单分隔线 */
.nav > li:nth-child(1) {
    border-right: 1px solid #8080803d;
    padding-right: 8px;
}

.navbar-default .navbar-nav > li > a:hover {
    background-color: #FF6A00;
    color: white;
}

/* 移动端适配 */

@media (max-width: 599px) {
    /* 导航菜单 */
    .header-container .sm-menu{
        padding: 0;
    }
    .header-right {
        height: 50px;
    }
    .navbar.navbar-default {
        border: 0;
        background-color: unset;
    }
    .nav.navbar-nav.navbar-right {
        position: relative;
        background-color: white;
        z-index: 99;
    }

}