@charset "UTF-8";
:root {
  --max-width: 100vw;
  --max-device: 2560;
  --scrollbar-width: 0px;
}

@media screen and (min-width: 3840px) {
  :root {
    --max-width: 3840px;
  }
}
@media screen and (max-width: 1400px) and (min-device-width: 1026px) {
  :root {
    --max-width: 1400px;
  }
}
@media screen and (max-device-width: 1025px) {
  :root {
    --max-device: 2465;
  }
}
body,
dl,
dd,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form {
  margin: 0;
  padding: 0;
}

body {
  font: 12px/1.5 tahoma, "Microsoft YaHei", sans-serif;
  background: #121824;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

em,
b,
i {
  font-style: normal;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  border: 0;
}

div {
  outline: none;
}

button,
input,
select,
textarea {
  font-size: 100%;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th,
ul,
ol {
  padding: 0;
  list-style-type: none;
}

.clearfix:after {
  content: " ";
  height: 0;
  display: block;
  clear: both;
}

.hidden {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

.spr {
  display: block;
  text-indent: -99999px;
}

* {
  user-select: unset;
}

html,
body {
  background-color: rgb(0, 0, 0);
  min-width: 1280px;
  max-width: 3840px;
  margin: 0px auto;
}

@media all and (min-width: 1280px) {
  body {
    overflow-x: hidden;
  }
}
img[src=""],
img:not([src]),
img[src=undefined] {
  display: none !important;
  opacity: 0;
  border: none;
  outline: none;
  pointer-events: none;
}

/* head */
.head,
.content {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@font-face {
  font-family: "AGENCYFB-BLACKCONDENSED";
  src: url(../font/AGENCYFB-BLACKCONDENSED.otf);
}
@font-face {
  font-family: "TPE_Bold";
  src: url(../font/TencentPeacekeeperElite_Bold.ttf);
}
.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 9999;
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/loadingbg.jpg) no-repeat center center;
  background-size: 100% auto;
  padding-top: calc(200 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
  z-index: 100;
}
.loading .logo {
  width: calc(650 / var(--max-device) * var(--max-width));
  height: calc(80 / var(--max-device) * var(--max-width));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform-origin: 50% 100%;
}
.loading .logo img {
  display: block;
  height: calc(80 / var(--max-device) * var(--max-width));
}
.loading .logo span {
  display: block;
  width: calc(2 / var(--max-device) * var(--max-width));
  height: calc(40 / var(--max-device) * var(--max-width));
  background: rgba(255, 255, 255, 0.5);
}
.loading .loading-deco-left,
.loading .loading-deco-right {
  display: block;
  width: calc(8 / var(--max-device) * var(--max-width));
  height: calc(320 / var(--max-device) * var(--max-width));
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}
.loading .loading-deco-left i,
.loading .loading-deco-right i {
  display: block;
  width: 100%;
  height: 100%;
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/loading-deco1.png) no-repeat center top/100%;
  animation: ani-loading-deco 5s linear infinite;
}
@keyframes ani-loading-deco {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.loading .loading-deco-left {
  left: calc(40 / var(--max-device) * var(--max-width));
  top: 50%;
  margin-top: calc(160 / var(--max-device) * var(--max-width));
}
.loading .loading-deco-right {
  right: calc(40 / var(--max-device) * var(--max-width));
  top: 50%;
  margin-top: calc(-480 / var(--max-device) * var(--max-width));
}
.loading .loading-deco-line-left,
.loading .loading-deco-line-right {
  width: calc(400 / var(--max-device) * var(--max-width));
  height: 1px;
  margin-top: calc(6 / var(--max-device) * var(--max-width));
  position: absolute;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.loading .loading-deco-line-left i,
.loading .loading-deco-line-right i {
  display: block;
  width: calc(40 / var(--max-device) * var(--max-width));
  height: 100%;
  background: #00A9EC;
  position: absolute;
  top: 0;
}
.loading .loading-deco-line-left {
  left: 0;
}
.loading .loading-deco-line-left i {
  right: 0;
  animation: ani-loading-deco-line-left 1.5s ease alternate infinite;
}
.loading .loading-deco-line-right {
  right: 0;
}
.loading .loading-deco-line-right i {
  left: 0;
  animation: ani-loading-deco-line-right 1.5s ease alternate infinite;
}
@keyframes ani-loading-deco-line-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-360 / var(--max-device) * var(--max-width)));
  }
}
@keyframes ani-loading-deco-line-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(360 / var(--max-device) * var(--max-width)));
  }
}
.loading .load {
  width: calc(820 / var(--max-device) * var(--max-width));
  height: calc(400 / var(--max-device) * var(--max-width));
  margin: calc(240 / var(--max-device) * var(--max-width)) auto 0;
  position: relative;
}
.loading .load::after, .loading .load::before {
  content: "";
  display: block;
  width: calc(170 / var(--max-device) * var(--max-width));
  height: calc(400 / var(--max-device) * var(--max-width));
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/load-left.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.loading .load::after {
  right: 0;
  background-image: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/load-right.png);
}
.loading .load .load-points {
  position: absolute;
  top: 0;
  width: calc(170 / var(--max-device) * var(--max-width));
  height: calc(400 / var(--max-device) * var(--max-width));
  pointer-events: none;
}
.loading .load .load-points-left {
  left: 0;
}
.loading .load .load-points-left i:nth-child(1) {
  left: calc(115 / var(--max-device) * var(--max-width));
  top: 0;
}
.loading .load .load-points-left i:nth-child(2) {
  left: calc(145 / var(--max-device) * var(--max-width));
  top: 0;
}
.loading .load .load-points-left i:nth-child(3) {
  left: calc(145 / var(--max-device) * var(--max-width));
  top: calc(30 / var(--max-device) * var(--max-width));
}
.loading .load .load-points-left i:nth-child(4) {
  left: calc(145 / var(--max-device) * var(--max-width));
  top: calc(60 / var(--max-device) * var(--max-width));
}
.loading .load .load-points-left i:nth-child(5) {
  left: calc(115 / var(--max-device) * var(--max-width));
  top: calc(130 / var(--max-device) * var(--max-width));
}
.loading .load .load-points-left i:nth-child(6) {
  left: calc(145 / var(--max-device) * var(--max-width));
  top: calc(160 / var(--max-device) * var(--max-width));
}
.loading .load .load-points-right {
  right: 0;
}
.loading .load .load-points-right i:nth-child(1) {
  left: calc(30 / var(--max-device) * var(--max-width));
  bottom: 0;
}
.loading .load .load-points-right i:nth-child(2) {
  left: 0;
  bottom: 0;
}
.loading .load .load-points-right i:nth-child(3) {
  left: 0;
  bottom: calc(30 / var(--max-device) * var(--max-width));
}
.loading .load .load-points-right i:nth-child(4) {
  left: 0;
  bottom: calc(60 / var(--max-device) * var(--max-width));
}
.loading .load .load-points-right i:nth-child(5) {
  left: calc(30 / var(--max-device) * var(--max-width));
  bottom: calc(130 / var(--max-device) * var(--max-width));
}
.loading .load .load-points-right i:nth-child(6) {
  left: 0;
  bottom: calc(160 / var(--max-device) * var(--max-width));
}
.loading .load .load-points i {
  display: block;
  width: calc(12 / var(--max-device) * var(--max-width));
  height: calc(12 / var(--max-device) * var(--max-width));
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
}
.loading .load .loading-progress {
  font-family: "Agency FB";
  font-weight: bold;
  font-size: calc(24 / var(--max-device) * var(--max-width));
  color: #fff;
  text-align: center;
}
.loading .load .loading-bar {
  width: calc(242 / var(--max-device) * var(--max-width));
  height: calc(242 / var(--max-device) * var(--max-width));
  margin: calc(54 / var(--max-device) * var(--max-width)) auto calc(46 / var(--max-device) * var(--max-width));
  position: relative;
}
@keyframes loading-shine {
  0% {
    filter: drop-shadow(0 0 0 #96e7f9);
  }
  100% {
    filter: drop-shadow(0 0 10px #96e7f9);
  }
}
.loading .load .loading-bar.shine {
  animation: loading-shine 300ms ease alternate both 2;
}
.loading .load .loading-bar .progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  /* 进度圆环 */
}
.loading .load .loading-bar .progress-ring .ring-progress {
  stroke-dasharray: 772.83114;
  /* 初始偏移量为圆的周长 */
  stroke-dashoffset: 772.83114;
  transition: stroke-dashoffset 0.01s linear;
}
.loading .load .loading-bar img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .load .loading-text {
  font-family: "PingFang SC";
  font-size: calc(20 / var(--max-device) * var(--max-width));
  color: #fff;
  text-align: center;
  opacity: 0.8;
  display: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap {
  display: none;
  width: calc(2560 / var(--max-device) * var(--max-width) - var(--scrollbar-width));
  position: relative;
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/bg.jpg) no-repeat center center;
  background-size: 100% auto;
  box-sizing: border-box;
  overflow: hidden;
}

.wrap .logo {
  display: block;
  width: calc(325 / var(--max-device) * var(--max-width));
  height: calc(40 / var(--max-device) * var(--max-width));
  position: absolute;
  top: calc(36 / var(--max-device) * var(--max-width));
  left: calc(80 / var(--max-device) * var(--max-width));
  bottom: calc(63 / var(--max-device) * var(--max-width));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.wrap .logo a:first-child {
  display: block;
  width: calc(112 / var(--max-device) * var(--max-width));
  height: calc(40 / var(--max-device) * var(--max-width));
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/logo_hpjy.png) no-repeat;
  background-size: 100% 100%;
}
.wrap .logo a:last-child {
  display: block;
  width: calc(162 / var(--max-device) * var(--max-width));
  height: calc(38 / var(--max-device) * var(--max-width));
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/logo_ctdk.png) no-repeat;
  background-size: 100% 100%;
}
.wrap .logo span {
  display: block;
  width: calc(1 / var(--max-device) * var(--max-width));
  height: calc(20 / var(--max-device) * var(--max-width));
  background-color: rgba(255, 255, 255, 0.5);
}

