@charset "UTF-8";
/* reset */
html,
body,
div,
p,
ul,
li,
dl,
dt,
dd,
em,
i,
span,
a,
img,
input,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

a,
img,
input {
  border: none;
}

body {
  font: 14px/1.75 -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  line-height: 1.2;
  background-color: #101923;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

a,
img {
  -webkit-touch-callout: none;
  /* 禁止长按链接与图片弹出菜单，根据需要选择是否删除 */
}

html,
body,
.wrapper {
  width: 100%;
  height: 100%;
}

html,
body {
  -webkit-user-select: none;
  /* 禁止选中文本（如无文本选中需求，此为必选项） */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* reset end */
html {
  font-size: 50px;
  /* 兼容不支持vw的系统 */
  font-size: 13.33333333vw;
  /* 7.5rem === 100vw */
}

@media (max-width: 1024px) {
  html,
  body {
    max-width: 1024px;
  }
}
#afooter {
  text-align: center;
  font-size: 20px;
  /*根据适配方式调整*/
  padding: 30px 0;
  /*根据适配方式调整*/
  line-height: 1.5;
  background-color: #000;
  color: #c0c0c0;
}

.disblock {
  display: block;
}

@font-face {
  font-family: "DIN-Bold";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v4/font/DIN-Bold.otf");
}
@font-face {
  font-family: "REEJI";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v4/font/REEJI.TTF");
}
@font-face {
  font-family: "DINPro-Bold";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v4/font/DINPro-Bold.otf");
}
@font-face {
  font-family: "DINNextLTPro";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v4/font/DINNextLTPro.otf");
}
@font-face {
  font-family: "tungsten";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/font/tungsten.ttf");
}
@font-face {
  font-family: "syht-bold";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/font/syht_bold.ttf");
}
@font-face {
  font-family: "noto";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/font/NotoSansHans-Black.ttf");
}
@font-face {
  font-family: "reej";
  src: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/font/reej.TTF");
}
/* 按钮 */
.btn-comm {
  position: relative;
  display: block;
  width: 522px;
  height: 84px;
}
.btn-comm::before, .btn-comm::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  transition: height 0.2s linear;
  -webkit-transition: height 0.2s linear;
}
.btn-comm::before {
  top: 0;
  height: 42%;
  border: 1px solid #b4bab0;
  border-bottom: 0;
}
.btn-comm::after {
  bottom: 0;
  height: 42%;
  border: 1px solid #b4bab0;
  border-top: 0;
}
.btn-comm .btn-text {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  font-weight: 900;
  letter-spacing: 4px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.btn-comm .btn-square {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background-color: #ff4655;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-comm .btn-square::before,
.btn-comm .btn-square::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #0f1923;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-comm .btn-square::before {
  left: 0;
  top: 0;
  background-color: #ece8e1;
}
.btn-comm .btn-square::after {
  right: 0;
  bottom: 0;
}
.btn-comm .btn-square i {
  width: 110%;
  height: 110%;
  background-color: #0f1923;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-120%) skew(-15deg);
  -ms-transform: translateX(-120%) skew(-15deg);
  transform: translateX(-120%) skew(-15deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-comm.gray {
  pointer-events: none;
}
.btn-comm.gray .btn-square {
  background: #616161 !important;
}

.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
}

.wrapper *,
.wrapper *::after,
.wrapper *::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.decorate-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  pointer-events: none;
  display: none;
}

.decorate1 {
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/font4.png") no-repeat;
  width: 750px;
  height: 5340px;
  position: absolute;
  top: 820px;
  left: 0;
  z-index: 99;
}

.cutoff-line {
  width: 1px;
  height: 100%;
  background-color: #b0ada8;
  opacity: 0.7;
  position: absolute;
  left: 34px;
  top: 815px;
}

.header {
  margin-top: auto;
  width: 100%;
}
.header .login-box {
  padding: 0 80px 1em;
  min-height: 160px;
  font-size: 20px;
  line-height: 40px;
  color: #ebe8e1;
  text-align: center;
}
.header .login-box a {
  color: #ff4654;
}
.header .logo-box {
  position: relative;
  margin: 0 auto;
  width: 610px;
  height: 353px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module1/con-image1.png") no-repeat center center;
}
.header .btn-logo {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 141px;
  height: 129px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/public-image/logo.png") no-repeat center;
}

#btn_qqlogin {
  margin: 0 auto;
  font-size: 25px;
  letter-spacing: 5px;
}

