:root {
	--theme-color: #77c;
	--theme-color-opacity: rgba(119, 119, 204, .5);
	--main-bg-color: rgba(250,250,250,.8);
	--black-0-color: #000;
	--black-3-color: #333;
	--black-5-color: #555;
	--black-7-color: #777;
	--white-f-color: #fff;
	--white-e-color: #e8e8e888;
	--white-d-color: #ddd;
}

* {
    outline: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "Microsoft YaHei", "Arial", "SimHei", sans-serif;
}

[v-cloak]{
    display: none;
}

html,
body {
    width: 100%;
    margin: 0;
    /*background: rgb(250,250,250);*/
    background: var(--main-bg-color);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    cursor: pointer;
}

select{
    height: 25px;
    padding: 2px 4px;
}

input{
    /*height: 25px;*/
    padding: 1px 3px;
}

/* 隐藏 input 标签的数字输入框箭头 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.loading {
	position: absolute;
	top:0;
	left: 0;
	width: 100vw;
	height: calc(100vh - 60px);
	border: 0px solid chocolate;
	box-sizing: border-box;
	margin: 60px auto 0;
	background: var(--white-f-color);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
	transition: all .2s;
}

.loading i {
	width: 8px;
	height: 32px;
	margin: 4px;
	border-radius: 4px;
	background-color: var(--black-5-color);
}

@keyframes loading {
	0% {
		transform: scaleY(1);
	}

	50% {
		transform: scaleY(0.5);
	}

	100% {
		transform: scaleY(1);
	}
}

.loading i:nth-child(1) {
	-webkit-animation: loading .8s ease-in 0s infinite;
}

.loading i:nth-child(2) {
	-webkit-animation: loading .8s ease-in 0.1s infinite;
}

.loading i:nth-child(3) {
	-webkit-animation: loading .8s ease-in 0.2s infinite;
}

.loading i:nth-child(4) {
	-webkit-animation: loading .8s ease-in 0.3s infinite;
}

.loading i:nth-child(5) {
	-webkit-animation: loading .8s ease-in 0.4s infinite;
}

#app {
    
}

.filter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* padding: 10px 5vw; */
    margin: 6px auto;
    width: 800px;
    max-width: 94vw;
    /*text-align: center;*/
    /*position: fixed;*/
}

.filter-content{
    
}

.filter span {
    font-size: 14px;
    margin: 0 4px;
    display: block;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item {
    margin: 4px auto;
    width: 800px;
    /*width: 90vw;*/
    max-width: 94vw;
    /*margin: 10px;*/
    padding: 6px 8px;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .1);
    background: var(--white-f-color);
    overflow: auto;
}

.item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .14);
}

.item-content{
    position: relative;
    display: flex;
    /*flex-wrap: nowrap;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    /*display: grid;*/
    /*grid-template-columns: 30fr 120fr 50fr 20fr 50fr;*/
    /*grid-template-columns: repeat(auto-fit,minmax(30px,1fr));*/
    border-radius: 5px;
    /*grid-template-columns: repeat(auto-fill, 100px);*/
}

.item-content:hover{
    background: #efefef;
}
/*.item-card{
    margin: 10px auto;
    width: 100%;
    max-width: 94vw;
    padding: 6px;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .1);
    background: var(--white-f-color);
    overflow: auto;
}*/

.item span {
    font-size: 14px;
    margin: 2px;
    /*display: block;*/
}

.item a {
    color: #333;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 4px;
}

.item a:hover {
    background: #e0e0e0;
}

.item button {
    color: var(--theme-color);
    background: var(--white-f-color);
    border: 1px solid var(--theme-color);
    border-radius: 4px;
    font-size: 14px;
    margin: 5px;
    display: inline-block;
    padding: 2px 6px;
    cursor: pointer;
    transition: all .2s linear;
}

.item button:hover {
    color: var(--white-f-color);
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 4px;
}

.item button:active {
    border: 1px solid #77c;
    color: var(--white-f-color);
    background: rgba(220, 220, 220, .1);
    box-shadow: 0 0 0 3px rgba(119, 119, 204, .3);
    background: #77c;
}

