*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
ul,ol{
	list-style: none;
}
a,a:hover,a:active,a:visited,a:link,a:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
	color: #000;
    outline:none;
    background: none;
    text-decoration: none;
}
input{
	border: 0;
	outline: none;
}
.page-title{
	width: 100%;
	color: white;
	height: 50px;
	display: flex;
	padding: 0 20px;
	align-items: center;
	background: linear-gradient(to right, #34E2E8 , #1FADE8);
	justify-content: space-between;
}
.page-title div{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.page-title a{
	color: white;
}
.arrow-left{
	content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    border-width: 0 0 1.5px 1.5px;
    border-color: #fff;
    border-style: solid;
    transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.arrow-right{
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    border-width: 1.5px 1.5px 0 0;
    border-color: #fff;
    border-style: solid;
    transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.blue-bg{
	background: linear-gradient(to right, #6096F9 , #1870DE);
}
.orange-bg{
	background: linear-gradient(to right, #FD9320 , #F74022);
}
.purple-bg{
	background: linear-gradient(to right, #8E6AFC , #6E76F8);
}
/*公告图标*/
.notice-icon{
	display: inline-block;
	width: 27px;
	height: 21px;
	background: url(../images/applyRecord/icon.png) no-repeat;
	background-size: 100% 100%;
}
