:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --text-color: #ccc;
  --bg-color: #0B0A13 ;
  --bg-color2: #272629;

  --pop-title-bg:#666;
  --pop-title-color:#f0f0f0;
  --pop-content-color:#CCC;
  --pop-main-bg: #0C0B14;
  --pop-input-bg: #000;
  --header-color:#F8F8F8;
  --boder-color:#5F5F5F;
  --dlg-main-bg:#272629;
  --dlg-main-border:#3F3F3F;
  --dlg-title-color:#e8e8e8;
  --dlg-input-color:#e8e8e8;
}

/* 所有元素的滚动条 */
* {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #888 transparent; /* Firefox */
}

/* WebKit 浏览器 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* 统一页面的基础样式 */
body {
  margin: 0;
  padding: 0;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  color:var(--text-color);
  background-color: var(--bg-color);
}

div.notifybar{
  position:fixed;
  top:0px; 
  font-size:18px;
  display:block;
  height:27px;
  width:100%;
  line-height: 27px;
  background-color: red;
  color:white;
  text-align: center;
  z-index: 30;
}


div.logo{
  padding-top: 14px;
  padding-left: 26px;
}

div.logo>img{
  height:42px;
  width: auto;   
}
/* 菜单样式 */
nav {
  background-color:rgba(0,0,0,0.65); 
  height: 72PX;
  z-index: 20;
  position: fixed;
  top:0px;
  left:0px;
  display: flex;
  justify-content: space-between;
  width:100%;
  
  border-bottom:1px solid var(--header-color);
}

nav a{
  text-decoration: none;  
  color: #EEE; 
  font-size: 1rem;
  transition: background-color 0.3s; 
}

.nav-right{
  height:auto;
}
.nav-right>div{
  display:flex;
}
.nav-right>div:last-child{
  line-height:40px;
  text-align: center;
}

.nav-right>div>div:first-child, div.balancebox{
  flex:0 80px;
  background-color: #423D36 ;
  border-radius: 36px;
  height:36px;
  margin-right:35px;
  font-size:20px;
  font-weight: 600;
  color:var(--header-color);
  
}
div.balancebox{
  flex:0 200px;
  height: 45px;
  margin-top: 0px;
}

div.balancebox>a{
  height:45px;
  line-height: 45px;
  display: flex;
  align-items: center;
  padding-right:12px;
  padding-left:2px;
  font-size: 18px;
  color: var(--header-color);
  text-decoration: none;
}

.nav-right>div>div:first-child>a{
    display: flex;
    align-items: center;
    padding-right: 12px;
    padding-left: 2px;
    padding-top: 3px;
}
.nav-right>div>div:last-child{
  flex:1;
  text-align:right;
}

.nav-right>div>div:last-child div{
  height:38px;
  line-height: 36px;
  padding-right:25px;
  font-size:16px;
}
.nav-right>div>div:last-child div>a{
  font-size:16px;
}
.nav-right>div>div:last-child div:last-child{
}


.nav-right img{
  vertical-align: middle;
  width:30px;
  height:auto;

}
.nav-right  a{
  font-size:18px;
  color:var(--header-color);
}
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left:50px;
  display: flex; /* 使用flex布局让菜单项横向排列 */
  flex:1 ;
  
}

@media (max-width:1440px){
  .menu li {
    margin: 0 20px; /* 设置菜单项之间的间距 */
  }
}

@media (min-width:1440px){
  .menu li {
    margin: 0 20px; /* 设置菜单项之间的间距 */
  }
}

@media (min-width:1920px){
  .menu li {
    margin: 0 20px; /* 设置菜单项之间的间距 */
  }
}
.menu img{
  height:120px;
  width: auto;  
}
.menu a {
  text-decoration: none;
  color: var(--header-color);
  line-height: 72px;
  padding: 0px 15px;
  display: block;

  font-family: Arial, Arial;
  font-weight: 600;
  font-size: 20px;
  font-style: normal;
  text-transform: none;
}

.menu a:hover {
  background-color: #F75B02; /* 鼠标悬停时改变背景颜色 */
}


div.banner{
  width:100%;
  aspect-ratio: 1920/750; 
  /* background-image: url('/images/banner.jpg'); */
  background-size: cover;      /* 覆盖整个 div */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat; /* 不重复 */
  position:relative;
}

div.videobox {
    height: 75%;
    aspect-ratio: 440 / 225;
    margin: 0 auto;
    position: relative;
    top: 90px;
}

