:root {
  --zhu-padding: 20px;
  --zhu-border-color: #e5e5e5;
}
body{
    min-width:1280px;
}
.advertisement {
  /*height: 120px;*/
  background-image: url(../img/top.jpg);
  background-size: cover;
  overflow:hidden;
}
.advertisement .container{
    margin-top:20px;
}
.logo{
    /*width: 108px;*/
    height: 103px;
}
.logo img{
    display:block;
    width:100%;
    height:100%;
}
.advertisement .info {
  padding-bottom: 7px;
  margin-left: 30px;
  color: #fff;
  align-self: self-end;
}
.advertisement .info .t {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 5px;
}
.advertisement .info .b {
  font-size: 24px;
}
.advertisement-right{
    padding-top:50px;
}
.advertisement-input{
    width: 180px;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #B5B5B5;
    border-radius: 5px;
    text-indent:10px;
}
.search-btn{
    width: 30px;
    height: 30px;
    margin-left:10px;
    background:url("/web/img/search.jpg") no-repeat;
    background-size:100% 100%;
    cursor:pointer;
}
.header {
    margin-bottom:20px;
  height: 50px;
  background-color: #1185EE;
}
.header .content {
  height: 50px;
}
.head-info-img1{
    /*margin-top:21px;*/
    /*width:790px;*/
    height:120px;
}
.head-info-img2{
    margin-left:60px;
    margin-top:36px;
    width:410px;
    height:47px;
}
.head-info-img img{
    display:block;
    width:100%;
    height:100%;
}
.nav-list {
  height: 50px;
  width:1280px;
}
.nav-list > li{
  position: relative;
  display: flex;
  align-self: stretch;
}
.nav-item {
    width:110px;
    text-align:center;
      font-size: 18px;
      align-self: stretch;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      color: #fff;
}
.nav-item a{
  color: #fff;
}
.nav-item a{
  color: #fff;
}
.nav-link {
  width: 110px;
  height: 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-list > li:not(:first-child) .nav-item {
  width: 110px;
}
.nav-list > li:hover .nav-item, .nav-link:hover {
  background-color:#132d8e;
}
.nav-list > li:hover .nav-child {
  visibility: visible;
}
.nav-child {
    display:flex;
    flex-wrap:wrap;
  z-index: 100;
  position: absolute;
  top: 50px;
  left: 0;
  width:220px;
  /*padding: 10px;*/
  background-color:#1185EE;
  visibility: hidden;
}
.nav-child > li a{
    width:110px;
    display:block;
  color: #fff;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
}
.nav-child > li a:hover {
  color: #fff;
  background-color: #132d8e;
}
.footer {
  padding: var(--zhu-padding) 0;
  text-align: center;
}
.footer-link {
  padding: 19px 0;
  line-height:25px;
  color: #fff;
  background-color: #fff;
}
.footer-link .title {
  margin-right: 40px;
  font-size: 18px;
  color:#333;
  font-weight:bold;
}
.footer-link .link-list{
    margin-left:130px;
}
.footer-link .link-list .item {
  margin-right: 30px;
}
.link-list .item a{
    color:#333;
}
.footer-content {
  padding: 20px 0;
  color: #fff;
  line-height: 28px;
  background-color: #1185EE;
}
.footer-content-text{
    text-align:left;
}
/*二维码*/
/*
 <div class="footer-media">
          <div class="footer-media-erwei">
              <img src=""/>
              <p class="footer-media-text">微信公众号</p>
          </div>
          <div class="footer-media-erwei">
              <img src=""/>
              <p class="footer-media-text">微信公众号</p>
          </div>
      </div>
*/
.footer-media{
    width:220px;
}
.footer-media-erwei img{
    display:block;
    width:90px;
    height:90px;
}
.footer-media-text{
    margin-top:16px;
    text-align:center;
    font-size: 14px;
    color: #FFFFFF;
}







/*其他*/

.container {
  width: 1280px;
  margin: 0 auto;
}
.other-main{
  padding:10px 20px 40px;
  overflow: hidden;
  background-color: #ECF9FF;
}

.section-item:not(:last-child) {
  margin-bottom: var(--zhu-padding);
}

.card-box {
  padding: var(--zhu-padding);
  background-color: #fff;
}

.card-title {
  height: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  font-weight: 500;
  margin-bottom: 20px;
}

.link {
  color: #111;
  cursor: pointer;
}
.link>a:hover{
  color: #0087e6 !important;
}
.link.active {
    color: #0087e6 !important;
}

.bg {
  background-color: aqua;
}
.mb {
  margin-bottom: var(--zhu-padding);
}
.mr {
  margin-right: var(--zhu-padding);
}

/* flex布局 */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink {
  flex-shrink: 0;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.flex-min {
  min-width: 0;
}

.flex-1 {
  flex: 1;
}

/* 超出隐藏缩略 */
.line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