#btn_qqlogin .btn-square::before {
  background-color: #0f1923;
}

/* 首页 end */
.content {
  margin-top: -1px;
  width: 100%;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/m/bg1.jpg") no-repeat center top, url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/m/bg2.jpg") no-repeat center 2999px;
  position: relative;
  z-index: 2;
}

.part .title {
  color: #ece8e1;
  font-size: 90px;
  font-family: "reej";
  line-height: 110px;
}

.main {
  overflow: hidden;
  position: relative;
  /* padding-bottom: 60px; */
}

.part1 {
  margin: auto;
  width: 100%;
}
.part1 .main {
  overflow: visible;
  padding: 0 30px;
}
.part1 .data-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 2%;
}
.part1 .data-time span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "DIN-Bold";
}
.part1 .data-time i {
  font-style: normal;
  color: #FF4655;
}
.part1 .data-time-desc {
  margin-top: 1em;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 2%;
  color: rgba(255, 255, 255, 0.7);
}
.part1 .data-board-box {
  display: flex;
  margin-top: 36px;
}
.part1 .data-board .data-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 44px;
  width: 325px;
  height: 206px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module2/frame-bg1.png") no-repeat;
}
.part1 .data-board .data-item .txt-box {
  display: flex;
  align-items: center;
}
.part1 .data-board .data-item .txt-box .icon {
  margin-right: 0.5em;
  width: 30px;
}
.part1 .data-board .data-item span {
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 2%;
}
.part1 .data-board .data-item em {
  padding-left: 10px;
  font-size: 28px;
  font-style: normal;
}
.part1 .data-board .data-item .data-num {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #ff4655;
  font-size: 142px;
  text-align: center;
  font-family: "tungsten";
  position: relative;
  line-height: 1;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/num_mask.png") repeat center center;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.part1 .data-board .data-item .data-num i {
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/separator.png") no-repeat;
  width: 17px;
  height: 23px;
  display: inline-block;
  margin: 0 2px;
}
.part1 .data-board .data-item .data-con {
  position: relative;
  margin-top: 14px;
}
.part1 .data-board .data-item .data-box {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.part1 .data-board .data-item .data-card {
  display: none;
  width: 100%;
  height: 50%;
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  font-family: "DINNextLTPro";
  text-align: center;
  font-size: 170px;
  color: #FF4655;
  font-weight: 700;
  font-size: 75px;
  letter-spacing: -4%;
}
.part1 .data-board .data-item .data-card p {
  width: 100%;
  height: 100%;
}
.part1 .data-board .data-item .data-card:nth-child(1) {
  display: block;
  background-position: center top;
  left: 0;
  top: 0;
}
.part1 .data-board .data-item .data-card:nth-child(1) p {
  background-position: center top;
}
.part1 .data-board .data-item .data-box.on .data-card:nth-child(2) {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.part1 .data-board .data-item .data-box.on .data-card:nth-child(3) {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.part1 .data-board .data-item .data-card i {
  display: inline-block;
  margin: 0 2px;
  width: 11px;
  height: 20px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v4/module2/separator1.png") no-repeat;
}
.part1 .data-board .data-con::after {
  content: "";
  width: 411px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 100px;
  z-index: 99;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.part1 .data-board2 {
  margin-left: auto;
}
.part1 .data-board2 .data-item {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module2/frame-bg2.png");
}
.part1 .data-board2 .data-item .data-card {
  color: #783AFF;
}

.part2 {
  margin: auto;
}
.part2 .title {
  font-family: "REEJI";
  font-size: 68px;
  line-height: 100%;
  color: #FF4655;
  text-align: center;
}
.part2 .title span {
  margin: 0 8px;
}
.part2 .text-box {
  margin-top: 50px;
  padding: 15px 32px 5px 64px;
  width: 652px;
  height: 739px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module6/frame-bg1.png") no-repeat;
}
.part2 .text-box p {
  position: relative;
  font-size: 22px;
  line-height: 50px;
  color: #FFFFFF;
}
.part2 .text-box p::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 0.5em;
  transform: translateY(50%);
  width: 27px;
  height: 12px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module6/deco1.png") no-repeat;
}
.part2 .text-box p:first-child {
  margin-top: 1em;
}
.part2 .text-box p + p {
  margin-top: 2em;
}
.part2 .part2-btn {
  margin: 40px auto 0;
  margin-top: 48px;
}

.part3 {
  margin: auto;
  width: 100%;
  height: calc(85% - 100px);
}
.part3 .main {
  padding: 0 50px;
  max-height: 100%;
  height: 100%;
}
.part3 .title {
  color: #FFFFFF;
  font-family: "REEJI";
  font-weight: 900;
  font-size: 60px;
  line-height: 100%;
}
.part3 .sub-title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FF4655;
}
.part3 .btn-more {
  height: 35px;
  line-height: 35px;
  color: #ff4655;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 125px;
  left: 550px;
}
.part3 .more-icon {
  width: 12px;
  height: 18px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/part1_jt.png") no-repeat center;
  background-size: 12px 18px;
  display: inline-block;
}
.part3 .news-swiper {
  overflow: hidden;
  margin-top: 26px;
  max-height: 100%;
}
.part3 .news-swiper .swiper-slide {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 654px;
  height: 412px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module3/frame-bg1.png") no-repeat;
}
.part3 .news-swiper .swiper-slide a {
  pointer-events: none;
  box-sizing: border-box;
  padding: 110px 56px 0;
  width: 100%;
  height: 100%;
}
.part3 .news-swiper .swiper-slide a.allowclick {
  pointer-events: all;
}
.part3 .news-swiper .swiper-slide a.allowclick:hover {
  -webkit-filter: initial;
  filter: initial;
}
.part3 .news-swiper .swiper-slide-active a {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.part3 .news-swiper .swiper-slide-active .news-pic::after {
  content: "";
  width: 343px;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.part3 .news-swiper .news-pic {
  position: relative;
  margin: 0 auto;
  width: 540px;
  height: 290px;
}
.part3 .news-swiper .news-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.part3 .news-swiper .news-main {
  position: absolute;
  top: 70px;
  left: 56px;
  right: 56px;
  display: flex;
  align-items: center;
}
.part3 .news-swiper .news-main .news-date {
  color: #FFFFFF;
  font-size: 20px;
}
.part3 .news-swiper .news-main .news-xq {
  position: absolute;
  right: 0;
  margin-left: auto;
  color: #FF4655;
  font-size: 20px;
}
.part3 .news-swiper .news-main .news-xq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transform: translateX(calc(-100% - 10px));
  margin: auto 0;
  width: 36px;
  height: 4px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module3/deco1.png") no-repeat;
}
.part3 .news-swiper .news-name {
  position: absolute;
  top: 15px;
  left: 56px;
  right: 56px;
  overflow: hidden;
  margin-top: 10px;
  color: #FFFFFF;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
}
.part3 .news-swiper .news-swiper-pagination {
  width: 602px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 14px;
  position: absolute;
  left: 0;
  top: 350px;
  z-index: 2;
}
.part3 .news-swiper .swiper-pagination-bullet {
  width: 86px;
  height: 7px;
  background-color: #ece8e1;
  border: 1px solid #ff4654;
  border-radius: unset;
  opacity: 1;
  margin: 0;
  margin-left: 22px;
}
.part3 .news-swiper .swiper-pagination-bullet-active {
  background-color: #ff4654;
}

.part4 {
  margin: auto;
  width: 100%;
}
.part4 .main {
  padding: 0 55px;
}
.part4 .title {
  font-family: "REEJI";
  font-size: 60px;
  line-height: 100%;
  color: #FFFFFF;
}

.part4-box {
  margin-top: 106px;
}
.part4-box .part4-list {
  margin-top: 22px;
}

.part4-item + .part4-item {
  margin-top: 66px;
}

.part4-subtitle {
  font-family: "REEJI";
  font-size: 40px;
  line-height: 100%;
  color: #FFFFFF;
}

.part4-srarch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 547px;
  height: 149px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module7/frame-bg1.png") no-repeat;
}
.part4-srarch + .part4-srarch {
  margin-top: 30px;
}

.part4-iconbg {
  flex-shrink: 0;
  width: 130px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.part4-btn {
  flex: 1;
  z-index: 2;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #fff;
}
.part4-btn span {
  margin-top: 16px;
  display: block;
  font-weight: 400;
  font-size: 22px;
  opacity: 0.7;
}

.part5 {
  width: 100%;
  height: 100%;
}
.part5 .main {
  padding: 10% 55px 0;
}
.part5 .title {
  color: #ffffff;
  text-align: left;
  font-family: "REEJI";
  font-weight: 900;
  font-size: 60px;
  line-height: 100%;
}
.part5 .part5-box {
  width: 682px;
  margin: 0 auto;
  margin-top: 107px;
  position: relative;
  z-index: 100;
}

.p5-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 635px;
}
.p5-btn-list .part5-btn {
  width: 210px;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #36393d;
  margin-bottom: 2px;
  overflow: hidden;
  position: relative;
}

.part5-btn span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: bold;
  line-height: 22px;
  color: #ece8e1;
  text-align: center;
  opacity: 0.6;
}
.part5-btn .mbr {
  display: block;
  height: 0;
}
.part5-btn i {
  background-color: #ece8e1;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  width: 28px;
  height: 24px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  margin-right: 4px;
  opacity: 0.6;
}
.part5-btn::before {
  content: "";
  position: absolute;
  height: 110%;
  width: 110%;
  top: 0;
  left: 0;
  background-color: #ff4655;
  -webkit-transform: translateX(-120%) skewX(-15deg);
  -ms-transform: translateX(-120%) skewX(-15deg);
  transform: translateX(-120%) skewX(-15deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  z-index: 0;
}
.part5-btn.on::before, .part5-btn:hover::before {
  -webkit-transform: translateX(0%) skewX(0);
  -ms-transform: translateX(0%) skewX(0);
  transform: translateX(0%) skewX(0);
}
.part5-btn.on span, .part5-btn:hover span {
  color: #ffffff;
  opacity: 1;
}
.part5-btn.on i, .part5-btn:hover i {
  background-color: #ffffff;
  opacity: 1;
}

.part5 i.icon1 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon1.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon1.png");
}
.part5 i.icon2 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon2.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon2.png");
}
.part5 i.icon3 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon3.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon3.png");
}
.part5 i.icon4 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon4.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon4.png");
}
.part5 i.icon5 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon5.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon5.png");
}
.part5 i.icon6 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon6.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon6.png");
}
.part5 i.icon7 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon7.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon7.png");
}
.part5 i.icon8 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon8.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon8.png");
}
.part5 i.icon9 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon9.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon9.png");
}
.part5 i.icon10 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon10.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon10.png");
}
.part5 i.icon11 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon11.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon11.png");
}
.part5 i.icon12 {
  -webkit-mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon12.png");
  mask-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/p5-icon12.png");
}