.header {
  display: none;
}

.container {
  width: calc(2326 / var(--max-device) * var(--max-width));
  max-height: calc(1080 / var(--max-device) * var(--max-width));
  height: calc(100vh - 80 / var(--max-device) * var(--max-width));
  margin: calc(80 / var(--max-device) * var(--max-width)) auto 0;
  box-sizing: border-box;
  position: relative;
  perspective: calc(1000 / var(--max-device) * var(--max-width));
  -webkit-perspective: calc(1000 / var(--max-device) * var(--max-width));
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.container .ring {
  width: calc(966 / var(--max-device) * var(--max-width));
  height: calc(966 / var(--max-device) * var(--max-width));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 60s linear infinite;
}
.container > a {
  display: block;
  position: absolute;
}
.container > a:hover {
  filter: brightness(1.1) drop-shadow(0 0 5px rgba(0, 164, 230, 0.2));
}
.container > a .title {
  width: 100%;
  height: calc(59 / var(--max-device) * var(--max-width));
  display: flex;
  align-items: center;
  gap: calc(8 / var(--max-device) * var(--max-width));
  padding: 0 calc(16 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/titlebg.png) no-repeat;
  background-size: 100% 100%;
}
.container > a .title .icon {
  display: block;
  width: calc(40 / var(--max-device) * var(--max-width));
  height: calc(40 / var(--max-device) * var(--max-width));
}
.container > a .title h2 {
  font-family: "PingFang SC";
  font-size: calc(32 / var(--max-device) * var(--max-width));
  font-weight: bold;
  color: #fff;
}
.container > a .title .arrow {
  display: none;
}
.container > a .title .close {
  display: none;
}
.container > a .content {
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/contentbg.png) no-repeat;
  background-size: 100% 100%;
}
.container > a .cover {
  position: relative;
}
.container > a .cover img {
  display: block;
  width: 100%;
  height: 100%;
  border: calc(1 / var(--max-device) * var(--max-width)) solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}
