*{
    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: #19439d;
}
.linear-color-reverse{
    background: linear-gradient(to left,#D22F83,#224DF2);
}
.screen,.screen body{
    height: 100%;
}
main{
    position: relative;
}
main.page{
    /* padding-top: 140px; */
    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: 80px;
    display: flex;
    align-items: center;
    background: #fff;
    z-index: 102;
} */
header.sincere{
    background: #fff;
}
header .logo img{
    width: 400px;
    height: 40px;
}
nav{
    /* width: 100%;
    height: 60px;
    position: absolute;
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center; */
    background: #fff;
    /* z-index: 100; */
}

nav ul{
    display: flex;
    align-items: center;
    width: 1200px;
}
nav li{
    margin: 0 25px;
    position: relative;
}
/* nav li.active::after,
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
}
nav li.active::after,
nav li:hover:after{
    background: linear-gradient(to left,#D22F83,#224DF2);;
} */
/* @keyframes navLi {
    0%{width: 0%;}
    100%{width: 100%;}
} */

nav li a{
    font-weight: 400;
    font-size: 16px;
    color: #999;
}
nav li a:hover{
    color: #353535;
}
nav li.active a{
    font-weight: 600;
    color: #353535;
}
header .user{
    width: 148px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}
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: #333;
    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{
    height: 250px;
    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;
    width: 400px;
    height: 40px;
}
.footer-content .top .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.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: 0;
    background: #4F4F4F;
    position: absolute;
}
.footer-content .top .index h3,
.footer-content .contact h3{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-content .contact ul{
    display: flex;
}
.footer-content .contact ul li{
    margin-right: 40px;
}
.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: 12px;
    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 img{
    width: 77px;
    height: auto;
}
.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: #19439d;
}
.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;
}

* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

input {
    outline: none;
    box-sizing: border-box;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    text-indent: 12px;
    height: 44px;
}

textarea {
    box-sizing: border-box;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    padding: 12px;
    resize: none;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
    font-size: 14px;
}

.set_mt0 {
    margin-top: 0 !important;
}

.set_mb50 {
    margin-bottom: 50px !important;
}

.clearfix {
    clear: both;
}

body {
    background: #F7F7FE;
    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;
}

header {
    width: 100%;
    height: 140px;
    background-color: #fff;
}

header .layout {
    height: 80px;
}

header .layout .flex span {
    display: inline-block;
    width: 1px;
    height: 33px;
    background-color: #eee;
    margin: 0 18px;
}

footer {
    width: 100%;
    height: 229px;
    background: #302A29;
}

.footer_info {
    padding-top: 42px;
}

.footer_info p {
    padding-top: 0;
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.logo_box span {
    width: 1px;
    height: 33px;
    background-color: #4F4F4F;
    margin: 0 20px;
}

.logo_box span:last-child {
    height: 73px;
}

.contact_info {
    color: #BCBCBC;
    line-height: 20px;
}

.contact_info span {
    margin: 0 40px 0 4px;
}

.contact_info span:nth-of-type(1),
.contact_info span:nth-of-type(2) {
    padding-top: 2px;
}

.code_box {
    padding-top: 34px;
    font-size: 12px;
    color: #BCBCBC;
    line-height: 14px;
    text-align: center;
}

.code_box img {
    margin-bottom: 8px;
}

.footer_line {
    height: 1px;
    background-color: #4F4F4F;
    margin: 8px auto 20px;
}

.link_content {
    line-height: 20px;
    text-align: center;
    color: #fff;
}

.link_content span {
    color: #999;
}
.link_content a {
    color: #fff;
    font-size: 14px;
    margin: 0 10px;
}

.link_content span:nth-of-type(1) {
    margin-right: 24px;
    display: inline-block;
}

.copyright {
    font-size: 12px;
    color: #BCBCBC;
    line-height: 17px;
    margin-top: 10px;
    text-align: center;
}

nav {
    width: 100%;
    height: 60px;
    border-top: 1px solid #eee;
    padding-top: 18px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 18px;
}

nav a {
    color: #353535;
    position: relative;
    font-weight: bold;
    margin: 0 12px;
}

nav a:before {
    content: '';
    width: 25px;
    height: 5px;
    background: #0044A2;
    border-radius: 3px;
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -12.5px;
}