.p5-content {
  margin-top: 30px;
}

.violation-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  margin-left: 10px;
  width: 630px;
}

.violation-txt {
  margin-top: 2px;
  font-size: 20px;
  color: #ffffff;
  padding-left: 10px;
  padding-right: 60px;
  padding-bottom: 16px;
  line-height: 30px;
  border-bottom: 1px solid rgba(50, 62, 73, 0.5);
}

.violation-top i {
  background-color: #ff4655;
  width: 36px;
  height: 36px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  margin-right: 18px;
}

.violation-top span {
  color: #ff4655;
  font-size: 32px;
  font-weight: bold;
}

.punish-top::after {
  content: "";
  width: 22px;
  height: 14px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v3/down-icon.png");
  background-size: 100% 100%;
  margin-top: 10px;
  display: inline-block;
  margin-left: 20px;
}

.punish-box {
  width: 630px;
  font-size: 26px;
  line-height: 40px;
  margin: 18px auto 0;
}
.punish-box b {
  font-weight: bold;
  color: #ff4655;
}
.punish-box span {
  font-size: 18px;
  color: #a0a2a5;
}

.punish-top {
  margin-bottom: 2px;
}

.punish-desc {
  /* width: 1200px; */
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
}

.punish-desc span {
  color: #ff4655;
}

