/* 
    Author: Vijay Thapa;
    Theme: Restaurant Food Order;
    version: 1.0;
    0.875
*/

/* CSS for All */
* {
    margin: 0 0;
    padding: 0 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 16px;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 1%;
}

.img-responsive {
    width: 100%;
}

.img-curve {
    border-radius: 15px;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.clearfix {
    clear: both;
    float: none;
}

a {
    /* color: rgb(254,216,39); */
    color: black;
    text-decoration: none;
}

a:hover {
    color: rgb(29, 60, 176);
}

.btn {
    padding: 1%;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-primary {
    background-color: rgb(29, 60, 176);
    color: white;
    cursor: pointer;
}

.btn-primary:hover {
    color: white;
    background-color: #ff4757;
}

h2 {
    color: #2f3542;
    font-size: 2rem;
    margin-bottom: 2%;
}

h3 {
    font-size: 1.5rem;
}

.float-container {
    position: relative;
}

.float-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blue-font-color {
    color: #225ae1
}

.grey-font-color {
    color: #999999
}
.black-font-color{
    color:black
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.padding24{
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 0px;
}

/* CSSS for navbar section */

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.navbar-container-left {
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    
}

.menu {
    width: 33%;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 1.2rem;
}

.menu-item{
    margin-right: 20px;
}

.flexcenter{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.flexstart{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* CSS for Categories */
.box-3 {
    width: 28%;
    background: white;
    height: 490px;
    border-radius: 4px;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
}

.center-production{
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.biaozhun{
    background-image: url(../images/center-box-first.png);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}
.feibiaozhun{
    background-image: url(../images/center-box-second.png);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}
.dingzuo{
    background-image: url(../images/center-box-third.png);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

.liaojiexiangqing{
    font-weight: 500;
    color: #3C9CFF;
    line-height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom:24px;
    font-size: 24px;

}

.category-guige{
    background-color: #F8F8F8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.guige-circle{
    width: 12px;
    height: 12px;
    background: #3C9CFF;
    border-radius: 50%;
    margin-right:8px
}

.guige-font-size{
    font-size:22px;
    color: rgb(124,124,126);
}

.guige-jieshao{
    color: rgb(188,188,192);
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top:1rem
}

.category-guige-border{
    border: 1px solid #D8D8D8;
    padding:1rem
}

.category-guige-item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}



/* CSS for Food Menu */
.product-menu {
    background-color: #ececec;
    padding: 2% 0;
}

.product-box{
    display: flex;
}

.product-menu-box {
    width: 100%;
    margin: 1%;
    padding: 2%;
    background-color: white;
    border-radius: 15px;
    display: flex;
}

.product-menu-img {
    width: 25%;
}

.product-menu-desc {
    width: 70%;
    float: left;
    margin-left: 5%;
}

.product-price {
    font-size: 1.2rem;
    margin: 2% 0;
}

.product-detail {
    font-size: 1rem;
    color: #747d8c;
}


/* CSS for Social */
.social ul {
    list-style-type: none;
}

.social ul li {
    display: inline;
    padding: 1%;
}

/* for Order Section */
.order {
    width: 50%;
    margin: 0 auto;
}

.input-responsive {
    width: 96%;
    padding: 1%;
    margin-bottom: 3%;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.order-label {
    margin-bottom: 1%;
    font-weight: bold;
}



/* CSS for Mobile Size or Smaller Screen */

@media only screen and (max-width:768px) {
    .logo {
        width: 80%;
        float: none;
        margin: 1% auto;
    }

    .menu ul {
        text-align: center;
    }

    .food-search input[type="search"] {
        width: 90%;
        padding: 2%;
        margin-bottom: 3%;
    }

    .btn {
        width: 91%;
        padding: 2%;
    }

    .food-search {
        padding: 10% 0;
    }

    .categories {
        padding: 20% 0;
    }

    h2 {
        margin-bottom: 10%;
    }

    .box-3 {
        width: 100%;
        margin: 4% auto;
    }

    .food-menu {
        padding: 20% 0;
    }

    .food-menu-box {
        width: 90%;
        padding: 5%;
        margin-bottom: 5%;
    }

    .social {
        padding: 5% 0;
    }

    .order {
        width: 100%;
    }
}

/* 新的css */
.ftsize20 {
    font-size: 2rem;
}

.ftsize80 {
    font-size: 8rem;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.lined-text {
    position: relative;
    display: inline-block;
    /* Ensure it's inline but still can contain pseudo-elements */
    padding-left: 30px;
    /* Space for the line */
    color: #225ae1
}

.lined-text::before {
    content: "";
    /* This is necessary for the pseudo-element to be generated */
    position: absolute;
    left: 0;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    /* Adjust for true centering */
    width: 25px;
    /* Length of the line */
    height: 1px;
    /* Thickness of the line */
    background-color: #225ae1;
    /* Color of the line */
}

.foot-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/bg_2.jpg);
}

.ftco-footer {
    font-size: 16px;
    padding: 2em 0 0 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 0;
}

.ftco-footer:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #0C225C;
    opacity: .9;
    z-index: -1;
}

.footer-text {
    display: flex;
    justify-content: space-between;
    color: #2f3542;
}
.flex-grow-4{
    flex-grow: 4 
}

.flex-grow-3{
    flex-grow: 3
}

.flex-grow-2{
    flex-grow: 2;
}
.title{
    color:black;
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.arrow-right {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
}

.arrow-right::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;     /* 调整上边框的大小以改变箭头的大小 */
    border-bottom: 10px solid transparent;  /* 调整下边框的大小以改变箭头的大小 */
    border-left: 15px solid #06c;           /* 调整左边框的颜色和大小以更改箭头的颜色和大小 #06c */
}

.index-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/center_bg.png);
}

.product-background {
    position: relative;
    z-index: 0;
    background-color: #F4F4F4;
    padding-bottom:20px
}

.product-background:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    content: '';
    z-index: -1;
    background-image: url(../images/center_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.center-text-title{
    font-size: 4rem;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
}

.center-text-little-title{
    font-size: 2rem;
    font-weight: 100;
    color: #FFFFFF;
}


