* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
a {
    text-decoration: none;
}
ul, li {
    list-style: none;
}
img {
    border: none;
    outline: none;
    vertical-align: middle;
}
.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-image: linear-gradient(90deg, #303030 0%, #454545 50%, #303030 100%);
    width: 100%;
    min-height: 100vh;
    font-size: 12px;
    color: #fff;
    font-family: 'PingFang HK';
    max-width: 750px;
    margin: 0 auto;
}
.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: 24px;
    color: #f6d424;
    font-weight: 500;
    font-family: "Ping Fang";
    text-align: center;
    padding: 2% 0 4%;
}
.text1 {
    font-size: 25px;
    letter-spacing: 1px;
    color: #f6d424;
    font-weight: bold;
    font-family: "Ping Fang";
    text-align: center;
    padding: 1% 0 2%;
}
.text2 {
    font-size: 22px;
    letter-spacing: 0px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Ping Fang";
    text-align: center;
    padding-bottom: 5%;
}
.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;
    align-items: center;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid #787878;
    padding-bottom: 15px;
    margin: 0 10px 15px;
}
.net-box ul li:last-child {
    border-bottom: none;
}
.net-box ul li .ms {
    height: 40px;
    line-height: 40px;
    border-radius: 2px;
    text-align: center;
    font-size: 14px;
    color: #18ff00;
    font-family: "Source Han Sans CN";
    text-align: center;
    border: 1px solid #202020;
}
.net-box ul li .ms {
    width: 56%;
    display: flex;
    align-items: center;
    background: #007b5c;
    border: 1px solid #007b5c;
    text-align: center;
}
.net-box ul li .ms > span {
    width: 35%;
    line-height: 20px;
    padding: 0 6px 0 10px;
    color: #18ff00;
    border-right: 1px solid #fff;
}
.net-box ul li .ms span.green {
    color: white;
}
.net-box ul li .ms span.yellow {
    color: #e6cc1f;
}
.net-box ul li .ms span.red {
    color: #ff0000;
}
.net-box ul li .ms p {
    flex: 1;
    color: #959595;
    font-size: 16px;
    font-weight: bold;
}
.net-box ul li .btn1 {
    width: 33.6%;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    filter: drop-shadow(0 0 3px rgba(23,23,23,0.6));
    background-color: #f5db2f;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-left: 7%;
    animation: move 1.2s infinite;
}
.footer {
    font-size: 14px;
    color: #a4a4a4;
    font-family: "Ping Fang";
    text-align: center;
    padding: 40px 0;
    position: absolute;
    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);
    }
}

