/* **********************************首页样式 开始********************************** */

/* 每一屏主背景 */
.bg1 {
  background: url(../images/s_bg_1.jpg) no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg2 {
  background: url(../images/s_bg_2.jpg) no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg3 {
  background: url(../images/s_bg_3.jpg) no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg4 {
  background: url(../images/s_bg_4.jpg) no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg5 {
  background: url(../images/s_bg_5.jpg) no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}


/* ==============header头部样式 开始============== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 19.2rem;
  height: 1rem;
  background: rgba(0, 0, 0, .3);
  z-index: 999;
  padding: 0 0.75rem;
}

/* logo图标 开始 */
.header .logo {
  width: 2.3rem;
  height: 0.52rem;
}

.header .logo>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.header .logo img {
  width: 2.3rem;
  height: 0.52rem;
}

/* logo图标 结束 */

/* nav导航栏 开始 */

.header .nav-item {
  position: relative;
  padding: 0.08rem 0.25rem;
  font-size: 0.18rem;
}

.header .nav-item a {
  color: #ccc;
}

.header .nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.18rem;
  width: 0.36rem;
  height: 0.02rem;
  background-color: #fff;
}

.header .nav-item.active a,
.header .nav-item:hover a {
  color: #fff;
}

/* nav导航栏 结束 */

/* ==============header头部样式 结束============== */
/* ==============第一屏内容 开始============== */
.bg-video {
  width: 100%;
  height: inherit;
  overflow: hidden;
}

/* ==============第一屏内容 结束============== */
/* ==============第二屏内容 开始============== */
/* 公共标题 开始 */
.c-title {
  height: 1.5rem;
  overflow: hidden;
}

.c-title>h2 {
  height: 0.95rem;
  font-size: 0.68rem;
  font-weight: 600;
  font-style: italic;
  /* color: #fff; */
}

.c-title>h2 span {
  padding: 0 0.1rem;
  display: inline-block;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  color: transparent;
}

.c-title>h3 {
  height: 0.55rem;
  font-size: 0.4rem;
  color: #fff;
  font-style: italic;
}

/* 公共标题 结束 */

/* 关于我们 开始 */
.m-about {
  width: 15.84rem;
  height: 8rem;
  margin: 0.2rem auto 0;
  /* background-color: teal; */
}

.m-about .about-left {
  width: 8.5rem;
  height: 100%;
  padding-left: 0.8rem;
  padding-top: 0.85rem;
}

/* 文字简介 */
.m-about .text-info {
  width: 7.7rem;
  height: 4.15rem;
  padding: 0.65rem 0;
}

.m-about .text-info>p {
  line-height: 0.3rem;
  font-size: 0.18rem;
  color: #fff;
  text-indent: 2em;
}

/* 链接 */
.c-link {
  height: 0.8rem;
}

.c-link .link-item {
  margin-right: 0.3rem;
  font-size: 0.4rem;
  font-style: italic;
  font-weight: lighter;
  transition: all 0.2s linear;
}

.c-link .link-item a {
  color: #fff;
}

.c-link .link-item:hover {
  transform: translateY(-10px);
}

.m-about .about-right {
  width: 6.62rem;
  height: 100%;
  overflow: hidden;
}

/* 云朵气球 */
.m-about .about-right .small-bg {
  width: 100%;
  height: 3rem;
  position: relative;
}

.m-about .about-right .small-bg .cloud,
.m-about .about-right .small-bg .balloon {
  position: absolute;
}

.m-about .about-right .small-bg .cloud-1 {
  left: 0.35rem;
  top: 0.6rem;
  width: 1.37rem;
  animation: cloudMove 4s linear infinite;
}

.m-about .about-right .small-bg .cloud-2 {
  left: 2.3rem;
  top: 1.47rem;
  width: 0.72rem;
  animation: cloudMove 4s 1s linear infinite;
}

.m-about .about-right .small-bg .cloud-3 {
  left: 4rem;
  top: 1.8rem;
  width: 1.03rem;
  animation: cloudMove 4s 2s linear infinite;
}

.m-about .about-right .small-bg .balloon {
  left: 5.45rem;
  top: 0;
  width: 1rem;
  animation: cloudMove 3s linear infinite;
}

@keyframes cloudMove {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}


/* 视频框 */
.video-box {
  width: 6.62rem;
  height: 3.93rem;
  background: url(../images/video_box.jpg) no-repeat;
  margin-top: 0.1rem;
  padding: 0.24rem 0.22rem;
  overflow: hidden;
}

.video-box .video-item {
  width: 6.18rem;
  height: 3.45rem;
}

.video-box video {
  width: 100%;
  height: 100%;
}



/* 关于我们 结束 */

/* ==============第二屏内容 结束============== */

/* ==============第三屏内容 开始============== */
.m-hotgame {
  height: inherit;
}

.m-hotgame .hotgame-item {
  position: relative;
  width: 3.94rem;
  height: 100%;
  padding: 0 0.05rem;
  cursor: pointer;
}

.m-hotgame .hotgame-item .item-pic {
  height: 100%;
  filter: grayscale(1);
  transition: all 0.2s linear;
}

.m-hotgame .hotgame-item .item-pic img {
  width: 100%;
  height: 100%;
}

.m-hotgame .hotgame-item:hover .item-pic {
  filter: grayscale(0);
}

.m-hotgame .hotgame-item .item-text {
  display: none;
  position: absolute;
  left: 0.2rem;
  bottom: 0.2rem;
  width: 3.44rem;
  height: 3.4rem;
  background: rgba(0, 0, 0, .5);
  padding: 0.15rem;
  overflow: hidden;
}

.m-hotgame .hotgame-item .item-text>h2,
.m-hotgame .hotgame-item .item-text>h3 {
  color: #fff;
  text-align: center;
}

.m-hotgame .hotgame-item .item-text>h2 {
  font-size: 0.24rem;
  padding-bottom: 0.05rem;
}

.m-hotgame .hotgame-item .item-text>h2 span {
  position: relative;
}

.m-hotgame .hotgame-item .item-text>h2>span::after {
  content: '';
  position: absolute;
  left: 25%;
  bottom: -0.05rem;
  width: 50%;
  height: 2px;
  background-color: #fff;
}

.m-hotgame .hotgame-item .item-text>h3 {
  font-size: 0.14rem;
}

.m-hotgame .hotgame-item .item-text .txt {
  line-height: 0.25rem;
  margin-top: 0.1rem;
  font-size: 0.14rem;
  color: #fff;
  text-indent: 2em;
}

.m-hotgame .hotgame-item:hover .item-text {
  display: block;
}

/* ==============第三屏内容 结束============== */

/* ==============第四屏内容 开始============== */
.m-news {
  width: 15.84rem;
  height: 8rem;
  margin: 1rem auto 0;
  padding-top: 0.8rem;
}

.m-news .news-left {
  width: 7.25rem;
  height: 8rem;
  padding-left: 0.85rem;
}

/* 新闻轮播图 */
.news-banner {
  position: relative;
  width: 6.4rem;
  height: 3.8rem;
  padding-bottom: 0.8rem;
  margin: 0.75rem 0 0.4rem;
  overflow: hidden;
}

/* 轮播图点标记 */
.news-banner .banner-point {
  position: absolute;
  left: 0;
  bottom: 0.9rem;
  width: 100%;
  height: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.news-banner .banner-point .point-item {
  width: 0.3rem;
  height: 0.06rem;
  border-radius: 0.03rem;
  background-color: #B3B3B3;
  margin: 0 0.05rem;
  cursor: pointer;
}

.news-banner .banner-point .point-item.active {
  background-color: #fff;
}

/* 轮播图片 */

.news-banner .banner-list {
  width: 12.8rem;
  height: 3rem;
  position: absolute;
  overflow: hidden;
}

.news-banner .banner-list .list-item {
  float: left;
  position: relative;
  width: 6.4rem;
  height: 3rem;
}

/* 轮播文字 */
.news-banner .text-list {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8rem;
  background-color: #3A2195;
}

.news-banner .text-list .list-item {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  padding: 0.1rem 0.3rem;
}

.news-banner .text-list .list-item .txt {
  font-size: 0.18rem;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-banner .text-list .list-item .time {
  font-size: 0.12rem;
  color: #fff;
}

.news-banner .text-list .list-item .time i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 0.1rem;
  background: url(../images/time_icon.png) no-repeat;
}

.news-banner .text-list .list-item {
  opacity: 0;
}

.news-banner .text-list .list-item.active {
  opacity: 1;
}

.m-news .news-right {
  width: 7.84rem;
  height: 8rem;
  padding-top: 2.25rem;
}

/* 新闻列表 */
.news-list {
  width: 5.95rem;
  height: 3.8rem;
  overflow: hidden;
}

.news-list .list-item {
  height: 0.73rem;
  border-bottom: 2px solid #DBCDFF;
}

.news-list .list-item:first-child {
  border-top: 2px solid #DBCDFF;
}

.news-list .list-item>a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 0.18rem;
  color: #fff;
}

.news-list .list-item>a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.18rem;
  height: 0.18rem;
  transform: rotate(45deg);
  margin: 0 0.25rem 0 0.1rem;
  transition: all 0.2s linear;
  border: 0.02rem solid #fff;
}

.news-list .list-item>a .icon::after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-color: #FFF658;
}

.news-list .list-item>a .txt {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-list .list-item>a .time {
  margin-left: 0.25rem;
  margin-right: 0.1rem;
}

.news-list .list-item>a:hover {
  color: #FFF658;
}

.news-list .list-item>a:hover .icon {
  transform: rotate(0);
}

/* ==============第四屏内容 结束============== */
/* ==============第五屏内容 开始============== */
.m-joins {
  width: 15.8rem;
  height: 6.9rem;
  margin: 1rem auto 0;
  padding: 0.85rem 0.75rem 0;
}

.m-joins .pos-list {
  height: 4.2rem;
  margin-top: 0.35rem;
}

.m-joins .pos-list .list-item {
  position: relative;
  width: 2.7rem;
  height: 4.2rem;
  margin: 0 0.1rem;
}

.m-joins .pos-list .list-item:first-child {
  margin-left: 0;
}

.m-joins .pos-list .list-item:last-child {
  margin-right: 0;
}

.m-joins .pos-list .list-item .pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.m-joins .pos-list .list-item .pic img {
  transition: transform 0.2s linear;
}

.m-joins .pos-list .list-item:hover .pic img {
  transform: scale(1.2);
}

.m-joins .pos-list .list-item .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.m-joins .pos-list .list-item .info .icon {
  width: 0.92rem;
  height: 0.48rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.35rem;
}

.m-joins .pos-list .list-item .info .name {
  height: 0.3rem;
  line-height: 0.3rem;
  font-size: 0.24rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0.3rem;
}

.m-joins .pos-list .list-item .info .link {
  width: 1.5rem;
  height: 0.32rem;
  line-height: 0.32rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, .3);
  font-size: 0.18rem;
  color: #fff;
  text-align: center;
  transition: all 0.2s linear;
}

.m-joins .pos-list .list-item .info .link:hover {
  color: #FFF658;
  transform: translateY(-5px);
}

/* footer底部 开始 */
.footer {
  width: 14.3rem;
  padding-top: 0.2rem;
  padding-left: 1.7rem;
  margin: 0 auto;
  display: flex;
}

.footer .f-logo {
  width: 1.3rem;
  height: 1.1rem;
  overflow: hidden;
}

.footer .f-logo>a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.footer .copyright {
  width: 6rem;
  padding: 0.2rem 0 0 0.3rem;
  border-left: 1px solid #B3B3B3;
}

.footer .copyright .txt {
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  color: #b2b2b2;
}

.footer .copyright .txt a {
  color: #b2b2b2;
}

.footer .copyright .txt a:hover {
  color: #fff;
}

.footer .f-right {
  display: flex;
  align-items: flex-end;
}

.footer .f-right>a {
  margin-right: 0.4rem;
}

/* footer底部 结束 */

/* ==============第五屏内容 结束============== */

/* **********************************首页样式 结束********************************** */