.part5 .part5-uls {
  width: 100%;
  height: 109px;
  line-height: 109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0f1923;
}
.part5 .part5-uls p {
  width: 190px;
  height: 100%;
  color: #ece8e1;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  font-weight: 900;
}
.part5 .part5-uls p:nth-child(2) {
  width: 238px;
  border-left: solid 2px #54595e;
  border-right: solid 2px #54595e;
}
.part5 .part5-uls p:nth-child(3) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: unset;
}
.part5 .part5-intro {
  margin-top: 90px;
  padding-left: 72px;
}
.part5 .part5-intro .title {
  color: #0f1923;
}
.part5 .part5-subtitle {
  color: #ff4655;
  font-size: 30px;
  font-weight: bold;
  font-weight: 900;
  margin-top: 60px;
  margin-bottom: 22px;
}
.part5 .part5-intro-text {
  width: 550px;
}
.part5 .part5-intro-text p {
  color: #acb4ad;
  font-size: 20px;
  line-height: 40px;
  position: relative;
  text-align: justify;
}
.part5 .part5-intro-text p::before {
  content: "";
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/p_icon.png") no-repeat;
  width: 14px;
  height: 7px;
  position: absolute;
  left: -38px;
  top: 16px;
}
.part5 .part5-intro-text p + p {
  margin-top: 40px;
}

