* {
  margin: 0;
  padding: 0;
  /* font-family: "微软雅黑", "SimSun", "Microsoft YaHei"; */
  letter-spacing: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

*:focus {
  outline: none;
}

a {
  color: #2c3147;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #0193de;
}
ul,ol,li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: bottom;
}

body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
table,
td,
img,
div,
input {
  padding: 0;
  border: 0 none;
  outline: none;
}
html,
body {
  height: 100%;
  width: 100%;
}

.l {
  float: left;
}

.r {
  float: right;
}

.clear {
  clear: both;
}
.container {
  width: 1400px;
  margin: 0 auto;
}

.header {
  background: #0193de;
  position: relative;
}
.header-text {
  color: #fff;
  font-size: 14px;
  background: #707376;
  padding: 8px 0;
}
.header-text ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 28px;
  position: relative;
}
.header-text ul li{
  display: flex;
  align-items: center;
}
.header-text ul li a,
.header-text ul li span{
  line-height: 14px;
  font-size: 14px;
  margin-left: 12px;
  padding-left: 13px;
  border-left: 1px #ccc solid;
  color: #fff;
  display: inline-block;
}
.header-text ul li:first-child a {
  margin-left: 0px;
  padding-left: 0;
}
.header-text ul li:first-child a{
  border: 0;
}
.header-text ul li a:hover {
  color: #fff;
}
.header-log {
  background: #d9dadb url(../image/list_header.png) no-repeat;
  background-position: center;
  height: 120px;
  display: flex;
  align-items: center;
}
.header .logo img{
  width: 410px;
  object-fit: cover;
}
.header .bar {
  display: none;
  margin-top: -5px;
  /* position: relative;
  z-index: 1; */
}
.header .bar .icon-bar{
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 1px;
  background: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.header .baractive .icon-bar:nth-of-type(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header .baractive .icon-bar:nth-of-type(2) {
  opacity: 0;
}
.header .baractive .icon-bar:nth-of-type(3) {
  top: -7px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


.header .nav {
  display: flex;
  position: relative;
}
.header .search {
  margin-left: 10px;
}
.search-icon {
  cursor: pointer;
}
.search-icon img {
  height: 18px;
  width: 18px;
}
.search-icon span {
  font-size: 32px;
  line-height: 28px;
  margin-left: 2px;
  color: #1989fa;
  display: none;
}
.header .search input{
  border: 1px #f5f5f5 solid;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  height: 28px;
  padding: 0 10px;
}
.header .search a{
  display: inline-block;
  height: 28px;
  width: 28px;
  border-radius: 0 10px 10px 0;
  border: 0;
  vertical-align: bottom;
  margin-left: -6px;
  text-align: center;
  background: #fff;
  padding: 0;
}
.header .search a img {
  margin-top: 5px;
  height: 18px;
  width: 18px;
}
.header .nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header .nav ul li{
  position: relative;
  flex: 1;
  text-align: center;
  padding: 10px 0
}
.header .nav ul li a{
  color: #fff;
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 32px;
}
.header .nav ul li span {
  display: none;
}
.header .nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffe17a;
  -webkit-transition: all linear 0.4s;
  -moz-transition: all linear 0.4s;
  transition: all linear 0.4s;
}
.header .nav ul li.on a::after,
.header .nav ul li.active a::after{
  width: 22px;
  margin-left: -11px;
}
.header .nav ul li .nav-menu{
  overflow: hidden;
  position: absolute;
  background: #fff;
  width: 148px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  left: 50%;
  transform: translate(-50%, 43px);
  -webkit-transition: max-height linear .5s;
  -moz-transition: max-height linear .5s;
  transition: max-height linear .5s;
  z-index: 999;
  padding: 0 14px;
  top: 9px;
  display: none;
}
.header .nav ul li .nav-menu .items a{
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
  line-height: 46px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header .nav ul li .nav-menu .items:last-child a{
  border: 0;
}
.header .nav ul li .nav-menu .items a:hover{
  color: #037CFF;
}
.header .nav ul li .nav-menu .items a::after {
  content: none;
}

.footer {
  background: #0193de;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer .left p {
  color: #fff;
  line-height: 36px;
  font-size: 14px;
}
.footer .code {
  display: flex;
}
.footer .code .code-box {
  color: #fff;
  text-align: center;
  margin-left: 20px;
  white-space: nowrap;
}
.footer .code .code-box img{
  display: block;
  margin: 10px auto;
  height: 60px;
  object-fit: cover;
}
.footer-text {
  background-color: #125bd4;
  padding: 10px 0;
  justify-content: center;
  display: flex;
  color: #fff;
  font-size: 14px;
}
.footer-text a {
  color: #fff;
  margin: 0 10px;
}
.footer-text a:hover{
  text-decoration: underline;
}
.footer-text img {
  margin-right: 6px;
  vertical-align: -4px;
}

/*#index {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/
.main-content {
  /*flex: 1;
  flex-basis: 0%;*/
  min-height: calc(100% - 404px);
}

#back-to-top{
  position:fixed;
  display:none;
  bottom:100px;
  right:20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(0,0,0,0.3);
  text-align: center;
  color: #666;
}
#back-to-top:hover {
  background: rgba(0,0,0,0.6);
  cursor: pointer;
}
#back-to-top img {
  display: block;
  margin: 7px auto;
  height: 28px;
  width: 28px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-content {
    min-height: calc(100% - 385px);
  }
}
