body {
    font-family: "Microsoft Yahei", "SimSun", arial, sans-serif;
    font-size: 14px;
    line-height: 28px;
}
body,
h1,
h2,
h3,
ul,
dl,
dd,
p {
    margin: 0;
    padding: 0;
}
h3{
    font-weight: bold;
}
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-full {
    width: 100%;
}
.container {
    margin: 0 auto;
}
.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;
}
a:hover {
    color: #EF2F39;
    text-decoration: underline;
}
/* 文字 */
.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;
}
.fs12 {
    font-size: 12px !important;
}
.fs14 {
    font-size: 14px !important;
}
.fs16 {
    font-size: 16px !important;
}
.fs18 {
    font-size: 18px !important;
}
.fs24 {
    font-size: 24px !important;
}
.fc333 {
    color: #333 !important;
}
.fc666 {
    color: #666 !important;
}
.fc999 {
    color: #999 !important;
}
/* 间距 */
.mTop10 {
    margin-top: 10px !important;
}
.mTop15 {
    margin-top: 15px !important;
}
.mTop20 {
    margin-top: 20px !important;
}
.mTop30 {
    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: #EF2F39;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none !important;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
}
.btn:hover {
    background-color: #EF2F39;
    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]: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: #fabdc0;
}
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;
}
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 {
    /*width: 100%;*/
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid #e6e6e6;
}
table thead {
    background-color: #eee;
    font-weight: bolder;
    line-height: 38px;
}
table thead th {
    line-height: 35px;
}
table th {
    font-weight: bolder;
}
table th,
table td {
    padding: 0 10px;
    font-size: 14px;
    line-height: 28px;
    color: #333;
    box-sizing: border-box;
    vertical-align: middle;
    text-align: center;
    border: 1px solid #e6e6e6;
}
table td a:hover {
    color: #EF2F39;
}
/* other */
.more {
    color: #999;
    padding: 0 10px;
    font-weight: normal;
    line-height: 28px;
}
/* 图片比例 */
.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%;
}

input:focus {
    box-sizing: border-box;
    border: 1px solid #ef2f39 !important;
}