.dot{
    position: absolute;
    /* display: block; */
    /* top: 1vw; */
    left: 2px;
    /* line-height: 18px; */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #888;
    margin: 8px 0;
}

.list a,span{
    text-align: center;
}

.card{
    position: relative;
}

.card input{
    border: 0px;
    border-bottom: 1px solid #333;
    /*width: 60%;*/
    width: 200px;
    max-width: 100%;
}

.card select{
    border: 0px;
    border-bottom: 1px solid #333;
    /*width: 60%;*/
}

.card .panel{
    display: flex;
    align-items: center;
    /*float: right;*/
    position: absolute;
    right: 8px;
    top: 8px;
}

.card .panel a{
    width: 34px;
    height: 34px;
    color: #333;
    padding: 6px;
    border-radius: 5px;
}

.type{
    color: #333;
    /*color: var(--theme-color);*/
    /*background: var(--white-f-color);*/
    /*border: 1px solid var(--theme-color);*/
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 14px;
    margin: 3px;
    display: inline-block;
    padding: 2px 6px;
    cursor: pointer;
    transition: all .2s linear;
    user-select: none;
}

.type:hover {
    /*color: var(--white-f-color);*/
    /*background: var(--theme-color);*/
    /*background: #cfa;*/
    border: 1px solid var(--theme-color);
}

.type:active {
    border: 1px solid #77c;
    /*color: var(--white-f-color);*/
    color: #77c;
    background: rgba(220, 220, 220, .1);
    box-shadow: 0 0 0 3px rgba(119, 119, 204, .3);
    /*background: #77c;*/
}

.green{
    color:#fff;
    background: green;
    border: 1px solid green;
}

.right{
    float: right;
}

.btn {
    display: inline-block;
    outline: none;
    color: #77c;
    border: 2px solid #77c;
    background: #fff;
    /*width: 100px;*/
    height: 25px;
    /*line-height: 22px;*/
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    padding: 2px 8px;
    /*margin: 12px 6px 12px 0;*/
    text-align: center;
    box-sizing: border-box;
    vertical-align: top;
    cursor: pointer;
    user-select: none;
    transition: all .2s linear;
}

.btn:hover {
    color: #fff;
    border: 2px solid #77c;
    background: #77c;
    /*box-shadow: 0 0 0 3px rgba(119, 119, 204, .4);*/
}

.btn:active {
    border: 2px solid #77c;
    color: #fff;
    background: rgba(220, 220, 220, .1);
    box-shadow: 0 0 0 3px rgba(119, 119, 204, .4);
    background: #77c;
}

.top-box a{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    z-index: 5;
}

/*.top-box a{
    padding: 3px 6px;
    border-radius: 5px;
}*/

.top-box a:hover{
    background: #77c;
    /*box-shadow: 0 0 6px rgba(0, 0, 0, .15);*/
}

.top-box a svg{
    fill: #333;
}

.top-box a:hover svg{
    fill: #fff;
}

/*.edit{
    bottom: 12px;
    right: 82px;
    z-index: 5;
}

.save{
    bottom: 12px;
    right: 82px;
    z-index: 5;
}

.load{
    bottom: 12px;
    right: 82px;
    z-index: 10;
}*/

.top{
    bottom: 12px;
    right: 32px;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 800px;
    max-width: 94vw;
    margin: 0 auto;
}

.page{
    display: flex;
    align-items: center;
}

.page a{
    margin: 3px;
    font-size: 16px;
    font-weight: 700;
    color: #888;
    border: 2px solid #888;
    width: 30px;
    height: 30px;
    line-height: 26px;
    /*padding: 4px;*/
    border-radius: 4px;
    text-align: center;
    user-select: none;
}

.page a:hover{
    color: #77c;
    border: 2px solid #77c;
    /*background: #77c;*/
}

.page a:active{
    color: #fff;
    border: 2px solid #77c;
    background: #77c;
}

.page input{
    font-weight: 700;
    margin: 4px;
    color: #888;
    border: 2px solid #888;
    width: 36px;
    height: 30px;
    border-radius: 3px;
    text-align: center;
}

.list-content{
    flex: 2;
}

.name{
    flex: 6;
}

.team{
    flex: 1;
}

.job{
    flex: 3;
}

.red{
    color: #b46 !important;
}