﻿/* 申明当前css文件是UTF-8字符编码 */
@charset "UTF-8";
/*清除所有元素内外间距*/
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, img {
  margin: 0;
  padding: 0;
}

img, input, button, textarea {
  border: none;
  padding: 0;
  margin: 0;
  /*去掉input默认的蓝色边框*/
  outline-style: none;
}

/* 去掉li默认的样式 */
li {
  list-style: none;
}

input {
  font-family: "Microsoft YaHei";
}

select, input, textarea {
  font-size: 12px;
  margin: 0;
}

/* 去掉文本域可以被拉大的效果 */
textarea {
  resize: none;
}

img {
  border: 0;
  display:block; /*去除底边的像素*/
}


/*清除浮动最现代、最流行的方式*/
 .clearfix::after {
   content: "";
   display: block;
   height:0;
   clear: both;
}
/*兼容IE67*/
.clearfix {
  *zoom: 1;
}
/* 去掉a的默认底线 */
a{
  text-decoration: none;
  color:#000;
}


/* 去掉h1- h6的标签默认样式 */
h1, h2, h3, h4, h5, h6 {
  text-decoration: none;
  font-weight: normal;
  font-size: 100%;
}

/* 版心 */


.fl{
  float:left;
}
.fr{
  float:right;
}

/* 多行文本省略号 */
.txt-cut{
	overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.friendShipLink{
  position: relative;
  background-color: #000;
  padding: 50px 50px 0 50px;
}
.friendShipLink .fastLink{
  display: flex;
  height: 400px;
  width: 100%;
  background-color: #000;
}
.friendShipLinkMobile .fastLink{
  height: 600px;
  flex-direction: column;
}
.friendShipLinkMobile .fastLink .followUs{
  width: 100%;
}
.friendShipLinkMobile .fastLink .followUs h5{
  font-size: 1rem;
}
.friendShipLinkMobile .fastLink .followUs .qrCode{
  margin-top: 20px;
}
.friendShipLink .fastLink .fastLinkLogo{
  position: relative;
  width: 30%;

}
.friendShipLink .fastLink .fastLinkLogo:before{
  content: '';
  position: absolute;
  width: 1px;
  height: 50%;
  background: #d2d2d2;
  right: 0px;
  top: 15%;
}
.friendShipLink .fastLink .fastLinkLogo img{
  width: 50%;
}
.friendShipLink .fastLink .fastLinkLogo p{
  display: flex;
  justify-content: flex-start;
  color: #fff;
  font-family: FreightSansPro-Book, Verdana, sans-serif;;
  font-size: 15px;
  font-weight: 700;
  margin-top: 30px;
}
.friendShipLink .fastLink .fastLinkLogo p img{
  width: 25px;
  margin-right: 10px;
}


.fastLink .fastLinkList{
  position: relative;
  width: 60%;
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
}
.fastLink .fastLinkList div{
  width: 17%;
  height: 100%;
}
.fastLink a{
  text-decoration: none;
}
.fastLink .fastLinkList div h5{
  position: relative;
  padding-bottom: 10px;
}
.fastLink .fastLinkList div h5 a{
  color: #fff;

}
.fastLink .fastLinkList div h6{
  margin-top: 15px;
}
.fastLink .fastLinkList div h6 a{
  color: #918f8f;
}

.registration{
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #fff;
  text-align: center;
  color: #918f8f;
}
.registration img{
  display: inline;
  margin-left: 20px;
  margin-right: 3px;
  margin-top: -2px;
}
.registration a{
  color: #918f8f;
  text-decoration: none;
}
.registration a:hover{
  color: #fff;
  text-decoration: none;
}


.toTop{
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #2151ef;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s;;
}
.toTop:hover{
  background-color: #10309a;
}
.toTop:active{
  background-color: #2151ef;
}
.toTop img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 60%;
  width: 60%;
}

.topTopBlock{
  opacity: 1;
  z-index: 999;

}
.topTopNone{
  opacity: 0;
}


