.container {
	height: 100vh;
    display: flex;
    flex-direction: column;
    background-color:#ffffff;
}

.search {
	display: flex;
	border-bottom: 1px solid #ededed;
	align-items: center;
    padding: 0.625rem;
}

.search .query-btn {
	border: none;
	padding: 0px 15px;
	border-radius: 3px;
	height: 30px;
	background: #31a2f2;
	color: #ffffff;
}

.search>.add {
	margin-left: 10px;
	height: 30px;
	border: 1px solid #dedeed;
	padding: 0px 5px;
	border-radius: 3px;
	font-size: 12px;
	background-color: #fff;
	color: #787878;
	display: flex;
	align-items: center;
}

.search>.add::before {}

.search .s-div {
	flex: 1;
    display: flex;
    color: #787878;
    align-items: center;
	overflow: hidden;
    background-color: rgb(246, 249, 250);
}
.search .s-div+.s-div{
	margin-left:0.625rem;
}
.search .s-div input,.search .s-div select{
	flex: 1;
    max-width: 100%;
    box-sizing: border-box;
    height: 32px;
    border: 1px solid #f6f9fa;
    font-size: 0.875rem;
    padding: 0 0.3125rem;
    background-color: transparent;
    outline: none;
    border-radius: 3px;
	font-family: auto;
}
.search .s-div input:focus,.search .s-div select:focus{
	border:1px solid var(--primary-color);
}
.search .btn,.search .download,.search .zc-btn{
    background-color: transparent;
    color: var(--primary-color);
    height: 26px;
    margin-left: 0.325rem;
    display: flex;
    align-items: center;
    min-width: 54px;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    justify-content: center;
    border-radius: 2px;
}
.search .btn:before{
	content:"\e660";
	font-family:"iconfont";
	font-size:1.2rem;
}
.d-div{
	flex:1;
	display: flex;
    justify-content: end;
}
.search .download:before{
	content:"\e606";
	font-family:"iconfont";
	font-size:1.2rem;
}
.search .zc-btn:before{
	content:"\e648";
	font-family:"iconfont";
	font-size:1.2rem;
}
.box1 .flex-1 {
	display: flex;
	flex: 1;
}

.box1 .flex-1>input,.box1 .flex-1>select{
	flex: 1;
	width: 100%;
	color: #787878;
	height: 35px;
	border: none;
	font-size: 0.875rem;
    font-family: auto;
}
.box1 .flex-1>textarea{
	flex: 1;
    width: 100%;
    color: #787878;
    font-size: 15px;
    resize: none;
    border: 1px solid #dedede;
    height: 120px;
    border-radius: 3px;
    outline: none;
    padding: 8px;
    font-family: auto;
}
.operator {
	padding: 10px 6px 6px;
	display: flex;
}

.operator button {
	height: 30px;
	border: 1px solid #dedeed;
	padding: 0px 5px;
	border-radius: 3px;
	font-size: 12px;
	background-color: #fff;
	color: #787878;
	display: flex;
	align-items: center;
	margin-left: 6px;
}

.operator button:hover {
	background-color: #f8f8f8;
}

.operator button::before,
.search>.add::before {
	content: "";
	background-size: 100%;
	width: 18px;
	height: 18px;
	margin-right: 5px;
}

.add::before,
.search>.add::before {
	background-image: url(../img/icon6.png);
}

.delete::before {
	background-image: url(../img/icon7.png);
}

.save::before {
	background-image: url(../img/icon8.png);
}

.submit::before {
	background-image: url(../img/icon9.png);
}

.content {
	position: relative;
	flex: 1;
    overflow: auto;
}
.table-div{
	background-color:#ffffff;
	margin:0.625rem 0 0;
}
table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	text-align: center;
	color: #434343;
}

table th {
	font-weight: normal;
	background-color: #f7f7f7;
	border-right: 1px solid #ededed;
	position: sticky;
	top: 0;
	left: 0;
    white-space: nowrap;
    padding: 0.3125rem;
}

table tr {
	border-bottom: 1px solid #ededed;
}

table td {
	border-right: 1px solid #ededed;
    padding: 0.625rem 0.3125rem;
    font-size: 0.875rem;
}

table th:last-child,
table td:last-child {
	border-right: none;
}

table .edit {
	display: flex;
	color: #31a2f2;
	justify-content: center;
	align-items: center;
}

table .edit::before {
	content: "";
	width: 24px;
	height: 24px;
	background-image: url("../img/edit.png");
	background-size: 100%;

}
td .status{
    font-size:0.875rem;
    display:flex;
	align-items: center;
    justify-content: center;
}
.status.bg0{
	color: #ff9800;	
	
}
.status.bg1{
	color: #3dd4a7;	
}
td .status:before{
    content: "";
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    margin-right: 0.3125rem;
}
td .play{
    display: flex;
    align-items: center;
    white-space: nowrap;
    background-color: transparent;
    border: none;
    justify-content: center;
	color: var(--primary-color);
}
td .play:before{
	content:"\e612";
	font-family:"iconfont";
}
td .audio{
	max-height:32px;
	max-width:250px;
}
.status.bg0:before{
	background-color: #ff9800;
}
.status.bg1:before{
	
	background-color: #3dd4a7;
}
.add-members {
	width: 350px;
	max-width: 540px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	border-radius: 5px;
	z-index: 5;
	display: none;
}

.add-membersTwo {
	width: 90%;
	max-width: 540px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	border-radius: 5px;
	z-index: 5;
	display: none;
}

