/* CSS Document */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  /*清除移动端默认的点击高亮效果*/
  -webkit-tap-highlight-color: transparent;
  /*设置以边框开始计算宽度*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html,
body {
  width: 100%;
  font-size: 14px;
  color: #333;
  line-height: 1.15;
  font-family: "PingFang SC", "微软雅黑", "Microsoft YaHei", Helvetica, "Helvetica Neue", Tahoma, Arial, sans-serif;
  position: relative;
}

ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: normal;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0 none;
}

a {
  outline: none;
  text-decoration: none;
  color: #333;
  -o-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #1c7af9;
  cursor: pointer;
}
em,
i {
  font-style: normal;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.clearfix {
  +zoom: 1;
  _zoom: 1;
  +overflow: hidden;
  _overflow: hidden;
}
.fl {
  float: left;
}

.fr {
  float: right;
}
.mb60{
  margin-bottom: 60px;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}

/* footer */
.foot {
  width: 100%;
  padding: 90px 161px 44px 160px;
  background-color: rgba(8, 24, 56, 1);
}

.footinner h4 {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-family: PingFangSC-Semibold;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 6px;
}
.footinner ul{
  overflow: hidden;
}
.footinner li {
  margin-top: 14px;
}
.footinner span {
  color: rgba(153, 153, 153, 1);
  font-size: 16px;
  line-height: 16px;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.footinner span:hover {
  color: #54a8de;
}
.footinner span a{
  color: rgba(153, 153, 153, 1);
  font-size: 16px;
  line-height: 16px;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.footinner span a:hover {
  color: #54a8de;
}

.foot .foottel{
  margin-top: 6px;
}
.foot .foottel span {
  color: #54a8de;
  font-size: 17px;
  line-height: 24px;
  margin-left: 5px;
}
.foot .footbot{
  text-align: center;
  margin-top: 80px;
}
.foot .footbot p:first-child{
  margin-bottom: 10px;
}
.foot .footbot p {

  font-size: 12px;
  color: #999999;
  line-height: 14px;
  font-style: normal;
}
.foot .footbot p br{
  display: none;
}
@media screen and (max-width: 750px) {
  .foot{
    padding: 15px;
  }
  .footinner{
    position: relative;
  }
  .footinner h4 {
      color: rgba(255, 255, 255, 1);
      font-size: 14px;
      font-family: PingFangSC-Semibold;
      font-weight: 600;
      line-height: 20px;
      margin-bottom: 6px;
  }
  .footinner span {
      color: rgba(153, 153, 153, 1);
      font-size: 12px;
      line-height: 14px;
      margin-left: 5px;
  }
  .footinner.justify-around{
    justify-content: start;
  }
  .footinner .item:nth-child(2),
  .footinner .item:nth-child(3){
    display: none;
  }
  .foot .footbot{
    margin-top: 15px;
  }
  .foot .footbot p{
    text-align: center;
    line-height: 25px;
	font-size: 12px;
  }
  
  .foot .footbot p:first-child{
    text-align: left;
  }
  .foot .footbot p br{
    display: block;
  }
  .footinner .item:nth-child(1){
    position: absolute;
    right: 0;
	
  }
  .footinner .item:nth-child(1)> img{
    width: 45px !important;
  }
  .footinner .item:nth-child(1) .foottel img{
    width: 12px;
    height: 12px;
  }
  .footinner .item:nth-child(1) .foottel span{
    font-size: 8px;
    line-height: 12px;
  }
}