.flexRows {
	/* Flex 布局（兼容webkit/IE内核浏览器） */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* 横向：两端对齐（可保留/修改为 center 横向居中） */
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	/* 竖向：居中（核心属性，无需修改） */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flexColumn {
	/* Flex 核心配置（水平排列 + 行级竖向居中） */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* 水平排列（以行为单位） */
	-ms-flex-direction: column;
	flex-direction: column;
	/* 横向：两端对齐（可保留/修改为 center 横向居中） */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/* 竖向：居中（核心属性，无需修改） */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#mainbody {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
    min-height: auto;
    overflow-y: hidden;
    background: #f1f6fd;
    color: #474157;
}
#mainbody > .text-center {
	height: calc(100vh - 160px);
	/* Flex 核心配置（水平排列 + 行级竖向居中） */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* 水平排列（以行为单位） */
	-ms-flex-direction: column;
	flex-direction: column;
	/* 横向：两端对齐（可保留/修改为 center 横向居中） */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/* 竖向：居中（核心属性，无需修改） */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#mainbody > .text-center h1 {
    font-size: 50px;
    font-weight: normal;
	margin:0;
    color: #171347
}
#mainbody .text-center > a {
    background: #fdcc52;
    background: -webkit-linear-gradient(#fdcc52, #fdc539);
    background: linear-gradient(#fdcc52, #fdc539);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 300px;
    margin-top: 20px;
    padding: 10px 45px;
    font-size: 14px;
	color: #474157;
    text-decoration: none;
}
#mainbody .text-center a:hover,
#mainbody .text-center a:focus {
    color: #474157;
}
@media (max-height: 500px) {
    #mainbody {
        height: inherit;
    }
}
@media (min-width: 768px) {
    #mainbody .index-text {
        text-align: left;
    }
}
@media (max-width: 767px) {
    #mainbody > .container > .text-center {
        height: calc(100vh - 160px);
    }
    #mainbody > .container > .text-center > h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
}

.user-baseinfo {
	margin-bottom: 25px;
}
.user-baseinfo table tr td {
	color: #999;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}
.sidebar-toggle {
	display: none;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
	left: 0;
	width: 250px;
	box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}
body.sidebar-open .sidebar-toggle i:before {
	content: "\f00d";
}
/*# sourceMappingURL=user.css.map */
.row-flex {
    display: flex;
    flex-wrap: wrap;
}
.city-picker-span{
	font-size:13px;
}
.fixed-table-container {
	border: none !important;
}
.bootstrap-table td.bs-checkbox {
    vertical-align: middle;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  white-space: nowrap !important;
}

.depositBody .box-title{font-size:16px;}
.depositBody h4{font-size:14px;}
.depositBody .list-unstyled{font-size:14px;line-height:24px;}



