body{
	background-color: #f5f5f5;
}
/* 个人信息 */
.my-title{
	display: flex;
	justify-content:flex-start;
	background-color: #fff;
	padding: 10px 0 20px;
	margin-bottom: 10px;
}
.my-title-img{
	width: 85px;
	height: 85px;
	padding: 10px;
}
.my-title-img img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.my-title-text{
	padding: 10px 0;
}
.my-title-text b{
	display: inline-block;
	margin: 0;
	height: 40px;
	line-height: 40px;
	font-size: 22px;
}
.my-title-text p{
	margin: 0;
	height: 25px;
	font-size: 13px;
	line-height: 25px;
}
.my-title-text p span{
	padding: 4px 10px;
	margin-right: 5px;
	background-color: #F4F4F4;
	color: #ACABAB;
	border-radius: 20px;
}

/* 个人内容 */
.my-content{
	background-color: #ffffff;
	padding: 15px 0 0;
}
.my-content-option{
	
}
.my-content-option ul{
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
.my-content-option ul li{
	padding: 0;
	text-align: center;
}
.my-content-option ul li a {
    display: block;
    width: 60%;
    margin: 0 auto 4px;
    height: 0;
    padding-bottom: 60%;
    position: relative;
    border-radius: 23px;
}
.my-content-option ul li span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    line-height: 100%;
    font-size: 30px;
    color: #ffffff;
}
.my-content-option ul li p {
    font-size: 15px;
    color: #363636;
	width: 60px;
    margin: auto;
}

/* 选择列表 */
.my-content-list{
	padding: 5px 15px 0;
}
.my-content-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.my-content-list ul li{
	display: flex;
	justify-content:space-between;
	padding: 12px 0;
	position: relative;
}
.my-content-list ul li:after{
	display: block;
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	border-top: 1px solid #dfdfdf;
}
.my-content-list-left p{
	margin: 0;
	line-height: 28px;
}
.my-content-list-left p .glyphicon {
	font-size: 25px;
	color: #156879;
}
.my-content-list-left p span{
	display: inline;
	vertical-align: middle;
}
.my-content-list-right{
	line-height: 28px;
	color: #9c9c9c;
}

/* 底部按钮 */
.my-button {
	padding: 30px 0 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.my-button button{
	font-size: 14px;
	width: 100px;
	margin: 0 10px;
	padding: 5px;
	color: #FFFFFF;
	border-radius: 4px;
	border: none;
}
.my-button button:nth-of-type(1){
	background: #E14B4B;
}
.my-button button:nth-of-type(2){
	background: #156879;
}
.my-button button:nth-of-type(1):hover{
	background: #a63737;
}
.my-button button:nth-of-type(2):hover{
	background: #0f4c58;
}
.attention{
	position: absolute;
	top: 20px;
	right: 6px;
	background-color: #009688;
	border-radius: 8px;
	font-size: 15px;
	color: #fff;
	padding: 2px 10px;
}