.add-members .tit {
	color: #101010;
    line-height: 40px;
    padding-left: 15px;
    border-radius: 5px 5px 0px 0px;
    font-weight: bold;
}

.add-membersTwo .tit {
	background-color: #f7f7f7;
	color: #787878;
	line-height: 40px;
	padding-left: 15px;
	border-radius: 5px 5px 0px 0px;
}

.add-members .box1 {
	margin:1rem;
    display: flex;
    align-items: center;
}
.add-members .box1 .flex-1 input,.add-members .box1 .flex-1 select{
	border: 1px solid #dedede;
    border-radius: 3px;
    padding: 0 0.625rem;
	color: var(--text-color);
    outline: none;
}
.add-members .box1>span{
	color:var(--label-color);
}
.add-membersTwo .box1 {
	width: auto;
	border-bottom: 1px solid #ededed;
	margin: 0px 15px;
}

.add-members .box1>span {
	font-size: 15px;
}

.add-membersTwo .box1>span {
	font-size: 15px;
}

.add-members .box1 .flex-1 {
	align-items: center;
/* 	margin-left: 0px;
	padding: 8px 5px; */
}

.add-membersTwo .box1 .flex-1 {
	align-items: center;
	margin-left: 0px;
	padding: 8px 5px;
}

.all-btn {
    display: flex;
    padding: 20px 15px 20px;
    justify-content: space-around;
    border-top: 1px solid #ededed;
}

.all-btn button {
	width: 100px;
	height: 35px;
	border-radius: 4px;
	padding: 0px 15px;
}

.all-btn .cancel {
	background-color: #fff;
	border: 1px solid #dedeed;
	color: #787878;
}

.all-btn .ack {
	background-color: var(--primary-color);
	color: #fff;
	border: 1px solid var(--primary-color);
}
.share-img{
	border-bottom: none !important;
}
.share-img p{
	margin-top:8px;
}
.share-img label{
	display: flex;
    width: 90px;
    height: 90px;
    border: 1px dashed #dedede;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #b5b5b5;
    float:left;
    box-sizing: border-box;
    margin-top: 10px;
}
.share-img .upload input {
	display:none;
}
.share-img .upload .imgList{
	/* float:left; */
}
.share-img .upload .imgList img{
	width:90px;
	height:90px;
	margin-left: 10px;
	margin-top: 10px;
}
.share-img .viewImg{
	position:relative;
	display: inline-block;
}
.share-img .viewImg .closeImg {
    position: absolute;
    top: 4px;
    right: -4px;
    background: #fb4949;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    color: #ffffff;
    font-size: 20px;
}
.share-img .viewImg .closeImg:before,.share-img .viewImg .closeImg:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 17px;
    background: #fff;
    top: 3px;
    left: 11px;
    border-radius: 3px;
}
.share-img .viewImg .closeImg:before{
	transform: rotate(45deg);
}
.share-img .viewImg .closeImg:after {
	transform: rotate(-45deg);
}
.share-dialog{
    max-height: 90%;
    overflow-y: auto;
}
.share-dialog .tit{
	position: sticky;
    top: 0;
    left: 0;
}
.share-dialog .all-btn{
	background-color: #fff;
    position: sticky;
    left: 0;
    bottom: 0;
}
.add-setting{
    display: flex;
    justify-content: center;
    padding: 0.625rem 1rem;
    border-top: 1px solid #f7f7f7;
}
.add-setting button{
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 2.5rem;
    border-radius: 0.3125rem;
}
.add-setting button:before{
	content:"\e608";
	font-family:"iconfont";
}
.upload-excel{
	margin-top:10px;
}
.upload-excel .layui-btn{
	background-color: transparent;
    border: 1px dashed #dedede;
    margin-left: 15px;
}
.upload-excel .layui-upload-file{
	display:none;
}
.upload-excel .layui-form-label{
	margin-left: 15px;
    color: #787878;
}
.upload-excel .layui-input-inline{
	margin-left: 80px;
}
.upload-excel .layui-upload-choose{
	display: block;
    color: #787878;
    font-size: 14px;
}
button.ding{
    display: flex;
    margin: 6px auto;
    align-items: center;
    padding: 1px 11px;
    border-radius: 27px;
    background: #f7ebdc;
    color: #dd8617;
    font-weight: bold;
    border: 1px solid #dd8617;
}
button.ding:before{
	content:"";
	width:24px;
	height:24px;
	background-image:url("../img/tips.png");
	background-size:100%;
	margin-right: 4px;
}

.item{
    background-color: #ffffff;
    padding: 0.75rem;
    margin: 0.625rem;
    border-radius: 0.625rem;
}
.item .box{
	display:flex;
	margin-bottom:0.625rem;
}
.item .box .label{
	color:var(--label-color);
}
.item .box .flex-1{
	color:var(--text-color);
}
.item .annex{
	display:flex;
    overflow: hidden;
}
.item .annex a{
	flex: 1;
    display: flex;
    align-items: center;
    background-color: rgb(246, 249, 250);
    padding: 0.625rem;
    border-radius: 0.3125rem;
	overflow: hidden;
}
.item .annex a i{
	font-size:1.5rem;
	color:var(--primary-color);
}
.item .annex a span{
	flex: 1;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	color: var(--label-color);
    font-size: 0.875rem;
}
td .remove{
	display:flex;
    white-space: nowrap;
    align-items: center;
    color:#ff5722;
}