html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, "Microsoft YaHei", 微软雅黑, sans-serif;
    /* font-size: 1rem; */
    height: 100%;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

p {
    margin: 0;
}

img {
    line-height: 0;
    font-size: 0;
    margin: 0;
    padding: 0;
}

/* header */
header {
    background: #111;
    width: 100%;
    height: 90px;
    line-height: 90px;
}

.header_content {
    width: 1200px;
    margin: 0 auto;
    /* background: #555; */
    height: 100%;
}

.logo {
    display: inline-block;
    /* margin: 7px 0 0 0; */
}

.menu {
    float: right;
    /* margin: 15px; */
    list-style: none;
}

.menu li {
    display: inline-block;
    height: 26px;
}

.menu li a {
    font-size: 1.1rem;
    display: inline-block;
    height: 100%;
    color: #fff;
    margin: 0 28px 0 0;
    padding: 0 0 0 33px;
    line-height: 29px;
    letter-spacing: .5px;
}

.menu li a:hover {
    color: #d7c294;
}

.menu ul li:nth-of-type(1) a {
    background: url(../images/menu01.png) 0 0 no-repeat;
    background-size: auto 100%;
}

.menu ul li:nth-of-type(2) a {
    background: url(../images/menu02.png) 0 0 no-repeat;
}

.menu ul li:nth-of-type(3) a {
    background: url(../images/menu03.png) 0 0 no-repeat;
}

.menu ul li:nth-of-type(4) a {
    background: url(../images/menu04.png) 0 0 no-repeat;
}

.menu ul li:nth-of-type(5) a {
    background: url(../images/menu05.png) 0 0 no-repeat;
}

.menu ul li:nth-of-type(1) a:hover {
    background: url(../images/menu01_h.png) 0 0 no-repeat;
    background-size: auto 100%;
}

.menu ul li:nth-of-type(2) a:hover {
    background: url(../images/menu02_h.png) 0 0 no-repeat;
}

.menu ul li:nth-of-type(3) a:hover {
    background: url(../images/menu03_h.png) 0 0 no-repeat;
}

.menu ul li:nth-of-type(4) a:hover {
    background: url(../images/menu04_h.png) 0 0 no-repeat;
}

.menu ul li:nth-of-type(5) a:hover {
    background: url(../images/menu05_h.png) 0 0 no-repeat;
}
/* header end */

.main_content {
    width: 100%;
    min-height: calc(100% - 150px);
    display: block;
    background: url(../images/BG.png) 50% 50% no-repeat;
    background-size: cover;
    height:100%;
}

.title img {
    display: block;
    margin: 0 auto;
    padding: 50px 0 0 0;
}

.box_content {
    text-align: center;
    position: relative;
}

.box img {
    cursor: pointer;
    transition: .5s;
}

.box img:hover {
    transform: scale(1.06);
}

.showPrice_content {
    display: inline-block;
    position: relative;
    bottom: 50px;
}

.point_area {
    position: absolute;
    width: 100%;
    top: 10px;
    font-size: .9rem;
}
.showPrice{
    max-width: 595px;
}

.point {
    width: 40%;
    float: left;
    margin: 0 33px;
}

.point span {
    color: #e63333;
    font-size: 2.7rem;
    font-weight: bold;
}

.start_btn {
    position: absolute;
    bottom: 10px;
    left: calc(50% - 93px);
    cursor: pointer;
}

.price_bar {
    /* margin: -30px auto 0 auto; */
    margin: 30px auto 0 auto;
    height: 84px;
    width: 983px;
    max-width: 983px;
    background: url(../images/price_bar.png) 50% 50% no-repeat;
}

.price_bar_grid {
    height: 54px;
    width: 928px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 150px 150px 150px 150px 150px;
    grid-column-gap: 4px;
    padding: 17px 0 0 0;
}

.price_box {
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    padding: 5px 0 0 0;
}

