html,body{
	min-height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}
html{
	background: url('../images/html.jpg') no-repeat center top;
	background-size: cover;
}
body{

	padding-top: 114px;
}
a{
	text-decoration: none;
}
img{
	max-width: 100%;
}
.container{
	max-width: 90%;
	margin: 0 auto;
	padding:  80px 0;
}
.line-bg{
	background: url('../images/line.jpg') no-repeat center top;
	background-size: cover;
	height: 5px;
}
.header{
	height: 114px;
	padding-left: 20px;
	padding-right: 20px;
	background: url('../images/head.png') no-repeat center top;
	background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: calc(100% - 40px);
    z-index: 2;
    top: 0;
}
.main{
	background: url('../images/body.jpg') no-repeat center top;
	background-size: cover;
	min-height: calc(100vh - 200px);
}
.pc-show{
	display: block;
}
.mobile-show{
	display: none;
}
.d-none{
	display: none !important;
}
.nav{
	height: 86px
}
.nav,
.nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-wrap, .select-wrap{
	margin: -20px 0 0 0;
}
.select-wrap select{
    font-size: 18px;
    border: 0;
    background: none;
}
.nav ul{
	list-style: none;
	margin: -20px 0 0 0;
	padding: 0;
}
.nav ul a{
	display: block;
	padding: 10px 20px;
	background-image: linear-gradient( #e2e2e2 0%,  #e2e2e2 100%);
	border: 2px #efefef solid;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	border-radius: 50px;
	color: #8e8e8e;
	margin: 0 5px;
	min-width: 70px;
	text-align: center;
}
.nav ul a.active, .nav ul a:hover{
	color: #000;
	border: 2px #ffe9ce solid;
	background-image: linear-gradient(90deg, #fbedd1 0%,  #cbbb9b 100%);
}

.nav ul a.login-btn,
.nav ul a.logout-btn{
	display: none
}
a.login-btn, a.logout-btn {
    display: inline-block;
    background: #6f4aef;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
}
.login-mask{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.8);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(-100%)
}
.login-mask.open{
	transform: translateX(0%)
}
.login-mask form:before {
    z-index: 10;
    content: " ";
    display: inline-block;
    position: absolute;
    width: 20.6vw;
    height: 26vw;
    left: -14vw;
    background: url(../images/casino_01.png) no-repeat;
    background-size: cover;
}
.bg-primary {
    background-color: #c89a61!important;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #c89a61;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    color: #fff;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    font-size: 24px;
    line-height: 56px;
}
.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    background: #fff;
}
.login-footer-wrap{
    flex-wrap: wrap;
}
.else-btn{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
.modal-dialog {
    max-width: 500px;
    margin: 10rem auto;
}

.login-mask form {
    position: relative;
    width: 90%;
    max-width: 400px;
}

.login-mask h5#exampleModalLabel {
    margin: 0;
}

.login-mask .modal-body {
    background: #fff;
}

.login-mask .btn-primary {
    border: 0;
    background: #c89a61;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    width: 70px;
    text-align: center;
    display: block;
    height: 44px;
    line-height: 44px;
    border-radius: 9px;
    cursor: pointer;
    transition: .5s;
}

.login-mask .btn-primary+.btn-primary {
    margin-left: 10px;
}

.login-mask .btn-primary:hover {
    background: #946831;
    color: #fff;
}

.login-mask .form-group.row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    width: 80%;
    margin: 0 auto 12px;
}

.login-mask .col-md-4 {
    width: 60px;
}

.login-mask .col-md-6 {
    width: calc(100% - 60px);
}

.login-mask .col-md-6 input {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: 1px solid #ced4da;
}

