/**
 * @ Author: dengpan_cui
 * @ Create Time: 2023-07-13 11:19:19
 * @ Modified by: dengpan_cui
 * @ Modified time: 2023-11-22 18:43:39
 * @ Description: mail: dengpan_cui@kingdee.com
 */

/* css初始化设置 */
html {overflow-y:scroll;}

body {margin:0; padding:0; font:12px;background:#ffffff;}

div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p{padding:0; margin:0;}
div,dl,dt,dd,ul,ol,li,pre,form,fieldset,input,textarea,blockquote,p{font-size: 13px;}

table,td,tr,th{font-size:12px;}

li{list-style-type:none;}

img{vertical-align:top;border:0;}

ol,ul {list-style:none;}

h1,h2, h3,h4,h5,h6 {color:#000;font-weight:normal;}

address,cite,code,em,th {font-weight:normal; font-style:normal;}
::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 2px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 2px;
  }
  
/* ######################通用样式###################### */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-v-center {
    display: flex;
    align-items: center;
}
.padding-h-16 {
    padding: 0 16px;
}
/* ######################id选择###################### */
#list-row-df {
    display: none;
}

#list-row-icon-folder {
    display: none;
}

#opt-back {
    display: none;
    cursor: pointer;
    color: #2a71ec;
}
#opt-back::after {
    padding: 0 10px;
    color: #888;
    content: "|";
}

#opt-all {
    color:  #2a71ec;
    cursor: pointer;
}

[id^=opt-path-] {
    color: #000;
    cursor: pointer;
}

[id^=opt-path-]::before {
    float: left;
    padding: 0 10px;
    color: #888;
    content: "/";
}


/* ######################结构样式###################### */
header {
    height: 80px;
    background-color: #ffffff;
    font-size: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
	box-sizing: border-box;
}

main {
    width: 90%;
    height: calc(100% - 80px);
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

/* ######################基本界面样式###################### */
.loading-x-wrap {
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   left: 0;
   top: 0;
   width: 100vw;
   height: 100vh;
   z-index: 199px;
   background-color: rgba(0, 0, 0, 0.5);
}

.content {
    background-color: #f1f2f3;
    height: 100vh;
    width: 100vw;
}

.logo {
    background-color: #2a71ec;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user {
    height: 80px;
    background: linear-gradient(-45deg,#ffeae0 0%,#fff 15%);
    padding: 0 16px;
    border-radius: 3px;
    position: relative;
}

.user > .logo {
    background-color: #EBEBEB;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-info {
    padding: 5px 0;
    color: #888;
}

.user-info h5 {
    font-weight: bolder;
    margin-bottom: 5px;
}

.user-r {
    position: absolute;
    right: 32px;
    color: #f25525;
    font-size: 16px;
}

.operation {
    height: 64px;
    background-color: #FFF;
    padding: 0 16px;
    border-radius: 3px;
    margin: 16px 0;
}

.list {
    flex: 1;
    background-color: #FFF;
    border-radius: 3px;
    padding: 16px;
    overflow: auto;
}

.list-header {
    background-color: #f1f2f3;
    height: 40px;
    border-radius: 3px;
    padding: 0 20px;
    color: #888;
    box-sizing: border-box;
}

.list-body {
    height: calc(100% - 40px);
    overflow-y: auto;
    box-sizing: border-box;
    color: #585858
}

.list-row {
    height: 50px;
    width: 100%;
    border-radius: 3px;
    padding: 0 20px;
    border: 1px solid rgba(216, 216, 216, 0.5);
    margin-top: 8px;
    box-sizing: border-box;
}

.list-row:hover {
    border-color: #2a71ec;
    background-color: #f5f9ff;
}

.list-row-icon {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}


.list-row-icon-box {
    width: 60px;
    align-items: center;
}

.list-row-icon-download {
    height: 100%;
    cursor: pointer;
}

.list-row-icon-download svg {
    height: 20px;
    width: 20px;
    transform: scale(1);
}

.list-row-icon-copy {
    height: 100%;
    margin-right: 10px;
    cursor: pointer;
}

.list-row-icon-copy svg {
    height: 20px;
    width: 20px;
    transform: scale(1);
}

.list-row-item {
    width: calc((100% - 360px) / 2);
}

.list-row-item-short {
    width: 150px
}
.recommended::after {
    content: "推荐";
    color: white;
    background-color: red;
    padding: 1px 2px;
    font-size: 8px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    border-radius: 1px;
}

.user-info a img {
  height: 20px;
  width: 20px;
  margin-right: 3px;
}

.user-info div{
	margin-top: 3px;
}

.user-info div span{

}