.part5-table {
  height: 670px;
  background-color: #dedbd5;
  overflow-y: auto;
}
.part5-table::-webkit-scrollbar-track {
  border-radius: 1px;
  background-color: #d2cfc8;
}
.part5-table::-webkit-scrollbar {
  width: 6px;
  border-radius: 1px;
  background-color: #d2cfc8;
}
.part5-table::-webkit-scrollbar-thumb {
  width: 6px;
  background-color: #ff4655;
}
.part5-table table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.part5-table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}
.part5-table tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.part5-table th {
  margin-bottom: 5px;
}
.part5-table tbody tr {
  height: 140px;
  font-size: 17px;
  color: #6f7275;
  /* border-bottom: solid 2px #d4d1cb; */
}
.part5-table tbody tr td {
  border: solid 2px #d4d1cb;
  padding: 10px 30px;
}
.part5-table tbody tr td:nth-child(1) {
  width: 190px;
}
.part5-table tbody tr td:nth-child(1).border {
  border-bottom: solid 2px #d4d1cb;
}
.part5-table tbody tr td:nth-child(2) {
  width: 238px;
}
.part5-table tbody tr td:nth-child(3) {
  text-align: left;
}
.part5-table tbody tr .black {
  color: #0f1923;
  font-size: 20px;
  font-weight: bold;
  font-weight: 900;
}
.part5-table tbody tr .left {
  display: inline-block;
  text-align: justify;
}
.part5-table .part5-width {
  width: 500px;
}
.part5-table span {
  margin: 0 auto;
  line-height: 1.8;
}

/* 弹窗 */
.dialog {
  outline: none;
  border: none;
}
.dialog *,
.dialog *::before,
.dialog *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.dialog .dia-con {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.dialog .dia-close {
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/dia_close.png") no-repeat;
  width: 57px;
  height: 57px;
  position: absolute;
  right: 16px;
  top: 16px;
  overflow: hidden;
}
.dialog .dia-close::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(149, 149, 149, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-120%) skew(-15deg);
  -ms-transform: translateX(-120%) skew(-15deg);
  transform: translateX(-120%) skew(-15deg);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  pointer-events: none;
}
.dialog .dia-close:hover::before {
  -webkit-transform: translateX(0) skew(0);
  -ms-transform: translateX(0) skew(0);
  transform: translateX(0) skew(0);
}

