/* common */

/* header */
.restaurant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    height: 66px;
    margin: 0 auto;
}

.restaurant-header-left {
    display: flex;
    align-items: center;
}

.restaurant-header-logo {
    display: inline-block;
    width: 69px;
    height: 49px;
    margin-right: 14px;
}

.restaurant-header-item {
    display: flex;
}

.restaurant-header-item a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    margin-left: 32px;
}

.restaurant-header-item a.active {
    color: #ff6800;
}

.restaurant-header-item a:hover {
    color: #ff6800;
}

.restaurant-header-language {
    position: relative;
    font-size: 16px;
    color: #000000;
    height: 42px;
    line-height: 42px;
}

.restaurant-header-language i {
    display: inline-block;
    width: 17px;
    height: 11px;
    padding-left: 12px;
    background: url(../images/common/icon-down.png) right center no-repeat;
    background-size: 17px 11px;
    vertical-align: middle;
}

.restaurant-header-language:hover>.language-list {
    display: block;
}

.language-list {
    position: absolute;
    left: 0;
    top: 42;
    width: 100px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    z-index: 2;
    display: none;
}

.language-list li {
    list-style: none;
    text-align: center;
}

.language-list li a {
    display: block;
    line-height: 42px;
    font-size: 16px;
    color: #000000;
    text-align: center;
    text-decoration: none;
}

/* menu-top */
.restaurant-menu-box {
    position: relative;
}

.restaurant-menu-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.2);
}

.restaurant-menu-main.bg-gray {
    background-color: rgba(0, 0, 0, 0.5);
}

.restaurant-menu {
    width: 1200px;
    height: 38px;
    margin: 0 auto;

}

.restaurant-menu a {
    position: relative;
    display: inline-block;
    line-height: 38px;
    margin-right: 54px;
    font-size: 14px;
    color: #ffffff;
}

/* .restaurant-menu a.active {
    border-bottom: 3px solid #ff6800;

} */
.restaurant-menu a.active::after {
    position: absolute;
    left: 0;
    top: 35px;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #ff6800;
}

/* banner */
.restaurant-banner {
    display: block;
    width: 100%;
    max-height: 100%;
}

.restaurant-banner img {
    display: block;
    max-width: 100%;
    /*max-height: 576px;*/
}


.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    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;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    border: 2px solid #fff6f9;
    background: transparent !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 32px !important;
}

.swiper-pagination-bullet-active {
    background: #ff6a0b !important;
    border: 0 !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 32px !important;
    background-image: url(../images/prev.png) !important;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 32px !important;
    background-image: url(../images/next.png) !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 49px !important;
    height: 104px !important;
    background-size: 49px 104px !important;
    opacity: 0.4;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    opacity: 0.9;
}

/* bottom */
.restaurant-bottom {
    background-color: #f1f1f1;
}

.restaurant-bottom-list {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 40px 0 74px 0;
}

.restaurant-bottom-item {
    flex: none;
    margin-left: 90px;
    width: calc((100% - 360px)/5);
}

.restaurant-bottom-item:first-child {
    margin-left: 0;
}

.restaurant-bottom-item h2 {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    line-height: 36px;
}

.restaurant-bottom-item a {
    display: block;
    font-size: 14px;
    color: #282828;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
}

.restaurant-bottom-item p {
    font-size: 14px;
    color: #282828;
    line-height: 24px;
}

.restaurant-bottom-item p.phone {
    font-weight: bold;
    line-height: 32px;
}

.restaurant-bottom-copyright {
    height: 98px;
    background-color: #464646;
}

.restaurant-bottom-copyright p {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    line-height: 98px;
}