@charset "UTF-8";
/* function.css */
/* 禁止选中文本 */
.usn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* 浮动 */
.fl, .subpage-nav, .subListOne-item .time, .subListOne-item .det, .picListOne-item {
  float: left;
}

.fr, .subpage-r, .subListOne-item .pic {
  float: right;
}

/* 宽度 */
.w100 {
  width: 100%;
}

.wh {
  width: 100%;
  height: 100%;
}

/* 元素类型 */
/* 多出部分用省略号表示 , 用于一行 */
.wes, .subListOne-item .p1, .picListOne-item p {
  overflow: hidden;
  word-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 多出部分用省略号表示 , 用于多行 */
/* flex布局 */
.df-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.df-sb::before, .df-sb::after {
  content: normal;
}
.df-sb > * {
  float: left;
}

/* ie11-失效原因 */
.df-sa {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.df-sa::before, .df-sa::after {
  content: normal;
}
.df-sa > * {
  float: left;
}

/* 垂直居中 */
.df-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-c {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.ts-c {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ts-mc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.ts-x {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ts-y {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* 阴影效果 */
/* 滚动条滑块 */
.obj2cov, .subpage-top .pic img, .img2scl img, .subListOne-item .pic img, .picListOne-item .pic img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

[hidden],
.hidden {
  height: 100%;
  overflow: hidden;
  /* display: none; */
}

.bodyhid {
  width: 100%;
  height: 100% !important;
  overflow: hidden !important;
}

.bodyhid2 {
  width: 100%;
  height: 100% !important;
  overflow: hidden !important;
}

.img2scl, .subListOne-item .pic, .picListOne-item .pic {
  overflow: hidden;
}
.img2scl img, .subListOne-item .pic img, .picListOne-item .pic img {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.img2scl:hover img, .subListOne-item .pic:hover img, .picListOne-item .pic:hover img {
  transform: scale(1.2);
}

.en {
  text-transform: uppercase;
}

@keyframes rot {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.subpage .container {
  max-width: 1400px;
}
.subpage-top {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.subpage-top .pic {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.subpage-top::after {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  bottom: 0;
  background: url(../images/sub-b.png) repeat-x bottom;
  height: 300px;
}
.subpage-top .container {
  position: relative;
  height: 100%;
}
.subpage .location {
  width: 100%;
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  color: #fff;
  padding-bottom: 24px;
}
.subpage .location a {
  color: inherit;
  padding-right: 2px;
  position: relative;
}
.subpage .location a::after, .subpage .location a::before {
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.subpage .location a::after {
  left: 0;
  bottom: 2px;
}
.subpage .location a::before {
  top: 2px;
  right: 0;
}
.subpage .location a:hover::after, .subpage .location a:hover::before {
  width: 100%;
}
.subpage .location .name {
  font-size: 46px;
  font-weight: bold;
}
.subpage .location-wrap {
  line-height: 26px;
  font-size: 14px;
  margin-top: 16px;
  cursor: default;
}
.subpage .location span {
  background: url(../images/icon-location.png) no-repeat left center;
  padding-left: 28px;
}
.subpage-wrap {
  padding-top: 57px;
  padding-bottom: 60px;
  background: url(../images/subpage-bg.png) no-repeat center fixed;
}
.subpage-l {
  width: 358px;
}
.subpage-nav {
  width: 100%;
}
.subpage-nav .name {
  background: url(../images/sub-nav-bg.png) no-repeat center;
  background-size: cover;
  height: 100px;
  border-bottom: 5px solid #004b85;
  line-height: 100px;
  padding-left: 28px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
}
.subpage-nav-item {
  margin-top: 9px;
  margin-bottom: 2px;
  line-height: 50px;
  font-size: 18px;
  color: #333333;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.subpage-nav-item > a {
  width: 100%;
  height: 100%;
  padding-left: 27px;
  color: inherit;
  background-color: #f2f5fc;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.subpage-nav-item.on > a {
  color: #fff;
  background-color: #0054a3;
}
.subpage-nav-sub {
  display: none;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(234, 234, 234);
}
.subpage-nav-sub a {
  display: block;
  line-height: 40px;
  font-size: 16px;
  color: #333333;
  position: relative;
  padding-left: 68px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.subpage-nav-sub a::before {
  left: 46px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  background-color: #333333;
}
.subpage-nav-sub a.on {
  background-color: #e1aa19;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.subpage-nav-sub a.on::before {
  background-color: #fff;
}
.subpage-r {
  width: calc(96.4286% - 358px);
}
@keyframes slideDwon {
  0% {
    height: 0px;
    overflow: hidden;
    display: block;
  }
  100% {
    height: auto;
    overflow: visible;
  }
}

.subListOne ul {
  overflow: hidden;
  margin-bottom: 60px;
}
.subListOne-item {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 39px;
  padding-top: 20px;
  margin-top: 20px;
}
.subListOne-item:nth-child(1) {
  padding-top: 0;
  margin-top: 0;
}
.subListOne-item .time {
  width: 100px;
  text-align: right;
  border-top: 2px solid #3278b2;
  color: #3278b2;
}
.subListOne-item .time span {
  display: block;
  text-align: center;
  color: #666666;
  width: 100%;
  line-height: 34px;
  font-size: 13px;
  border: 1px solid #666666;
  margin-top: 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
}
.subListOne-item .year {
  margin-top: 17px;
  font-size: 14px;
  color: #888888;
}
.subListOne-item .day {
  font-size: 32px;
  margin-top: 2px;
}
.subListOne-item .pic {
  width: 217px;
  height: 132px;
}
.subListOne-item .det {
  width: calc(100% - 317px);
  padding-left: 3%;
  padding-right: 2%;
}
.subListOne-item .p1 {
  font-size: 22px;
  color: #333333;
}
.subListOne-item .p1 span {
  font-size: inherit !important;
  color: #b81010 !important;
  font-weight: inherit !important;
  font-family: inherit !important;
}
.subListOne-item .p2 {
  font-size: 14px;
  line-height: 32px;
  color: #888888;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 14px;
}
.subListOne-item.no .det {
  width: calc(100% - 100px);
}
.subListOne-item.no .pic {
  display: none;
}
.subListOne-item:hover .time span {
  background-color: #3278b2;
  color: #fff;
}
.subListOne-item:hover .p1 {
  color: #3278b2;
  font-weight: bold;
  animation: fadeIn 0.5s ease-in-out;
}

.picListOne {
  padding-top: 42px;
}
.picListOne-item {
  display: block;
  width: 31.4762%;
  margin-right: 2.7857%;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(238, 238, 238);
  background-color: rgb(255, 255, 255);
  margin-bottom: 40px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.picListOne-item:nth-child(3n) {
  margin-right: 0;
}
.picListOne-item .pic {
  height: 217px;
}
.picListOne-item p {
  height: 53px;
  line-height: 53px;
  text-align: center;
  padding: 0 10px;
  font-size: 18px;
  color: #333333;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.picListOne-item:hover {
  background-color: #3278b2;
  transform: translateY(-10px);
}
.picListOne-item:hover p {
  color: #fff;
  font-weight: bold;
}

.singole {
  padding-top: 40px;
}
.singole .title {
  font-size: 32px;
  font-weight: bold;
  color: #004b85;
  border-bottom: 1px solid rgba(50, 120, 178, 0.2);
  position: relative;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 24px;
}
.singole .title::after {
  left: 0;
  right: 0;
  bottom: -2px;
  background-color: #004b85;
  height: 3px;
  width: 100px;
  margin: auto;
}

.article {
  padding-top: 20px;
}
.article-info .title {
  text-align: center;
  color: #004b85;
}
.article-info .title h1 {
  font-size: 32px;
  line-height: 1.8;
}
.article-info .title h2 {
  font-size: 26px;
  color: #889cad;
  margin-top: 13px;
}
.article-info .info {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  color: #666666;
  line-height: 40px;
  background-color: #ecf2f7;
}
.article-info .info span {
  padding: 0 1vw;
}
.article-content {
  padding-top: 30px;
  padding-bottom: 30px;
}
.article-content p {
  font-size: 17px;
  color: #333333;
  line-height: 50px;
  background: transparent !important;
}
.article-content img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto !important;
}

#page {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
}
#page2 {
  text-align: center;
}
#page2 a,
#page2 span {
  display: inline-block;
  font-size: inherit;
  color: inherit;
  color: #6a6868;
  background-color: #fff;
  margin: 0 3px;
  border-width: 1px;
  border-color: rgb(238, 238, 238);
  border-style: solid;
  border-radius: 3px;
  line-height: 38px;
  height: 38px;
  padding: 0px 13.6px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
#page2 a:hover,
#page2 span:hover {
  background-color: #3278b2;
  color: #fff;
}
#page .p_pages {
  display: inline-block;
  height: auto;
}
#page .p_pages * {
  vertical-align: baseline !important;
}
#page .p_pages span {
  margin-bottom: 5px !important;
  font-size: 15px;
  color: #6a6868 !important;
  background-color: #fff !important;
}
#page .p_pages span.p_no, #page .p_pages span.p_fun {
  border-radius: 3px !important;
  line-height: 38px !important;
  height: 38px !important;
  color: #6a6868;
  background-color: #fff !important;
  display: inline-block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  margin: 0 3px;
  border-width: 1px;
  border-color: rgb(238, 238, 238);
  border-style: solid;
}
#page .p_pages span.p_no a, #page .p_pages span.p_fun a {
  padding: 0px 13.6px !important;
  display: inline-block;
  line-height: 38px !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-width: 1px;
  border-color: rgb(238, 238, 238);
  border-style: solid;
  color: #6a6868 !important;
}
#page .p_pages span.p_no:hover a, #page .p_pages span.p_fun:hover a {
  color: #fff !important;
  background-color: transparent !important;
}
#page .p_pages span.p_no_d, #page .p_pages span:hover {
  background-color: #3278b2 !important;
  color: #fff !important;
}
#page .p_pages .p_fun_d,
#page .p_pages .p_no_d {
  padding: 0px 13.6px !important;
  display: inline-block;
  border-radius: 3px !important;
  height: 38px !important;
  line-height: 38px !important;
  margin: 0 3px;
  border-width: 1px;
  border-color: rgb(238, 238, 238);
  border-style: solid;
  border-radius: 3px;
}
#page .p_pages .p_dot {
  background-color: transparent !important;
}
#page .p_pages .p_dot:hover {
  background-color: transparent !important;
}
#page .p_t {
  line-height: 38px !important;
  font-size: 15px !important;
}
#page .p_goto {
  color: #6a6868 !important;
  font-size: 15px !important;
}
#page .p_goto input {
  width: 48px !important;
  height: 38px !important;
  line-height: 38px !important;
  border-width: 1px;
  border-color: rgb(238, 238, 238);
  border-style: solid;
  border-radius: 3px;
  border-radius: 3px !important;
  background-color: #fff !important;
  color: #6a6868 !important;
}
#page .p_goto a {
  border-width: 1px;
  border-color: rgb(238, 238, 238);
  border-style: solid;
  border-radius: 3px;
  height: auto !important;
  border-radius: 3px !important;
  line-height: 38px !important;
  background-color: #6a6868 !important;
  color: #fff !important;
  padding: 0px 13.6px !important;
}