a.finshed-btn {background: #ccc;color: #efefef;cursor: default;}

a.go-btn:hover {
    background: #3814b7;
}
a.go-btn, a.finshed-btn {
    display: inline-block;
    background: #6f4aef;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
}

a.finshed-btn {background: #ccc;color: #efefef;cursor: default;}

a.go-btn:hover {
    background: #3814b7;
}

.item-times {
    font-family: Oswald;
    font-size: 39px;
}

.item-times-bar {
    background: #333;
    width: 100px;
    height: 7px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.item-times-bar span {position: absolute;width: 0%;background: linear-gradient(90deg, #e720e7 0%,  #6b46ee 100%);height: 7px;border-radius: 50px;}

.item-main label {
    display: none;
}

.item-main {
    background: rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.item-headr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.p-index .container .item-wrap{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.p-index .container .item{
	width: 23%;
	padding: 1%;
}
.p-index .item-title {
    color: #6f49ef;
    font-weight: bold;
    font-size: 20px;
}
.p-index .marquee{
    border-bottom: 1px #fff dashed;
    padding: 10px;
    color: #6f49ef;
}
.show{
	height: 300px;
	overflow: hidden
}
.mCSB_scrollTools .mCSB_draggerRail{
	display: none !important;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background: #b4aeca !important;
}
img.swal2-image {
    margin-top: -100px;
    max-width: 80%;
}
.main-left{
	width: 36%;
	padding: 0 4%;
}
.main-right{
	width: 48%;
	padding: 0 4%;
}

.p-lotte, .p-member, .p-sign{
	display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.p-sign .main-left{
	width: 50%;
}
.p-sign .main-right{
	width: 34%;
}
.p-member{
	align-items: flex-start;
}
.times-wrap {
	font-size: 39px;
    margin-top: -40px;
}
.times-wrap strong{
    font-family: Oswald;
    font-size: 200%;
    font-style: italic;
}
.two-flex{
	display: flex;
	flex-wrap: wrap;
}
.two-flex .left, .two-flex .right{
	width: 50%;
}
.box-wrap {
    background: #fff;
    border-radius: 20px;
    margin: 10px;
    box-shadow: 0 8px 20px rgb(174,169,193);
    margin-bottom: 40px;
    height: 300px;
    padding: 20px;
    overflow: hidden;
}
.back-wrap{
    position: fixed;
    right: 10px;
    z-index: 2;
    bottom: 10vh;
}
.back-web{
    text-decoration: none;
    background: linear-gradient(0deg, rgb(173 123 4) 0%, rgb(248 206 124) 100%);
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    box-shadow: 0 20px 20px rgb(0 0 0 / 50%);
    z-index: 10;
    color: #fff;
    border: 2px #fff solid;
    font-weight: bold;
    font-family: 微軟正黑體;
    font-size: 18px;
    text-shadow: 0 -1px 1px #84611c;
    margin-bottom: 10px;
}
.table-ul{
    list-style: none;
    padding: 0;
}
.table-ul li{
    margin-bottom: 10px;
    padding:10px;
}
.table-ul li span{
    display: inline-block;
    margin-bottom: 2px;
}
.table-ul li span + span{
    width: 100%;
}
.table-ul li:nth-child(odd){
	background: rgba(226,216,250,.5);
}
span.li-rank {background: #a73ced;padding: 0 6px;border-radius: 5px;color: #fff; min-width: 60px; text-align: center;}
.header:after {
    content: '';background: url('../images/logo.png');  left: 0; right: 0; margin: auto; position: fixed;
    background-size: 100%;
    height: 80px;
    width: 250px;
    top: 13px;
    background-repeat: no-repeat;
}

.main-wrap{
	width: 92%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1090px;
}
.main-wrap .title{

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-wrap .title img{

    min-width: 600px;
    margin: 0 auto;
    position: relative;
}
@media screen  and (max-width: 1024px){

    .header:after { width: 158px; top: 11px;}
	.p-index .container .item{
		width: 48%;
		padding:1% 1% 40px;
	}
	.p-index .container .item{
		width: 98%;
	}
	.pc-show{
		display: none;
	}
	.mobile-show{
		display: block;
	}
	.container{
		padding-top: 20px;
	}
	body{
		padding-top: 80px;
	}

	.header{
		height: 80px;
	}
	.nav ul {
	    position: fixed;
	    display: block;
	    height: 100vh;
	    width: 100%;
	    background: rgba(0,0,0,.5);
	    top: 0;
	    left: 0;
	    margin-top: 0;
	    overflow: auto;
	    transform: translateX(-100%);
	    transition: .5s;
	    z-index: 5;
	}
	.nav ul.active{
	    transform: translateX(0%);
	}
	.nav ul:after {
		content: '';
		background: url(../images/body.jpg) no-repeat center top;
		width: 90%;height: 100%;position: fixed;z-index: -1;left: 0; top: 0;
	}
	.nav li {
	    display: block;
	    width: 73%;
	    margin: 8%;
	}

	.nav ul a.login-btn,
	.nav ul a.logout-btn{
		display: block
	}
	.nav .mobile-show label{
		display: block;
		text-align: center;
		color: #fff;
		margin-top: -20px;
	}
	.nav .mobile-show select{
		border: 0;
		background: none;
		font-size: 18px;
		color: #fff;
	}
	.main{
		min-height: calc(100vh - 166px);
	}
	.nva-toggle-btn{
		position: fixed;
		top: 14px;
		left: 10px;
		width: 30px;
		height: 30px;
		border: 1px #aaa solid;
	    display: flex;
	    align-items: center;
	    justify-content: center;
        background: linear-gradient(0deg, rgb(173 123 4) 0%, rgb(248 206 124) 100%);
        border: 2px #fff solid;
        border-radius: 5px;
	}
	.nva-toggle-btn span{
		width: 60%;
	    height: 2px;
	    background: #fff;
	    display: block;
	}
	.user-wrap .login,
	.user-wrap .logiout,
	.select-wrap{
		display: none;
	}
	.nva-toggle-btn span:after ,.nva-toggle-btn span:before {content: '';display: block;width: 100%;height: 2px;background: #fff;}
	.nva-toggle-btn span:after {transform: translateY(5px);}
	.nva-toggle-btn span:before {transform: translateY(-7px);}
	.login-mask form:before {
		content: none;
	}
	#modal-login-code{
		width: 100% !important;
	}
	.item-main{
		overflow: hidden
	}
	input:checked ~ .show {
	    display: block;
	}

	.show {
	    display: none;
	}

	.item-main label {
	    display: block;
	    text-align: center;
	    border-bottom: 1px #fff dashed;
	    padding-bottom: 10px;
	    position: relative;
	}

	.item-main label:before, .item-main label:after {content: '';position: absolute;width: 10px;height: 10px;background: #fff;border-radius: 50px;bottom: -5px;}

	.item-main label:before {
	    left: -15px;
	}

	.item-main label:after {
	    right: -15px;
	}
	.p-lotte{
		display: block;
	}
	.main-left{
		padding-top: 40px;
		margin-bottom: 40px;
		width: 92%;
	}
	.main-right{
		width: 92%;
	}
	.two-flex .left, .two-flex .right{
		width: 100%;
	}
	.p-sign .main-left{
		width: 92%;
	}
	.p-sign .main-right{
		width: 92%;
	}
    a.go-btn, a.finshed-btn {
        padding: 2px 13px;
        font-size: 14px;

    }
    body.no-nav{
        padding-top: 65px;
    }
    body.no-nav .nav{
        /* display: none; */
        height: 0;
        overflow: hidden
    }

    .back-wrap {
        top: 16px;
        bottom: auto;
    }
    .back-web{
        border-radius: 10px;
        height: 30px;
        line-height: 30px;
        box-shadow: none;
    }
}

@media screen  and (max-width: 414px){

    .header:after {left: 52px; right: auto; margin: 0}
}



/******************************* 排行榜 *******************************/

.p-lotte .lotte {
	position: relative;

    text-align: center;
    max-width: 500px;
    margin: 20px auto;
}
.p-lotte .start {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: url(../images/lotte/btn.png) no-repeat center center;
    background-size: 80%;
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0; margin: auto;
}

.p-lotte .no-rote{
	animation-name: rote;
	animation-duration:2s;
	animation-iteration-count:infinite;
}
.p-lotte .marquee{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(115 66 236 / 20%);
    padding: 10px;
    border-radius: 20px;
}
.p-lotte .marquee span{
	display:inline-block; margin-right:10px
}

.p-lotte .table {
    width: 100%;
    margin-bottom: 40px;
}
.p-lotte .table thead tr{
	background: #ddd3ff;
}
.p-lotte .table tr:nth-child(even){
	background: rgba(226,216,250,.5);
}
.p-lotte .table th, .p-lotte .table td {
    padding: 5px;
    font-size: 18px;
    text-align: center;
}

@keyframes rote {
  0%, 100%{
  	background-size: 80%
  }
  50%{
  	background-size: 75%;
  }
}




#btn-example8{
	background: none; border: 0; margin-top: -40px;
}

.no-scale{
	cursor: pointer;
    animation-name: scaleBtn;
    animation-duration:2s;
    animation-iteration-count:infinite;
}
@keyframes scaleBtn {
	0%, 100%{
	    transform: scale(1)
	}
	20%{
	    transform: scale(0.9)
	}
	30%{
	    transform: scale(1.1)
	}
	40%{
	    transform: scale(0.8)
	}
	50%{
	    transform: scale(1)
	}
	60%{
	    transform: scale(0.9)
	}
	70%{
	    transform: scale(1)
	}
}



.p-member .table {
    width: 100%;
    margin-bottom: 40px;
}
.p-member .table thead tr{
	background: #ddd3ff;
}
.p-member .table tr:nth-child(even){
	background: rgba(226,216,250,.5);
}
.p-member .table th, .p-member .table td {
    padding: 5px;
    font-size: 18px;
    text-align: center;
}
.p-member input.form-control {
    display: inline-block;
    border: 1px #ccc solid;
    line-height: 29px;
    border-radius: 5px 0 0 5px;
    width: calc(100% - 80px)
}

.p-member input.form-control+button {
    display: inline-block;
    border: 1px #7856f0 solid;
    border-radius: 0 5px 5px 0;
    line-height: 29px;
    background: #6a44ef;
    color: #fff;
}
.p-member .main-left{
	width: 44%;
	padding-right: 2%;
}
.p-member .main-right{
	width: 44%;
	padding-left: 2%;
}

button.btn.btn-primary {
    display: inline-block;
    background: #6f4aef;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    border: 0;
    width: 200px;
    font-size: 18px;
    letter-spacing: 10px;
    padding-left: 20px;
    transition: .5s;
    cursor: pointer;
}

button.btn.btn-primary:hover {
    background: #3413a7;
}
li.mobile-show.user {
    display: none;
}
li.pc-show.lv-img {
    position: absolute;
    left: 0;
    display: block;
}
@media screen  and (max-width: 1024px){
.p-member .main-left{
	width: 92%;
}
.p-member .main-right{
	width: 92%;
}
li.pc-show.lv-img {
    display: none
}

li.mobile-show.user{
    display: flex;
    align-items: flex-end;
}
li.user:before {
    content: '';
    width: 76px;
    background-repeat: no-repeat;
    left: 6px;
    background-size: cover;
    height: 80px;
    display: block;
    margin-bottom: -20px;
}
li.user.lv0:before{
    background-image: url(../images/event/0.png);
}
li.user.lv1:before{
    background-image: url(../images/event/1.png);
}
li.user.lv2:before{
    background-image: url(../images/event/2.png);
}
li.user.lv3:before{
    background-image: url(../images/event/3.png);
}
li.user.lv4:before{
    background-image: url(../images/event/4.png);
}
li.user.lv5:before{
    background-image: url(../images/event/5.png);
}
li.user.lv6:before{
    background-image: url(../images/event/6.png);
}
}



.p-sign{
	text-align: center;
}
ul.sign-list {
    list-style: none;
    display: flex;
    width: 90%;
    margin: 0 auto;
    max-width: 590px;
    flex-wrap: wrap;
    padding-left: 0;
}

ul.sign-list li {
    display: block;
    width: 12%;
    padding: 1%;
}

ul.sign-list li a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
ul.sign-list li a span {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #ccc dashed;
    border-radius: 50%;
    font-family: Oswald;
    color: #ccc;
    font-size: 27px;
    cursor: pointer;
}
a.sign-btn.sign span:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/sign/sign.png) no-repeat center;
    background-size: 100%;
    position: absolute;
}
a.sign-btn.no-sign span:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/sign/no-sign.png) no-repeat center;
    background-size: 100%;
    position: absolute;
}


.box-wrap.register-wrap:before {
    z-index: 10;
    content: " ";
    display: inline-block;
    position: absolute;
    width: 246px;
    height: 300px;
    left: -80px;
    background: url(../images/casino_01.png) no-repeat;
    background-size: cover;
}


.register-wrap .form-group.row {
    margin-bottom: 13px;
    font-size: 16px;
}

.register-wrap .form-group.row input {
    font-size: 16px;
    margin: 5px 0;
    padding: 8px;
    width: 100%;
    border-radius: 5px;
}

.register-wrap {
    padding-left: 140px;
    position: relative;
    overflow: inherit;
}


@media screen  and (max-width: 767px){

.box-wrap.register-wrap:before {
	content: none;
}
.register-wrap {
    padding-left: 0;
}



.p-member .member-table thead {display: none;}


.p-member .member-table tr {
    display: flex;
    flex-wrap: wrap;
    border: 1px #d1c9e6 solid;
    border-radius: 10px;
    margin-bottom: 10px;
}


.p-member .member-table tr td {
    width: 100%;
    text-align: left;
    font-size: 16px;
}


.p-member .member-table tr td:before {
    content: attr(data-title);
}

.p-member .member-table  input.form-control {
    display: inline-block;
    border: 1px #ccc solid;
    line-height: 29px;
    border-radius: 5px 0 0 5px;
    width: calc(100% - 54px);
}
}



.event-show{

    display: block;
    border: 1px #ccc solid;
    width: 120px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}
.event-show-coin {

    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald';
    padding: 5px 0;

}

.event-item {
    display: block;
    position: relative;
    padding-left: 50px;
    background: linear-gradient(180deg, #7a7a7a, #999);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,.4);
    overflow: hidden;
    width: 41%;
    margin: 1%;
}
.event-item.active{
    background: linear-gradient(180deg, rgb(223 1 227), rgb(110 70 237));
}

.event-info {
    background: #fff;
    padding: 10px 20px;
}

.event-item:before {
    /* content: attr(data-lv); */
    content: '';
    width: 64px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 6px;
    /* text-align: center;
    width: 58px;
    font-family: Oswald;
    font-size: 20px;
    font-weight: bold; */
    /* line-height: 58px; */
    /* background: url(../images/event/lv.png) no-repeat; */
    /* background-size: cover; */
    height: 80px;
    top: 7px;
}
.event-item.lv0:before {
    background-image: url('../images/event/0.png');
}
.event-item.lv1:before {
    background-image: url('../images/event/1.png');
}
.event-item.lv2:before {
    background-image: url('../images/event/2.png');
}

.event-item.lv3:before {
    background-image: url('../images/event/3.png');
}
.event-item.lv4:before {
    background-image: url('../images/event/4.png');
}
.event-item.lv5:before {
    background-image: url('../images/event/5.png');
}
.event-item.lv6:before {
    background-image: url('../images/event/6.png');
}

.event-item.lv6 {
    background: linear-gradient(180deg, #40337d, #aa70ff);
}

.event-item.lv5 {
    background: linear-gradient(180deg, #a2deff, #aa70ff);
}

.event-item.lv4 {
    background: linear-gradient(180deg, #d6f1fb, #b9e7f7);
}

.event-item.lv3 {
    background: linear-gradient(180deg, #f8e8d2, #e7b771);
}

.event-item.lv2 {
    background: linear-gradient(180deg, #e19832, #edc288);
}

.event-item.lv1 {
    background: linear-gradient(180deg, #bfc7d4, #e2edff);
}

.event-item.lv0 {
    background: linear-gradient(180deg, #f2f7ff, #cdcdcd);
}
.event-info .title {
    text-align: left;
    justify-content: space-between;
    display: flex;
    font-size: 16px;
}

.time-wrap {
    display: flex;
    color: #ccc;
    width: 120px;
}

.event-info .title h2 {margin: 0;font-size: 18px;width: calc(100% - 140px);border-bottom: 1px #ccc solid;padding: 11px 0;}

.info-wrap {
    display: flex;
    justify-content: space-between;
}

.time {
    margin-left: 4px;
    color: #333;
}

.event-show img {
    width: 36px;
    margin-right: 10px;
}
.no-lv a.btn{
	font-size: 14px;
}
a.btn {
    display: block;
    background: linear-gradient(90deg, rgb(255,255,255), rgb(255,255,255));
    color: #ccc;
    border-top: 1px #ccc solid;
    line-height: 23px;
    height: 23px;
    cursor: default;
}

.active a.btn {
    background: linear-gradient(90deg, rgb(223 1 227), rgb(110 70 237));
    color: #fff;
    border-top: 1px #fff solid;
    cursor: pointer;
}

.money-wrap {
    width: calc(100% - 140px);
}

.money-item {
    border-bottom: 1px #ccc solid;
    padding: 6px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



@media screen  and (max-width: 1020px){
	.event-item {
	    width: 91%;
	}
}
@media screen  and (max-width: 560px){
	.event-show {
	    width: 100%;
	    margin-top: 10px;
	}

	.info-wrap {
	    flex-wrap: wrap;
	}

	.event-info .title h2 {
	    width: 100%;
	}

	.title {}

	.time-wrap {
	    width: 100%;
	    font-size: 0;
	}

	.event-info .title {
	    flex-wrap: wrap;
	}
	.money-wrap{
		width: 100%;
	}

	.time-wrap .time {
	    font-size: 16px;
	    border-bottom: 1px #ccc solid;
	    margin-left: 0;
	    display: block;
	    width: 100%;
	    padding: 6px 0;
	}
}

.event-item.hot {
    background: linear-gradient(
180deg, #e19832, #edc288);
    border: 2px #ff8484 solid;
    box-shadow: 0 0 20px rgb(255 160 160);
    overflow: unset;
}

.event-item.hot:after {
	content: '';
	display: block;
	position: absolute;
	width: 17%;
	height: 0;
	z-index: 2;
	left: -4%;
	bottom: 20px;
	padding-bottom: 8.1%;
	background-image: url(../images/event/hot.png);
    background-size: contain;
}

