@charset "UTF-8";
/* yui3 reset.css */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
  vertical-align: top;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

legend {
  color: #000;
}

iframe {
  display: block;
}

/* yui3 fonts */
body {
  color: #333;
  font-family: system-ui, -apple-system, Segoe UI, Rototo, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

a {
  text-decoration: none;
}

input,
button,
textarea {
  border: 0;
  outline: 0;
}

input[type=text]::-ms-clear,
input[type=password]::-ms-reveal {
  display: none;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #999;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
  color: #999;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #999;
}

.placeholder {
  color: #999;
}

/* utilities */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

.l {
  float: left !important;
}

.r {
  float: right !important;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.trans {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 通用样式 */
.container {
  width: 1200px;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

.flexsb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexsb.container {
  height: 100%;
}

.flexct {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexct.container {
  height: 100%;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  padding-bottom: 200px;
  position: relative;
  background: #F2F2F2;
}

a {
  color: inherit;
}

#header {
  height: 165px;
  background: #fff;
}

.header {
  height: 100%;
}
.header .top-text {
  height: 40px;
  background: #f0f0f0;
  color: #666666;
  font-size: 16px;
}
.header .top {
  height: calc(100% - 92px);
}
.header .top .container {
  height: 100%;
}
.header .nav {
  height: 50px;
  font-size: 18px;
  color: #333;
}
.header .nav .container {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header .nav ul {
  width: calc(100% - 360px);
  height: 100%;
}
.header .nav li {
  flex: 1;
  height: 100%;
}
.header .nav li a {
  display: block;
  height: 100%;
  text-align: center;
  line-height: 47px;
  font-size: 18px;
  border-bottom: 3px solid transparent;
}
.header .nav li a:hover {
  color: #8c232a;
}
.header .nav li.active a {
  font-weight: bold;
  color: #8c232a;
  border-bottom: 3px solid #8c232a;
}
.header .text-r {
  text-align: right;
}
.header .search-box {
  display: flex;
  width: 340px;
  height: 40px;
  z-index: 10;
  overflow: hidden;
}
.header .search-box input {
  width: calc(100% - 66px);
  height: 100%;
  padding: 0 15px;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
  border: 1px solid rgb(215, 215, 215);
  border-right: none;
  border-radius: 4px;
}
.header .search-box button {
  border: none;
  outline: none;
  height: 100%;
  width: 66px;
  cursor: pointer;
  background: linear-gradient(270deg, #cc817e 0%, #b2363a 100%);
  border-radius: 4px;
  line-height: 40px;
  text-align: center;
}
.header .search-box button:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
  background: url("../images/common/head-readglass.png") no-repeat center center;
  background-size: 24px 24px;
}

#footer {
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
  background: #292021;
}
#footer .footer {
  height: 100%;
  color: #999999;
}
#footer .footer-top {
  height: 135px;
  border-bottom: 1px solid #5b5b5b;
}
#footer .footer-top-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#footer .footer-top-left p {
  margin-top: 12px;
  line-height: 30px;
}
#footer .footer-top-right {
  display: flex;
  height: 100%;
  align-items: center;
}
#footer .footer-top-right .qrcode {
  height: 103px;
  width: 103px;
}
#footer .footer-top-right .inf {
  height: 100%;
  display: flex;
  margin-right: 35px;
  flex-direction: column;
  justify-content: center;
  font-size: 15px;
}
#footer .footer-top-right .inf p + p {
  margin-top: 15px;
}
#footer .footer-bottom {
  height: calc(100% - 135px);
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

@font-face {
  font-family: "D-DIN-Bold";
  src: url("./fonts/D-DIN-Bold/D-DIN-Bold.woff") format("woff"), url("./fonts/D-DIN-Bold/D-DIN-Bold.ttf") format("truetype"), url("./fonts/D-DIN-Bold/D-DIN-Bold.eot") format("embedded-opentype");
}
.m-pagination-info > span {
  color: #4e5463 !important;
}
.m-pagination-page {
  padding-right: 0;
}
.m-pagination-page > li {
  margin-right: 8px;
}
.m-pagination-page > li > a {
  min-width: 34px;
  height: 34px !important;
  line-height: 32px !important;
  box-sizing: border-box !important;
  border-color: #efefef;
  color: #5c5c5c;
  font-size: 14px;
}
.m-pagination-page > li.active > a, .m-pagination-page > li:hover > a {
  border-color: #B2363A;
  color: #fff;
  font-weight: normal;
  background: #B2363A;
}
.m-pagination-size {
  padding-right: 12px;
}
.m-pagination-size > select {
  height: 30px;
  line-height: 28px;
  box-sizing: border-box;
  border-radius: 4px;
  border-color: #d6d6d6;
  color: #5c5c5c;
}
.m-pagination-group > input, .m-pagination-group > button {
  height: 34px !important;
  line-height: 22px;
  box-sizing: border-box;
  border-color: #d6d6d6;
  color: #333;
}
.m-pagination-group > input {
  width: 30px;
  border-radius: 4px;
  border-right: 1px solid #d6d6d6 !important;
}
.m-pagination-group > button {
  border-radius: 4px;
  margin-left: 5px;
  line-height: 30px;
}
.m-pagination-info {
  height: 30px;
  line-height: 30px;
  padding: 0 4px;
  color: #333;
}
.m-pagination-jump {
  width: 100px !important;
}

.com-local {
  height: 58px;
  line-height: 58px;
  padding-left: 22px;
  color: #666;
  background: url("../images/common/local-icon.png") no-repeat left center;
}
.com-local a {
  margin: 0 5px;
}
.com-local a:last-child {
  color: #8C232A;
}