* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
a {
    text-decoration: none;
}
ul, li {
    list-style: none;
}
.full {
    width: 100%;
}
body{
}
.wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    filter: drop-shadow(0 0 4px rgba(23,23,23,0.5));
    background-color: #414141;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
    font-family: 'PingFang HK';
}
.wrapper-main {
    filter: drop-shadow(0 0 4px rgba(23,23,23,0.5));
    background-color: #414141;
    padding-bottom: 140px;
}
.wrapper-main > p {
    font-size: 40px;
    color: #f6d424;
    font-weight: bold;
    font-family: "Ping Fang";
    text-align: center;
    padding: 1% 0;
}
.text1 {
    font-size: 35px;
    letter-spacing: 4px;
    color: #f6d424;
    font-family: "Ping Fang";
    text-align: center;
    padding-top: 1%;
}
.text2 {
    font-size: 35px;
    letter-spacing: 4px;
    color: #ffffff;
    font-family: "Ping Fang";
    text-align: center;
    padding-bottom: 1%;
}
.move {
    animation: move 1.2s infinite;
}
.net-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.net-box ul {
    width: 100%;
}
.net-box ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}
.net-box ul li > div {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 1.5%;
    margin-bottom: 1.5%;
}
.net-box ul li>div::before {
    position: absolute;
    bottom: 0px;
    left: 5%;
    z-index: 2;
    content: '';
    height: 1px;
    background-color: #787878;
    width: 90%;
}
.net-box ul li:last-child>div {
    padding-bottom: 0;
}
.net-box ul li:last-child>div::before {
    display: none;
}
.net-box ul li  .line {
    height: 48px;
    line-height: 48px;
    border-radius: 2px;
    text-align: center;
    font-size: 24px;
    color: #18ff00;
    font-family: "Source Han Sans CN";
    text-align: center;
    border: 1px solid #202020;
}
.net-box ul li .ms {
    width: 100%;
    display: flex;
    align-items: center;
    background: #333;
    border: 2px solid #636363;
    text-align: center;
}
.net-box ul li .ms > span {
    min-width: 80px;
    color: #18ff00;
    border-right: 1px solid #fff;
    line-height: 28px;
}
.net-box ul li .ms span.green {
    color: white;
}
.net-box ul li .ms span.yellow {
    color: white;
}
.net-box ul li .ms span.red {
    color: white;
}
.net-box ul li .ms p {
    min-width: 180px;
    color: #959595;
    font-size: 16px;
    font-weight: bold;
}
.net-box ul li .btn1 {
    width: 150px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    filter: drop-shadow(0 0 3px rgba(23,23,23,0.6));
    background-color: #CC6600;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin: 0 25px;
    animation: move 1.2s infinite;
}
.net-box ul li .btn2 {
    width: 150px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    filter: drop-shadow(0 0 3px rgba(23,23,23,0.6));
    background-color: #e6cc1f;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    color: #414141;
    font-weight: 500;
    animation: move 1.2s infinite;
}
.net-box .img-right {
    width: 28%;
}
.net-box .img-right img {
    width: 100%;
}
.footer {
    font-size: 14px;
    color: #a4a4a4;
    font-family: "Ping Fang";
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #414141;
}
.footer .nav {
    display: flex;
    justify-content: center;
    margin-bottom: 2px;
}
.footer .nav a {
    font-size: 14px;
    color: #a4a4a4;
    padding: 0 5px;
    
}
@keyframes move {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
