@charset "utf-8";
/*
名称：PC端 public.css 模板
日期：2015.11.30
更新：2019.04.12
*/
/* 
公共样式库通用变量
*/
body {
  font-family: "Microsoft Yahei", "SimSun", arial, sans-serif;
  font-size: 14px;
  line-height: 30px;
}
body,
h1,
h2,
h3,
ul,
dl,
dd,
p {
  margin: 0;
  padding: 0;
}
button,
select,
input[type='checkbox'],
input[type='radio'] {
  cursor: pointer;
  user-select: none;
}
img {
  border: 0;
  outline: none;
  vertical-align: top;
}
li {
  list-style: none;
}
select,
a,
button {
  outline: none;
}
/* 容器 */
.container {
  margin: 0 auto;
}
.container-full {
  width: 100%;
}
.pagewidth {
  width: 1200px;
}
/* 边框 */
.noborder {
  border: none !important;
}
.border {
  border: 1px solid #e6e6e6;
}
.border-t {
  border-top: 1px solid #e6e6e6;
}
.border-l {
  border-left: 1px solid #e6e6e6;
}
.border-r {
  border-right: 1px solid #e6e6e6;
}
.border-b {
  border-bottom: 1px solid #e6e6e6;
}
/* 对齐 */
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
/* clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* 显示/隐藏 */
.show {
  display: block;
}
.hide {
  display: none;
}
/* 链接 */
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  color: #ed2f3c;
}
/* 文字 */
h1,
h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
}
h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
}
.bold {
  font-weight: bolder !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-18 {
  font-size: 18px !important;
}
.fs-24 {
  font-size: 24px !important;
}
.fc-333 {
  color: #333 !important;
}
.fc-666 {
  color: #666 !important;
}
.fc-999 {
  color: #999 !important;
}
/* 间距 */
.mTop-10 {
  margin-top: 10px !important;
}
.mTop-15 {
  margin-top: 15px !important;
}
.mTop-20 {
  margin-top: 20px !important;
}
.mTop-30 {
  margin-top: 30px !important;
}
.padded-10 {
  padding: 10px !important;
}
.padded-15 {
  padding: 15px !important;
}
.padded-20 {
  padding: 20px !important;
}
.padded-30 {
  padding: 30px !important;
}
.padded-0-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.padded-0-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.padded-0-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.padded-0-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.padded-10-0 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.padded-15-0 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.padded-20-0 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.padded-30-0 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
/* 默认按钮 */
.btn {
  width: 140px;
  height: 40px;
  display: block;
  font-size: 14px;
  line-height: 40px;
  background-color: #ed2f3c;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none !important;
  cursor: pointer;
  user-select: none;
}
.btn:hover {
  background-color: #f15e68;
  color: #fff;
  text-decoration: none;
}
.btn-radius {
  border-radius: 6px;
}
/* 表单 */
input[type=text],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=email],
input[type=file],
input[type=date],
input[type=time],
select,
textarea {
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  padding: 5px;
  outline: none;
}
input[type=text]-t,
input[type=password]-t,
input[type=number]-t,
input[type=search]-t,
input[type=tel]-t,
input[type=email]-t,
input[type=file]-t,
input[type=date]-t,
input[type=time]-t,
select-t,
textarea-t {
  border-top: 1px solid #e6e6e6;
}
input[type=text]-l,
input[type=password]-l,
input[type=number]-l,
input[type=search]-l,
input[type=tel]-l,
input[type=email]-l,
input[type=file]-l,
input[type=date]-l,
input[type=time]-l,
select-l,
textarea-l {
  border-left: 1px solid #e6e6e6;
}
input[type=text]-r,
input[type=password]-r,
input[type=number]-r,
input[type=search]-r,
input[type=tel]-r,
input[type=email]-r,
input[type=file]-r,
input[type=date]-r,
input[type=time]-r,
select-r,
textarea-r {
  border-right: 1px solid #e6e6e6;
}
input[type=text]-b,
input[type=password]-b,
input[type=number]-b,
input[type=search]-b,
input[type=tel]-b,
input[type=email]-b,
input[type=file]-b,
input[type=date]-b,
input[type=time]-b,
select-b,
textarea-b {
  border-bottom: 1px solid #e6e6e6;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=file]:focus,
input[type=date]:focus,
input[type=time]:focus,
textarea:focus {
  border-color: #f9bcc0;
}
input[type=text],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=email],
input[type=file],
input[type=date],
input[type=time],
select {
  height: 30px;
}
input[type=checkbox],
input[type=radio] {
  display: inline-block;
  border: 1px solid #e6e6e6;
  vertical-align: middle;
  margin-top: -3px;
}
input[type=checkbox]-t,
input[type=radio]-t {
  border-top: 1px solid #e6e6e6;
}
input[type=checkbox]-l,
input[type=radio]-l {
  border-left: 1px solid #e6e6e6;
}
input[type=checkbox]-r,
input[type=radio]-r {
  border-right: 1px solid #e6e6e6;
}
input[type=checkbox]-b,
input[type=radio]-b {
  border-bottom: 1px solid #e6e6e6;
}
textarea {
  resize: none;
}
.input-row {
  margin-bottom: 15px;
}
.input-row select,
.input-row input[type=checkbox],
.input-row input[type=radio] {
  width: auto;
  display: inline-block;
}
.label {
  min-width: 80px;
  margin-right: 5px;
  display: inline-block;
  text-align: right;
  color: #666;
  vertical-align: top;
}
.label .must {
  margin-right: 2px;
  font-size: inherit;
  color: red;
  vertical-align: top;
  display: inline-block;
}
.input-tips {
  margin-left: 20px;
  display: inline-block;
  vertical-align: top;
}
/* table */
table {
  border-spacing: 0;
  border-collapse: collapse;
}
table th,
table td {
  box-sizing: border-box;
}
.table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.table-t {
  border-top: 1px solid #e6e6e6;
}
.table-l {
  border-left: 1px solid #e6e6e6;
}
.table-r {
  border-right: 1px solid #e6e6e6;
}
.table-b {
  border-bottom: 1px solid #e6e6e6;
}
.table thead {
  background-color: #eee;
  font-weight: bolder;
  line-height: 38px;
}
.table thead th {
  line-height: 35px;
}
.table th {
  background-color: #eee;
  font-weight: bolder;
}
.table th,
.table td {
  padding: 0 10px;
  font-size: 14px;
  line-height: 30px;
  color: #333;
  box-sizing: border-box;
  vertical-align: middle;
  border: 1px solid #e6e6e6;
}
.table th-t,
.table td-t {
  border-top: 1px solid #e6e6e6;
}
.table th-l,
.table td-l {
  border-left: 1px solid #e6e6e6;
}
.table th-r,
.table td-r {
  border-right: 1px solid #e6e6e6;
}
.table th-b,
.table td-b {
  border-bottom: 1px solid #e6e6e6;
}
.table td a:hover {
  color: #f15e68;
}
.table.noborder {
  border: none !important;
}
.table.noborder th,
.table.noborder td {
  border: none !important;
}
/* other */
/* 图片比例 */
.box-img[class*='percent'] {
  overflow: hidden;
  background-color: #e0e0e0;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.box-img[class*='percent'] .box-img-object {
  width: 100%;
  height: 100%;
  margin: auto;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.box-img.percent1-1 {
  padding-top: 100%;
}
.box-img.percent3-1 {
  padding-top: 33.3333333%;
}
.box-img.percent3-2 {
  padding-top: 66.666666%;
}
/* article */
.content {
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.content img,
.content embed {
  max-width: 100%;
}
.content .img-block {
  margin: 0 auto;
  display: block;
}
.content .img-title {
  display: block;
  text-align: center;
}
.content a {
  color: inherit;
}
.content a:hover {
  color: #ed2f3c;
}
.content p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 30px;
}
.content ul,
.content ol {
  text-indent: 2em;
}
/* 头部 */
/* foot */
/*# sourceMappingURL=public.css.map */