div.btn-img-line{
  width:100%;
  height:70px;
  background: transparent;
  box-sizing: border-box;
  padding-left: 32%;
  padding-right: 32%;
  padding-bottom:20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between ;
}

div.banner>div.innerPanel{
    width: 40%;
    margin: 100px auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: 1px solid #363636;
    background-color: #212121;
}

textarea.p{
  background: #1A1A1A;
  border-radius: 12px 12px 12px 12px;
  border: 2px dashed #888;
  width:70%;
  margin:30px 15%;
  outline: none;
  box-sizing: border-box;
  padding: 5px 5px;
  height:10rem;
  color:#dadada;
}

.tabPage{
  display:none;
}
.activePage{
  display:block;
}

div.btn-img-line>button{
  width:200px;
  font-size:20px;
  color:#f8f8f8;
  border-radius: 5px;
  background-color: #E39843;
}


#beforeLogin{
  width:139px;
  height:100%;
  line-height:70px;
}

#beforeLogin img{
  width:100px;
  height:auto;
}
#afterLogin{
  height: 100%;
  align-items: center;
}

div.content{
  padding-top:20px;
}
div.content2{
  padding-top:72px;
}

nav.under-notify{
  top:27px;
}
div.under-notify{
  padding-top:100px;
}

/* 页脚样式 */
.footer {
  width:100%;
  aspect-ratio: 1920/419; 
  background-image: url('/images/bg-bottom.png');
  background-size: cover;      /* 覆盖整个 div */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat; /* 不重复 */
  margin-top: auto; 
  display:flex;
  flex-direction: row;
  justify-content:space-around;
}

.popup0 {
  position: fixed;
  z-index: 1001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}
.popup-title-bar0 {
  height:50px;
  width:100%;
  background: rgba(0,0,0,0);
  box-sizing: border-box;
  padding:0px 20px;
}
.close-icon{
  text-align: center;
  cursor: pointer;
  font-size: 32px;
  display: block;
  width: 32px;
  height: 32px;
  margin-top: 8px;
  border: 1px solid gray;
  color: white;
  line-height: 32px;
  border-radius: 10px;
   background: #1B1A1D;
}

.close-icon:hover{
  transform: scale(1.01);   
}
.viewer-left0{
  border-radius: 15px 15px 15px 15px;
  border: 1px solid #3F3F3F;
  background-color: #1B1A1D;
  margin: 15px 15px;
  box-sizing: border-box;
  flex:1;
}
.viewer-right0{
  padding: 10px;
  margin:15px 15px 15px 5px;
  border-radius: 15px 15px 0px 15px;
  background-color: #1B1A1D;
  border: 1px solid #3F3F3F;
  width:35%;
  overflow-y: auto;
  overflow-x: hidden;
}
textarea.comment{
  background: #131214;
  border-radius: 12px 12px 12px 12px;
  border: 1px solid #3F3F3F;
  width:100%;
  outline: none;
  box-sizing: border-box;
  padding: 0px 5px;
  height:2.4rem;
  color:var(--text-color)
}

/* 容器布局 */
.container {
  display: flex; /* 使用flex布局 */
  /* min-height: calc(100vh - 50px); */
}

.fluit-container{
  border-right:1px solid #5F5F5F;
  border-left:1px solid #5F5F5F;
  width:70%;
  min-width: 940px;
  padding:20px 20px;
  margin: 0px auto;
  display:flex;
  flex-direction: column;
}

/* 左侧 */
.sidebar {
  padding: 25px;
  padding-bottom:2px;
  display:flex;
  flex-direction: column;
}

.sidebar-content {
  width:400px;
  background-color: #272629 ;
  border-radius: 15px; 
  padding: 20px 15px;
  height: calc(100vh - 250px);
  overflow: hidden;
}

.btn-line{
  background-color: #181818 ;
  margin: auto;
  height:58px;
  border-radius: 15px 15px 15px 15px;
  padding:7px 3px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
}
.btn1{
  height: 44px;
  background: rgba(185,111,96,0.2);
  border-radius: 10px 10px 10px 10px;
  border: none;  
  font-weight: 400;
  font-size: 16px;
  color: #B7B7B7;;
  font-style: normal; 
  padding: 0px 12px;
}

.list-title{
  display: block;
  margin-top:10px;
  line-height: 50px;
  font-weight: 400;
  font-size: 24px;
  color: #E8E8E8;
  font-style: normal;
}

