*{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
a{
    cursor: pointer;
    text-decoration: none;
}
em{
    font-style: normal;
}
i{
    font-style: normal;
}
button{
    border: none;
    cursor: pointer;
}
input{
    outline: none;
    box-sizing: border-box;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    text-indent: 12px;
}
input[type="password"]::-webkit-credentials-cramble-button{
	appearance: none;
}
input[type="password"]::-ms-reveal{
	display: none;
}
input[type="password"]::-ms-clear{
	display: none;
}
input::placeholder{
    color: #CCCCCC;
    font-size: 14px;
}
textarea{
    box-sizing: border-box;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 14px;
    padding: 12px;
    resize:none;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
}
textarea::placeholder{
    color: #CCCCCC;
    font-size: 14px;
}
.layout{
    width: 1200px;
    margin: 0 auto;
}
.flex{
    display: flex;
    align-items: center;
}
.space-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.linear-color{
    /* background: linear-gradient(to left,#2E59EE,#F161A7); */
    background: linear-gradient(to left,#D22F83,#224DF2);
}
.linear-color-reverse{
    background: linear-gradient(to left,#D22F83,#224DF2);
}
.screen,.screen body{
    height: 100%;
}
main{
    position: relative;
}
main.page{
    padding-top: 96px;
    background: #F7F7FE;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
main.page-transparent{
    background: none;
}
/* 头部 */
header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 96px;
    display: flex;
    align-items: center;
    background: rgba(5,10,90,0.4);
    z-index: 100;
}
header.sincere{
    background: #fff;
}
header .logo img{
    width: 320px;
    height: 45px;
}
header nav{
    min-width: 676px;
}
header nav ul{
    display: flex;
    align-items: center;
}
header nav li{
    margin: 0 25px;
    position: relative;
}
header nav li.active::after,
header nav li:hover:after
{
    position: absolute;
    bottom: -11px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #fff;
    border-radius: 50px;
    animation: navLi 0.3s linear 0s 1 normal forwards
}
header.sincere nav li.active::after,
header.sincere nav li:hover:after{
    background: linear-gradient(to left,#D22F83,#224DF2);;
}
@keyframes navLi {
    0%{width: 0%;}
    100%{width: 100%;}
}
header nav li a{
    color: #fff;
}
header.sincere nav li a{
    font-weight: 400;
    font-size: 16px;
    color: #353535;
}
header.sincere nav li.active a{
    font-weight: 600;
}
header .user{
    width: 101px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
header .user span{
    margin: 0 6px;
    color: #fff;
}
header .user a{
    color: #fff;
    font-size: 14px;
}
header .userLogined{
    position: relative;
}
header .userLogined .info{
    width: 64px;
    display: flex;
    align-items: center;
}
header .userLogined .info img{
    width: 26px;
    height: 26px;
    margin-right: 8px;
}
header .userLogined .info span{
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 400;
    white-space: nowrap;
}
header.sincere .userLogined .info span{
    font-size: 14px;
    color: #333333;
}
header .userLogined .list{
    display: none;
    position: absolute;
    width: 128px;
    transform: translateX(-50px);
    box-sizing: border-box;
    padding-top: 15px;
    transition: 0.3s;
    z-index: 100;
}
header .userLogined:hover .list{
    display: block;
    animation: userLogined 0.3s linear 0s 1 normal forwards;
}
@keyframes userLogined {
    0%{opacity: 0;}
    100%{opacity: 1;}
}
header .userLogined .list ul::before{
    content: "";
    display: block;
    position: absolute;
    left: 53px;
    top: 5px;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
header .userLogined .list ul{
    background: #fff;
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.2);
    border-radius: 10px;
}
header .userLogined .list ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20px;
    padding: 15px 0;
    font-size: 14px;
    color: #353535;
}
header .userLogined .list ul li + li{
    border-top: 1px solid #F7F7F7;
}
/* 底部 */
footer{
    /* margin-top: 70px; */
    height: 340px;
    background: #302A29;
}
.footer-content .top{
    padding-top: 44px;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 41px;
    border-bottom: 1px solid #4F4F4F;
}
.footer-content .top .logo{
    margin-right: 92px;
}
.footer-content .top .index{
    margin-right: 174px;
}
.footer-content .top .index,
.footer-content .contact{
    position: relative;
    padding-left: 27px;
}
.footer-content .top .index::before,
.footer-content .contact::before{
    content: "";
    display: block;
    width: 1px;
    height: 72px;
    left: 0;
    top: 27px;
    background: #4F4F4F;
    position: absolute;
}
.footer-content .top .index h3,
.footer-content .contact h3{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
    margin-bottom: 20px;
}
.footer-content .top .index ul li,
.footer-content .contact ul li{
    margin-bottom: 10px;
}
.footer-content .top .index ul li a,
.footer-content .contact ul li p{
    font-size: 14px;
    color: #BCBCBC;
    line-height: 20px;
}   
.footer-content .top .index ul li{
    padding-left: 12px;
    position: relative;
}
.footer-content .top .index ul li::before{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: #14B9CE;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.footer-content .top .contact ul li{
    display: flex;
    align-items: center;
}
.footer-content .top .contact ul li img{
    margin-right: 6px;
}
.footer-content .top .rq{
    position: absolute;
    right: 0;
    top: 44px;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.footer-content .top .rq span{
    padding-top: 10px;
    font-size: 12px;
    color: #BCBCBC;
    line-height: 17px;
}
.footer-content .bottom{
    display: flex;
    flex-flow: column;
    align-items: center;
}
.footer-content .bottom .links{
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-content .bottom .links span{
    font-size: 14px;
    color: #999999;
    margin: 0 10px;
}
.footer-content .bottom .links a{
    color: #fff;
    font-size: 14px;
    margin: 0 10px;
}
.footer-content .bottom .copyright p{
    font-size: 12px;
    color: #BCBCBC;
    line-height: 17px;
    padding-top: 20px;
}
/* layer */
.layer-container{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    animation: layerShow 0.3s linear 0s 1 normal forwards;
}
@keyframes layerShow {
    0%{opacity: 0;}
    100%{opacity: 1;}
}
.layer-container .layer{
    width: 455px;
    height: 263px;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    padding: 40px 30px 0 30px;
}
.layer-container .layer .title{
    display: flex;
    margin-bottom: 18px;
}
.layer-container .layer .title i{
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 6px;
}
.layer-container .layer .title h6{
    font-weight: 500;
    font-size: 20px;
    color: #353535;
}
.layer-container .layer .title i.icon1{
    background: url(../images/icon/upload_layer.png) center center / 100% 100% no-repeat;
}
.layer-container .layer .text{
   min-height: 88px;
   padding-bottom: 20px;
}
.layer-container .layer .text p{
    font-weight: 400;
    font-size: 14px;
    color: #353535;
    line-height: 22px;
}
.layer-container .layer .btns{
    display: flex;
    justify-content: flex-end;
    padding: 0;
}
.layer-container .layer .btns a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88px;
    height: 42px;
    background: #EEEEEE;
    border-radius: 6px;
    color: #666666;
    border: none;
    margin: 0 10px;
}
.layer-container .layer .btns a:first-child{
    background: #3159ED;
    color: #fff;
}

/* 通用table-list */
.table-list{
    table-layout: fixed;
    width: 100%;
}
.table-list thead{
    background: #EEEEF3;
}
.table-list thead tr{
    height: 48px;
}
.table-list thead tr th{
    color: #353535;
    font-size: 14px;
    text-align: left;
}
.table-list thead tr th:first-child{
    text-indent: 24px;
}
.table-list tbody tr{
    height: 68px;
}
.table-list tbody tr:nth-child(odd){
    background: #fff;
}
.table-list tbody tr:nth-child(even){
    background: #FAFAFC;
}
.table-list tbody tr td{
    text-align: left;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    padding-right: 15px;
}
.table-list tbody tr td:first-child{
    text-indent: 24px;
}
.table-list tbody tr td i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 24px;
    color: #fff;
    font-size: 14px;
    border-radius: 2px;
}
.table-list tbody tr td i.examining{
    background: #3159ED;
}
.table-list tbody tr td i.presubmit,.table-list tbody tr td i.orange{
    background: #ED6C31;
}
.table-list tbody tr td i.result,.table-list tbody tr td i.green{
    background: #1E8C00;
}
.table-list tbody tr td span{
    font-size: 14px;
}
.table-list tbody tr td span.success{
    color: #1E8C00;
}
.table-list tbody tr td span.field{
    color: #FF6666;
}
.table-list tbody tr td a{
    margin-right: 16px;
    font-size: 14px;
}
.table-list tbody tr td a:last-child{
    margin-right: 0;
}
.table-list tbody tr td a.preview{
    color: #3159ED;
}
.table-list tbody tr td a.delete{
    color: #FF6666;
}

/* 分页 */
.pager{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pager *{
    margin: 0 5px;
}
.pager a,.pager input,.pager button{
    display: block;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    font-size: 12px;
    color: #353535;
    box-sizing: border-box;
    border: 1px solid #DDE2EE;
    border-radius: 4px;
}
.pager a.active,.pager button{
    background: #3159ED;
    border: none;
    color: #fff;
}
.pager span{
    font-size: 12px;
    color: #8D8D8D;
}
.pager input{
    width: 28px;
    text-indent: 0;
    text-align: center;
    padding: 0;
}

/* 左侧菜单 */
.menu{
    width: 200px;
    padding-top: 20px;
    margin-right: 20px;
}
.menu ul{
    box-shadow: 0px 10px 30px 0px rgba(0,94,199,0.1);
}
.menu li{
    height: 58px;
    display: flex;
    align-items: center;
    background: #fff;
}
.menu li a{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 24px;
    width: 100%;
    height: 100%;
    color: #353535;
}
.menu li.active{
    background: linear-gradient(to right ,#2E59EE , #F161A7);
}
.menu li.active a{
    color: #fff;
    background: url(../images/icon/upload_menu_right.png) right 30px center no-repeat;
}

/* 当前位置 */
.path{
    margin-top: 20px;
}
.path a{
    font-weight: 400;
    font-size: 14px;
    color: #353535;
}
.path a:first-child{
    color: #999999;
}