﻿.wrap {
  width: 100%;
  overflow: hidden;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
}

body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  background: url('pcbg.png') 0 0 no-repeat;
  background-size: 100% 100%;
}

.flex {
  display: flex;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.top {
  width: 100%;
  margin-top: 1%;
  overflow: hidden;
  font-size: 0;
}

.top a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 160px;
  height: 44px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #0462a7;
  line-height: 44px;
  text-align: center;
  border-right: 3px;
  background: #fff;
  margin-right: 10px;
}

.top a.btn img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.logo {
  width: 17.44%;
  margin: 3% auto 5%;
  overflow: hidden;
}

.logo img {
  width: 100%;
}

.list .item {
  width: 180px;
  height: 180px;
  margin-right: 190px;
  float: left;
  border-radius: 100px;
  background: rgba(255, 255, 255, .8);
  position: relative;
}
.list .item:last-child{
  margin-right: 0;
}
.list .item img {
  margin: 40px auto 10px;
}
.list .item p{
  width: 100%;
  font-size: 24px;
  color: #0462a7;
  text-align: center;
}

.foot {
  width: 100%;
  padding: 35px 0;
  background-color: #0462a7;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.footinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footinner img {
  float: left;
}

.footinner p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.footinner p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  *{
    font-size: 12px !important;
  }
  .container {
    width: 100%;
    padding: 0 10px;
  }
  body{
    background: url('ydbg.png') 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .top{
    margin-top: 0;
    padding-top: 20px;
    overflow: hidden;
  }
  .top a.btn{
    width: auto;
    height: 23px;
    padding: 0 10px;
    margin-right: 5px;
    border-radius: 5px;
  }
  .top a.btn:nth-child(2n){
    margin-right: 0;
  }
  .top a.btn img{
    width: 10px;
    margin-right: 5px;
  }
  .logo{
    width: 45.3%;
    margin: 80px auto 75px;
  }
  .list .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px !important;
  }
  .list .item{
    width: 80px;
    height: 80px;
    float: none;
    margin-right: 0;
  }
  .list .item img{
    width: 30px;
    margin: 18px auto 5px;
  }
  .foot{
    display: none;
  }
}