.task-list{
  overflow-y: auto;
  border-top:1px solid rgba(200,200,200,0.4);
  padding:5px 5px;
    box-sizing: border-box;
  height:calc(100vh - 350px);
}

.pagebar>input{
  width: 80px;
  height: 36px;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #5E5E5E;
  text-align: center;
  color: #CCC;
  background-color: #1B1A1D ;
  font-size:18px;
  font-weight: 400;
  padding-top: 4px;
}

.pagebar>input:focus {
  outline: none;  
  box-shadow: none;  
  border: 1px solid #5E5E5E;
}
.pagebar>input::placeholder{
  color: #CCC;
}

.pagebar{
  text-align: center;
  line-height: 36px;
  padding: 10px 10px;
  display: flex;
  align-items: center; /* 垂直居中 */
  margin-top: 10px;
}

.pagebar>span{
  cursor:pointer;
  display: block;
  height:42px;
  width: 36px;
}
.pagebar>span>img{
  height:40px;
  width: 36px;
}

#points-history{
  flex:1;
}


.list-item{
  padding:10px;
  margin-top:20px;
  border-radius: 12px 12px 12px 12px;
  border: 1px solid #5F5F5F;
}


.current {
  border: 1px solid #b0afaf;
}

.list-item:focus {
  border: 1px solid #b0afaf;
}


textarea.prompt{
  padding: 5px;
  width: calc(100% - 30px);
  height: 6rem;
  border-radius: 15px; 
  margin:5px;
  background: #1B1A1D;
  color:#EEE;
  font-size:16px;
}
/* 右侧主内容样式 */
.main-content {
  flex: 1; /* 主内容区域占满剩余空间 */
  padding: 10px;
  position: relative;
}



/* 弹出内容样式 */
.popup {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 880px;
  position: fixed;
  z-index: 1010;
  background: var(--dlg-main-bg);
  border-radius: 15px 15px 15px 15px;
  border: 1px solid var(--dlg-main-border);
  height:75%;
  display:flex;
  flex-direction: column;
}



.popup-title-bar {
  font-size:1rem;
  color:var(--dlg-title-color);
  background: transparent;
  line-height:50px;
  height:50px;
  padding:0 10px;
  width: 100%;
  box-sizing: border-box;
}
.popup-title-bar >.left{
  font-size:24px;
}

.popup-content{
  padding:10px;
  box-sizing: border-box;
  width:100%;
  display:flex;
  flex:1;
}

.popup-left{
  flex:1;
}

.popup-right{
  width: 300px; 
  padding-left:10px;
  border-left:2px solid #000;
  padding-bottom: 0;
  margin-bottom: 30px;
}

span.tip{
  font-family: Arial, Arial;
  font-weight: 400;
  font-size: 16px;
  color: #B7B7B7;
  line-height: 20px;
}

.module-container{
  width:100%;
  height: calc(100vh - 115px);
  background-color: var(--pop-main-bg);
  display:flex;
}

/* .module-container .viewer-left {
  flex: 1; 
  height: 100%; 
}

.module-container .viewer-right {
  width: 260px; 
  border-left:1px solid rgb(120,120,120);
} */



/* 弹出内容样式 */
.popup-global{
  position: fixed;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color:var(--pop-content-color);
}

.admin-dlg{
  color:#333;
}

.flex-row-container{
  display: flex;
  justify-content: space-between;
}



textarea {
  outline: none;
  border-color: #d1d2d7; /* 焦点时边框变绿色 */
}

textarea::placeholder {
  color: #ddd;       
}

textarea.normal::placeholder {
  color: #333;     
  
}

/* 基本按钮样式 */

button.btn0{
  background: #D7AF5B;
  border-radius: 10px 10px 10px 10px;
  color:#131214 ;
  font-weight: bold;
  font-size: 20px;
  padding: 5px 10px;
  line-height:30px;
  border: none;  
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;  /* 动画过渡 */
}


/* 鼠标悬停时的按钮样式 */
/* button:hover {
    transform: scale(1.02);      
} */

/* 鼠标按下时的按钮样式 */
/* button:active {
    transform: scale(0.99);    
} */

/* 获取焦点时的按钮样式 */
/* button:focus {
    outline: none;             
} */

form{
  padding:10px;
}

.row-layout{
  display:flex;
  padding: 10px 10px 10px 10px;
  justify-content: space-between; /* 子元素之间有间距 */
}

