/*初始化*/
@import "reset.css";
/*公共*/
@import "base.css";
/*头部*/
@import "top/top.css";
/*导航*/
@import "nav/nav.css";
/*面包屑*/
@import "crumbs/crumbs.css";
/*底部*/
@import "footer/footer.css";


/*主体样式1*/

/*头部*/
header {
    background: #FFFFFF;
}

/*主体内容*/
.main {
    background-color: white;
    margin: 50px 0px;
}

.main .container img {
    max-width: 100%;
    height: auto;
}

.main .nav {
    text-align: center;
    height: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeded;
}

.main .nav a {
    display: inline-block;
    width: 90px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
}

.main .active {
    border-bottom: 2px solid #01b4f0
}


