﻿@charset "UTF-8";

.uc-content {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

img {
  width: auto;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
}

.uc-show {
  display: block !important;
}

.uc-bg {
  background-color: #f6f6f6;
}

.uc-b {
  font-weight: bold;
}

.uc-small {
  font-size: 0.875em;
}

.uc-big {
  font-size: 1.25em;
}

.uc-ma {
  margin-left: auto;
  margin-right: auto;
}

.uc-mla {
  margin-left: auto;
}

.uc-mra {
  margin-right: auto;
}

.uc-del {
  text-decoration: line-through;
  color: #999999;
  margin-left: 20px;
}
.uc-del:first-child {
  margin-left: 0;
}

.animate, .uc-animate, .uc-revealOnScroll {
  opacity: 0;
}

.uc-blue {
  color: #0054a7 !important;
}

.uc-white {
  color: #fff !important;
}

.uc-gray {
  color: #999999 !important;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  line-height: inherit;
  font-size: inherit;
  border: none;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
}
button:after {
  display: none;
}

.uc-input, .uc-select, .uc-button, .uc-textarea {
  width: 100%;
  border: #eeeeee 1px solid;
  outline: none;
  height: 30px;
  line-height: 28px;
  border-radius: 5px;
  padding: 0 10px;
}
.uc-input:hover, .uc-input:focus, .uc-select:hover, .uc-select:focus, .uc-button:hover, .uc-button:focus, .uc-textarea:hover, .uc-textarea:focus {
  border-color: #0054a7;
}

.uc-btn {
  cursor: pointer;
  outline: none;
  transition: all 0.3s linear;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  border-radius: 5px;
  padding: 0 10px;
}
.uc-btn img {
  margin-right: 10px;
}
.uc-btn:hover {
  opacity: 0.8;
}
.uc-btn.blue {
  background-color: #0054a7;
  border: #0054a7 1px solid;
  color: #fff;
}
.uc-btn.blue-linear {
  background: linear-gradient(to right, rgba(0, 84, 167, 0.7) 0%, #0054a7 100%);
  color: #fff;
}
.uc-btn.blue-plain {
  color: #0054a7;
  border: #0054a7 1px solid;
}
.uc-btn.blue-plain:hover {
  opacity: 1;
  background-color: #0054a7;
  color: #fff;
}
.uc-btn.white {
  background-color: #fff;
  border: #fff 1px solid;
  color: #333333;
}
.uc-btn.white-linear {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, #fff 100%);
  color: #333333;
}
.uc-btn.white-plain {
  color: #fff;
  border: #fff 1px solid;
}
.uc-btn.white-plain:hover {
  opacity: 1;
  background-color: #fff;
  color: #333333;
}
.uc-btn.gray {
  background-color: #999999;
  border: #999999 1px solid;
  color: #fff;
}
.uc-btn.gray-linear {
  background: linear-gradient(to right, rgba(153, 153, 153, 0.7) 0%, #999999 100%);
  color: #fff;
}
.uc-btn.gray-plain {
  color: #999999;
  border: #999999 1px solid;
}
.uc-btn.gray-plain:hover {
  opacity: 1;
  background-color: #999999;
  color: #fff;
}

.uc-tag {
  display: inline-block;
  border-radius: 3px;
  padding: 0 5px;
}
.uc-tag:empty {
  display: none;
}
.uc-tag.blue {
  background-color: #0054a7;
  color: #fff;
}
.uc-tag.white {
  background-color: #fff;
  color: #333333;
}
.uc-tag.gray {
  background-color: rgba(153, 153, 153, 0.4);
  color: #fff;
}

/* ---------------------------------------------------------------------- 通用样式  -------------------------------------------------------------------- */
/* --------------------------------------------------------------------- 各页面样式  ------------------------------------------------------------------- */
/* 
原头部导航调整
 */
#txtSearch {
  border: #ddd 1px solid;
}

.menubox .menu {
  display: inline-block;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* |01|一级页|news| */
.uc-news {
  padding-top: 170px;
}
.uc-news .list li {
  margin-bottom: 120px;
  position: relative;
  background-color: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 30px;
  transition: all 0.3s linear;
}
.uc-news .list li.style-blue, .uc-news .list li:hover {
  background-color: #0054a7;
}
.uc-news .list li.style-blue h3, .uc-news .list li.style-blue .con, .uc-news .list li:hover h3, .uc-news .list li:hover .con {
  color: #fff;
}
.uc-news .list li.style-blue .operate .uc-btn, .uc-news .list li:hover .operate .uc-btn {
  border-color: #fff;
  color: #fff;
}
.uc-news .list li.style-blue .operate .uc-btn:hover, .uc-news .list li:hover .operate .uc-btn:hover {
  background-color: #fff;
  color: #0054a7;
}
.uc-news .list .img {
  overflow: hidden;
  overflow: hidden;
  top: -60px;
  position: relative;
  width: 680px;
}
.uc-news .list .img img {
  transition: all 0.3s linear;
}
.uc-news .list .img:hover img {
  transform: scale(1.1, 1.1);
}
.uc-news .list .img:first-child {
  margin-right: 40px;
}
.uc-news .list .img:last-child {
  margin-left: 40px;
}
.uc-news .list .img img {
  display: block;
}
.uc-news .list .detail {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding-top: 40px;
padding-bottom: 40px;
}
.uc-news .list h3 {
  color: #5b5b5b;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
.uc-news .list .con {
  text-align: justify;
  font-size: 16px;
  line-height: 2em;
  color: #5b5b5b;
  /**margin-bottom: 10px;*/
  min-height: 12em;
}
.uc-news .operate {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.uc-news .operate .uc-btn {
  padding: 0 20px;
  height: 34px;
  border-radius: 12px;
  font-size: 16px;
}
.uc-news .operate .uc-btn.white {
  color: #0054a7;
}

/* |02|二级页|article| */
.uc-article {
  background-color: #fff;
  padding-bottom: 80px;
}
.uc-article .filter {
  margin-bottom: 80px;
  box-shadow: 0 5px 5px 0 #e7e7e7;
}
.uc-article .filter .uc-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.uc-article .filter .uc-content .item {
  line-height: 76px;
  font-size: 16px;
  color: #5b5b5b;
  font-weight: bold;
  padding: 0 40px;
  background-color: transparent;
  border-top: transparent 2px solid;
  border-bottom: transparent 2px solid;
  transition: all 0.3s linear;
}
.uc-article .filter .uc-content .item.on, .uc-article .filter .uc-content .item:hover {
  color: #4474fc;
  font-size: 24px;
  position: relative;
  border-bottom-color: #4474fc;
}
.uc-article .filter .uc-content .item.on:before, .uc-article .filter .uc-content .item.on:after {
  content: "";
  width: 10px;
  border-radius: 100%;
  height: 10px;
  background-color: #c5d4fe;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.uc-article .filter .uc-content .item.on:before {
  left: 10px;
}
.uc-article .filter .uc-content .item.on:after {
  right: 10px;
}
.uc-article article h1 {
  font-size: 32px;
  font-weight: bold;
  color: #4474fc;
  margin-bottom: 80px;
  line-height: 1.5em;
}
.uc-article .box {
  text-align: left;
  line-height: 2em;
  font-size: 16px;
  color: #5b5b5b;
  text-align: justify;
}
.uc-article .tCenter {
  text-align: center;
}
.uc-article .swiper-box {
  width: 1040px;
  margin: 0 auto 20px;
  position: relative;
}
.uc-article .swiper-box .swiper-slide {
  position: relative;
  overflow: hidden;
  max-height: 600px;
}
.uc-article .swiper-box .swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  height: 100%;
}
.uc-article .swiper-box .btm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(68, 116, 252, 0.5);
  padding: 12px;
  line-height: 24px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uc-article .swiper-box .btn {
  width: 46px;
  height: 101px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
}
.uc-article .swiper-box .btn img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.uc-article .swiper-box .btn-prev {
  left: 0;
}
.uc-article .swiper-box .btn-next {
  right: 0;
}
.uc-article .tab-con {
  display: none;
}
.uc-article .tab-con:first-child {
  display: block;
}