.row-layout .left{
  flex:1;
}

.row-layout .right{
  flex:0 0 auto; 
}


.char-limit{
  line-height: 30px;
}






.task-time{
  line-height: 1.6rem;
}

.task-content{
  display: flex;
  flex-direction: row;

}
.task-content img{
  width:31%;
  margin-right: 5px;
}


div.default{
  height:100%;
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
}

.refined-box{
  margin-top:20px;
}

.title{
  line-height: 30px;
}

.draft-list{
  border-radius: 15px;
  padding:10px;
  padding-left: 0px;
  padding-top: 0px;
  border:1px solid var(--boder-color);
  background-color: var(--bg-color2);
}
.refined-list{
  border: 1px solid var(--boder-color);
  background-color: var(--bg-color2);
  padding:10px;
  padding-left: 0px;
  padding-top: 0px;
}


.draft-container {
  position: relative;
  display: inline-block; 
  margin-left:10px;
  margin-top:10px;
  width:140px;
  height:140px;
  border-radius: 12px; 
  background-color: rgb(30,30,30);

}

.draft-container img {
  display: block; 
  width:140px;
  height:140px;
}

/* 悬浮文字的样式 */
.progress {
  position: absolute;   
  top: 10px;
  right: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0px 0px 0px 10px;
  border-radius: 3px;
  pointer-events: none;
}




.btn-box{
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
  height: 100px;           /* 设置容器高度 */
}

#btn-refine{
  height: 40px;
  width:80px;
}

.panel{
  width:100%;
  height:100%;

}

div.form-row{
  line-height: 30px;
  padding: 10px 10px ;
  display: flex;
  position:relative;
}

div.higher-row{
  line-height: 30px;
  padding: 12px 10px ;
}

div.form-label-row{
  height: 20px;
  line-height: 20px;
  font-size:16px;
  padding: 5px 10px 0px 10px;
  display: flex;
}

span.label{
  color:#EEE;
  font-size:20px;
}

input.form-control,textarea.form-control{
  background-color: #f9f9f94e;
  color:#EEE;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  padding: 0px 8px;
  height:30px;
  flex:1;
}
textarea.form-control{
  padding-top:5px;
}

span.inputlabel{
  display:inline-block;
  width:180px;
  text-align: right;
  padding-right: 10px;
}

input.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(108, 92, 231, 0.3);
}

input.max-width{
  width:100%;
}


span.option0{
  background: #363636;
  border-radius: 8px;
  text-align: center;
  color:#DEDEDE;
  flex:1 ;
  cursor:pointer;
  margin-right:2px;
  margin-left:2px;
  line-height: 40px;
  font-size:16px;
}

span.option0:hover{
  color: #FFFFFF;
  background: #494949;
}

span.currentOption0{
  color: #FFFFFF;
  background: #494949;
}

span.unit{
  color:#EEE;
  margin-left: 5px;
  text-align: left;
}
span.option{
  background: #565050;
  border-radius: 8px;
  text-align: center;
  color:#EEE;
  flex:1 ;
  cursor:pointer;
  margin-right:2px;
  margin-left:2px;
  line-height: 40px;
  font-size:16px;
}
span.option:hover{
  color: #FB5D1E;
  background: #0C0B14;
}

span.currentOption{
  color: #FB5D1E;
  background: #0C0B14;
}

div.button-line{
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 10px 20px;
}

#texture-prompt{
  width: 100%;
  background-color: #1B1A1D;
  color: #EEE;
  height: 6rem;
  border-radius: 15px;
  outline: none;
  border-color: #d1d2d7;
  resize: none;
}
#retexture-prompt {
    width: 100%;
    background-color: #1B1A1D;
    color: #EEE;
    height: 6rem;
    border-radius: 15px;
    outline: none;
    border-color: #d1d2d7;
    resize: none;
}
#charCount{
  color: #eee;
  display: block;
  width: 100%;
  text-align: right;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none; /* 默认隐藏 */
}
.modal-open {
  display: block;
}


