 /*全局公共样式 */
.container{
    padding: 0;
}

.more{
    display: block;
    background: rgb(245,185,50);
    width: 275px;
    text-align: center;
    margin: 1.5rem auto;
    padding:0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.more:hover{
    text-decoration: none;
    color: #ffffff;
}

 /*  面包屑导航  */
 .breadcrumb{
     flex-wrap: nowrap;
     padding: 0.75rem 1rem;
     margin-bottom: 1rem;
     list-style: none;
     background-color: transparent !important;
     border-radius: 0.25rem;
     font-size: 14px;
 }

 .breadcrumb a{
     text-decoration: none;
     color: #666666;
 }

 .breadcrumb-item + .breadcrumb-item::before{
     content:'>' !important;
 }



/* header公共头部样式 */
header .top-info{
    background: #f5f5f5;
    height: 60px;
}

header .top-info .container{
    display: flex;
    line-height: 60px;
    justify-content: space-between;
    font-size: 12px;
    padding: 0;
}

header .top-info .container .top-info-text{
    color: #999999;
}

header .top-info .container .top-info-btn a{
    text-decoration: none;
    color: #000000;
}

header .top-info .container .top-info-btn a.topBtn{
    padding: 10px 2rem;
    background: rgb(245,185,50);
    border-radius: 5px;
    color: #ffffff;
    font-size: 12px;
    border: none;
    line-height: 1rem;
    margin: 0 0.5rem;
}

header .top-info .container .top-info-btn a.seek{
    margin-left: 1rem;
}

header .top-info .container .top-info-btn a.seek:hover{
    color: rgb(245,185,50);
}

header .top-nav{
    display: flex;
    align-items: center;
    padding: 1rem 0;

}

header .top-nav .container{
    display: flex;
    justify-content: space-between;
    position: relative;
}

header .top-nav .container .top-nav-menu{
    display: flex;
    justify-content: right;
    text-align: left;
    position: absolute;
    right: 0;
    z-index: 999;
}

header .top-nav .container .top-nav-menu .navbar{
    background: transparent !important;
}

header .top-nav .container .top-nav-menu .navbar li a{
    font-size: 14px;
    color: #000000;
}

header .top-nav .container .top-nav-menu .navbar li a:hover{
    color: rgb(245,185,50);
}

 header .top-nav .container .top-nav-menu .navbar li.hide-menu{
     position: relative;
 }

 header .top-nav .container .top-nav-menu .navbar li.hide-menu .hide-menu-content{
     position: absolute;
     background: #ffffff;
     width: 350px;
     display: none;
 }

 header .top-nav .container .top-nav-menu .navbar li.hide-menu:hover .hide-menu-content{
     display: block;
 }

 header .top-nav .container .top-nav-menu .navbar li.hide-menu ul{
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     padding: 1rem;
 }

 header .top-nav .container .top-nav-menu .navbar li.hide-menu ul li{
     width: 134px;
     text-align: left;
     margin: 1rem 0;
     display: flex;
     align-items: center;
 }

 header .top-nav .container .top-nav-menu .navbar li.hide-menu ul li:before{
     content: '';
     display: inline-block;
     width: 5px;
     height: 1rem;
     background: #ffc107;
     margin: 0 0.5rem 0 0;
 }

 header .top-nav .container .top-nav-menu .navbar li.hide-menu ul li a{
     text-decoration: none;
 }

/*footer公共样式*/
 footer{
    background: #000000;
     padding: 50px 0;
 }

 footer .container .footer-logo{
     width: 250px;
 }

 footer .container .footer-logo img{
     width: 100%;
 }

footer .container .footer-logo p{
    color: #ffffff;
    margin: 1rem 0;
}

 footer .container .footer-logo p a{
     text-decoration: none;
     color: #ffffff;
     white-space: nowrap;
 }

 footer .container .footer-logo hr{
     width: 50px;
     height: 2px;
     background: #ffffff;
     margin-left: 0;
 }

 footer .container .footer-text{
     color: #ffffff;
 }

 footer .container .footer-text p a{
     text-decoration: none;
     color: #ffffff;
     white-space: nowrap;
 }

 footer .container .footer-text div{
    margin-bottom: 1.5rem;
 }
 footer .container .footer-ma img{
     width: 150px;
     height: 150px;
 }

 @media screen and (max-width: 991px){
     footer .footer-ma{
         display: none;
     }
 }