/* 视频弹窗 */
.dia-video,
.video-box {
  width: 670px;
  height: 385px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.dia-video {
  border: 2px solid #ff4654;
}

.dia-video .dia-close {
  right: 0px;
  top: 0px;
  z-index: 20;
}

/* 通用弹窗 */
.dia-common {
  width: 670px;
  height: 628px;
}
.dia-common .dia-con {
  width: 100%;
  height: 100%;
  background-color: #0f1923;
  border-top: 1px solid #949595;
  border-bottom: 1px solid #949595;
  padding: 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dia-common .txt {
  color: #ece8e1;
  font-size: 27px;
  font-weight: bold;
  font-weight: 900;
  text-align: center;
}

/* 首页弹窗 */
.dialog-title {
  color: #ece8e1;
  font-size: 27px;
  line-height: 32px;
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
  font-weight: 900;
}

.jubao-tips {
  width: 100%;
  color: #949595;
  font-size: 18px;
  text-align: center;
  position: relative;
  bottom: -22px;
  left: 0;
}

.jubao-table {
  margin-top: 40px;
  height: 450px;
  position: relative;
}
.jubao-table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #0f1923;
  border-radius: 5px;
  background-color: #0f1923;
}
.jubao-table::-webkit-scrollbar {
  width: 6px;
  border-radius: 5px;
  background-color: #0f1923;
}
.jubao-table::-webkit-scrollbar-thumb {
  width: 6px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px #ff4655;
  background-color: #ff4655;
}
.jubao-table table {
  width: 640px;
  max-height: 360px;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.jubao-table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}
.jubao-table tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.jubao-table thead {
  width: 100%;
  height: 45px;
  vertical-align: top;
}
.jubao-table thead th {
  color: #949595;
  font-size: 18px;
  font-weight: normal;
}
.jubao-table thead th:nth-child(1) {
  width: 130px;
}
.jubao-table thead th:nth-child(2) {
  width: 150px;
}
.jubao-table thead th:nth-child(3) {
  width: 230px;
}
.jubao-table th {
  margin-bottom: 5px;
}
.jubao-table tbody tr:first-child {
  border-top: solid 1px #000000;
}
.jubao-table tbody tr {
  height: 100px;
  font-size: 20px;
  color: #ece8e1;
  border-bottom: solid 1px #000000;
}
.jubao-table tbody tr td {
  height: 110px;
}
.jubao-table span {
  /* width: 150px; */
  display: block;
  margin: 0 auto;
  padding: 0 10px;
}

/* 举报查询弹窗 */
.jubao {
  width: 670px;
  height: 628px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/chufa.png") no-repeat;
  background-size: 100% 100%;
}

.dialog-page {
  width: 875px;
  height: 45px;
  line-height: 45px;
  margin: 30px auto 0;
  font-size: 20px;
  color: #848484;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.dialog-page-cont {
  width: 645px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}

.page-items-previous,
.page-items-next {
  margin: 0 30px 0 30px;
}

.btn-page {
  width: 44px;
  height: 44px;
  line-height: 45px;
  text-align: center;
  color: #848484;
  font-size: 27px;
  display: inline-block;
  background-color: transparent;
  margin: 0 15px;
  font-family: "DIN-Bold";
}

.btn-page.active {
  width: 44px;
  height: 44px;
  background-color: #ff4655;
  color: #0f1923;
}

.btn-next {
  width: 21px;
  height: 33px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/pg_right.png") no-repeat;
  background-size: 100% 100%;
}

.btn-prev {
  width: 21px;
  height: 33px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/pg_left.png") no-repeat;
  background-size: 100% 100%;
}

.btn-next,
.btn-prev {
  margin: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 处罚查询弹窗 */
.chufa {
  width: 670px;
  height: 628px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/chufa.png") no-repeat;
  background-size: 100% 100%;
}

/* 被盗申诉弹窗 */
.beidao {
  width: 670px;
  height: 628px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/chufa.png") no-repeat;
  background-size: 100% 100%;
}

.beidao-btnall,
.chufa1-btnall {
  width: 480px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px auto 0;
}

.beidao-btn,
.chufa1-btn {
  width: 240px;
  height: 64px;
  line-height: 64px;
  background-color: transparent;
  border: solid 1px #ff4655;
  font-size: 20px;
  font-weight: bold;
  color: #ff4655;
  text-align: center;
}

.beidao-btn.active,
.chufa1-btn.active {
  width: 240px;
  height: 64px;
  background-color: #ff4655;
  color: #ffffff;
}

.beidao-list .jubao-table,
.chufa1-list .jubao-table {
  height: 230px;
}

/* 处罚申诉弹窗 */
.chufa1 {
  width: 670px;
  height: 628px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/chufa.png") no-repeat;
  background-size: 100% 100%;
}

/* 案例展示弹窗 */
.anli {
  width: 670px;
  height: 628px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/v2/m/chufa.png") no-repeat;
  background-size: 100% 100%;
}
.anli .dialog-title {
  width: 650px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  margin: 40px auto 30px;
}

.anli-content {
  width: 92%;
  max-height: 130px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  word-break: break-all;
  overflow: hidden;
  margin: 0 auto;
  font-size: 18px;
  color: #949595;
  margin-bottom: 30px;
}

.anli-pic {
  max-width: 384px;
  max-height: 201px;
  margin: 0 auto;
  overflow: hidden;
}
.anli-pic img {
  width: 100%;
  height: 100%;
}

/* 被盗申诉引导 */
.appeal-guide {
  width: 670px;
  height: 628px;
}
.appeal-guide .dia-con {
  width: 100%;
  height: 100%;
  background-color: #0f1923;
  border-top: 1px solid #949595;
  border-bottom: 1px solid #949595;
  padding: 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.appeal-guide .dia-con img {
  width: 280px;
  height: 280px;
}
.appeal-guide .txt {
  color: #ece8e1;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  font-weight: 900;
  margin-top: 80px;
}
.appeal-guide .txt span {
  display: none;
}

.part-see {
  position: relative;
  margin: auto;
}
.part-see .main {
  padding: 0 60px;
}
.part-see .title-box .title {
  color: #FFFFFF;
  font-family: "REEJI";
  font-weight: 900;
  font-size: 60px;
  line-height: 100%;
}
.part-see .title-box .sub-title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FF4655;
}
.part-see .see-list {
  margin-top: 40px;
  padding-top: 20px;
  width: 633px;
  height: 743px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module4/frame-bg1.png") no-repeat;
}
.part-see .see-list li {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 16px 35px;
  width: 100%;
  min-height: 66px;
}
.part-see .see-list li:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.06);
}
.part-see .see-list li span {
  flex-shrink: 0;
  min-width: 80px;
  text-align: left1;
  font-size: 30px;
  line-height: 1;
  color: #ff4655;
  font-family: "DIN-Bold";
}
.part-see .see-list li p {
  box-sizing: border-box;
  font-size: 26px;
  line-height: 1.2;
  color: #ffffff;
}
.part-see .more-see {
  margin: 40px auto 0;
  width: 522px;
  height: 84px;
}
.part-see .more-see .btn-text {
  color: #FFFFFF;
  font-size: 26px;
}