.toast{
  position : fixed;
  top: 20px;
  right: 20px;
  padding : 10px 20px;
  background : #dedcdc;
  border-radius : 4px;
  z-index: 9999;
  color:white;

  display: flex;
  align-items: center;
  min-width: 200px;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

 /* 动画 */
@keyframes fadein {
  from { opacity: 0;  transform: translateY(-10px); }
  to   { opacity: 1;  transform: translateY(0);}
}

@keyframes fadeout {
  from { opacity: 1;  transform: translateY(0);}
  to   { opacity: 0;  transform: translateY(-10px);}
}

.success{
  background-color: #4caf50; 
}
.warn{
  background-color: #ff9800;
}

.error{
  background-color: #f44336;
}




.solid{
  width:60px;
}
#profile{
  margin-top: 50px;
}
#profile>div{
  height:30px;
  line-height: 30px;
  font-weight: bold;
  font-size: 18px;
  color: #E8E8E8;
}
#profile>div>img{
 width:50px;
 height:50px;
 border-radius: 50px;
 vertical-align: middle;
}

table.normal{
  width:90%;
  margin:10px auto;
  border-collapse: collapse; 
}

td, th {
  border-bottom: 1px solid #5F5F5F;; 
  padding: 8px;
  font-size:16px;
}



#points-history table th:nth-child(1) {
  text-align: left;
}
#points-history table th:nth-child(2) {
  text-align: left;
}
#points-history table td:nth-child(3) {
  text-align: center;
}
#points-history table td:nth-child(4) {
  text-align: center;
}

#invite_tb  th:nth-child(1) {
  text-align: left;
}
#invite_tb  th:nth-child(2) {
  text-align: left;
}
#invite_tb  th:nth-child(3) {
  text-align: left;
}
#invite_tb  td:nth-child(5) {
  text-align: center;
}
#invite_tb  td:nth-child(6) {
  text-align: center;
}

.vertical-menu {
  width: 200px;
  border: 1px solid #ccc;
}

.vertical-menu a {
  background-color: #f9f9f9;
  color: black;
  display: block;
  padding: 12px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.vertical-menu a:hover {
  background-color: #ddd;
}

.vertical-menu a.active {
  background-color: #04AA6D;
  color: white;
}

#mv-bottom{
  flex:0 0 50px;line-height:50px;color:white; display:flex; justify-content: space-between;
  font-size:18px;
}
#mv-bottom div:nth-child(1){
  text-align:right;padding-left:10px;padding-right:10px;
}
#mv-bottom div:nth-child(2){
 padding-left:10px;
 padding-right:30px;
 font-size:18px;
}
#mv-bottom a{
  color: white;
}
#mv-bottom select{
  height: 30px;
  font-size: 18px;
  background-color: #1B1A1D;
  color:white;
}

.seed::placeholder{
  color:rgba(249,249,249,0.6);
}

.container-2col{
  display:flex;
  flex-direction: row;
  min-height: calc(100vh - 140px);
  background-color: #FFF;
  border-right:1px solid #EEE;
  border-left:1px solid #EEE;
  padding:20px 20px;
}

#loginForm input , #registerForm input{
  height:42px;
  background: #1B1A1D;
  border:1px solid #1B1A1D;
  color:var(--dlg-input-color);
  outline: 1px solid transparent;
  border-radius: 8px 8px 8px 8px;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 16px;
}

#loginForm input:focus, #registerForm input:focus{
  border:1px solid var(--dlg-main-border);
  outline: 1px solid var(--dlg-main-border);
}


div.errBox{
  color:red;
  position:absolute;
  top: 36px;
  padding-left: 5px;
}

#loginForm .errBox, #registerForm .errBox{
  top: 58px;
  padding-left: 42px;
}


#loginForm div.higher-row , #registerForm div.higher-row{
  line-height: 45px;
  padding: 16px 10px;
}


#loginForm img{
  width:32px;
  height:32px;
  margin-top: 4px;
}
#loginForm , #registerForm{
  width:90%;
  margin:0 auto;
}

.left-part{
  width: 70%;
  padding: 10px;
}

.right-part{
  width: 30%;
  padding: 10px;
}

#tb_crawltarget {
  width: 100%;
  table-layout: fixed;  
}
#tb_crawltarget td,
#tb_crawltarget th{
  padding:5px;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

}


#tb_crawltarget th:nth-child(2),
#tb_crawltarget td:nth-child(2) { 
  text-align: center;
}

#tb_crawltarget th:nth-child(3),
#tb_crawltarget td:nth-child(3) { 
  text-align: center;
}
#tb_crawltarget th:nth-child(4),
#tb_crawltarget td:nth-child(4) { 
  text-align: center;
}
#tb_crawltarget th:nth-child(5),
#tb_crawltarget td:nth-child(5) { 
  text-align: center;
}

