@charset "UTF-8";
@font-face{ font-family:'Alp Ekran';src:url('xet.eot');src:url('xet.eot?#iefix') format('embedded-opentype'),url('xet.woff') format('woff'),url('xet.ttf') format('truetype'),url('../xet.svg#ALPEKRANRegular') format('svg');font-weight:normal;font-style:normal}
*{font-family:'Alp Ekran';}    
    
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  direction: rtl;
}

body {
  font-family:'Alp Ekran', "Microsoft Yahei", sans-serif;
  background: #f5f7fa;
  color: #333;
  padding: 20px;
  line-height: 1.6;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

h1, h2, h3 {
  margin-bottom: 16px;
  color: #222;
  font-weight: normal;
}

h2 {
  font-size: 20px;
  border-left: 4px solid #1677ff;
  padding-left: 10px;
}

h3 {
  font-size: 16px;
  margin-top: 24px;
}

a {
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  background: #1677ff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-right: 6px;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-edit {
  background: #00b42a;
}

.btn-del {
  background: #ff4d4f;
}

.btn-back {
  background: #666;
}

input,
textarea

{
    width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}
select{
    width: 40%;
    padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #1677ff;
}

.form-box {
  margin-bottom: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 12px;
}

table th,
table td {
  padding: 5px;
  text-align: right;
  border: 1px solid #eee;
  font-size: 12px;
}

table th {
  background: #fafafa;
  font-weight: normal;
  color: #555;
}

table tr:hover {
  background: #f9fbfd;
}

.tip {
  color: #666;
  font-size: 13px;
  margin-bottom: 12px;
}

.error {
  color: #ff4d4f;
  margin-bottom: 12px;
}

hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 24px 0;
}