.page-top{
	background: #0009af;
	padding: 2% 0;
}
.page-top .center{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.page-top .logo{
	width: 45%;
}
.page-top .logo img{
	display: block;
	width: 100%;
}
.page-top .button{
	display: flex;
	align-items: center;
}
.page-top .button .lang{
	display: block;
	cursor: pointer;
	background: #fff;
	color: #0009af;
	text-align: center;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	font-size: 20px;
	font-weight: bold;
}
.page-top .button .home{
	margin-left: 10px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	position: relative;
}
.page-top .button .home:nth-child(2){
	background: #fff;
	border-radius: 50%;
}
.page-top .button .home:nth-child(2):after{
	content: "";
	position: absolute;
	top: 15%;
	left: 15%;
	width: 70%;
	height: 70%;
	background: #0009af;
	z-index: 2;
	border-radius: 50%;
}
.page-top .button .home i{
	font-size: 44px;
	color: #fff;
	position: relative;
	z-index: 3;
}
.page-top .button .home:nth-child(3){
	background: #fff;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	line-height: 42px;
	text-align: center;
}
.page-top .button .home:nth-child(3) i{
	font-size: 28px;
	font-weight: bold;
}

.page-info{
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1100px;
}
.page-title{
	text-align: center;
	font-size: 30px;
	padding: 25px 0 40px;
}
.page-title p{
	font-size: 18px;
}
.ticket-tips{
	color: #0009af;
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0 20px;
}
.ticket-list{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}
.ticket-list .ticket-item{
	float: left;
	width: 47.5%;
	background: #f8f8f8;
	color: #000;
	padding: 3% 5% 3% 2%;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer; 
	margin-bottom: 20px;
	border: 2px solid #f8f8f8;
}
.ticket-list .ticket-item:hover{
	background: #f3f3f3;
	border: 2px solid #f3f3f3;
}
.ticket-list .ticket-item.active{
	color: #0009af;
	background: rgba(0,9,175,0.07);
	border: 2px solid #0009af;
}
.ticket-item .ticket-info{
	width: 80%;
	font-size: 18px;
	font-weight: bold;
}
.ticket-item .ticket-info p{
	padding-top: 5%;
	font-size: 16px;
	font-weight: 400;
}
.ticket-item .ticket-price{
	font-size: 24px;
	font-weight: bold;
}
.ticket-list .ticket-item:nth-child(even){
	margin-left: 5%;
}
.ticket-notice{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.7;
}
.Unfinished-model{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 9;
	display: none;
}
.model-box{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 350px;
	width: 100%;
	transform: translate(-50%,-50%);
	background: #fff;
	padding: 30px 20px;
	border-radius: 6px;
	box-shadow: 2px 2px 6px 0 rgba(0,0,0,0.2);
}
.model-box p{
	font-size: 16px;
	text-align: center;
}
.model-btn{
	padding-top: 40px;
	text-align: right;
}
.model-btn span{
	padding: 8px 20px;
	background: #efefef;
	border-radius: 4px;
	margin: 0 5px;
	cursor: pointer;
}
.model-btn span:nth-child(2){
	color: #fff;
	background: #0009af;
}


/* 个人中心 */
.person-info{
	width: 100%;
	max-width: 1200px;
}
.person-info li{
	margin-bottom: 20px;
	background: #f8f8f8;
	border-radius: 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 30px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.person-info li:hover{
	transform: translateY(-4px);
	box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.2);
}
.person-info li p{
	display: flex;
	align-items: center;
}
.person-info li p i{
	font-size: 26px;
	margin-right: 10px;
}
.add-papers{
	margin-bottom: 120px;
}
.add-papers div div{
	width: 240px;
	height: 45px;
	line-height: 43px;
	padding: 0 10px;
	text-align: center;
	font-size: 16px;
	background: #0009af;
	color: #fff;
	margin: 0 auto 30px;
	border-radius: 6px;
	cursor: pointer;
}
.other-papers{
	display: flex;
	justify-content: space-evenly;
	align-items: stretch;
	margin-bottom: 20px;
}
.other-papers div{
	text-align: center;
	color: #1e1e1e;
	font-size: 16px;
	background: #f8f8f8;
	width: 320px;
	padding: 50px 0;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
}
.other-papers div:hover{
	background: #0009af;
	color: #fff;
}
.other-papers div i{
	font-size: 50px;
}

/* 订单页面 */
.order-list{
	margin-bottom: 80px;
}
.order-item{
	margin-bottom: 20px;
	border-radius: 4px;
	background: #f8f8f8;
	padding: 20px 15px;
}
.order-item .hei{
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
}
.order-item .hei p:nth-child(2){
	font-weight: 400;
	font-size: 14px;
}
.order-item .info{
	font-size: 14px;
	padding: 6px 0;
}
.order-item .order-btn{
	padding-top: 10px;
	border-top: 1px solid #fff;
	text-align: right;
}
.order-item .order-btn div{
	display: inline-block;
	cursor: pointer;
	padding: 6px 15px;
	border-radius: 4px;
	margin-left: 6px;
}
.order-item .order-btn div:nth-child(1){
	border: 1px solid #666;
}
.order-item .order-btn div:nth-child(2){
	border: 1px solid #666;
}
.order-item .order-btn div:nth-child(3){
	border: 1px solid #0009af;
	background: #0009af;
	color: #fff;
}

/* 用户参会信息 */
.user-basic-list{
	margin-bottom: 80px;
}
.user-basic-item{
	margin-bottom: 20px;
	border-radius: 4px;
	background: #f8f8f8;
	padding: 20px 25px;
}
.user-basic-item div{
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px dashed #e8e8e8;
	padding: 10px 0;
}


/* 底部操作按钮 */
.dub-btn{
	position: relative;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 120px;
}
.dub-btn>div{
	display: inline-block;
	margin: 0 30px;
	padding: 0 80px;
	height: 50px;
	line-height: 48px;
	cursor: pointer;
	border-radius: 8px;
	font-size: 16px;
}
.dub-btn>div.prev{
	border: 1px solid #333;
	color: #333;
}
.ticket-btn{
	text-align: center;
	color: #fff;
	background: #0009af;
}
.ticket-btn.disable{
	background: #a8a8a8;
	color: #fff;
	cursor: no-drop;
}
.el-dialog{
	border-radius: 4px;
}


/* 移动端 */
@media (max-width: 768px) {
	.page-top{
		padding: 5% 15px;
	}
	.page-top .logo{
		width: 66%;
	}
	.page-top .button .lang{
		width: 33px;
		height: 33px;
		line-height: 33px;
		font-size: 16px;
	}
	.page-top .button .home{
		width: 35px;
		height: 35px;
		line-height: 35px;
		margin-left: 6px;
	}
	.page-top .button .home i{
		display: block;
		font-size: 34px;
	}
	.page-top .button .home:nth-child(3){
		width: 33px;
		height: 33px;
		line-height: 33px;
	}
	.page-top .button .home:nth-child(3) i{
		font-size: 24px;
	}
	
	.page-title{
		font-size: 22px;
		padding: 25px 0 15px;
	}
	.page-title p{
		font-size: 16px;
	}
	.ticket-tips{
		font-size: 18px;
		padding: 10px 0;
	}
	.ticket-list .ticket-item{
		width: 100%;
		margin-bottom: 5%;
	}
	.ticket-list .ticket-item:nth-child(even){
		margin-left: 0;
	}
	.ticket-item .ticket-info p{
		font-size: 14px;
		padding-top: 3%;
	}
	.ticket-item .ticket-price{
		font-size: 18px;
	}
	.ticket-list .ticket-item.active{
		border: 1px solid #0009af;
	}
	.ticket-notice{
		font-size: 14px;
		font-weight: 400;
	}
	.add-papers{
		margin-bottom: 10%;
	}
	.add-papers div div{
		width: 60%;
		margin-bottom: 5%;
	}
	.other-papers{
		justify-content: space-between;
	}
	.other-papers div{
		width: 31%;
		padding: 4% 0;
		font-size: 14px;
		line-height: 1.3;
	}
	.other-papers div i{
		font-size: 30px;
	}
	.page-info{
		margin-bottom: 70px;
	}
	.person-info li{
		padding: 2% 5%;
	}
	.person-info li p i{
		font-size: 22px;
	}
	.person-info li:last-child p i{
		font-size: 18px;
	}
	.el-scrollbar>.el-scrollbar__bar{
		opacity: 1 !important;
	}
	
	
	/* 底部操作按钮 */
	.dub-btn{
		position: relative;
		text-align: center;
		padding-top: 0;
		padding-bottom: 0;
		position: fixed;
		z-index: 9;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #fff;
		display: flex;
		box-shadow: 0 -2px 2px 0 rgba(0,0,0,0.1);
	}
	.dub-btn>div{
		/* display: inline-block; */
		display: block;
		margin: 0;
		padding: 0;
		height: 50px;
		line-height: 48px;
		cursor: pointer;
		border-radius: 0;
		font-size: 16px;
	}
	.dub-btn>div.prev{
		/* border: 1px solid #333; */
		border: none;
		color: #333;
		width: 30%;
	}
	.ticket-btn{
		flex: 1;
		text-align: center;
		color: #fff;
		background: #0009af;
	}
	.ticket-btn.disable{
		background: #a8a8a8;
		color: #fff;
		cursor: no-drop;
	}
	.ticket-btn{/* 
		position: fixed;
		z-index: 9;
		bottom: 0;
		left: 0;
		width: 100%;
		border-radius: 0;
		margin: 0;
	 */}
}