#tb_crawlresult{
  width:80%;
  margin:10px auto;
}
#tb_crawlresult td, #tb_crawlresult th {
  padding: 3px;
  height: 30px;
  line-height: 30px;
}

#tb_crawlresult th:nth-child(1),
#tb_crawlresult td:nth-child(1) { 
  text-align: center;
}

#tb_crawlresult th:nth-child(2),
#tb_crawlresult td:nth-child(2) { 
  text-align: center;
}

div.drop-area {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1px 8px;
  text-align: center;
  width:50%;
  color: #333
}
#img-prompt-area {
  text-align: center;
  width:80%;
  margin:10px auto;
}

#drop-area {
  border: 2px dashed #888;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: background 0.2s;
  width:80%;
  margin:10px auto;
  color: rgba(255, 255, 255, 0.8);
}

#drop-area.highlight {
  background: #f0f0f0;
  border-color: #999;
}

#upload-img-listwrapper{
  height:192px;
  width:calc(100% - 20px);
  overflow: hidden;
  padding:10px;
}

#upload-img-list{
  width:100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
#upload-img-list div{
  position:relative;
  width:30%;
  padding-right: 8px;
}
#upload-img-list img{
  width:100%;
  border-radius: 10px;
  border:1px solid rgba(255,255,255,0.6);
}
#generate-img-listwrapper{
  width:calc(100% - 20px);
  overflow: hidden;
  padding:10px;
}

#generate-img-list{
  width:100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
#generate-img-list div{
  position:relative;
  width:30%;
  padding-right: 8px;
}
#generate-img-list img{
  max-width: 100%;
  max-height: 160px;
  border-radius: 10px;
  border:1px solid rgba(255,255,255,0.6);
}
svg.delete-icon{
  color:rgba(255,255,255,0.7);
  position:absolute;
  right:5px;
  top:5px;
}
svg.delete-icon:hover{
  color:rgba(255,255,255,1);
}




#share_tb  th:nth-child(1) {
  text-align: left;
}
#share_tb  th:nth-child(2) {
  text-align: left;
}
#share_tb  th:nth-child(3) {
  text-align: center;
}
#share_tb  td:nth-child(3) {
  text-align: center;
}
#share_tb  td:nth-child(4) {
  text-align: center;
}
#share_tb  td:nth-child(5) {
  text-align: center;
}

#share_tb td img{
  max-height:32px;
}

#module_tb td img {
  max-height: 32px;
}

#shareViewer{
  z-index: 1020;
}

#shareViewer form{
  background-color: rgb(30, 30, 30);
}

#thumbnail-list{
  padding: 0px;
  max-height: 64px;
}
#thumbnail-list img{  
  max-height:64px;
  margin-left:10px;
}
#originImg-list{
  padding: 0px;
  max-height: 64px;
}
#originImg-list img{
  max-height:64px;
  margin-left:10px;
}

#module-addr-box{
  line-height: 1rem;
  padding:5px 10px;
  display: inline-block;
  flex:1;
  overflow: hidden;
  width:50%;
}

.share-list-panel{
  display: flex;
  flex-wrap: wrap;  
  gap: 1.2%; 
  box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  background-color: #0C0B14;
}


/* @media screen(min-width) {
  .share-list-panel{
    gap:0.8%;
    padding-left: 2%;
    padding-right: 2%;
  }
} */

