2026-03-09 18:04:16 +08:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
|
|
|
|
/* CSS Document */
|
|
|
|
|
.bg {
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
background: url(../images/bg2.jpg) no-repeat;
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
padding-top: 0rem;
|
2026-08-28 18:01:15 +08:00
|
|
|
padding: 0rem 1.25rem 0 1.875rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2026-03-09 18:04:16 +08:00
|
|
|
|
2026-08-28 18:01:15 +08:00
|
|
|
.container {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: calc(100vh - 3.75rem);
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-size: 1.875rem;
|
|
|
|
|
line-height: 4.6875rem;
|
2026-04-21 17:48:43 +08:00
|
|
|
color: #0efdff;
|
2026-03-09 18:04:16 +08:00
|
|
|
text-align: center;
|
|
|
|
|
font-weight: bold;
|
2026-08-28 18:01:15 +08:00
|
|
|
height: 2.1875rem;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.border_bg_leftTop {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -0.125rem;
|
|
|
|
|
top: -0.625rem;
|
|
|
|
|
width: 5.78125rem;
|
|
|
|
|
height: 0.78125rem;
|
|
|
|
|
display: block;
|
|
|
|
|
background: #01279d url(../images/title_left_bg.png) no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.border_bg_rightTop {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: -0.15625rem;
|
|
|
|
|
top: -0.15625rem;
|
|
|
|
|
width: 1.5625rem;
|
|
|
|
|
height: 1.5625rem;
|
|
|
|
|
display: block;
|
|
|
|
|
background: url(../images/border_bg.jpg) no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.border_bg_leftBottom {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -0.125rem;
|
|
|
|
|
bottom: -0.125rem;
|
|
|
|
|
width: 1.5625rem;
|
|
|
|
|
height: 1.5625rem;
|
|
|
|
|
display: block;
|
|
|
|
|
background: url(../images/border_bg.jpg) no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.border_bg_rightBottom {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: -0.15625rem;
|
|
|
|
|
bottom: -0.15625rem;
|
|
|
|
|
width: 1.25rem;
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
display: block;
|
|
|
|
|
background: url(../images/title_right_bg.png) no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain {
|
|
|
|
|
width: 75%;
|
2026-08-28 18:01:15 +08:00
|
|
|
padding-right: .625rem;
|
2026-04-21 17:48:43 +08:00
|
|
|
padding-top: 0;
|
2026-08-28 18:01:15 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain {
|
|
|
|
|
width: 25%;
|
2026-08-28 18:01:15 +08:00
|
|
|
|
2026-04-21 17:48:43 +08:00
|
|
|
padding-top: 2.5rem;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top {
|
|
|
|
|
width: 100%;
|
2026-08-28 18:01:15 +08:00
|
|
|
margin-bottom: .625rem;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul li {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 25%;
|
|
|
|
|
padding-right: 1.5625rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul li:last-child {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul li .liIn {
|
|
|
|
|
border: 0.125rem solid rgba(14, 253, 255, 0.5);
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 3.75rem;
|
|
|
|
|
position: relative;
|
2026-04-21 17:48:43 +08:00
|
|
|
padding: .625rem 1.25rem;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul li .liIn h3 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul li .liIn .shu {
|
2026-04-21 17:48:43 +08:00
|
|
|
font-size: 1.625rem;
|
|
|
|
|
color: #0efdff;
|
2026-03-09 18:04:16 +08:00
|
|
|
font-family: dig;
|
|
|
|
|
margin-bottom: 0.3125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul li .liIn .shu i {
|
|
|
|
|
font-size: 1rem;
|
2026-04-21 17:48:43 +08:00
|
|
|
margin-left: .125rem;
|
2026-03-09 18:04:16 +08:00
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_top ul li .liIn .zi {
|
|
|
|
|
font-size: 0.625rem;
|
|
|
|
|
color: #fff;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 10;
|
2026-08-28 18:01:15 +08:00
|
|
|
}
|
2026-03-09 18:04:16 +08:00
|
|
|
|
|
|
|
|
.leftMain_top ul li .liIn .zi .span1 {
|
|
|
|
|
margin-right: 1.5625rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.leftMain_middle {
|
|
|
|
|
width: 100%;
|
2026-08-28 18:01:15 +08:00
|
|
|
flex: 1;
|
2026-03-09 18:04:16 +08:00
|
|
|
display: flex;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_left {
|
2026-08-28 18:01:15 +08:00
|
|
|
width: 70%;
|
|
|
|
|
padding-right: .625rem;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_left .leftMain_middle_leftIn {
|
|
|
|
|
border: 0.125rem solid rgba(14, 253, 255, 0.5);
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 3.75rem;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: .625rem;
|
2026-08-28 18:01:15 +08:00
|
|
|
flex: 1;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle_leftIn_zhe {
|
|
|
|
|
margin-top: 2vh;
|
2026-08-28 18:01:15 +08:00
|
|
|
flex: 1;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_left .leftMain_middle_leftIn h3 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin-bottom: 0.78125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_left .leftMain_middle_leftIn .biaoge {
|
2026-08-28 18:01:15 +08:00
|
|
|
min-height: 0;
|
|
|
|
|
height: calc(100% - 2.1875rem);
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right {
|
2026-08-28 18:01:15 +08:00
|
|
|
width: 30%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
border: 0.125rem solid rgba(14, 253, 255, 0.5);
|
|
|
|
|
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn {
|
|
|
|
|
width: 100%;
|
2026-08-28 18:01:15 +08:00
|
|
|
|
2026-03-09 18:04:16 +08:00
|
|
|
padding: .625rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn h3 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin-bottom: 0.78125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge {
|
|
|
|
|
min-height: 12.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*左边中间部分排行榜*/
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul{
|
|
|
|
|
height: 68vh;
|
|
|
|
|
} */
|
|
|
|
|
|
2026-08-28 18:01:15 +08:00
|
|
|
|
2026-03-09 18:04:16 +08:00
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn {
|
|
|
|
|
display: flex;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #fff;
|
2026-08-28 18:01:15 +08:00
|
|
|
font-size: 1.125rem;
|
|
|
|
|
font-weight: 700;
|
2026-07-22 11:25:40 +08:00
|
|
|
height: 2.5rem;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn .liIn_left {
|
2026-04-21 17:48:43 +08:00
|
|
|
width: 30%;
|
2026-03-09 18:04:16 +08:00
|
|
|
position: relative;
|
2026-08-28 18:01:15 +08:00
|
|
|
padding-left: .625rem;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn .liIn_left .bot {
|
|
|
|
|
width: 1.25rem;
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
background: #05d1fc;
|
|
|
|
|
border-radius: 62.5rem;
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0.3125rem;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
margin: auto 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn2 .liIn_left .bot {
|
|
|
|
|
background: #e7feb8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn3 .liIn_left .bot {
|
|
|
|
|
background: #fdea8a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn4 .liIn_left .bot {
|
|
|
|
|
background: #8ff9f8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn5 .liIn_left .bot {
|
|
|
|
|
background: #d890fa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn6 .liIn_left .bot {
|
|
|
|
|
background: #05d1fc;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-28 18:01:15 +08:00
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn .liIn_left zi {}
|
2026-03-09 18:04:16 +08:00
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn .liIn_line {
|
2026-04-21 17:48:43 +08:00
|
|
|
width: 50%;
|
2026-03-09 18:04:16 +08:00
|
|
|
height: 1.25rem;
|
|
|
|
|
background: rgba(255, 255, 255, 0.5);
|
|
|
|
|
border-radius: 125rem;
|
2026-08-28 18:01:15 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn .liIn_line .line_lineIn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
background: #05d1fc;
|
|
|
|
|
border-radius: 125rem;
|
|
|
|
|
-webkit-animation: widthMove1 2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.line_lineIn .per {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn2 .liIn_line .line_lineIn {
|
|
|
|
|
background: #e7feb8;
|
|
|
|
|
-webkit-animation: widthMove2 2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn3 .liIn_line .line_lineIn {
|
|
|
|
|
background: #fdea8a;
|
|
|
|
|
-webkit-animation: widthMove3 2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn4 .liIn_line .line_lineIn {
|
|
|
|
|
background: #8ff9f8;
|
|
|
|
|
-webkit-animation: widthMove4 2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn5 .liIn_line .line_lineIn {
|
|
|
|
|
background: #d890fa;
|
|
|
|
|
-webkit-animation: widthMove5 2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn6 .liIn_line .line_lineIn {
|
|
|
|
|
background: #05d1fc;
|
|
|
|
|
-webkit-animation: widthMove6 2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes widthMove1 {
|
|
|
|
|
0% {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
width: 98.5%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes widthMove2 {
|
|
|
|
|
0% {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
width: 88.5%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes widthMove3 {
|
|
|
|
|
0% {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
width: 68.5%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes widthMove4 {
|
|
|
|
|
0% {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
width: 40.5%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes widthMove5 {
|
|
|
|
|
0% {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
width: 22.5%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes widthMove6 {
|
|
|
|
|
0% {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
width: 10.5%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_pai ul li .liIn .num {
|
|
|
|
|
width: 18%;
|
|
|
|
|
font-family: dig;
|
|
|
|
|
padding-left: 0.3125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*左边底部*/
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul li {
|
|
|
|
|
width: 33.3%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 0.78125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul li .shu {
|
|
|
|
|
font-size: 2.1875rem;
|
|
|
|
|
color: rgba(14, 253, 255, 1);
|
|
|
|
|
font-family: dig;
|
|
|
|
|
padding: 1.875rem 0 0.3125rem;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul li .zi {
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*右边部分*/
|
|
|
|
|
.rightMain .rightMain_top {
|
2026-08-28 18:01:15 +08:00
|
|
|
border: 0.125rem solid rgba(14, 253, 255, 0.5);
|
2026-03-09 18:04:16 +08:00
|
|
|
width: 100%;
|
2026-08-28 18:01:15 +08:00
|
|
|
position: relative;
|
|
|
|
|
height: 100%;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_topIn {
|
2026-08-28 18:01:15 +08:00
|
|
|
|
2026-03-09 18:04:16 +08:00
|
|
|
padding: .625rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-28 18:01:15 +08:00
|
|
|
.proportion {}
|
|
|
|
|
|
2026-04-21 17:48:43 +08:00
|
|
|
|
|
|
|
|
.proportion ul li .liIn {
|
|
|
|
|
display: flex;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #fff;
|
2026-08-28 18:01:15 +08:00
|
|
|
font-size: 1.125rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin-bottom: .625rem;
|
|
|
|
|
}
|
2026-04-21 17:48:43 +08:00
|
|
|
|
|
|
|
|
.proportion ul li .liIn .liIn_left {
|
2026-08-28 18:01:15 +08:00
|
|
|
width: 50%;
|
2026-04-21 17:48:43 +08:00
|
|
|
position: relative;
|
2026-08-28 18:01:15 +08:00
|
|
|
padding-left: .625rem;
|
2026-04-21 17:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.proportion ul li .liIn .liIn_left .bot {
|
|
|
|
|
width: 1.25rem;
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
background: #05d1fc;
|
|
|
|
|
border-radius: 62.5rem;
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0.3125rem;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
margin: auto 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.proportion ul li .liIn .liIn_line {
|
2026-08-28 18:01:15 +08:00
|
|
|
width: 32%;
|
2026-04-21 17:48:43 +08:00
|
|
|
height: 1.25rem;
|
|
|
|
|
background: rgba(255, 255, 255, 0.5);
|
|
|
|
|
border-radius: 125rem;
|
2026-08-28 18:01:15 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
2026-04-21 17:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.proportion ul li .liIn .liIn_line .line_lineIn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
background: #05d1fc;
|
|
|
|
|
border-radius: 125rem;
|
|
|
|
|
-webkit-animation: widthMove1 2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.line_lineIn .per {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
2026-08-28 18:01:15 +08:00
|
|
|
left: 30%;
|
2026-04-21 17:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
2026-08-28 18:01:15 +08:00
|
|
|
|
2026-04-21 17:48:43 +08:00
|
|
|
@-webkit-keyframes widthMove1 {
|
|
|
|
|
0% {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
width: 98.5%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-28 18:01:15 +08:00
|
|
|
|
2026-04-21 17:48:43 +08:00
|
|
|
|
|
|
|
|
.proportion ul li .liIn .num {
|
|
|
|
|
width: 18%;
|
|
|
|
|
font-family: dig;
|
|
|
|
|
padding-left: 0.3125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2026-03-09 18:04:16 +08:00
|
|
|
.rightMain .rightMain_topIn h3 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
color: #fff;
|
|
|
|
|
margin-bottom: 0.78125rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_topIn .biaoge {
|
|
|
|
|
min-height: 12.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottom {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn {
|
|
|
|
|
border: 0.125rem solid rgba(14, 253, 255, 0.5);
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 3.75rem;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 1.25rem 0.78125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn h3 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
color: #fff;
|
|
|
|
|
margin-bottom: 0.78125rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*右下角表格*/
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge {
|
|
|
|
|
min-height: 12.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list .biaoge_listIn .ul_list {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list .biaoge_listIn .ul_listIn {
|
|
|
|
|
-webkit-animation: 14s gundong linear infinite normal;
|
|
|
|
|
animation: 14s gundong linear infinite normal;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes gundong {
|
|
|
|
|
0% {
|
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
-webkit-transform: translate3d(0, -30vh, 0);
|
|
|
|
|
transform: translate3d(0, -30vh, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list .ul_title {
|
|
|
|
|
background: linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
|
|
|
|
|
background: -ms-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
|
|
|
|
|
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
|
|
|
|
|
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list .ul_con {
|
|
|
|
|
border-bottom: 0.125rem solid rgba(14, 253, 255, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list ul li {
|
|
|
|
|
width: 20%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
height: 3.125rem;
|
|
|
|
|
line-height: 3.125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightMain .rightMain_bottomIn .biaoge_list ul li:frist-child {
|
|
|
|
|
text-align: left;
|
2026-04-21 17:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title_nums {
|
2026-08-28 18:01:15 +08:00
|
|
|
font-size: 1.25rem;
|
2026-04-21 17:48:43 +08:00
|
|
|
font-weight: 700;
|
|
|
|
|
color: #fff;
|
2026-08-28 18:01:15 +08:00
|
|
|
margin: .3125rem 0 .625rem;
|
2026-04-21 17:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nums_box {
|
|
|
|
|
display: flex;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 适配你深蓝色科技风的滚动条 */
|
|
|
|
|
/* 整体滚动条容器 */
|
|
|
|
|
::-webkit-scrollbar {
|
2026-08-28 18:01:15 +08:00
|
|
|
width: 10px;
|
|
|
|
|
/* 控制滚动条宽度,和你图中一致 */
|
2026-04-21 17:48:43 +08:00
|
|
|
height: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 滚动条轨道(背景) */
|
|
|
|
|
::-webkit-scrollbar-track {
|
2026-08-28 18:01:15 +08:00
|
|
|
background: rgba(0, 150, 255, 0.1);
|
|
|
|
|
/* 半透明蓝底,和界面融合 */
|
2026-04-21 17:48:43 +08:00
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 滚动条滑块 */
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2026-08-28 18:01:15 +08:00
|
|
|
background: linear-gradient(to bottom,
|
|
|
|
|
#00d4ff,
|
|
|
|
|
/* 顶部亮青色,和你的条形颜色呼应 */
|
|
|
|
|
#0099cc
|
|
|
|
|
/* 底部深蓝色,和背景协调 */
|
|
|
|
|
);
|
2026-04-21 17:48:43 +08:00
|
|
|
border-radius: 4px;
|
2026-08-28 18:01:15 +08:00
|
|
|
box-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
|
|
|
|
|
/* 发光效果,增强科技感 */
|
2026-04-21 17:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 滑块 hover 效果 */
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2026-08-28 18:01:15 +08:00
|
|
|
background: linear-gradient(to bottom,
|
|
|
|
|
#00f0ff,
|
|
|
|
|
#00aadd);
|
2026-04-21 17:48:43 +08:00
|
|
|
box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 滚动条上下按钮(可选,隐藏或自定义) */
|
|
|
|
|
::-webkit-scrollbar-button {
|
|
|
|
|
display: none;
|
2026-03-09 18:04:16 +08:00
|
|
|
}
|