@media (max-width: 1620px) {
  .subpage .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1420px) {
  .subpage .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .location {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1100px) {
  .picListOne-item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 25px;
  }
  .picListOne-item:nth-child(3n) {
    margin-right: 4%;
  }
  .picListOne-item:nth-child(2n) {
    margin-right: 0;
  }
  .subListOne-item {
    padding-bottom: 10px;
  }
  .subListOne-item .det {
    padding-left: 20px;
    width: calc(100% - 100px);
  }
  .subListOne-item .pic {
    display: none;
  }
}
@media (max-width: 800px) {
  #page {
    font-size: 13px;
  }
  #page .p_pages span {
    font-size: 13px;
  }
  #page .p_pages span.p_no, #page .p_pages span.p_fun {
    line-height: 32px !important;
    height: 32px !important;
  }
  #page .p_pages span.p_no a, #page .p_pages span.p_fun a {
    padding: 0px 10.2px !important;
    line-height: 30px !important;
  }
  #page .p_pages .p_fun_d,
  #page .p_pages .p_no_d {
    padding: 0px 10.2px !important;
    height: 32px !important;
    line-height: 32px !important;
  }
  #page .p_t {
    line-height: 32px !important;
    font-size: 13px !important;
  }
  #page .p_goto {
    font-size: 13px !important;
  }
  #page .p_goto a {
    line-height: 30px !important;
    padding: 0px 10.2px !important;
  }
  .subpage-wrap {
    padding-bottom: 6vw;
    padding-top: 6vw;
  }
  .subpage-top {
    height: 48vw;
    min-height: 240px;
  }
  .subpage .location {
    padding-bottom: 15px;
  }
  .subpage .location .name {
    font-size: 36px;
  }
  .subpage .location-wrap {
    margin-top: 2vw;
  }
  .subpage-l, .subpage-r {
    float: none;
    width: 100%;
    overflow: hidden;
  }
  .subListOne {
    padding-top: 30px;
  }
  .subListOne ul {
    margin-bottom: 6vw;
  }
  .subListOne-item {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .subListOne-item .time {
    width: 80px;
  }
  .subListOne-item .time span {
    line-height: 26px;
    font-size: 12px;
    margin-top: 1vw;
  }
  .subListOne-item .year {
    margin-top: 2vw;
    font-size: 12px;
  }
  .subListOne-item .day {
    font-size: 26px;
  }
  .subListOne-item .det {
    padding-left: 2%;
    padding-right: 1%;
  }
  .subListOne-item .p1 {
    font-size: 20px;
  }
  .subListOne-item .p2 {
    line-height: 24px;
  }
  .singole {
    padding-top: 4vw;
  }
  .singole .title {
    font-size: 26px;
    padding-bottom: 3vw;
  }
  .picListOne {
    padding-top: 4vw;
  }
  .picListOne-item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 25px;
  }
  .picListOne-item:nth-child(3n) {
    margin-right: 4%;
  }
  .picListOne-item:nth-child(2n) {
    margin-right: 0;
  }
  .picListOne-item .pic {
    height: 34vw;
  }
  .picListOne-item p {
    height: 46px;
    line-height: 46px;
    font-size: 16px;
  }
  .article-info .title h1 {
    font-size: 26px;
    line-height: 1.5;
  }
  .article-info .title h2 {
    font-size: 18px;
    margin-top: 1vw;
  }
  .article-info .info {
    height: auto;
    margin-top: 3vw;
    font-size: 12px;
  }
  .article-content {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
  .article-content p {
    font-size: 16px;
    line-height: 34px;
  }
}
@media (max-width: 600px) {
  .subpage-wrap {
    padding-top: 0;
  }
  .subListOne-item {
    padding-bottom: 10px;
  }
  .subListOne-item .time {
    width: 60px;
  }
  .subListOne-item .det {
    width: calc(100% - 60px) !important;
    padding-left: 20px;
  }
  .subListOne-item .day {
    text-align: center;
  }
  .subListOne-item .pic {
    display: none;
  }
  .subListOne-item .p1 {
    margin-top: 1vw;
    font-size: 18px;
  }
  .subListOne-item .time span {
    display: none;
  }
  .subListOne-item .p2 {
    margin-top: 2vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}/*# sourceMappingURL=subpage.css.map */