.share-box{
  width: 19%; 
  aspect-ratio: 1/1;
  position:relative;
  color: var(--text-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 平滑过渡效果 */
  box-shadow: 0 2px 4px rgba(241, 198, 6, 0.1); /* 初始阴影 */
}

@media (max-width:1440px){
  .share-box {
    width: 24%; 
  }
}
@media (min-width:1440px){
  .share-box {
    width: 19%; 
  }
}

@media (min-width:1920px){
  .share-box {
    width: 15.64%;
  }
}

.share-box:hover{
  transform: translateY(-10px); /* 向上移动10像素 */
  box-shadow: 0 4px 8px rgba(241, 198, 6, 0.8); /* 悬停时阴影加深 */
}

.share-box>img{
  width: 100%;
  height:auto;
  max-height: 100%;
  margin: 0px auto;
}

.share-box .share-title{
  position: absolute;
  top: 5px;
  width: 100%;
  text-align: center;
}

.share-bottom{
  display: flex;
  padding: 0px 10px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
}

.share-module-bottom{
  display: flex;
  padding: 0px 20px;
  height: 40px;
}

.share-module-bottom .share-icon-box{
  cursor: pointer;
}
.share-bottom .share-icon-box{
  cursor:pointer;
}
.share-bottom >img{
  width:24px;
  height:24px;
  border-radius: 24px;
  flex:0;
}
.share-bottom .share-author{
  flex:1;  
  line-height: 40px;
  padding-left:5px;
}
.share-icon-box{
  flex:0;
  width:100px;
  display:flex;
  align-items: center;
  gap: 5px;
  margin-left: 15px;
}

.share-icon-box > span:nth-child(1){
  font-size:24px;
}
.share-icon-box > span:nth-child(2){
  font-size:14px;
  line-height: 24px;;
}

.section{
  padding:5px 10px;
  margin-top:10px;
  font-size:16px;
  color:white;
}
.wrapper{
  background: #272629;
  border-radius: 12px 12px 12px 12px;
  margin:5px;
  padding:0px 5px 5px 5px;
  box-sizing: border-box;
}
.author-section{
  display: flex;
  align-items: center;
}
.title-section{
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  text-transform: none;
}
.section-title{
  font-size:16px;
  font-weight: 400;
  line-height:30px;
  font-family: PingFang SC, PingFang SC;
  color:#B7B7B7;
}
.image-section>img{
  max-width:60px;
  max-height:60px;
  margin-top:8px;
}
img.avatar{
  width: 36px;
  height: 36px;
  border-radius: 36px;
}


.share-module-right{
  padding:10px;
}
.comment-list-section{
  margin-top: 20px;
}
.comment-box{
  display:flex;
  flex-direction: row;
  border-bottom:1px solid gray;
  padding-bottom:10px;
  padding-top:10px;
  font-size:12px;
}
.comment-box>img{
  width: 30px;
  height:30px;
  border-radius: 30px;
  flex:0 ;
  margin-top:5px;
}
.comment-box>div{
  flex:1;
}
.comment-box>div>div:nth-child(1){
  height: 30px;
  line-height: 30px;
  padding:0px 10px;
}
.comment-box>div>div:nth-child(1)>span:nth-child(2){
  margin-left:30px;
  color:#B7B7B7 ;
}
.comment-box>div>div:nth-child(2){
  padding:5px 10px;
}

.more-box{
  display:flex;
  flex-direction: row;
  border-bottom:1px solid #666;
  padding-bottom:10px;
  padding-top:10px;
}
.more-box:last-child{
  border-bottom: 0px;
}
.more-box>img{
  width: 112px;
  height:112px;
  flex:0 ;
}
.more-box>div{
  flex:1;
  display:flex;
  flex-direction: column;
}
.more-box>div>div{
  height: 30px;
  line-height: 30px;
  padding:0px 20px;
  flex:0;
}
.more-box>div>div:nth-child(3){
  flex:1;
}
.more-box>div>div:nth-child(4){
  display: flex;
  flex-direction: row;
}

input.normal ,textarea.normal{
  color:#333;
  background-color: white;
}

.tabs { max-width: 1024px; }
.tablist {
  display:flex; gap:8px; border-bottom:1px solid var(--border); padding-bottom:8px; overflow-x:auto;
}
.tab {
  appearance:none; border:none; background:transparent; padding:10px 14px; border-radius:10px 10px 0 0;
  color:var(--muted); cursor:pointer; font-weight:600;
}
.tab[aria-selected="true"] {
    color: #FB5D1E;
    background: #0C0B14;border:1px solid var(--border); border-bottom-color:#fff;
}
.panel {
  border:1px solid var(--border); border-radius:0 12px 12px 12px; padding:6px; margin-top:-1px;box-sizing: border-box;
}
.hidden { display:none; }
/* 可选：聚焦可见性 */
.tab:focus-visible { outline:2px solid var(--primary); outline-offset:2px; }

div.hide, .hide{
  display: none;
}


#articlebox p{
  line-height:24px;
}

#articlebox li{
  padding-top:10px;
}

a.maillink{
  color:white;
}

.footer a{
  color:white;
  text-decoration: none;
}
ul.info-list{
  list-style-type: none;
  padding-left: 0px;
  font-size:16px;
}

ul.info-list>li{
  line-height:30px;
}

.footer-left{
  flex: 0 0 auto; 
  width: 200px;
}

.footer-right{
  flex: 0 0 auto; 
  width: 200px;
}


