.active_header {
  background-color: unset;
}

.main_wrap {
  /*padding: 80px 0 0 0;*/
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.gif {
  width: 100%;
}

video::-webkit-media-controls-fullscreen-button {
  display: none;
}

video::-webkit-media-controls-play-button {
  display: none;
}

video::-webkit-media-controls-timeline {
  display: none;
}

video::-webkit-media-controls-current-time-display {
  display: none;
}

video::-webkit-media-controls-time-remaining-display {
  display: none;
}

video::-webkit-media-controls-mute-button {
  display: none;
}

video::-webkit-media-controls-toggle-closed-captions-button {
  display: none;
}

video::-webkit-media-controls-volume-slider {
  display: none;
}

video::-webkit-media-controls-enclosure {
  display: none;
}


.main_content {
  width: 100%;
  background-origin: border-box;
  padding: 314px 0 0 240px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: relative;
  background: url("../../images/index/index_bg.jpg") center center no-repeat;
  background-size: 100% 100%;
  height: 960px;
}

.main_title {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #fff;
  width: 740px;
  font-size: 42px;
  line-height: 58px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.index_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.apply_button {
  width: 136px;
  height: 50px;
  background-color: #1575fe;
  border-radius: 78px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 60px 0 0 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.main_title>span:nth-of-type(2) {
  color: #1575fe;
}

img {
  display: block;
}

/*  技术驱动  */
.business_wrap {
  position: relative;
  height: 666px;
  background: url("../../images/index/business_bg.jpg") center center no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 0 0 0;
}

.business_title {
  font-size: 42px;
  text-align: center;
  color: #fff;
  font-weight: 549;
  margin: 0 0 60px 0;
}

.business_list {
  display: flex;
  justify-content: space-around;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 240px;
}

.business_item {
  width: 324px;
  box-sizing: border-box;
  padding: 32px 0 0 0;
}

.business_img {
  width: 185px;
  height: 185px;
  margin: 0 auto 32px;
}

.business_item_title {
  color: #fff;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}

.business_item_text {
  color: #cccccc;
  font-size: 14px;
  line-height: 22px;
  margin: 12px 0 0 0;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 24px;
}

/* 业态解决方案 */
.format_wrap {
  height: 876px;
  overflow: hidden;
  background: url("../../images/index/format_bg.png") center center no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 100px 0 0 0;
}

.format_title {
  font-size: 40px;
  color: #1d2129;
  text-align: center;
  font-weight: 549;
  letter-spacing: 1px;
  margin: 0 0 40px 0;
}

.format_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 240px;
  list-style-type: none;
  margin: 0 0 44px 0;
}

.format_menu_item {
  font-size: 16px;
  color: rgba(29, 33, 41, 0.7);
  font-weight: 600;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 0 12px 0;
  cursor: pointer;
}

.format_menu_item:hover {
  color: #1575fe;
  border-bottom: 3px solid #1575fe;
}

.format_menu_active {
  color: #1575fe;
  border-bottom: 3px solid #1575fe;
}

.f_animate_left {
  animation-name: slide-in-left;
  /* 指定动画序列的名称 */
  animation-duration: 0.5s;
  /* 动画持续时间 */
  animation-fill-mode: forwards;
  /* 保持动画结束状态 */
}

.f_animate_right {
  animation-name: slide-in-right;
  /* 指定动画序列的名称 */
  animation-duration: 0.5s;
  /* 动画持续时间 */
  animation-fill-mode: forwards;
  /* 保持动画结束状态 */
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
  }

  /* 初始状态，向左平移100% */
  100% {
    transform: translateX(0);
  }

  /* 结束状态，不再平移 */
}

@keyframes slide-in-right {
  0% {
    transform: translateX(200%);
  }

  /* 初始状态，向左平移100% */
  100% {
    transform: translateX(0);
  }

  /* 结束状态，不再平移 */
}

.format_list {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 240px;
}

.format_item {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 678px;
  height: 502px;
}

.format_content {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 0;
}

.format_article {
  font-size: 32px;
  color: #1d2129;
  font-weight: 600;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.self_img {
  width: 54px;
  height: 54px;
  margin: 0 16px 0 0;
}

.format_desc {
  width: 528px;
  font-size: 16px;
  /* color: #4f5869; */
  font-weight: 400;
  line-height: 26px;
  margin: 24px 0;
}

.format_desc_item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #1d2129;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.correct_icon {
  width: 20px;
  height: 20px;
  margin: 0 12px 0 0;
}

.format_img {
  width: 100%;
  height: 100%;
}

.format_detail_button {
  width: 120px;
  height: 48px;
  background-color: #2977f9;
  border-radius: 78px;
  margin: 44px 0 0 0;
  line-height: 48px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.format_detail_button:hover {
  background-color: #0065f2;
}

.format_opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 424px;
  margin: 44px 0 0 0;
}

.format_opt_img {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.left {
  background: url("../../images/index/opt_left.png") center center no-repeat;
  background-size: 100% 100%;
}

.right {
  background: url("../../images/index/opt_right.png") center center no-repeat;
  background-size: 100% 100%;
}

.left:hover {
  background: url("../../images/index/left_active.png") center center no-repeat;
  background-size: 100% 100%;
}

.right:hover {
  background: url("../../images/index/right_active.png") center center no-repeat;
  background-size: 100% 100%;
}

/* 场景解决方案 */
.screen_wrap {
  height: 958px;
  background: linear-gradient(96deg, #141c30 0%, #152639 93%);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 100px 0 0 0;
  overflow: hidden;
}

.screen_title {
  font-size: 40px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 0 37px 0;
  font-weight: 549;
}

.screen_tag_list {
  list-style-type: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen_tag_item {
  width: 12%;
  font-size: 16px;
  color: #fbfbfb;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  /* margin: 0 85px 0 0; */
}

/*.screen_text:hover {
    color: #2977F9;
    border-bottom: 3px solid #2977F9;
}*/

/*.screen_tag_active {
    color: #2977F9;
    border-bottom: 3px solid #2977F9;
}*/

.screen_tag_active>span {
  color: #2977f9;
  border-bottom: 3px solid #2977f9;
  display: block;
}

.screen_tag_item>img {
  width: 81px;
  height: 68px;
}

.screen_text {
  font-size: 16px;
  text-align: center;
  margin: 10px 0 0 0;
  width: 64px;
  padding: 0 0 15px 0;
  font-weight: 550;
}

.screen_content {
  margin: 60px 240px 0 240px;
  height: 493px;
  background: rgba(1, 30, 44, 0.35);
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  border-radius: 24px;
  background-image: url("../../images/index/screen_bg.png");
  background-size: 100% 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.screen_img {
  width: 819px;
  height: 471px;
  border-radius: 20px;
  display: block;
  margin: -28px 0 0 0;
}

.screen_info {
  width: 600px;
  height: 420px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 32px;
  margin: 36px 0 0 0;
}

.screen_info_title {
  display: flex;
  align-items: center;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}

.screen_icon {
  width: 55px;
  height: 55px;
  margin: 0 16px 0 0;
}

.screen_desc {
  margin: 23px 0 26px 0;
  color: rgba(217, 217, 217, 0.8);
  font-weight: 400;
  line-height: 26px;
}

.screen_desc_item {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
  color: #d9d9d9;
  font-size: 16px;
}

.screen_correct {
  width: 20px;
  height: 20px;
  margin: 0 12px 0 0;
}

.screen_desc_button {
  width: 120px;
  height: 48px;
  background: #1575fe;
  border: 1px solid #2977f9;
  border-radius: 78px;
  box-shadow: 0px 3px 18px 0px rgba(2, 55, 80, 0.12);
  color: #fff;
  line-height: 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 549;
  margin: 46px 0 0 0;
  cursor: pointer;
}

.screen_desc_button:hover {
  background-color: #0065f2;
}

/* 生态合作伙伴 */
.partner_wrap {
  height: 937px;
  background: url("../../images/index/partner_bg.jpg") center center no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 100px 0;
}

.partner_title {
  font-size: 40px;
  color: #fff;
  font-weight: 549;
  text-align: center;
}

.partner_desc {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  color: #cccccc;
  margin: 16px 0 32px 0;
}

.partner_button {
  width: 160px;
  height: 48px;
  background: #1575fe;
  border-radius: 78px;
  line-height: 48px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #fff;
  font-weight: 549;
  text-align: center;
  display: block;
  border: none;
  cursor: pointer;
}

.partner_button:hover {
  background-color: #0065f2;
}

.partner_content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner_img {
  width: 440px;
  height: 230px;
  margin: 0 80px;
}

.partner_item {
  display: flex;
}

.partner_info_title {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.partner_circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin: 0 12px 0 0;
}

.partner_list {
  margin: 12px 0 0 0;
}

.partner_item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #868d9c;
  margin: 0 0 4px 0;
}

.partner_left_icon {
  width: 60px;
  height: 60px;
  margin: -24px 0 0 24px;
}

.partner_right_icon {
  width: 60px;
  height: 60px;
  margin: -24px 24px 0 0;
}

.partner_bottom {
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner_center_icon {
  width: 60px;
  height: 60px;
  margin: 0 0 24px 0;
}

/* 团餐行业前沿 */
.food_wrap {
  height: 756px;
  background: url("../../images/index/format_bg.png") center center no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 100px 0 0 0;
}

.food_title {
  font-size: 40px;
  color: #1d2129;
  text-align: center;
  font-weight: 549;
  margin: 0 0 60px 0;
}

.food_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 260px;
}

.food_item {
  background: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 16px;
  box-shadow: 0px 12px 40px 0px rgba(57, 74, 107, 0.05);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 24px;
}

.food_item_title {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  font-weight: 550;
  line-height: 24px;
  cursor: pointer;
}

.q_icon {
  width: 24px;
  height: 24px;
  margin: 0 12px 0 0;
}

.food_item_content {
  display: flex;
  font-size: 14px;
  color: #999;
  line-height: 24px;
  margin: 12px 0 0 0;
}

.food_more {
  width: 128px;
  height: 48px;
  background: #1575fe;
  border-radius: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 60px auto 0;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.food_more:hover {
  background-color: #0065f2;
}

.vr_img {
  display: none;
}

.vr_wrap {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 98px 0 126px 0;
  background: url("../../images/index/vr_img.png") center center no-repeat;
  background-size: 100% 100%;
  position: relative;
}

.vr-content-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-48%, -48%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vr_content {
  margin: 0 auto;
  width: 611px;
  height: 576px;
  background: url("../../images/index/vr_content.png") center center no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vr_title {
  font-size: 40px;
  color: #fff;
  /* font-weight: 600; */
}

.vr_sub_title {
  font-size: 24px;
  color: #fff;
  margin-top: 13px;
}

.vr_button {
  width: 160px;
  height: 48px;
  background: #1575fe;
  border-radius: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  margin: 35px 0 0 0;
  font-size: 16px;
  font-weight: 549;
  letter-spacing: 1px;
  cursor: pointer;
}

.vr_button:hover {
  background-color: #0065f2;
}

/* 品怕实力 */
.brand_wrap {
  height: 760px;
  background-color: #08131e;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 100px 0 0 0;
}

.brand_title {
  font-size: 40px;
  color: #fff;
  text-align: center;
  font-weight: 549;
  margin: 0 0 16px 0;
}

.brand_desc {
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.brand_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 240px;
  margin: 60px 0 0 0;
}

.brand_item {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}

.brand_img {
  width: 76px;
  height: 88px;
  margin: 0 0 32px 0;
}

.brand_item_title {
  font-size: 42px;
  font-weight: bold;
}

.brand_item_title>span {
  font-size: 28px;
}

.brand_content_list {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* margin: 80px 185px 0 185px; */
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 12px 40px 0px rgba(57, 74, 107, 0.05);
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  width: 75.4%;
  margin: 45px auto;
}

.brand_content_item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #1d2129;
}

.brand_content_img {
  width: 60px;
  height: 60px;
  margin: 0 18px 0 0;
}

.brand_line {
  width: 1px;
  height: 60px;
  background-color: #f1f1f1;
}

/* 新闻资讯 */
.news_wrap {
  background-color: #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 80px 0;
}

.news_title {
  font-size: 40px;
  color: #1d2129;
  font-weight: 549;
  text-align: center;
}

.news_list {
  /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 60px 0 0 0;
    padding: 0 240px;
    grid-gap: 32px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0 240px; */
  width: 75.4%;
  margin: 60px auto 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  justify-content: space-around;
}

.news_item {
  width: 31.4%;
  margin: 0 32px 0 0;
}

.news_item_content {
  box-shadow: 0px 4px 40px 0px rgba(7, 20, 41, 0.06);
  border-radius: 12px;
  cursor: pointer;
}

.news_item:last-of-type {
  margin-right: 0;
}

.news_img>a>img {
  width: 100%;
  height: auto;
  transform: translateX(0) scale(1);
  transition: all 0.5s;
  object-fit: cover;
}

.news_img {
  width: 100%;
  height: 13vw;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.news_img>a{
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s;
}

.news_img>a:hover {
  transform: translateX(0) scale(1.2);
}

.news_info {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 18px 12px;
}

.news_info_title {
  font-size: 16px;
  color: #1d2129;
  font-weight: 549;
  margin: 0 0 8px 0;
  text-overflow: clip;
  /* 裁剪省略号 */
  /* white-space: nowrap; */
  /* 阻止文本换行 */
}

.news_info_title a{
  text-decoration: none;
}

.news_desc {
  font-size: 14px;
  color: #868d9c;
  font-weight: 400;
  line-height: 22px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 超出几行省略 */
  overflow: hidden;
}

.news_time {
  margin: 20px 0;
  font-size: 14px;
  color: #868d9c;
}

.news_detail_wrap {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #1575fe;
}

.news_detail_wrap a{
  color: #1575fe;
  display: inline-flex;
}

.news_enter {
  width: 20px;
  height: 20px;
  margin: 0 0 0 12px;
}

.news_intro_wrap {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 24px 32px;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(7, 20, 41, 0.06);
  border-radius: 12px;
  margin: 32px 0 0 0;
}

.news_intro_item {
  color: #1d2129;
  font-size: 16px;
  font-weight: 549;
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
}

.news_intro_item:last-of-type {
  margin-bottom: 0;
}

.news_intro_circle {
  width: 6px;
  height: 6px;
  background-color: #1d2129;
  border-radius: 50%;
  margin: 0 10px 0 0;
}

.news_intro_text {
  color: #1d2129;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 22px);
}

.news_intro_text a{
  text-decoration: none;
}


.more_news {
  width: 160px;
  height: 48px;
  background: #1575fe;
  border-radius: 78px;
  margin: 80px auto 0;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.more_news:hover {
  background-color: #0065f2;
}

/* 客户案例 */
.case_wrap {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0 80px 0;
  background: url("../../images/index/case_bg.png") center center no-repeat;
  background-size: 100% 100%;
}

.case_title {
  font-size: 40px;
  color: #1d2129;
  font-weight: 549;
  text-align: center;
}

.case_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 68px;
  margin: 60px 0 0 0;
  grid-gap: 40px;
}

.case_item {
  margin: 0 0 24px 0;
  /*box-shadow: 0px 12px 40px 0px rgba(57,74,107,0.1);*/
  border-radius: 10px;
  cursor: pointer;
}

.case_item:hover {
  transition: 0.5s;
  transform: scale(1.1);
}

.case_item>img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 12px 40px 0px rgba(57, 74, 107, 0.1);
}

.more_case {
  width: 160px;
  height: 48px;
  background: #1575fe;
  border-radius: 78px;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.more_case:hover {
  background-color: #0065f2;
}

.main_img {
  width: 100%;
  height: auto;
}

/* 轮播图 */
* {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cardBox {
  width: 100% !important;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.imgBox {
  height: auto;
  transition: all 1s;
  transform: translateX(0px);
}

.item {
  height: auto;
  float: left;
}

.imgBox .item {
  position: relative;
}

.imgBox .item a{
 position: absolute;
 width: 100%;
 left: 0;
 top: 0;
 bottom: 0;
 z-index: 9999;
}


.item img {
  width: 100%;
  height: auto;
}

.btn {
  width: 20px;
  height: 20px;
  top: calc(50% - 20px);
  border-right: solid white;
  border-top: solid white;
  position: absolute;
  z-index: 99;
  opacity: 0.6;
  cursor: pointer;
}

.btn:hover {
  opacity: 1;
}

.left {
  left: 15px;
  transform: rotate(-135deg);
}

.right {
  right: 15px;
  transform: rotate(45deg);
}

.pointBox {
  display: flex;
  width: 50%;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}

.pointBox li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: gray;
  margin: 0 10px;
  opacity: 0.7;
  cursor: pointer;
}

.pointBox li:hover {
  opacity: 1;
  background-color: white;
}

/* 控制移动端样式 */
.main_mobile_img {
  display: none;
}

.menu_img {
  display: none;
}

.business_wrap_mobile {
  display: none;
}

.screen_content_mobile {
  display: none;
}

.p_list {
  display: none;
}

.vr_content {
  transform: rotate(0deg);
  animation: spin 4s infinite linear;
  -webkit-animation: spin 4s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}