@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

html {
  font-size: 0.75em;
}
@media all and (min-width: 320px) {
  html {
    font-size: 0.75em;
  }
}
@media all and (min-width: 363px) {
  html {
    font-size: 0.8317272949em;
  }
}
@media all and (min-width: 407px) {
  html {
    font-size: 0.910682373em;
  }
}
@media all and (min-width: 452px) {
  html {
    font-size: 0.9865429687em;
  }
}
@media all and (min-width: 498px) {
  html {
    font-size: 1.0589794922em;
  }
}
@media all and (min-width: 545px) {
  html {
    font-size: 1.1276550293em;
  }
}
@media all and (min-width: 593px) {
  html {
    font-size: 1.1922253418em;
  }
}
@media all and (min-width: 640px) {
  html {
    font-size: 1.25em;
  }
}

body {
  font-family: "Microsoft YaHei";
  font-size: 16px;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: #288ad6;
}

.c {
  clear: both;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.auto {
  text-align: center;
  margin: 0 auto;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix:after {
  content: "​";
  display: block;
  height: 0;
  clear: both;
}

.clearfix {
  *zoom: 1;
}

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

/* 本例子css */
.slide_box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
}

.slide_box .hd {
  height: 15px;
  overflow: hidden;
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 1;
}

.slide_box .hd ul {
  overflow: hidden;
  zoom: 1;
  float: left;
  margin: 0;
  padding: 0;
}

.slide_box .hd ul li {
  float: left;
  margin-right: 2px;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  background: #fff;
  cursor: pointer;
  border-radius: 3px;
}

.slide_box .hd ul li.on {
  background: #f00;
  color: #fff;
}

.slide_box .bd {
  position: relative;
  height: 100%;
  z-index: 0;
}

.slide_box .bd li {
  zoom: 1;
  vertical-align: middle;
}

.slide_box .bd img {
  width: 100%;
  height: 100%;
  display: block;
}

.slide_box .bd .title {
  position: absolute;
  bottom: 5px;
  left: 10px;
  color: white;
  font-size: 1em;
  width: 490px;
}

.slide_box .bd .bg {
  display: inline-block;
  width: 100%;
  background-color: black;
  opacity: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2em;
}

/* 下面是前后按钮代码，如果不需要删除即可 */
.slide_box .prev,
.slide_box .next {
  position: absolute;
  left: 3%;
  top: 50%;
  margin-top: -25px;
  display: block;
  width: 32px;
  height: 40px;
  background: url(../img/slider-arrow.png) -110px 5px no-repeat;
  filter: alpha(opacity=50);
  opacity: 50%;
}

.slide_box .next {
  left: auto;
  right: 3%;
  background-position: 8px 5px;
}

.slide_box .prev:hover,
.slide_box .next:hover {
  filter: alpha(opacity=100);
  opacity: 100%;
}

.slide_box .prevStop {
  display: none;
}

.slide_box .nextStop {
  display: none;
}

.slide_body {
  width: 100%;
  text-align: left;
  margin: 40px 0;
}

.slide_body .hd {
  height: 30px;
  line-height: 30px;
  padding: 0 10px 0 20px;
  border-bottom: 1px solid #ddd;
  position: relative;
  font-size: 1.2em;
}

.slide_body .hd ul {
  float: left;
  position: absolute;
  top: -1px;
  height: 32px;
}

.slide_body .hd ul li {
  float: left;
  padding: 0 15px;
  cursor: pointer;
}

.slide_body .hd ul li.on {
  height: 30px;
  border-bottom: 2px solid red;
  font-weight: bold;
}

.slide_body .bd .bd-item {
  margin: 20px 0;
}

.slide_body .bd .item-img {
  display: inline-block;
  float: left;
  width: 260px;
  height: 160px;
}

.slide_body .bd .item-img img {
  width: 100%;
  height: 100%;
}

.slide_body .bd .item-content {
  width: 480px;
  height: 160px;
  display: inline-block;
  float: right;
  position: relative;
}

.slide_body .bd .item-content .item-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.slide_body .bd .item-content .item-article {
  line-height: 1.4em;
}

.slide_body .bd .item-content .item-info {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #a4a4a4;
  font-size: 0.9em;
}

/* 下面是前/后按钮代码，如果不需要删除即可 */
.slide_body .arrow {
  position: absolute;
  right: 10px;
  top: 0;
}

.slide_body .arrow a {
  display: block;
  width: 5px;
  height: 9px;
  float: right;
  margin-right: 5px;
  margin-top: 10px;
  overflow: hidden;
  cursor: pointer;
  background: url("../images/arrow.png") 0 0 no-repeat;
}

.slide_body .arrow .next {
  background-position: 0 -50px;
}

.slide_body .arrow .prevStop {
  background-position: -60px 0;
}

.slide_body .arrow .nextStop {
  background-position: -60px -50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5,
h6,
h5,
h6 {
  font-size: 1.2rem;
}

body {
  background-color: #f6f6f6;
}

.logo {
  display: inline-block;
}

.box {
  width: 1100px;
  margin: 0 auto;
  padding: 10px;
  background-color: white;
}

.nav {
  display: inline-block;
}

.nav a {
  font-size: 1.3em;
  font-weight: bold;
}

.nav-item {
  float: left;
  margin-left: 20px;
}

.banner {
  margin: 10px 0;
}

.banner img {
  width: 100%;
  height: auto;
}

.h-left {
  display: inline-block;
  width: 450px;
  float: left;
}

.h-left ul {
  padding: 0;
  margin: 0;
}

.h-left ul:nth-child(2),
.h-left ul:nth-child(3) {
  margin-top: 30px;
}

.h-left a {
  font-size: 1em;
  line-height: 2em;
}

.h-left li:first-child a {
  font-size: 1.2em;
  line-height: 2em;
  font-weight: bold;
}

.h-right {
  display: inline-block;
  width: 600px;
  float: right;
}

.h-right img {
  width: 600px;
  height: 400px;
}

.body .b-left {
  display: inline-block;
  width: 760px;
  float: left;
}

.body .b-right {
  display: inline-block;
  width: 250px;
  float: right;
}

.body .b-right .r-title {
  font-size: 1.2em;
  margin: 42px 0 20px;
}

.body .b-right img {
  width: 100%;
  height: 150px;
}

.body .r-box {
  position: relative;
  margin: 0 0 20px;
}

.body .r-box p {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 100%;
  color: white;
  font-size: 0.9em;
}

.body .r-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  background-color: black;
  opacity: 60%;
  height: 2em;
}

.foot .bt-ad {
  width: 100%;
  height: auto;
}

.foot .link .title {
  font-size: 1em;
  text-align: center;
  color: #595959;
  line-height: 2em;
}

.foot .link .content {
  font-size: 0.9em;
  color: #595959;
  line-height: 2em;
}

.foot .link a {
  display: inline-block;
  margin: 1px 10px;
}

.foot .copyright {
  margin: 20px 0;
  font-size: 0.9em;
  color: #595959;
  text-align: center;
}

.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  padding: 8px 12px;
  margin: 0 5px;
  border-radius: 3px;
}

.pagination span {
  color: #333;
  font-size: 14px;
  padding: 8px 2px;
  margin: 0 5px;
  border-radius: 3px;
}

.pagination a:hover {
  color: #0060ce;
  border: 1px solid #0060ce;
}

.pagination a.page-num-current {
  color: #fff;
  background: #0060ce;
  border: 1px solid #0060ce;
}

.content_body .title {
  font-size: 1.4em;
  text-align: center;
}

.content_body p {
  font-size: 1em;
  line-height: 2em;
  text-indent: 2em;
  color: #444;
}

.content_body img {
  max-width: 500px;
}

.content_body .info {
  text-align: center;
  color: #6c6c6c;
  font-size: 0.9em;
  margin: 1em 0;
}
/*# sourceMappingURL=pc.css.map */