.price_box:hover ,.price_box:focus{
    background: linear-gradient(#fff9f0, #ffce93);
}
.price_box:focus.price_box p {
    color: #522d09;
}
.price_box:focus.price_box b {
    color: #ec2107;
}

.active{
    background: linear-gradient(#fff9f0, #ffce93);
}
.active_p{
    color:black !important;
}
.active_b{
    color:red !important;
}

.price_box p {
    color: #fff;
}

.price_box b {
    color: #ffff00;
}

.price_box:hover.price_box p {
    color: #522d09;
}

.price_box:hover.price_box b {
    color: #ec2107;
}

.count {
    margin: 20px 0 0 0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.count img,
.count p {
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

.count b {
    color: #d23c3e;
}

footer {
    width: 100%;
    height: 60px;
    background: #111;
    font-size: .9rem;
    line-height: 60px;
    color: #fff;
    text-align: center;
}

/* 彈窗 */
#lightbox_lightboxbg {
    display: none;
    background: rgba(0, 0, 0, 0.65);
    position: fixed;
    top: 0px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    z-index: 1000;
}

.lightbox{
    display: none;
    position: fixed;
    z-index: 1001;
    width: 700px;
    height: auto;
    padding: 45px 0;
    background: linear-gradient(140deg, #fff 50%, #faf8ee 50%);
    text-align: center;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lightbox_close{
    width: 20px;
    height: 20px;
    background: url(../images/close.png) 50% 50% no-repeat;
    position: absolute;
    right: 23px;
    top: 23px;
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
}
.lightbox_title{
    color: #de2929;
    margin: 0 0 25px 0;
    font-size: 1.8rem;
    font-weight: bold;
}
.account{
    margin: 0 auto 25px auto;
    width: 70%;
    height: 53px;
}
.account input{
    width: 100%;
    height: 100%;
    text-align: center;
    color: #888;
    outline: none;
    font-size: 1.2rem;
    border-radius: 5px;
    border: 1px solid #eee;
}
.account input::placeholder{
    color: #aaa;
}
.search_account{
    width: 60%;
    height: 45px;
}
.search_account input{
    font-size: 1rem;
}
.account_btn{
    width: calc(70% + 2px);
    height: 55px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    background: linear-gradient(#dd2928, #c32b20);
    cursor: pointer;
}
.account_btn:hover{
    background: #dd2928;
}
.account_btn.btn02{
    width: 150px;
    height: 40px;
    font-weight: normal;
    font-size: 1.2rem;
}

#lightbox-2 table{
    font-size: .85rem;
    margin: 25px auto 0 auto;    
    background: #fff;
    text-align: center;
    width: 80%;
    border-collapse: collapse;
    color: #666;
}
#lightbox-2 tbody{
    border: 1px solid #de2929;
}
#lightbox-2 table td{
    padding: 7px 0;
    border: 1px solid #f9dcdc;
}
#lightbox-2 table tr:nth-of-type(1){
    color: #fff;
    background: #dd2928;
    font-size: 1rem;
}
.win_box{
    display: none;
    background: url(../images/win.png) 50% 50% no-repeat;
    width: 824px;
    height: 666px;
    position: fixed;
    z-index: 1001;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.win_box img{
    position: absolute;
    top: 0;
}

.win_box p{
    color: #473006;
    text-align: center;
    font-size: 2rem;
    margin: 260px 0 0 0;
    z-index: 1111111;
}
.win_box b{
    color: #e8092a;
}

.win_box_close{
    width: 31px;
    height: 31px;
    background: url(../images/close02.png) 50% 50% no-repeat;
    position: absolute;
    right: 130px;
    top: 160px;
}

@media screen and (max-width: 1200px){
    .header_content{
        width: 100%;
    }
    .main_content{
        min-height: calc(100% - 120px);
    }


    /* header{
        height: 60px;
    }
    .logo{
        width: 140px;
        display: block;
        margin: 0 auto;
    }
    .logo img{
        height: 55px;
    }
    .menu{
        display: none;
    } */

}

@media screen and (max-width: 1000px){
    .main_content{
        background:#fcfbf1 url(../images/BG_m.png) 50% 0% no-repeat;
        background-size: 100% auto;
    }
    .title img{
        width: 75%;
        max-width: 400px;
    }
    .box img{
        max-width: 503px;
        width: 80%;
    }
    .showPrice{
        width: 100%;
    }
    .start_btn{
        left: calc(50% - 60px);
    }
    .start_btn img{
        width: 120px;
    }
    .point_area{
        top: 0px;
    }
    .point{
        /* margin: 0 5vw; */
        transform: scale(.9);
    }
    .point span{
        font-size: 2.1rem;
    }
    .price_bar{
        width: 90vw;
    }
}

.layui-laypage .layui-laypage-curr .layui-laypage-em{
    background-color: #dd2928 !important;
}

.login-user {
    /* position: absolute;
    top:1030px;
    left:50%; */
    background-color: #FAE5B0;
    border:2px solid #8E2521;
    width: 500px;
    /* margin:0 0 0 -250px; */
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    border-radius:25px;
    margin:0 auto;
}
.login-user div {
    display: inline-block;
    color: #8E2521;
    margin: 0 10px;
}
.login-user div span {
    color:#f00;
    font-weight: bold;
}
.login-user div:last-child {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

[v-cloak]{
    display:none;
}

@media screen and (max-width:919px){
    .menu li a{
        font-size: 0.7rem;
        margin:0;
    }
}


