@charset "utf-8";
/*重置样式*/
*{
  margin:0;padding:0;
  box-sizing: border-box;
}
ul,ol,li{
  list-style:none;
}
b,strong{
  font-weight:normal;
}
i,em{
  font-style:normal;
}
a,u{
  text-decoration:none;
}
h1,h2,h3,h4,h5,h6{
  font-size:16px;font-weight:normal;
}
html,body{
  width: 100%;
  height: 100%;
}
/* logo */
#logo{
  width: 100%;
  height: 85px;
  color: #fff;
  background: rgb(51, 59, 70);
  padding: 0 10%;
  display: flex;
  align-items: center;
  position: relative;
}
#logo img{
  border-radius: 12px;
  width: 59px;
  height: 59px;
  cursor: pointer;
}
#logo p{
  cursor: pointer;
  margin-left: 10px;
  font-size: 24px;
  font-family: "Microsoft YaHei","SimSun",Arial, Helvetica, sans-serif;
}
#logo .btn{
  position: absolute;
  right: 350px;
  padding: 4px 8px;
  border: 1px solid #fff;
  cursor: pointer;
}
/* container */
#container{
  position: relative;
  width:100%;
  height: 800px;
  background: rgb(60, 69, 82);
  padding: 0 10%;
}
#container .left{
  width: 228px;
  margin: 60px 0 0 80px;
  float: left;
  position: relative;
  display: none;
}
#container .ewmbox{
  width: 228px;
  height: 314px;
  background: url('./images/ewm-bg.png') no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}
#container .ewmbox img{
  width: 200px;
  height: 200px;
}
#container .ewmbox p{
  font-size: 14px;
  color: #9fa0a0;
  line-height: 20px;
  margin-top: 20px;
}
.download{
  margin-top: 90px;
  width: 228px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download div{
  width: 178px;
  height: 59px;
  margin-top: 30px;
  cursor: pointer;
}
#android{
  background: url('./images/download-android.png') no-repeat;
  background-size: 100% 100%;
}
#ios{
  background: url('./images/download-ios.png') no-repeat;
  background-size: 100% 100%;
}
#container .right{
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 100px;
  width: 350px;
  height: 663px;
  background: url('./images/android.png') no-repeat;
  background-size: 100% 100%;
}
#container .right img{
  margin: 75px 0 0 40px;
  width: 272px;
  height: 492px;
}

#container .center{
  float: left;
  width: 840px;
  height: 621px;
  background: #49515e;
  margin-top: 60px;
  margin-left: 60px;
  transition: all 1s;
}
#container .center .tabar{
  width: 100%;
  height: 70px;
  display: flex;
}
#container .center .tabar li{
  flex:1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;;
}
#container .center .tabar li span{
  font-size: 24px;
  color: #fff;
}
#container .center .tabar .active::before{
  content: '';
  width: 57px;
  height: 6px;
  background: #fe3a52;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#container .center .tabar .active span{
  color: #fe3a52;
}

#container .center .line{
  width: 100%;
  height: 17px;
  background: #3d4552;
}

#container .center .newslist{
  width: 100%;
  height: 530px;
  position: relative;
}
#container .center .newslist ul{
  position: absolute;
  left: 0;
  top:0;
  opacity: 0;
  transition: 0.7s;
  padding: 0 42px 0 25px;
}
#container .center .newslist .active{
  opacity: 1;
}
#container .center .newslist ul li {
  display: flex;
  padding: 25px 0 20px;
  border-bottom: 1px solid #7d7d7d;
}
#container .center .newslist .newslist_left{
  min-width: 222px;
  max-width: 222px;
  height: 122px;
  margin-right: 32px;
}
#container .center .newslist .newslist_left img{
  width: 100%;
  height: 100%;
}
#container .center .newslist .newslist_right{
  padding: .2rem 0;
  flex: 1;
}
#container .center .newslist .newslist_right h2{
  font-size: 20px;
  color: white;
  font-weight: 500;
}
#container .center .newslist .newslist_right  p{
  font-size: 15px;
  color: #c2c6c9;
  margin: 20px 0;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#container .center .newslist .newslist_right span{
  font-size: 12px;
  color: #262d37;
}


#copyright{
  width: 100%;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  background: rgb(51,59,70);
  color: rgb(77,86,98);
  
}
#copyright p{
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
#copyright p a{
  color: #fff;
}