@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, Roboto, 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 {
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  -o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

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

@font-face {
  font-family: "OPPOSans-B";
  src: url("./fonts/OPPOSans-B/OPPOSans-B.woff") format("woff"), url("./fonts/OPPOSans-B/OPPOSans-B.ttf") format("truetype"), url("./fonts/OPPOSans-B/OPPOSans-B.eot") format("embedded-opentype");
}
/* 通用样式 */
.container {
  width: 1200px;
  margin: 0 auto;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

body {
  min-width: 1200px;
}

/* 当前位置位置 */
.location {
  padding-left: 18px;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
}

.location a {
  color: #333;
}

.location span {
  color: #ff6600;
}

/* 网站头部 */
#header {
  height: 256px;
}

.header {
  width: 100%;
  /* 顶部区域 */
  /* 品牌标识 */
  /* 搜索框 */
  /* 导航区域 */
}
.header .header-top {
  width: 100%;
  background: url(../images/header_bg.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 196px;
}
.header .header-top .container {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-brand {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-search {
  position: relative;
  width: 320px;
  height: 40px;
}
.header .search-input {
  width: 100%;
  height: 100%;
  padding: 0 50px 0 13px;
  border: 1px solid #bec6d6;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.header .search-input::-webkit-input-placeholder {
  color: #999;
}
.header .search-input:-moz-placeholder {
  color: #999;
}
.header .search-input::-moz-placeholder {
  color: #999;
}
.header .search-input:-ms-input-placeholder {
  color: #999;
}
.header .search-input::placeholder {
  color: #999;
}
.header .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 40px;
  border-radius: 0 2px 2px 0;
  background: -webkit-linear-gradient(top, #1e80e2, #005cb8);
  background: -moz-linear-gradient(top, #1e80e2, #005cb8);
  background: -o-linear-gradient(top, #1e80e2, #005cb8);
  background: linear-gradient(to bottom, #1e80e2, #005cb8);
  cursor: pointer;
  box-shadow: 0px 1px 20px 0px rgba(1, 71, 154, 0.05);
}
.header .search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url(../images/search_icon.svg) no-repeat center;
  -o-background-size: contain;
     background-size: contain;
}
.header .header-nav {
  width: 100%;
  height: 60px;
  background-color: #005cb8;
  backdrop-filter: blur(20px);
}
.header .header-nav .container {
  height: 100%;
}
.header .nav-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.header .nav-item {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .nav-item a {
  display: block;
  padding: 0 12px;
  font-size: 20px;
  line-height: 60px;
  color: #ffffff;
  text-align: center;
  height: 100%;
  width: 100%;
}
.header .nav-item:hover,
.header .nav-item.current {
  background-color: #1e80e2;
}
.header .nav-item:hover a,
.header .nav-item.current a {
  font-weight: 700;
}

/* 网站底部 */
.footer {
  width: 100%;
  background-color: #333333;
  padding: 32px 0;
  margin-top: 40px;
  /* 底部链接 */
  /* 底部信息 */
  /* 底部版权 */
  /* 备案信息 */
}
.footer .container {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-links {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13px;
}
.footer .footer-link {
  font-size: 14px;
  line-height: 1.48;
  color: #ffffff;
  margin: 0 20px;
}
.footer .footer-link:hover {
  text-decoration: underline;
}
.footer .footer-separator {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #333333;
  border-left: 1px solid #ffffff;
}
.footer .footer-info {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13px;
}
.footer .footer-info:last-child {
  margin-bottom: 0;
}
.footer .footer-copyright {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-text {
  font-size: 14px;
  line-height: 1.48;
  color: #ffffff;
  margin-right: 24px;
}
.footer .footer-text:last-child {
  margin-right: 0;
}
.footer .footer-beian {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .beian-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-top: -4px;
  margin-right: 4px;
}

.slidebar {
  position: fixed;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  box-shadow: 0px 1px 20px 0px rgba(1, 71, 154, 0.05);
  background: #fff;
  width: 80px;
  z-index: 99;
}
.slidebar-item {
  height: 80px;
  background: #fff;
  font-size: 14px;
  color: #333333;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 21px;
  border-bottom: 1px solid rgba(52, 114, 215, 0.08);
}
.slidebar-item:last-child {
  border: none;
}
.slidebar-item .item-inner {
  text-align: center;
  width: 100%;
  padding-top: 38px;
}
.slidebar-item .item-inner.icon1 {
  background: url("../images/index/icon_slide1.png") center top no-repeat;
}
.slidebar-item:hover {
  color: #fff;
  background: -webkit-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -moz-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -o-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: linear-gradient(180deg, #1e80e2 0%, #005cb8 100%);
}
.slidebar-item:hover .item-inner.icon1 {
  background: url("../images/index/icon_slide1_h.png") center top no-repeat;
}
.slidebar-item .item-inner.icon2 {
  background: url("../images/index/icon_slide2.png") center top no-repeat;
}
.slidebar-item:hover {
  color: #fff;
  background: -webkit-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -moz-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -o-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: linear-gradient(180deg, #1e80e2 0%, #005cb8 100%);
}
.slidebar-item:hover .item-inner.icon2 {
  background: url("../images/index/icon_slide2_h.png") center top no-repeat;
}
.slidebar-item .item-inner.icon3 {
  background: url("../images/index/icon_slide3.png") center top no-repeat;
}
.slidebar-item:hover {
  color: #fff;
  background: -webkit-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -moz-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -o-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: linear-gradient(180deg, #1e80e2 0%, #005cb8 100%);
}
.slidebar-item:hover .item-inner.icon3 {
  background: url("../images/index/icon_slide3_h.png") center top no-repeat;
}
.slidebar-item .item-inner.icon4 {
  background: url("../images/index/icon_slide4.png") center top no-repeat;
}
.slidebar-item:hover {
  color: #fff;
  background: -webkit-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -moz-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: -o-linear-gradient(top, #1e80e2 0%, #005cb8 100%);
  background: linear-gradient(180deg, #1e80e2 0%, #005cb8 100%);
}
.slidebar-item:hover .item-inner.icon4 {
  background: url("../images/index/icon_slide4_h.png") center top no-repeat;
}