@charset "utf-8";
@media screen and (min-width: 1080px) { 
    /*主页内容 - index_centent*/
    .index_centent{
    	width:1000px;
    	height:100%;
    	margin:0 auto;
    }
}
.draw_article{width:96%; margin:2px auto; background:#323232; padding:1%;}
.draw_article .draw_header h2{color:#fff; margin:0; padding:0; font-size:17px;}
.draw_article .draw_header{width:100%;}
.draw_article .draw_header .select_mode, .draw_article .draw_header .select_mode_type{font-size:16px; color:#000; margin-top:10px;}
.draw_article .draw_header span{display:inline-block; height:26px; line-height:26px; margin-top:8px; border:1px solid #757575; padding:1px 10px; color:#858585; border-radius:2px; font-size:16px;}
.draw_article .draw_header .this_mode, .draw_article .draw_header .this_mode_type, .draw_article .draw_header .this_mode_style{border:1px solid #509e8d; color:#509e8d;}
.draw_article .draw_header .this_type{border:1px solid #509e8d; color:#509e8d;}
.draw_article .draw_header .this_size{border:1px solid #509e8d; color:#509e8d;}
.draw_article .draw_header .divide{border-bottom:1px solid #ccc; margin:16px 0; opacity:0.2;}
.draw_article .draw_header .imagine{color:#c1c1c1;}
.draw_article .draw_header .prompt{border:1px solid #ccc; border-radius:4px; background:#323232; width:98%; margin-top:8px; color:#fff;}
.draw_article .draw_header .noPrompt{border:1px solid #ccc; border-radius:4px; background:#323232; width:98%; margin-top:8px; color:#fff; opacity:0.8; display:none;}
.draw_article .draw_header .list_size span{height:100%; margin:6px 0; padding-top:10px; border-radius:6px;}
.draw_article .draw_header .list_size span section{width:100%; text-align:center;}
.draw_article .draw_header span:hover{border:1px solid green; color:#000;}
.draw_article .draw_header .submit{width:380px; margin-top:10px; height:40px; line-height:40px; font-size:16px; background-color:#35c09f; border-radius:6px; color:#fff;}
.draw_article .draw_header .submit:hover{border:1px solid #000; color:#000;}

@media screen and (min-width:0) and (max-width:600px){
    .draw_article .draw_header .submit{width:100%;}
    body{width:100%;}
}



.jumbotron {
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  border: 2px dashed #ccc;
      border-radius: 10px !important;
          background: white;
  margin-top:26px;
}
.jumbotron .btn {
  padding: 14px 24px;
  font-size: 21px;
}

.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#f5f5f5}.jumbotron h1,.jumbotron .h1{color:#444444}.jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.jumbotron>hr{border-top-color:#dcdcdc}.container .jumbotron,.container-fluid .jumbotron{border-radius:3px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:59px}}


.pic_preview {
    width: 100px;
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.pic_preview .pic_mask {
    display:none;
    height: 100%;
    width: 100%;
    line-height: 100px;
    text-align: center;
    background: rgba(0,0,0,.7);
    font-size: 13px;
    color: white;
}
.pic_preview .danger {
    color: #cb171e;
}

.big_go,.big_del{padding:1px 12px; margin-top:3px;}



.setup_auto{
    background-color: #fff;
    width:390px;
    position: fixed; /* 定位为fixed */
    top: 276px; /* 距顶部50% */
    left: 50%; /* 距左边50% */
    transform: translate(-50%, -50%);
    padding: 2%;
    display: none;
    opacity:1;
}

@media screen and (min-width:0) and (max-width:600px){
    .setup_auto{
        width:92%;
        top: 300px; /* 距顶部50% */
        padding-top: 12px;
    }
}

.aside_h2{padding:6px;}
.aside_h2 h2{margin-top:30px;}



.big_go {
  /* 基础尺寸与字体 */
  padding: 2px 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;

  /* 渐变背景，增加立体感 */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 3px;          /* 圆润的胶囊形状 */
  cursor: pointer;

  /* 柔和阴影 */
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);

  /* 过渡动画，让交互更顺滑 */
  transition: all 0.3s ease;

  /* 禁止选中文字（配合你的 onselectstart） */
  user-select: none;
}

/* 鼠标悬停效果 */
.big_go:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 点击时的反馈 */
.big_go:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.4);
}



.big_del {
  /* 基础尺寸与字体 */
  padding: 2px 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;

  /* 红色渐变背景 */
  background: linear-gradient(135deg, #f5576c 0%, #e74c3c 100%);
  border: none;
  border-radius: 3px;
  cursor: pointer;

  /* 柔和阴影 */
  box-shadow: 0 4px 10px rgba(245, 87, 108, 0.4);

  /* 过渡动画 */
  transition: all 0.3s ease;

  /* 禁止选中文字 */
  user-select: none;
}

.big_del:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 87, 108, 0.6);
  background: linear-gradient(135deg, #e74c3c 0%, #f5576c 100%);
}

.big_del:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(245, 87, 108, 0.4);
}



/* 基础选择框美化 */
.setup_auto select {
  /* 外观重置 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  /* 尺寸与内边距 */
  padding: 3px 9px 2px 4px;
  font-size: 15px;
  line-height: 1.4;
  
  /* 字体与颜色 */
  color: #2c3e50;
  background-color: #ffffff;
  
  /* 边框与圆角 */
  border: 1.5px solid #d0d7de;
  border-radius: 6px;
  
  /* 阴影与过渡 */
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  
  /* 鼠标样式 */
  cursor: pointer;
  
  /* 自定义下拉箭头（使用背景图） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.825a.5.5 0 0 1-.354-.146l-4-4a.5.5 0 0 1 .708-.708L6 7.617l3.646-3.646a.5.5 0 0 1 .708.708l-4 4A.5.5 0 0 1 6 8.825z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

/* 悬停状态 */
.setup_auto select:hover {
  border-color: #a0aab4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* 聚焦状态 */
.setup_auto select:focus {
  outline: none;
  border-color: #4f8cff;
  box-shadow: 0 0 0 3px rgba(79,140,255,0.15);
}

/* 针对 IE 的降级处理（移除自定义箭头） */
.setup_auto select::-ms-expand {
  display: none;
}

/* 可选：针对 option 的简单美化（部分浏览器支持有限） */
.setup_auto option {
  padding: 8px;
  background: #fff;
  color: #2c3e50;
}