@charset "UTF-8";
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
  color: inherit;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 14px;
  font-family: 'Microsoft YaHei', sans-serif;
  background-color: #f5f5f5;
}
a {
  /* color: #333; */
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
input[type="text"],
input[type="search"],
textarea {
  border: none;
  outline: none;
  resize: none;
  -webkit-appearance: none;
}
.text-justify {
  text-align: justify;
}
.text-cut-one {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space: nowrap;

}
.text-cut {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix::after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  clear: both;
}
img {
  display: block;
  width: 100%;
}
.p10 {
  padding: .1rem 0;
}
.p20 {
  padding: .2rem 0;
}
.p30 {
  padding: .3rem 0;
}
.fw {
  font-weight: bold;
}
.f12 {
  font-size: .12rem;
}
.f14 {
  font-size: .14rem;
}
.f16 {
  font-size: .16rem;
}
.f18 {
  font-size: .18rem;
}
.f20 {
  font-size: .2rem;
}
.f22 {
  font-size: .22rem;
}
.f24 {
  font-size: .24rem;
}
.f26 {
  font-size: .26rem;
}
.f28 {
  font-size: .28rem;
}
.f30 {
  font-size: .3rem;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
}
.jc-around {
  justify-content: space-around;
}
.jc-between {
  justify-content: space-between;
}
.jc-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}

/* 导航栏样式 */
.fix-header-box .header-box{
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: transparent;
}
.header-box {
  position: relative;
  box-sizing: border-box;
  color: #fff;
  background-color: #004CA0;
  display: flex;
  align-items: center;
  z-index: 12;
  padding: 0 .6rem;
}
.header-box .select-down {
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 100%;
  z-index: 11;
  height: 0;
  color: #ccc;
  overflow: hidden;
}
.header-box .select-items:hover .select-down{
  height: 1rem;
  transition: all .5s;
}
.header-box .select-down ul {
  display: flex;
  justify-content: center;
  font-size: .16rem;
  height: 1rem;
  background-color: #103674;
}
.header-box .select-down ul li {
  padding: 0 .2rem;
}
.header-box .select-down ul li a {
  color: #666;
}
.header-box .select-down ul li.active a {
  color: #00FFFF;
}
.header-box .select-down ul li:hover a {
  color: #00FFFF;
}
.header-box .link:hover span {
  border-bottom: 1px solid #00FFFF;
}
.header-box .left {
  width: 1.73rem;
}
.header-box .left img {
  width: 100%;
}
.header-box .center {
  flex: 1;
}
.header-box .route-list {
  width: 12rem;
  margin: 0 auto;
  letter-spacing: 3px;
}
.header-box .route-list ul {
  width: 100%;
  display: flex;
  align-items: center;
}
.header-box .link a span {
  padding: .11rem 0;
  border-bottom: 1px solid transparent;
  transition: all .5s;
}
.header-box .link a {
  color: #fff;
  width: 100%;
  text-align: center;
}
.header-box .link {
  width: 20%;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration:none;
}
.header-box .active a span{
  border-bottom: 1px solid #00FFFF;
}

/* 导航栏样式结束 */

/* 类似百叶窗样式 layout aboautUs页面用品那个 */
.pro-item {
  overflow: hidden;
  width: 25%;
  padding: 1.5rem .1rem 1.2rem;
  box-sizing: border-box;
  /* height: 6rem; */
  color: #fff;
  transition: all 1s;
}
.pro-item .text {
  font-size: .2rem;
  font-weight: bold;
  padding: .3rem;
}
.pro-item .icon {
  width: .81rem;
  margin: .2rem 0;
}
.pro-item .decribe {
  font-size: .12rem;
  line-height: .24rem;
  text-align: center;
}
.pro-item:nth-child(2n + 1) {
  background-color: #004CA0;
}

/* 公用结束 */
/* 底部footer区域 */
/* 底部区域 */
.footer {
  color: #fff;
  height: 6rem;
  margin-top: 2rem;
  background: url('../images/footer_bg.jpg') center no-repeat;
  background-size: cover;
}

.footer ul {
  margin-right: 1.5rem;
}
.footer .qrcode,.footer .logo {
  width: 1.5rem;
}
.footer .logo {
  margin-bottom: .4rem;
}
.footer .title {
  font-weight: bold;
  font-size: .2rem;
  color: #fff;
  margin-bottom: .1rem;
}

.footer li {
  color: #999;
  font-size: .14rem;
  padding: .1rem 0;
}
.footer li:hover a {
  color: #00FFFF;
}
.footer .bottom {
  padding-top: .2rem;
}
/* 底部footer结束 */

/* 返回顶部按钮样式 */
.back-top {
  box-shadow: 0px 0px 16px 1px #004CA0;
  /* background-color: #004CA0; */
  position: fixed;
  right: .6rem;
  bottom: 2rem;
  width: .64rem;
  height: .64rem;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.banxin {
  width: 12rem;
  margin: 0 auto;
}

/* 图片文字左右公共样式 */
.text-img-box {
  background-color: rgb(0, 76, 160);
}
.pos-img {
  flex: 6;
  /* height: 6.41rem; */
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* .pos-img:hover img{
  transform: scale(1.2);
} */
.pos-text {
  flex: 4;
  line-height: .24rem;
  font-size: .12rem;
  display: flex;
  flex-direction: column;
  padding: .3rem .4rem;
}
.pos-text-main {
  font-size: .2rem;
  font-weight: bold;
  margin: .6rem 0 .3rem;
}
.pos-text-sub {
  text-align: justify;
  margin-bottom: .2rem;
}