/*base style*/
*{
    padding:0;
	margin:0;
	/*设置盒子模型*/
	box-sizing: border-box;
	/*去除移动端特有的点击高亮效果，比如创建一个div元素，手放上去之后会有hover效果*/
	-webkit-tap-highlight-color: transparent;
}
html{
    line-height: 1.15;
}
body{
	font-size: 14px;
}
a{   
	color:#FF4D4F;
	text-decoration: none;
}
a:hover{
    text-decoration:underline;
}
ul{
	list-style:none;
}
h1{
    font-size: 33px;
}
button{
    border:none;
    cursor: pointer;
    background: none;
    outline: none;
}
input {
	/*清除文本框获取焦点时磨人的边框阴影*/
	outline: none;
    border: none;
    font-size: 16px;
}
/*清除浮动*/
.clearfix::before,
.clearfix::after {
	content: '';
	height:0;
	display: block;
	line-height:0;
	clear:both;
	visibility: hiddle;
}

/*新添一些可以重复利用的样式*/
.f_bgf{
    background-color:#ffffff;
}
.f_bd{
    border: 1px solid #D9D9D9;
}
.f_bdb{
    border-bottom: 1px solid #D9D9D9;
}
.f_bdt{
    border-top: 1px solid #D9D9D9;
}
.f_bdr{
    border: 1px solid #FFA39E;
}
.f_bdg{
    border: 1px solid #B7EB8F;
}
.f_dpn{
    display:none;
}
.f_tac{
    text-align: center;
}
.f_c_blue{
    color:#1890FF;
}
.disable_tr{
    color:#cccccc;
    text-decoration:line-through;
}
.disable_tr .f_c_blue{
    color:#cccccc;
}
.f_wh100{
    width:100%;
    height:100%;
}
.float_r {
	float: right
}
.float_l {
	float: left;
}


/*按钮*/
.big-btn{
    width:100%;
    height: 40px;
    background-color: #FF4D4F;
    border-radius: 4px;
    font-size: 16px;
    color:#ffffff;
}
.small-btn{
    height: 40px;
    background-color: #FF4D4F;
    border-radius: 4px;
    font-size: 14px;
    color:#ffffff;
    padding: 0 16px;
}
.base-btn{
    background:none;
    border:1px solid #D9D9D9;
    color:#000000;
}
.big-btn a{
    color: #ffffff;
    display: block;
    line-height: 40px;
}

/*表单*/
.form-box .form-item{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
}
.form-item .item-left{
    flex: auto;
    display: flex;
    align-items: center;
    border-radius: 4px;
}
.form-item .item-left img{
    flex: none;
    width: 16px;
    height: 16px;
    margin:12px 0 12px 12px;
}
.form-item .item-left input{
    flex: auto;
    height: 40px;
    padding: 0 12px;
}
.form-item .item-right{
    flex:none;
    margin-left: 5px;
}
.form-item .get-code{
    height: 42px;
    padding:0 16px;
    border-radius: 4px;
}
.form-item p{
    flex:none;
}
.form-box .form-top{
    text-align: center;
    padding:44px 0 56px 0;
}
.form-box .form-top p{
    color:#999999;
}
.form-box .form-top .title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.form-box .form-top .title img{
    width:50px;
    margin-right: 8px;
}
.form-box .form-top .title h1{
    color:#666666;
    font-weight: 300;
}

/*布局*/
.page{

}
.main{
    position: absolute;
    width: 100%;
    height: 100%;
    padding-left: 256px;
}
.main-shrink{
    padding-left: 80px;
}
.content{
    padding:24px 24px 0 24px;
    height: calc(100% - 64px);
    background:#FCFCFC;
    overflow: auto;
}

