* {
    padding: 0;
    border: none;
    margin: 0;
    box-sizing: border-box;
}

html,
body,
.page {
    width: 100%;
    height: 100%;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
}

.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

@media screen and (min-width:431px) {
    body {
        padding: 10px 0 !important;
    }

    .page {
        max-width: 430px;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
}

.top {
    width: 100%;
}

.head {
    padding: 0px 10px;
    width: 100%;
    background: #fff;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head .head_logo {
    width: auto;
    height: 80%;
}

.head .assistant {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    width: 100%;
    flex: 1;
    overflow-y: auto;
}

.main::-webkit-scrollbar {
    display: none;
}

.box_head {
    font-size: 20px;
    text-align: center;
    padding: 22px 10px;
    background: linear-gradient(90deg, #ff0000, #ff5555, #ff0000);
    border-bottom: 3px solid #ff0000;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px #ff5050, 0 0 20px #ff0000;
    border-radius: 0 0 25px 25px;
    letter-spacing: 1px;
    position: relative;
}

.box_head::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 3s infinite;
}

.box_1_item {
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 21px;
    height: 40px;
    text-align: center;
    background-color: rgb(16, 249, 13);
    border: 1px solid rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_2 {
    font-size: 24px;
    text-align: center;
    font-weight: bolder;
}

.box_2_top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.box_2_top .box_2_top_item {
    border: 1px solid #000000;
    border-left: none;
}

.box_2_top .box_2_top_item:nth-child(2) {
    border-right: none;
}

.box_3 .line {
    font-weight: bolder;
    font-family: arial, helvetica, sans-serif;
    height: 40px;
}

.box_3 .line_1 {
    font-size: 13.8px;
}

.box_3 .line_2 {
    font-size: 17.5px;
}

.box_3 .line_3 {
    font-size: 22px;
}

.box_3 .line_4 {
    font-size: 25px;
}

.box_3 .line_5 {
    font-size: 19px;
    text-align: center;
    border: 2px solid rgb(0, 166, 252);
}

.box_3 .line_6 {
    font-size: 16px;
    text-align: center;
    background: #DDFFDD;
    border: 2px solid rgb(0, 166, 252);
}

.box_3 .cell {
    padding: 4px;
    border: 2px solid rgb(0, 166, 252);
}

.box_3 .cell_label {
    color: rgb(22, 23, 152);
}

.box_3 .cell_val {
    color: rgb(255, 0, 0);
}

.box_3 .cell_emphasis {
    background-color: rgb(255, 255, 0);
}

.box_3 .cell_1 {
    width: 44%;
}

.box_3 .cell_2 {
    width: 56%;
}

.box_3 .emphasis_1 {
    font-size: 20px;
    color: rgb(255, 0, 255);
}

.box_3 .emphasis_2 {
    font-size: 20px;
    color: rgb(0, 0, 255);
}

.box_3 .emphasis_3 {
    font-size: 20px;
    color: rgb(0, 136, 0);
}

.box_3 .line_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_4_item {
    font-family: '楷体';
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 0 20px;
    border: 1px solid #808080;
}

.box_4_item a {
    display: block;
}

.box_4 .btn {
    display: block;
    margin: 25px auto 15px;
    width: 85%;
    text-align: center;
    background: linear-gradient(90deg, #ff0000, #ff6666, #ff0000);
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.box_4 .btn:link {
    color: #666665;
    text-decoration: none;
}

.box_4_foot {
    scroll-margin-top: 100px;
    padding: 4px 4px;
    background: linear-gradient(to right, #FF0D0D, #FF0D0D);
    margin: 2px 0px;
    border-radius: 5px;
    overflow: hidden;
}

.box_4_foot .title {
    font-size: 22px;
    background: linear-gradient(to right, #FF0D0D, #FF0D0D);
    color: #fff;
    border-left: 1px solid #d8d2e7;
    border-right: 1px solid #d8d2e7;
    text-align: center;
    text-shadow: 0px 1px 1px #858585;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.box_4_foot_item {
    font-family: 'Microsoft YaHei', Arial, Helvetica, sans-serif;
    list-style: none;
    padding: 3px 3px;
    background-color: #fff;
}

.box_4_foot_item a {
    font-size: 18px;
    text-align: center;
    border: solid 1px #ddd;
    border-radius: 8px;
    background: #eee;
    background-image: linear-gradient(to top, #fff, #eee, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    line-height: 45px;
    font-weight: bold;
    color: #000;
}

.box_5_top {
    font-size: 18px;
    font-family: '楷体';
    font-weight: bolder;
    text-align: center;
    border: 1px solid #808080;
}

.box_5_item {
    font-family: 楷体;
    font-weight: bolder;
    font-size: 24px;
    text-align: center;
    border: 1px solid #808080;
}

.box_5_item a {
    display: block;
}

.box_6_item {
    font-family: 楷体;
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 10px;
    border: solid 1px #ddd;
}

.box_7_item {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(95deg, rgb(230, 247, 255) 65%, rgb(153, 204, 255) 90%);
    border-radius: 5px;
    box-shadow: rgba(153, 204, 255, 0.5) 0px 6px 18px 0px;
    border: 2px solid rgb(153, 204, 255);
}

.box_7_item_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 2px dashed rgb(153, 204, 255);
    margin-bottom: 16px;
}

.box_7_item_title {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: bold;
    color: rgb(0, 102, 204);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.box_7_item_tip {
    font-size: clamp(11px, 3vw, 13px);
    color: rgb(0, 102, 204);
    background: rgb(230, 242, 255);
    padding: 3px 8px;
    border-radius: 7px;
    font-weight: bold;
    white-space: nowrap;
}

.box_7_item_foot {
    font-size: clamp(18px, 4vw, 18px);
    text-align: center;
    color: rgb(0, 102, 204);
    font-weight: 900;
    background: rgb(230, 242, 255);
    padding: 4px 8px;
    border-radius: 7px;
    border: 1px solid rgb(153, 204, 255);
}

.box_7_foot {
    display: block;
    margin: 25px auto 15px;
    width: 85%;
    text-align: center;
    background: linear-gradient(90deg, #D0F74D, #F048F0, #D0F74D);
    font-size: 15px;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.box_7_foot:link {
    color: #666665;
    text-decoration: none;
}

.box_7_foot::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: moveLight 2.5s infinite;
}

.box_8_item {
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 1px;
    border: 1px solid #2c2c2c;
}

.box_9_item {
    font-family: '楷体';
    font-size: 21.6px;
    font-weight: bolder;
    text-align: center;
    padding: 4px 2px;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.box_9_item_label {
    color: rgb(6, 42, 251);
}

.box_9_item_val_bg {
    background: rgb(255, 255, 0);
}

.box_9_item_val {
    color: #fa0303;
}

.box_10_item {
    font-family: '楷体';
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 4px 2px;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.box_10_item_emphasis {
    background: rgb(249, 0, 0);
    color: rgb(255, 255, 0);
}

.box_10_item_label {
    color: rgb(0, 0, 255);
}

.box_10_item a {
    color: #000000;
}

.box_11_item {
    font-family: '楷体';
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 4px 2px;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.box_11_emphasis_1 {
    color: #ffff00;
    background-color: #000000;
}

.box_11_emphasis_2 {
    color: #0000ff;
}

.box_11_emphasis_3 {
    color: rgb(255, 0, 0);
    font-size: 32px;
}

.box_11_emphasis_4 {
    color: #008000;
}

.box_11_item a {
    display: block;
}

.box_12_item {
    font-family: '楷体';
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 4px 2px;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.box_12_emphasis_1 {
    color: #0000ff;
}

.box_12_emphasis_2 {
    color: #008080;
}

.box_12_emphasis_3 {
    color: rgb(249, 0, 0);
}

.box_12_emphasis_4 {
    background-color: rgb(255, 255, 0);
}

.box_12_item a {
    display: block;
    color: #000000;
}

.box_13_item {
    font-family: '楷体';
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 4px 2px;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.box_13_em_1 {
    color: rgb(249, 0, 0);
}

.box_13_em_2 {
    color: rgb(0, 0, 255);
}

.box_13_em_3 {
    color: rgb(0, 134, 38);
}

.box_13_em_4 {
    color: rgb(255, 255, 0);
}

.box_13_em_5 {
    background-color: rgb(249, 0, 0);
}

.box_13_em_6 {
    background-color: rgb(255, 255, 0);
}

.box_13_item a {
    color: #666665;
}

.box_13 .btn {
    display: block;
    margin: 25px auto 15px;
    width: 85%;
    text-align: center;
    background: linear-gradient(90deg, #ff0000, #ff6666, #ff0000);
    font-size: 15px;
    padding: 14px 10px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.box_14_item {
    font-family: '楷体';
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 4px 2px;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.box_14_em_1 {
    background-color: rgb(255, 255, 0);
}

.box_14_em_2 {
    color: #f60000;
}

.box_14_em_3 {
    color: #0000ff;
}

.box_15_item {
    font-family: '楷体';
    font-size: 24px;
    font-weight: bolder;
    text-align: center;
    padding: 4px 2px;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.box_15_em_1 {
    color: #0000ff;
}

.box_15_em_2 {
    color: #f60000;
}

.box_16_item {
    margin: 20px;
    padding: 18px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    border: 2px solid rgba(255, 0, 0, 0.4);
    text-align: center;
    animation: glow 2s infinite alternate;
}

.box_16_item_line {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 20px 0;
}

.service {
    width: 90px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 60%;
    right: 10px;
}

.close_service {
    width: 16px;
    aspect-ratio: 1/1;
    background: #00000080;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
}

.close_service::before,
.close_service::after {
    content: '';
    height: 10px;
    border-left: 1px solid #ffffff;
    position: absolute;
    top: 50%;
    right: 45%;
}

.close_service::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close_service::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_main {
    width: calc(100% - 32px);
    aspect-ratio: 848/1302;
    background-image: url('../img/tongzhi-bg.png');
    background-size: 100% 100%;
    padding: 0 15px 0 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.popup_info {
    width: 100%;
    height: 68%;
    overflow-y: auto;
    padding: 4px;
    border: 3px solid rgb(238, 130, 238);
    border-radius: 5px;
}

.popup_info::-webkit-scrollbar {
    display: none;
}

.popup_item {
    display: block;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    padding: 10px 0;
}

.popup_item:link {
    color: #666665;
}

.popup_item_em_1 {
    color: rgb(186, 55, 42);
}

.popup_item_em_2 {
    color: rgb(53, 152, 219);
}

.popup_item_em_3 {
    color: rgb(0, 0, 255);
}

.popup_item_em_4 {
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 0);
}

.btn_line {
    height: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #ff5050;
    }

    50% {
        box-shadow: 0 0 30px #ff8080;
    }

    100% {
        box-shadow: 0 0 10px #ff5050;
    }
}

@keyframes moveLight {
    0% {
        left: -75%;
    }

    50% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }

    100% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
    }
}