/* 正义巡查团 */
.part-patrol {
  margin: auto;
}
.part-patrol .main {
  padding: 0 50px;
}
.part-patrol .title {
  font-weight: 900;
  font-size: 60px;
  line-height: 100%;
  color: #FFFFFF;
  font-family: "REEJI";
}
.part-patrol .tit-txt {
  margin-top: 10px;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FF4655;
}
.part-patrol .patrol-content {
  margin-top: 16px;
}
.part-patrol .patrol-left .patrol-tit img {
  width: 75px;
  -o-object-fit: contain;
  object-fit: contain;
}
.part-patrol .patrol-left .desc-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
.part-patrol .patrol-right {
  margin-top: 44px;
}
.part-patrol .patrol-right .patrol-tit img {
  position: relative;
  top: 10px;
  width: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}
.part-patrol .patrol-right .patrol-desc br {
  display: none;
}
.part-patrol .ch-img {
  width: 100px;
}
.part-patrol .btn-konw-more {
  margin: 56px auto 0;
}
.part-patrol .btn-konw-more .btn-square i {
  background-color: #f9f8f6;
}
.part-patrol .patrol-text {
  width: 315px;
  color: #ece8e1;
  font-size: 18px;
  line-height: 24px;
  padding-left: 24px;
  position: relative;
  margin-left: 360px;
}
.part-patrol .patrol-text1 {
  width: 315px;
  color: #ece8e1;
  font-size: 18px;
  line-height: 24px;
  padding-left: 24px;
  position: relative;
  margin-left: 360px;
  margin-top: 30px;
}
.part-patrol .patrol-text .patrol-tips {
  width: auto;
  position: absolute;
  bottom: 0px;
  left: 96px;
  background-color: transparent;
  margin: 0;
  color: #ece8e1;
  font-size: 18px;
  font-weight: normal;
}
.part-patrol .patrol-text::before,
.part-patrol .patrol-text1::before {
  content: "//";
  position: absolute;
  font-family: "DIN-Bold";
  left: 0;
}
.part-patrol .patrol-text span {
  display: inline-block;
  width: 133px;
  height: 29px;
  color: #2e3339;
  font-size: 20px;
  line-height: 29px;
  font-weight: bold;
  text-align: center;
  background-color: #ece8e1;
  margin: 0 9px;
  clip-path: polygon(100% 0, 100% 20px, 125px 100%, 0 100%, 0 0);
}
.part-patrol .user-id {
  width: 315px;
  height: 80px;
  font-size: 26px;
  font-weight: bold;
  color: #ece8e1;
  position: relative;
  margin-top: 20px;
  margin-left: 380px;
}
.part-patrol .user-id::before {
  content: "";
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/icon2.png") no-repeat;
  width: 9px;
  height: 5px;
  background-size: 100% 100%;
  position: absolute;
  left: -20px;
  top: 10px;
}
.part-patrol .user-reportdata {
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/reportdata_bg.png") no-repeat;
  width: 605px;
  height: 312px;
  padding: 24px 0px 0 35px;
  margin-top: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.part-patrol .user-reportdata .user-reportdata-item {
  margin-bottom: 15px;
  width: 43%;
}
.part-patrol .user-reportdata .user-reportdata-item:first-child {
  width: 55%;
  margin-right: 2%;
}
.part-patrol .user-reportdata .user-reportdata-item span {
  color: #ece8e1;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.part-patrol .ch-item {
  width: 315px;
  text-align: center;
  margin-left: 360px;
  margin-top: 22px;
}
.part-patrol .ch-item img {
  width: 228px;
}
.part-patrol .ch-tit {
  color: #ece8e1;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 14px;
  text-align: center;
}
.part-patrol .user-reportdata .user-reportdata-item p {
  color: #ff4655;
  font-size: 105px;
  font-family: "tungsten";
  line-height: 1;
  padding-left: 10px;
}
.part-patrol .user-reportdata .user-reportdata-item:first-child p {
  padding: 0 0 0 30px;
}
.part-patrol .prop-tips {
  color: #ece8e1;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 400px;
  top: 46px;
}
.part-patrol .btn-join {
  width: 321px;
  height: 67px;
  margin-left: 360px;
}
.part-patrol .btn-join .btn-square {
  background-color: #161826;
  height: calc(100% - 12px);
}
.part-patrol .btn-join .btn-text {
  font-size: 20px;
  letter-spacing: 2px;
}

.patrol-tit {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  font-family: "REEJI";
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  color: #FF4655;
}

.condition-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 10px 22px;
  width: 635px;
  height: 172px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module5/frame-bg1.png") no-repeat;
}
.condition-box p {
  font-size: 20px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.7);
}

