/*选项目录*/
#options-list {
  position: fixed;
  right: 0;
  top: 150px;
  background: #F6F6F3;
  padding: 16px;
  width: 100px;
}
#options-list h3 {
  margin: 0;
}
#options-list ul {
  padding: 0;
  margin-left: 20px;
}
#options-list ul a {
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  #options-list {
    display: none;
  }
}

/*禁止页面滚动*/
.no-scroll {
  overflow: hidden;
}

/*友情链接编辑器*/
#link-editor-box {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}
#link-editor-box #link-editor {
  width: 900px;
  height: 500px;
  background: #F6F6F3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}
/*小屏幕设备的编辑器*/
@media screen and (max-width: 899px)  {
  #link-editor-box #link-editor {
    width: 100%;
    height: 100%;
  }
}

#link-editor-box #link-editor-title {
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  background: #000000;
  margin: 0;
}
#link-editor-box #link-list {
  height: 414px;
  width: 100%;
  overflow-y: auto;
}
/*编辑器的表格*/
#link-editor-box table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  word-break: break-word;
}
#link-editor-box table th {
  background-color: #447B99;
  color: white;
  text-align: left;
  padding: 12px;
}
#link-editor-box table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  min-width: 60px;
  word-wrap: break-word;
}
#link-editor-box table td input {
  width: 100%;
}
#link-editor-box table tr:nth-child(odd) {
  background-color: #f2f2f2;
}
#link-editor-box table tr:nth-child(even) {
  background-color: #ffffff;
}
#link-editor-box table tr:hover {
  background-color: #ddd;
}
/*编辑器的底部按钮区域*/
#link-editor-box .dialog-actions {
  height: 50px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}
#link-editor-box .dialog-actions .close-btn {
  margin-right: 8px;
}