.container > a .cover div {
  width: calc(6 / var(--max-device) * var(--max-width));
  height: calc(6 / var(--max-device) * var(--max-width));
  background: #65E0FF;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  position: absolute;
  z-index: 1;
}
.container > a .cover div:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: rotateX(180deg);
}
.container > a .cover div:nth-of-type(2) {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}
.container > a .cover div:nth-of-type(3) {
  left: 0;
  bottom: 0;
}
.container > a .cover div:nth-of-type(4) {
  right: 0;
  bottom: 0;
  transform: rotateY(180deg);
}
.container > a .desc {
  margin: calc(16 / var(--max-device) * var(--max-width)) auto calc(24 / var(--max-device) * var(--max-width));
}
.container > a .desc-title {
  font-family: "PingFang SC";
  color: #65E0FF;
  font-size: calc(24 / var(--max-device) * var(--max-width));
  font-weight: bold;
}
.container > a .desc-text {
  font-family: "PingFang SC";
  font-size: calc(20 / var(--max-device) * var(--max-width));
  color: #fff;
  opacity: 0.8;
  margin-top: calc(8 / var(--max-device) * var(--max-width));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.container .record {
  width: calc(712 / var(--max-device) * var(--max-width));
  height: calc(626 / var(--max-device) * var(--max-width));
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/recordbg.png) no-repeat;
  background-size: 100% 100%;
  top: calc(60 / var(--max-device) * var(--max-width));
  left: calc(85 / var(--max-device) * var(--max-width));
  transform: scale(0.95) skewY(0deg) rotateY(18deg);
}
.container .record .top {
  width: 100%;
  height: calc(60 / var(--max-device) * var(--max-width));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(16 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
}
.container .record .top-title {
  height: calc(59 / var(--max-device) * var(--max-width));
  display: flex;
  align-items: center;
  gap: calc(8 / var(--max-device) * var(--max-width));
}
.container .record .top-title .icon {
  display: block;
  width: calc(40 / var(--max-device) * var(--max-width));
  height: calc(40 / var(--max-device) * var(--max-width));
}
.container .record .top-title h2 {
  font-family: "PingFang SC";
  font-size: calc(32 / var(--max-device) * var(--max-width));
  font-weight: bold;
  color: #fff;
}
.container .record .top .archive {
  display: flex;
  align-items: center;
  gap: calc(8 / var(--max-device) * var(--max-width));
}
.container .record .top .archive::before {
  content: "";
  display: block;
  width: calc(4 / var(--max-device) * var(--max-width));
  height: calc(4 / var(--max-device) * var(--max-width));
  background: #65E0FF;
  margin-right: calc(8 / var(--max-device) * var(--max-width));
}
.container .record .top .archive span {
  font-family: "PingFang SC";
  font-size: calc(20 / var(--max-device) * var(--max-width));
  color: #65E0FF;
}
.container .record .top .archive .num {
  height: calc(24 / var(--max-device) * var(--max-width));
  line-height: calc(24 / var(--max-device) * var(--max-width));
  font-family: "Agency FB";
  font-size: calc(16 / var(--max-device) * var(--max-width));
  font-weight: bold;
  text-align: center;
  color: #000;
  padding: 0 calc(16 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
  background: #65E0FF;
}
.container .record .top .arrow {
  display: none;
}
.container .record .content {
  background: none;
}
.container .record .cover {
  width: calc(664 / var(--max-device) * var(--max-width));
  height: calc(372 / var(--max-device) * var(--max-width));
  margin: calc(47 / var(--max-device) * var(--max-width)) auto 0;
  overflow: hidden;
}
.container .record .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container .record .desc {
  width: calc(664 / var(--max-device) * var(--max-width));
  height: calc(108 / var(--max-device) * var(--max-width));
}
.container .record .desc-title {
  font-size: calc(24 / var(--max-device) * var(--max-width));
  font-weight: bold;
}
.container .plan {
  width: calc(668 / var(--max-device) * var(--max-width));
  height: calc(505 / var(--max-device) * var(--max-width));
  top: 0;
  right: calc(200 / var(--max-device) * var(--max-width));
  transform: scale(0.95) skewY(0deg) rotateY(-16deg);
  top: calc(-20 / var(--max-device) * var(--max-width));
}
.container .plan .content {
  padding: calc(40 / var(--max-device) * var(--max-width)) 0 0;
  box-sizing: border-box;
}
.container .plan .content .cover {
  width: calc(620 / var(--max-device) * var(--max-width));
  height: calc(268 / var(--max-device) * var(--max-width));
  margin: 0 auto;
}
.container .plan .content .cover div:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: rotateX(180deg);
}
.container .plan .content .cover div:nth-of-type(2) {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}
.container .plan .content .cover div:nth-of-type(3) {
  left: 0;
  bottom: 0;
}
.container .plan .content .cover div:nth-of-type(4) {
  right: 0;
  bottom: 0;
  transform: rotateY(180deg);
}
.container .plan .content .desc {
  width: calc(620 / var(--max-device) * var(--max-width));
  height: calc(106 / var(--max-device) * var(--max-width));
}
.container .plan .content .desc-title {
  font-size: calc(20 / var(--max-device) * var(--max-width));
  font-weight: bold;
}
.container .region {
  width: calc(709 / var(--max-device) * var(--max-width));
  height: calc(324 / var(--max-device) * var(--max-width));
  bottom: 0;
  left: calc(190 / var(--max-device) * var(--max-width));
  transform: scale(0.95) skewY(-2deg) rotateY(6deg);
  bottom: calc(50 / var(--max-device) * var(--max-width));
}
.container .region .content {
  width: 100%;
  padding: calc(24 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
}
.container .region .content-top {
  width: 100%;
  height: calc(140 / var(--max-device) * var(--max-width));
  display: flex;
  gap: calc(16 / var(--max-device) * var(--max-width));
}
.container .region .content-top .cover {
  width: calc(260 / var(--max-device) * var(--max-width));
  height: 100%;
}
.container .region .content-top .cover .ruler {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.container .region .content-top .desc {
  width: calc(385 / var(--max-device) * var(--max-width));
  height: 100%;
  margin: 0;
}
.container .region .content-top .desc-text {
  -webkit-line-clamp: 3;
}
.container .region .content-bottom {
  width: 100%;
  height: calc(56 / var(--max-device) * var(--max-width));
  margin-top: calc(21 / var(--max-device) * var(--max-width));
  display: flex;
  align-items: center;
  gap: calc(11 / var(--max-device) * var(--max-width));
}
.container .region .content-bottom .direction {
  display: block;
  width: calc(48 / var(--max-device) * var(--max-width));
  height: calc(50 / var(--max-device) * var(--max-width));
}
.container .region .content-bottom .list {
  width: calc(596 / var(--max-device) * var(--max-width));
  height: 100%;
  display: flex;
  gap: calc(8 / var(--max-device) * var(--max-width));
}
.container .region .content-bottom .list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(8 / var(--max-device) * var(--max-width)) calc(12 / var(--max-device) * var(--max-width));
  border: calc(1 / var(--max-device) * var(--max-width)) solid rgba(255, 255, 255, 0.1);
}
.container .region .content-bottom .list li img {
  display: block;
  width: calc(40 / var(--max-device) * var(--max-width));
  height: calc(40 / var(--max-device) * var(--max-width));
  margin-right: calc(32 / var(--max-device) * var(--max-width));
}
.container .region .content-bottom .list li h6 {
  font-family: "PingFang SC";
  font-size: calc(14 / var(--max-device) * var(--max-width));
  text-align: right;
  color: #65E0FF;
  white-space: nowrap;
}
.container .region .content-bottom .list li p {
  font-family: "PingFang SC";
  font-size: calc(14 / var(--max-device) * var(--max-width));
  color: #fff;
  opacity: 0.8;
  white-space: nowrap;
}
.container .role {
  width: calc(830 / var(--max-device) * var(--max-width));
  height: calc(550 / var(--max-device) * var(--max-width));
  right: 0;
  bottom: 0;
  transform: scale(0.95) skewY(0deg) rotateY(-12deg);
  bottom: calc(50 / var(--max-device) * var(--max-width));
}
.container .role .content {
  width: calc(830 / var(--max-device) * var(--max-width));
  height: calc(475 / var(--max-device) * var(--max-width));
  display: flex;
  justify-content: space-between;
  padding: calc(24 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
  position: relative;
}
.container .role .content .left {
  width: calc(424 / var(--max-device) * var(--max-width));
}
.container .role .content .left .grid {
  display: block;
  width: 100%;
  height: calc(172 / var(--max-device) * var(--max-width));
}
.container .role .content .left .sub-title {
  width: 100%;
  height: calc(40 / var(--max-device) * var(--max-width));
  line-height: calc(40 / var(--max-device) * var(--max-width));
  font-family: "PingFang SC";
  font-size: calc(20 / var(--max-device) * var(--max-width));
  font-weight: bold;
  color: #65E0FF;
  padding-left: calc(24 / var(--max-device) * var(--max-width));
  margin: calc(16 / var(--max-device) * var(--max-width)) 0;
  box-sizing: border-box;
  background: rgba(0, 164, 230, 0.1);
  position: relative;
}
.container .role .content .left .sub-title::after {
  content: "";
  display: block;
  width: calc(8 / var(--max-device) * var(--max-width));
  height: calc(8 / var(--max-device) * var(--max-width));
  background: #00A4E6;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  position: absolute;
  left: calc(-4 / var(--max-device) * var(--max-width));
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.container .role .content .left .info {
  display: flex;
  width: 100%;
  height: calc(56 / var(--max-device) * var(--max-width));
  margin-top: calc(8 / var(--max-device) * var(--max-width));
  border: calc(1 / var(--max-device) * var(--max-width)) solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.container .role .content .left .info::before {
  content: "";
  display: block;
  width: calc(416 / var(--max-device) * var(--max-width));
  height: calc(48 / var(--max-device) * var(--max-width));
  border: calc(1 / var(--max-device) * var(--max-width)) solid rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.container .role .content .left .info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 / var(--max-device) * var(--max-width));
  padding: calc(12 / var(--max-device) * var(--max-width)) calc(24 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
}
.container .role .content .left .info-item strong {
  font-family: "PingFang SC";
  font-weight: bold;
  font-size: calc(20 / var(--max-device) * var(--max-width));
  color: #65E0FF;
}
.container .role .content .left .info-item i {
  display: block;
  width: calc(6 / var(--max-device) * var(--max-width));
  height: calc(8 / var(--max-device) * var(--max-width));
  background-color: #fff;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: rotate(90deg);
  opacity: 0.3;
}
.container .role .content .left .info-item span {
  font-family: "PingFang SC";
  font-size: calc(20 / var(--max-device) * var(--max-width));
  color: #fff;
  opacity: 0.8;
}
.container .role .content .left .desc {
  width: 105%;
  font-family: "PingFang SC";
  font-size: calc(16 / var(--max-device) * var(--max-width));
  color: #fff;
  opacity: 0.8;
}
.container .role .content .right {
  width: calc(328 / var(--max-device) * var(--max-width));
  height: calc(420 / var(--max-device) * var(--max-width));
  position: relative;
}
.container .role .content .right::before {
  content: "";
  position: absolute;
  top: calc(10 / var(--max-device) * var(--max-width));
  left: calc(-10 / var(--max-device) * var(--max-width));
  width: 100%;
  height: 100%;
  border: calc(1 / var(--max-device) * var(--max-width)) solid rgba(255, 255, 255, 0.5);
}
.container .role .content .right .role-img {
  display: block;
  width: 100%;
  height: 100%;
  border: calc(1 / var(--max-device) * var(--max-width)) solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  position: relative;
}
.container .role .content .right .name {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(82 / var(--max-device) * var(--max-width));
  background: linear-gradient(to top, #00A9EC, rgba(0, 0, 0, 0));
  font-family: "PingFang SC";
  font-weight: bold;
  font-size: calc(36 / var(--max-device) * var(--max-width));
  line-height: calc(82 / var(--max-device) * var(--max-width));
  text-align: center;
  color: #65E0FF;
}
.container .role .content .right .name::before {
  content: "";
  width: calc(296 / var(--max-device) * var(--max-width));
  height: calc(1 / var(--max-device) * var(--max-width));
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #00A9EC 25%, #D8F4FF 50%, #00A9EC 75%, rgba(255, 255, 255, 0) 100%);
}
.container .role .content .line {
  display: block;
  width: calc(184 / var(--max-device) * var(--max-width));
  height: calc(74 / var(--max-device) * var(--max-width));
  background: url(//game.gtimg.cn/images/gp/cp/a20250827super/index/line.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: calc(50 / var(--max-device) * var(--max-width));
  left: calc(295 / var(--max-device) * var(--max-width));
}
.container .audio-visual {
  width: calc(360 / var(--max-device) * var(--max-width));
  height: calc(323 / var(--max-device) * var(--max-width));
  bottom: 0;
  right: calc(900 / var(--max-device) * var(--max-width));
  transform: scale(0.95) skewY(2deg) rotateY(-10deg);
  bottom: calc(50 / var(--max-device) * var(--max-width));
}
.container .audio-visual .content {
  width: 100%;
  height: calc(260 / var(--max-device) * var(--max-width));
  padding: calc(24 / var(--max-device) * var(--max-width));
  box-sizing: border-box;
}
.container .audio-visual .content .cover {
  z-index: 2;
}
.container .audio-visual .content .mask {
  width: calc(312 / var(--max-device) * var(--max-width));
  height: calc(176 / var(--max-device) * var(--max-width));
  position: absolute;
  left: calc(24 / var(--max-device) * var(--max-width));
  top: calc(24 / var(--max-device) * var(--max-width));
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}
.container .audio-visual .content .play {
  display: block;
  width: calc(76 / var(--max-device) * var(--max-width));
  height: calc(88 / var(--max-device) * var(--max-width));
  position: absolute;
  left: 50%;
  top: calc(65 / var(--max-device) * var(--max-width));
  z-index: 3;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.container .audio-visual .content .play.h {
  opacity: 0;
}
.container .audio-visual .content .video {
  width: calc(312 / var(--max-device) * var(--max-width));
  height: calc(176 / var(--max-device) * var(--max-width));
  position: absolute;
  left: calc(24 / var(--max-device) * var(--max-width));
  top: calc(24 / var(--max-device) * var(--max-width));
}
.container .audio-visual .content .desc {
  width: calc(100% - 48 / var(--max-device) * var(--max-width));
  position: absolute;
  left: calc(24 / var(--max-device) * var(--max-width));
  bottom: calc(24 / var(--max-device) * var(--max-width));
  z-index: 3;
  margin: 0;
}
.container .audio-visual .content .desc .desc-title {
  font-size: calc(20 / var(--max-device) * var(--max-width));
  font-weight: bold;
}
.container .audio-visual:hover .mask {
  opacity: 0;
}
.container .audio-visual:hover .play {
  opacity: 0;
}
.container .audio-visual:hover .play.h {
  opacity: 1;
}

.pop_in {
  background: #fff;
}

.gp-foot {
  display: none;
}