.condition-tit {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FFFFFF;
}

.patrol-desc {
  font-size: 20px;
  line-height: 36px;
  color: #fff;
}
.patrol-desc span {
  color: #FF4655;
}

.patrol-tips {
  width: 370px;
  color: #ece8e1;
  font-size: 18px;
  text-align: center;
  margin-left: 338px;
  margin-top: 14px;
}

/* 通用弹窗 */
.dia-query {
  width: 670px;
  height: 500px;
}
.dia-query .dia-con {
  width: 100%;
  height: 100%;
  background-color: #0f1923;
  border-top: 1px solid #949595;
  border-bottom: 1px solid #949595;
}
.dia-query .dia-con .txt {
  width: 100%;
  height: 50%;
  padding: 0 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 80px;
}
.dia-query .txt {
  color: #ece8e1;
  font-size: 27px;
  font-weight: bold;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
.dia-query .btn-comm {
  margin: 0 auto;
}

.test-dia {
  position: fixed;
  right: 0;
  top: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 99;
  font-size: 24px;
}

/* 风格修改 start */
[data-pc-hide] {
  display: none !important;
}

#afooter {
  width: 100% !important;
}

/* main-swiper start */
.main-swiper {
  box-sizing: border-box;
  width: 100%;
  padding-top: 0px;
  height: 100%;
}
.main-swiper *,
.main-swiper *::after,
.main-swiper *::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.main-swiper .swiper-footer {
  height: auto !important;
}
.main-swiper .module {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-swiper .module .module-bg {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.main-swiper .module .module-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.main-swiper .module .scroll-tips {
  margin: 0 auto 32px;
  width: 341px;
  height: 66px;
  background: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/public-image/scroll-tips.png") no-repeat center;
}
.main-swiper .module1 .module-bg {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module1/module-bg.png");
}
.main-swiper .module2 .module-bg {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module2/module-bg.png");
}
.main-swiper .module3 .module-bg {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module3/module-bg.png");
}
.main-swiper .module4 .module-bg {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module4/module-bg.png");
}
.main-swiper .module5 .module-bg {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module5/module-bg.png");
}
.main-swiper .module6 .module-bg {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module6/module-bg.png");
}
.main-swiper .module7 .module-bg {
  background-image: url("//game.gtimg.cn/images/val/act/a20230705valsecurity/m/v4/module7/module-bg.png");
}

/* main-swiper end */
/* 风格修改 end *//*# sourceMappingURL=index-m-v4.css.map */