/*Layout*/
body {
    font-family: '微软雅黑';
}

A {
    color: #990033;
}

A:link {
    text-decoration: none;
}

A:visited {
    text-decoration: none;
}

A:active {
    text-decoration: none;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb300 {
    margin-bottom: 300px;
}

.mr3 {
    margin-right: 3px;
}

.fr {
    float: right;
}

.rm0 {
    margin-left: 0px;
    margin-right: 0px;
}

.section {
    margin-top: 15px;
}

.gray {
    background-color: #8c8c8c;
}

.time {
    color: #ccc;
}

.male {
    color: #006938;
}

.female {
    color: #CC3333;
}

ul, li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

label .lbl-gray {
    color: #aaa;
    margin: 0px;
    font-size: 14px;
    font-weight: normal;
}

.form-control:focus {
    border-color: #990033;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(153, 0, 51, 0.6)
}

.form-group .row {
    padding-left: 15px;
    padding-right: 15px;
}

.menu-wrapper {
    position: relative;
    /*margin: auto;*/
    float: right;
    width: 25px;
    cursor: pointer;
    height: 19px;
    margin-top: 8px;
    margin-bottom: 9px;
    margin-right: 15px;
    padding: 16px 0px;
}
.hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
    width: 25px;
    height: 3px;
}

.hamburger-menu {
    position: relative;
    transform: translateY(0px);
    background: white;
    transition: all 0ms 300ms;
}

.hamburger-menu.animate {
    background: rgba(255, 255, 255, 0);
}

.hamburger-menu:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: white;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: white;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/*loading*/
.loading {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.loading:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026"; /* ascii code for the ellipsis character */
    width: 0px;
}

@keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@keyframes ld-spin-fast {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    50% {
        -webkit-transform: rotate(900deg);
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    100% {
        -webkit-transform: rotate(1800deg);
        transform: rotate(1800deg)
    }
}

@-webkit-keyframes ld-spin-fast {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    50% {
        -webkit-transform: rotate(900deg);
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    100% {
        -webkit-transform: rotate(1800deg);
        transform: rotate(1800deg)
    }
}

.ld.ld-spin-fast {
    -webkit-animation: ld-spin-fast 1s infinite;
    animation: ld-spin-fast 1s infinite
}

/*header*/
.header .logo{
    height:35px;
}

.header a.user-menu {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    position: relative;
}

.header a.user-menu img {
    position: absolute;
    bottom: -5px;
    right: 0px;
}

.header .main-logo {
    padding: 10px 0px;
}

.header .mlogo {
    display: none;
    height: 30px;
    float: left;
    margin-top: 9px;
    margin-left: 13px;
}

/*pagination*/
.pagination {
    display: block;
    padding: 20px;
    margin-bottom: 20px;
    font: 16px/24px sans-serif;
}

.page {
    display: inline-block;
    padding: 0px 9px;
    margin-right: 4px;
    margin-bottom: 4px;
    border-radius: 3px;
    border: solid 1px #c0c0c0;
    background: #e9e9e9;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .875em;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}

.page:hover, .page.gradient:hover {
    background: #fefefe;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FEFEFE), to(#f0f0f0));
    background: -moz-linear-gradient(0% 0% 270deg,#FEFEFE, #f0f0f0);
}

.page.active {
    border: none;
    background: #616161;
    box-shadow: inset 0px 0px 8px rgba(0,0,0, .5), 0px 1px 0px rgba(255,255,255, .8);
    color: #f0f0f0;
    text-shadow: 0px 0px 3px rgba(0,0,0, .5);
}

.page.gradient {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#e9e9e9));
    background: -moz-linear-gradient(0% 0% 270deg,#f8f8f8, #e9e9e9);
}

/*menu*/
.menu { background: #009946; }
.menu .cp31 { font-size: 14px; }
.menu .navbar-default { border: none; margin-bottom: 0px; background: transparent; }
.menu .navbar-default .navbar-nav>li>a { color:#fff; }
.menu .navbar-default .navbar-nav>.active>a,.menu .navbar-default .navbar-nav>.active>a:focus,.menu .navbar-default .navbar-nav>.active>a:hover { background-color: #006938; }
.menu .navbar-default .navbar-nav>.open>a,.menu .navbar-default .navbar-nav>.open>a:focus,.menu .navbar-default .navbar-nav>.open>a:hover { background-color: #006938; color:#fff; }
.menu .navbar-brand { padding-top: 7px; margin-right: 50px; }
.menu .dropdown-menu { background-color: #006938; border: none; }
.menu .dropdown-menu a { color:#fff; }
.menu .navbar-collapse { border: none; }
/*search*/
.mytypeahead {
    left: 0;
    right: 0;
    background-color: rgba(42, 81, 53, 0.9);
    color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    margin-right: 15px;
    margin-left: 15px;
    padding: 0px;
}

.mytypeahead li {
    padding: 7px;
    width: 50%;
    float: left;
    cursor: pointer;
}

.mytypeahead li:hover {
    background-color: #fff;
    color: #000;
}

.mytypeahead li:hover a {
    color: #000;
}

.mytypeahead li img {
    width: 80px;
    height: 80px;
    float: left;
}

.mytypeahead li p {
    margin: 0px;
    padding-left: 85px;
    font-size: 16px;
}

.mytypeahead li p span {
    display: block;
    font-size: 13px;
    color: #aaa;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    margin-top: 5px;
}

.mytypeahead li p strong {
    color: #FF9900;
    font-weight: bold;
}

.loading2 {
    color: #006938;
    position: absolute;
    z-index: 99;
    right: 60px;
    top: 10px;
    display: none;
}

.typeahead-loading .loading2 {
    display: block;
}

.user_menu [class*="col-"] {
    padding: 0px;
}

/*userinfo*/
.user-info {
    margin: 30px 15px;
}

.user-info .face {
    width: 100%; margin-right: 15px; box-shadow:0 0 5px #999;
}

.user-info h3 {
    margin-top: 10px;
    height: 25px;
    line-height: 25px;
    margin-bottom: 10px;
}

.user-info a.follow { font-size: 12px; display: inline-block; text-decoration: none; background:#666; color:#fff; height: 14px; line-height: 14px; cursor: pointer; margin-left: 5px; }
.user-info a.follow .cp31 { font-size: 12px; }
.user-info a.follow:hover { background-color: #009946; }
.user-info .follow.followed:hover { background-color: #990033; }

.user-info .intro {
    padding-right: 10px;
    color:#666; line-height: 22px;
    text-align: justify; /*text-align-last:justify;*/
    word-wrap: break-word; white-space: pre-line;
    font-size: 12px;
}
.user-info .time { font-size: 12px; color:#999; }
.user-info .time .cp31 { font-size: 12px; }

.side-meta-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 20px 0;
    margin-top: 35px;
}

.side-meta-box ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.side-meta-box ul li {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: inline;
    padding: 3px 5px 3px 6px;
}

.side-meta-box ul li a {
    color: rgba(0, 0, 0, 0.8);
}

.side-meta-box ul li i {
    margin-right: 3px;
}

.side-meta-box ul li:last-child {
    border-right: medium none;
    margin-right: 0;
}

/*用户主页*/
.user-nav .swiper-container {
    width: 100%;
    height: 35px;
}

.user-nav .swiper-slide {
    text-align: center;
    font-size: 14px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.user-nav .swiper-slide {
    width: auto;
    background-color: transparent;
}
.user-nav .swiper-slide a { color:#999; }

.user-nav {
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 1px solid #ccc;
    position: relative;
}
.user-nav .cp31 { font-size: 14px; }
.user-nav-container { padding-left: 15px; padding-right: 100px; }
.user-nav .swiper-slide a { color: #006633; font-weight: bold; }
.user-nav .swiper-slide.active a { color:#990033; }

.user-nav .nav-add { position: absolute; right: 0px; top: 0px; line-height: 35px; height:35px; display: inline-block; }

/*recipe-list*/
.recipe-item {
    padding: 10px;
    margin-bottom: 20px;
    width: 20%;
}
.recipe-item p { margin: 0px; padding: 0px; }
.recipe-item a {
    color: #000; display: inline-block; border-radius: 10px; overflow: hidden;
    box-shadow: 0 0 7px rgba(3, 3, 3, 0.1);
}
.recipe-item a:hover { box-shadow: 0 0 10px rgba(0, 102, 51, 0.7); }
.recipe-item p.title { font-size: 16px; font-weight: bold; padding: 5px 5px 3px; }
.recipe-item p.story { text-align:justify; text-justify:inter-ideograph; line-height: 22px; word-wrap: break-word; margin-left: 5px; margin-right: 5px; margin-bottom: 5px; }
.recipe-item p.date { display: inline-block; height:20px; line-height: 20px; font-size: 12px; color:#ccc; padding-left: 5px; }

.recipe-item p.story[data-readmore] {
    overflow: hidden;
    transition: height 200ms ease 0s;
}
.recipe-item p.readmore { height: 35px; line-height: 35px; }

.recipes .row { margin-left: 0px; }
.my-recipe { padding-left: 0px; margin-bottom: 35px; }
.my-recipe span.status { position: absolute; left:0; top:-20px; display: inline-block; height:20px; line-height: 20px; font-size: 12px; color:#ccc; }
.my-recipe span.date .cp31, .my-recipe span.status .cp31 { font-size: 12px; }
.my-recipe a { display: inline-block; position: relative; color:#000; }
.my-recipe p { margin: 0px; }
.my-recipe p.title { font-size: 16px; font-weight: bold; padding: 5px; }
.my-recipe p.date .cp31 { font-size: 12px; }
.my-recipe p.date { display: inline-block; font-size: 12px; color:#ccc; padding-left: 5px; }

.recipes [class*="col-"] p.author {
    line-height: normal;
    font-size: 12px;
    color: #898c8d;
    height: 20px;
    line-height: 20px;
}

.recipes [class*="col-"] p.author span {
    color: #990033;
    font-weight: bold;
}

.recipes .recipe-image {
    position: relative;
}

.recipes .recipe-image a {
    display: inline-block;
}

.recipes .recipe-image .recipe-play {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipes .recipe-image .recipe-play .cp31{
    display: inline-block;
    font-size: 40px;
    text-shadow: 0px 0px 10px #000;
    color:#fff;
}

.recipes .recipe-image .fav-del {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    width:25px;
    height:25px;
    justify-content: center;
    align-items: center;
    background-color: #990033;
    color:#fff;
    font-weight: 700;
    text-decoration: none;
}

.recipes .recipe-image .recipe-menu {
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
    right:0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipe-menu .box {
    display: inline-block;
    width: 80%;
    height: 104px;
    line-height: 50px;
    margin-left: -2px;
}

.recipe-menu .box div {
    width:50%;
    height:50px;
    float: left;
    color:#fff;
    padding-left: 2px;
    margin-bottom: 2px;
}

.recipe-menu .box a {
    display: inline-block;
    width: 100%;
    background-color: #006633;
    color:#fff;
    text-decoration: none;
    text-align: center;
}

.recipe-menu .box a .cp31 {
    font-size: 14px;
}

[class*=" imghvr-"], [class^=imghvr-] {
    background-color: #009946;
    width: 100%;
}

.imghvr-zoom-out-flip-horiz figcaption {
    background-color: #009946;
    text-align: center;
}

/*caidan-list*/
.caidans .row { margin-right:0px; margin-left: -5px; }
.caidans .caidan-recipe-item { margin-bottom: 5px; }
.caidans .caidan-recipe-item img { width:100%; }
.caidans [class*="col-"] { padding-right: 0px; padding-left: 5px; }

/*caidan-add*/
.recipe-container > div > div {
    margin-bottom: 5px;
    position: relative;
}

.recipe-container > div > div > span {
    position: absolute;
    right: -18px;
    top: 9px;
    cursor: pointer;
    color: #990033;
}

.gu-mirror > div {
    position: relative;
}

.gu-mirror > div > span {
    position: absolute;
    right: -18px;
    top: 9px;
    cursor: pointer;
    color: #990033;
}

/*recipe-add*/
.add-recipe .col-md-6, .add-recipe .col-md-5, .add-recipe .col-md-3 {
    padding: 0px;
}

.add-recipe .btn-default.active, .add-recipe .btn-default:active, .add-recipe .open > .dropdown-toggle.btn-default {
    background-color: #990033;
    color: #fff;
    border-color: #9a3e57;
}

.add-recipe .btn-danger {
    background-color: #990033;
    border-color: #9a3e57;
}

.ingredients-item, .step-item, .caidan-item {
    margin-bottom: 5px;
}

.ingredients-item .col-md-6 {
    padding: 0px;
}

.ingredients-item .col-md-5 {
    padding: 0px;
}

.ingredients-item .pl3 {
    padding-left: 3px;
}

.ingredients-item .pr5 {
    padding-right: 5px;
}

.ingredients-item .removeBtn {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: #990033;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: -25px;
}
.ingredients label { margin-top: 10px; }
.ingredients .cp31 { font-size: 14px; }
.steps .cp31 { font-size: 14px; }

.step-item .col-md-3,.step-item .col-md-9,.step-item .col-xs-5,.step-item .col-xs-7 {
    padding: 0px;
}

.step-item .pl3 {
    padding-left: 3px;
}

.step-item {
    position: relative;
}

.step-item .removeBtn, .caidan-item .removeBtn {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    color: #990033;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: -25px;
}

.step-item .step-upload {
    display: table-cell;
    vertical-align: middle;
    background-color: #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.step-item .box {
    display: inline-block;
}

.step-item .mask {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #eee;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-item .mask .loading-text {
    display: inline-block;
    z-index: 100;
}

.step-item .mask img {
    width: 100%;
    z-index: 999;
    position: absolute;
    left: 0px;
}

.step-item .mask .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 22px;
    height: 22px;
    line-height: 19px;
    z-index: 1000;
    background-color: #990033;
    color: #fff;
    opacity: 1;
    text-align: center;
    -moz-border-radius: 0px 5px 0px 0px;
    -webkit-border-radius: 0px 5px 0px 0px;
    border-radius: 0px 5px 0px 0px;
}

.cook-attr .select2-results__option {
    display: inline-block;
}

.cook-attr .row { padding-left: 10px; }
.cook-attr [class*="col-"] {
    padding-left: 5px;
}

.caipu-btns .cp31 { font-size: 14px; }

.caidan-item { position: relative; }
.caidan-item .mask {
    background-color: #e5e5e5;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}
.caidan-item .mask img {
    float: left;
}
.caidan-item .mask p {
    padding-left: 85px;
    padding-right: 5px;
    margin: 0px;
}
.caidan-item .mask p.title { line-height: 22px; }

/*upload*/
.cover-upload {
    position: relative;
}

#cover {
    border: 1px dashed #aaa;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#cover .box {
    display: inline-block;
}

#cover .cover-title {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #990033;
}

#cover .box .name {
    font-size: 12px;
    color: #666;
    line-height: 25px;
}

.cover-upload .mask {
    position: absolute;
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-upload .mask .loading-text {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 20px;
    line-height: 20px;
    margin-left: -100px;
    margin-top: -25px;
    z-index: 100;
}

.cover-upload .mask img {
    width: 100%;
    z-index: 999;
}

.cover-upload .mask .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 1000;
    background-color: #990033;
    color: #fff;
    opacity: 1;
    text-align: center;
    -moz-border-radius: 0px 5px 0px 0px;
    -webkit-border-radius: 0px 5px 0px 0px;
    border-radius: 0px 5px 0px 0px;
}

/*userface*/
.face-upload {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px;
}

#userface {
    width: 150px;
    height: 150px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

#userface .box {
    display: inline-block;
}

#userface .face-title {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #666;
}
#userface .face-title .cp31 { font-size: 14px; }

#userface .box .name {
    font-size: 12px;
    color: #666;
    line-height: 25px;
}

.face-upload .mask {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 0px;
    top: 0px;
    overflow: hidden;
    background-color: #eee;
}

.face-upload .mask .loading-text {
    display: inline-block;
    z-index: 100;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 20px;
    line-height: 20px;
    margin-left: -30px;
    margin-top: -10px;
}

.face-upload .mask img {
    width: 100%;
    z-index: 999;
    position: absolute;
}

.face-upload .mask .close {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1000;
    background-color: #990033;
    color: #fff;
    opacity: 1;
    text-align: center;
    display: flex;
    width:25px;
    height:25px;
    justify-content: center;
    align-items: center;
}

/*works*/
.works .row {
    margin-right: 0px;
}

.works .col-xs-3, .works .col-xs-4 {
    padding-right: 0px;
    margin-bottom: 15px;
    overflow: hidden;
}

.works .col-xs-3 {
    height: 206px;
}

.works .col-xs-4 {
}

.works .col-xs-3 img.recipe-photo {
    height: 156px;
}

.works .col-xs-4 img.recipe-photo {
    height: 190px;
}

.works [class*="col-"] p {
    line-height: 22px;
    margin: 0px;
    text-align: justify;
    text-align-last: justify;
    word-wrap: break-word;
    text-overflow: ellipsis;
}

/*setting*/
.setting .btn-default.active, .setting .btn-default:active, .setting .open > .dropdown-toggle.btn-default {
    background-color: #990033;
    color: #fff;
    border-color: #9a3e57;
}

.setting [class*="col-"], .security [class*="col-"] {
    padding: 0px;
}
.setting-nav.nav>li>a { padding: 5px 10px; }
.setting .sex .cp31 { font-size: 14px; }

.security {
    margin-bottom: 15px;
}

.security .box {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 3px dashed red;
    padding: 30px;
}

@media (max-width: 767px) {
    .navbar-nav {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .navbar-nav .open .dropdown-menu {
        left: 0;
        right: 0;
        padding: 0px;
        background-color: rgba(42, 81, 53, 0.9);
        border-radius: 0px;
        padding-bottom: 10px;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #fff;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
        color: #ccc;
    }
    .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .user-info{
        margin: 15px;
    }

    .side-meta-box {
        margin-top: 15px;
        margin-bottom: 0px;
    }

    #userface {
        width: 100px;
        height: 100px;
        line-height: 1020px;
    }
    .face-upload .mask {
        width: 100px;
        height: 100px;
    }
    .user-info h3 {
        font-size: 18px;
    }
    .recipe-menu .box {
        line-height: 40px;
        height: 84px;
    }
    .recipe-menu .box div{
        height: 40px;
    }

    .recipe-item {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .menu-wrapper {
        display: none;
    }
}