/*导航*/
.menu{
    position:fixed;
    width:256px;
    height: 100%;
    box-shadow: 2px 0px 6px 0px rgba(55, 44, 0, 0.12);
    z-index: 2;
}
.menu .title{
    display: flex;
    align-items: center;
    padding-left: 24px;
    background: #FF4D4F;
    height: 64px;
}
.menu .title img{
    width: 42px;
}
.menu .title p{
    font-size: 18px;
    color:#ffffff;
    padding-left: 5px;
}
.menu-box{
    padding: 15px 0;
    overflow-y: auto;
}
.menu-list{}
.menu-item{
    display: block;
    padding-left: 50px;
    line-height: 50px;
    cursor: pointer;
    color:#333333;
}
.menu-item-1{
    background:url("/img/Menu/icon_1.png") 24px center no-repeat;
    background-size: 14px 14px;
}
.menu-item-1:hover, .menu-item-1.menu-item-active{
    background:url("/img/Menu/icon_1_red.png") 24px center no-repeat;
    background-size: 14px 14px;
    background-color: rgba(255,77,79, 0.09);
}
.menu-item-2{
    background:url("/img/Menu/icon_2.png") 24px center no-repeat;
    background-size: 14px 14px;
}
.menu-item-2:hover, .menu-item-2.menu-item-active{
    background:url("/img/Menu/icon_2_red.png") 24px center no-repeat;
    background-size: 14px 14px;
    background-color: rgba(255,77,79, 0.09);
}
.menu-item-4{
    background:url("/img/Menu/icon_4.png") 24px center no-repeat;
    background-size: 14px 14px;
}
.menu-item-4:hover, .menu-item-4.menu-item-active{
    background:url("/img/Menu/icon_4_red.png") 24px center no-repeat;
    background-size: 14px 14px;
    background-color: rgba(255,77,79, 0.09);
}
.menu-item:hover, .menu-item-active{
    text-decoration: none;
    border-right:4px solid #FF4D4F;
}
.menu-item:hover,.menu-item-active{
    color:#FF4D4F;
    text-decoration: none;
}

.menu-shrink{
    width: 80px;
}
.menu-shrink p,.menu-shrink span{
    display: none;
}
.menu-shrink .menu-item{
    width: 80px;
    height: 50px;
    background-size:24px 24px;
}
.menu-shrink .title{
    padding-left: 18px;
}

/*表格*/
.table{
    width: 100%;
    margin:16px 0;
    border-radius: 4px 4px 0px 0px;
}
.table tr{
    border-bottom: 1px solid #E8E8E8;
}
.table th{
    text-align: left;
    height: 54px;
    min-width: 100px;
    padding: 0 16px;
    background:#F4F4F4;
}
.table td{
    height: 54px;
    padding: 0 16px;
}

/*头部*/
.header{
    overflow: hidden;
    padding: 0 24px;
    line-height: 64px;
    box-shadow: 0px 1px 4px 0px rgba(55, 44, 0, 0.12);
}
.shrink{
    cursor: pointer;
    width: 24px;
    vertical-align: middle;
}
.sign-out{
    padding-left: 24px;
    text-decoration: underline;
}

/*底部*/
.page-bottom{
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding:20px;
}
.page-bottom p{
    padding-bottom: 9px;
}
.page-bottom-tips{
    display:flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 9px;
}
.page-bottom-tips img{
    width:16px;
    height: 16px;
    margin-right: 4px;
}
.page-bottom-tips p{
    padding:0;
}

/*弹窗*/
.popup{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.popup-bg{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.popup-box{
    position: fixed;
    width: 703px;
    max-height: 80%;
    top:10%;
    left:50%;
    margin-left:-350px;
    padding:0 24px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.popup-top{
    position: relative;
    padding:16px 0;
}
.popup-box h6{
    color:#333333;
    font-size: 16px;
    font-weight: 500;
}
.popup-close{
    position: absolute;
    right: 0;
    top: 4px;
    padding:12px;
    cursor: pointer;
}
.popup-close img{
    width: 16px;
    height: 16px;
}
/* .popup-con{
    padding:72px 78px;
} */
.popup-bottom{
    overflow: hidden;
    padding: 16px 0;
}
.popup-bottom button{
    margin-left: 8px;
}
