#main {
  /* padding: 20px 25px 30px; */
  /* text-align: center; */
}
form{
  margin: 0;
  padding: 0;
}
ul,li{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.t-content{
  /* display: inline-block; */
  margin: 0 auto;
  text-align: left;
}
.t-content ul li{
  margin-bottom: 10px;
}
.t-content .t-label{
  display: block;
  line-height: 1.7em;
}
.t-content .t-label.required::after{
  display: inline-block;
  content: '*';
  /* margin-left: 3px; */
  color: red;
  font-family: serif;
}
.t-content .t-field{
  display: block;
}
.t-content input[type='text'],
.t-content select,
.t-content textarea{
  width: 100%;
  padding: 4px 7px;
  font-size: 14px;
  /* line-height: 1.5em; */
  line-height: 22px;
  border: solid 1px darkgray;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
}
.t-content input[type='text']:focus,
.t-content select:focus,
.t-content textarea:focus{
  border-color: #696969;
}
.t-content select{
  height: 32px;
}
.t-content textarea{
  resize: none;
}
.t-content .t-field-error{
  text-align: right;
  color: red;
  font-size: 10pt;
  line-height: 1.7em;
}
.t-content .t-btns{
  margin-top: 20px;
}
.t-content .t-btns .t-btn{
  margin-right: 10px;
  padding: 0 0.7em;
  font-size: inherit;
  line-height: 1.8em;
  min-width: 65px;
  /* border: solid 1px gray; */
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
}
.t-btn.t--primary{
  color: black;
  background-color: #D3D3D3;
  border-color: darkgray;
}
.t-btn.t--default{
  /* color: black;
  background-color: #D3D3D3; */
  border-color: darkgray;
}
/* 提示 */
.t-tips-content {
  margin-top: 30px;
  font-size: 14px;
}
.t-tips-content .t-label{
  display: inline-block;
  color: #666;
}
.t-tips-content ol{
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.t-tips-content ol li{
  margin-bottom: 0.3em;
  list-style-type: circle;
  line-height: 1.6em;
}
.t-tips-content a,
.t-tips-content a:link,
.t-tips-content a:visited{
  color: inherit;
  text-decoration: none;
}
.t-tips-content a:hover{
  color: blue;
  text-decoration: underline;
}
.t-tips-content .t-detail{
  color: #444;
}
.t-tips-content .t-detail a,
.t-tips-content .t-detail a:link,
.t-tips-content .t-detail a:visited{
  color: var(--link-color);
}
.t-tips-content a.t-link,
.t-tips-content a.t-link:link,
.t-tips-content a.t-link:visited{
  color: var(--link-color);
  /* text-decoration: underline; */
}

