body{
    font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--grey);
	background-color: var(--black-blue);
	overflow-x: hidden;
	letter-spacing: 0.2px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear; 
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
}

.navbar-brand{
	height: 36px;
	position: fixed;
	top: 50px;
	left: 70px;
	z-index: 3333;
	width: auto;
	display: inline-block;
	margin: 0;
	padding: 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-brand::before{
	position: absolute;
	content: '';
	top: -13px;
	left: 50%;
	width: 80px;
	transform: translateX(-50%);
	height: calc(100% + 26px);
	opacity: 0;
	z-index: -1;
	background-image: linear-gradient(260deg, var(--grey), var(--grey-light));
	animation: border-transform 10s linear infinite alternate forwards;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.navbar-brand::after{
	position: absolute;
	content: '';
	top: -13px;
	left: 50%;
	width: 80px;
	transform: translateX(-50%);
	height: calc(100% + 26px);
	opacity: 1;
	z-index: -1;
	background-image: linear-gradient(160deg, var(--black-blue-light-3), var(--black-blue-light));
	animation: border-transform 10s linear infinite alternate forwards;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.navbar-brand img{
	padding: 7px 0;
	height: 100%;
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
@-webkit-keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
	14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
	28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
	42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
	56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
	70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
	84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
	14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
	28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
	42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
	56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
	70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
	84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}
 

.section {
    position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	height: 100vh;
}
.center-wrap {
    position: absolute;
	width: 100%;
	display: block;
	overflow: hidden;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
.color-gradient-red-yellow {
	background: linear-gradient(160deg, var(--red), var(--yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.color-gradient-red-yellow .uil:before {
	background: linear-gradient(160deg, var(--red), var(--yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.size-22 {
	font-size: 22px;
}

:root {
	font-size: 20px;
	--red: red;
	--yellow: red;
	--green: #2ecc71;
	--white: red;
	--grey-light: #ffffff;
	--grey: #ffffff;
	--black: #080808;
	--black-blue: #121314;
	--black-blue-light: #353746;
	--black-blue-light-2: #404255;
	--black-blue-light-3: #4b4d64;
	--black-light: #424455;
}
.progress-wrap {
	position: fixed;
	right: 170px;
	bottom: 100px;
	height: 66px;
	width: 66px;
	cursor: pointer;
	display: block;
	border-radius: 66px;
	box-shadow: inset  0 0 0 4px rgba(0,0,0,0.8);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '↑';
	text-align: center;
	line-height: 66px;
	font-size: 24px;
	color: #fff;
	left: 0;
	top: 0;
	height: 66px;
	width: 66px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '↑';
	text-align: center;
	line-height: 66px;
	font-size: 24px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--red), var(--yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 66px;
	width: 66px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--grey);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
 
 
 
.switch,
.circle {
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
} 
.switch {
	width: 80px;
	height: 4px;
	border-radius: 27px;
	background-image: linear-gradient(298deg, var(--red), var(--yellow));
	position: fixed;
	left: 250px;
	top: 320px;
	display: block;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
  z-index: 33333;
    transition: all 300ms linear;
}
.circle {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--black-blue-light-3);
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	animation: border-transform 10s linear infinite alternate forwards;
}
.circle:hover {
	box-shadow: 0 8px 8px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
}

.coys0{ color:#333;}
.coys1{color:#00c558;font-weight:bold; }
.coys2{color:red;font-weight:bold;}
.coys3{color:#ffbc00;font-weight:bold; }
.coys4{color:#14e0fd;font-weight:bold; }
	    .titlecsn {  font-size: 21px;    height: 45px;    line-height: 45px;
	    }
	    .mxicss {
            font-size:12px;color:#000;padding-left:9px;border-radius: 8px;padding-top:10px;padding-bottom:10px;
            text-shadow:1px 1px 6px #000000;
	    }
         .mxicsstre {
            width:828px;background-color:#fff; font-size:12px;color:#000;padding-left:15px;border-radius: 8px;padding-top:10px;padding-bottom:10px;
            text-shadow:1px 1px 6px #000000;
	    }
          .mxicsstrre {
            width:120px;
	    }
           .rnstyre {
            width:116px;
            font-size:14px;
            color:#000;
            border-radius: 8px;
            text-shadow:1px 1px 6px #000000;
            line-height: 37px;
            border:2px solid #000;
            text-align:center;
            font-weight:bolder;
            box-shadow:0px 0px 14px #000000;
            background: url(https://pl.games80.cn/images/shopbg.jpg);
     }
	    .tdjhhh {width:978px;height:25px;
	    }
         .tdjhhh2 {width:850px;height:20px;clear:both;
	    }
	    .gaoducs {line-height:42px;
	    }
	    .fgxcsoi {width:958px;border-bottom:1px dotted #262626;
	    }
	    .hoimtim {width:96px;height:96px;border-radius: 6px;border:2px solid #000
	    }
        .hoimtim:hover {width:96px;height:96px;border-radius: 6px;border:2px solid red
	    }
        .hoimtimzj {width:96px;height:96px;border-radius: 6px;border:2px solid #000
	    }
        .hoimtimzj:hover {width:96px;height:96px;border-radius: 6px;border:2px solid red;
	    }
	    .rnstyrew {
	    margin-top: 11px;
	    } .tcoorigh {
                    font-size: 14px;
                    line-height: 68px;
                    padding-left: 10px;
                    border-bottom: 2px dotted #000;
                    color: #27d365;
                    float: left;
                    width: 308px;
                }

                .fgxcsoi {
                    width: 958px;
                    border-bottom: 1px dotted #262626;
                }

                .tcoorigh:hover {
                    color: #ffbc00;background:url(https://pl.games80.cn/images/shopbg.jpg);
                    border-bottom: 2px solid #ffbc00;
                    border-radius: 8px;
                    box-shadow: 1px 1px 6px #000000;
                     text-decoration:none!important; 
  -webkit-transition: all 0.5s!important;
  -moz-transition: all 0.5s!important;
  transition: all 0.5s!important;
                }

                body {
  overflow-y: scroll;
}
                    body,td,th {
                font-family: "Microsoft Yahei", Arial, Tahoma, Geneva, sans-serif;
            }
                     .pl_acss{font-size:18px;
                               display:-webkit-box;
  text-overflow:ellipsis;
  overflow:hidden;
  width:360px;
  -webkit-line-clamp: 1;
  -webkit-box-orient:vertical;
				    }
.hics10 {height: 10px
}
.hics15 {height: 15px
}
.hics30 {height: 30px
}
.hics5 {height: 5px
}
.hics20 {height: 20px
}
.wai978 {width: 978px; clear: both;
}
.wai9782 {width: 978px; clear: both;height:250px
}
.pl_topl1 {color: #00cee3; border: 2px solid #000; float: left; height: 245px; width: 435px; border-radius: 8px; overflow: hidden; box-shadow: 0px 0px 12px #000000;
}
.pl_topl2 {background: url(https://pl.games80.cn/images/neibg.jpg); color: #00cee3; border: 2px solid #000; float: left;margin-left:18px; height: 245px; width: 380px; border-radius: 8px; overflow: hidden; box-shadow: 0px 0px 12px #000000;
}
.pl_topl3 {float:right;
}
.pl_toptit1 {color: #c3c3c3; font-size: 14px; margin-left: 10px; line-height: 45px
}
.pl_toptit2 {color: #c3c3c3; font-size: 14px; margin-left: 10px; border-bottom: 1px dotted #262626; line-height: 45px
}
.pl_toptit1:hover {color: red; 
}
.pl_toptit2:hover {color: red; 
}
.pl_vido {width: 435px; border-radius: 8px;
}
.pl_zhong {color: #a8fff7; height: 120px; border: 2px solid #000; text-shadow: 5px 5px 6px #000000; box-shadow: 0px 0px 30px 6px #000000;background: url(https://pl.games80.cn/images/neibg.jpg);
}
.pl_zhongti {    color: #ff0000;
    display: block;
    width: 512px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    background-color: #020202;
    padding: 5px 15px 5px 15px;
    border-radius: 60px;
    margin: 0 auto;
}
.pl_zhongtilih {
    line-height: 22px;
}
.pl_zhong1 {display: block; float: left; text-align:center; font-weight: bold;
}
.pl_zhong2 {display: block; float: left; margin-left: 7px; text-align: center; font-weight: bold
}
.pl_ding {height: 115px; border: 2px solid #000; text-shadow: 5px 5px 6px #000000; box-shadow: 0px 0px 30px 6px #000000;
             line-height: 38px;
    padding: 11px;
    border-radius: 8px;clear: both;
    background: url(https://pl.games80.cn/images/neibg.jpg);
}
.pl_neistr {border: 2px solid #000; border-radius: 7px; clear: both; background: url(https://pl.games80.cn/images/neibg.jpg); box-shadow:0px 0px 30px 6px #000000;
}
.pl_timkuai {
    color: #ffffff;
    float:left;
    display: block;
    width: 155px;
    text-align: center;
    margin-top: 10px;
    /* font-weight: bold; */
    font-size: 14px;
    background-color: #054b58;
    padding: 5px 15px 5px 15px;
    border-radius: 5px;
    /* margin: 0 auto; */
    border: 1px solid #000;
}

.pl_timkuai_le10 {margin-left: 10px
}
.pl_dcol1 {color:#c3c3c3;
}
.pl_lefuta1 {float:left;padding-top: 7px;
}
.pl_lefuta1 img {border-radius:4px;;width:68px;
}
.pl_lefuta2 {float:left;line-height:25px;padding-left:12px;color: #c3c3c3;
}