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

html,
body {
    font-size: 16px;
}

body{
    min-width: 320px;
    max-width: 500px;
    margin: auto;
    position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.page1 {
    background-color: #fff;
    padding: 40px 24px;
    overflow-y: scroll;

}

.block0{
    display: block;
}

.block0-logo1 {
    width: 103px;
    height: 16px;
    margin-top: 40px;
    margin-bottom: 24px;
}

.block0-title {
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    color: #0C0C0C;
    margin-bottom: 24px;
}

.block0-box {
    display: flex;
    align-items: center;
    border: 1px solid #E1E1E1;
    height: 60px;
    padding: 12px 12px 12px 16px;
    background: #FAFAFA;
}

.block0-box .box-icon1 {
    width: 26px;
    height: 26px;
    transform: rotate(360deg);
    transition: all 3.5s ease-in-out;
}

.block0-box .box-icon2 {
    width: 68px;
    height: 23.7px;
    margin-left: auto;
}

.block0-box .box-text {
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    vertical-align: middle;
    color: #000;
    margin-left: 13px;
}

.block0-des {
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: #0C0C0C;
    margin-top: 60px;
}

.block1 {
    display: none;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
}

.block1 .title {
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    color: #0C0C0C;
    margin-bottom: 40px;
}

.block1 .btn {
    width: 100%;
    height: 44px;
    background: #5E90FC;
    border-radius: 6px;
    border-color: transparent;
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

.block1 .btn1 {
    margin-bottom: 24px;
}

.block1 .btn2 {
    border: 1px solid #E1E1E1;
    background: #FAFAFA;
    color: #000;
}

.block2 {
    display: none;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
}

.block2 .title {
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    color: #0C0C0C;
    margin-bottom: 30px;
}

table {
    overflow: hidden;
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);

}

th {
    background: #5E90FC;
    height: 44px;
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

tbody tr {
    height: 50px;
    background: #FFFFFF;
}

tbody tr:nth-child(even) {
    background: #F4F7FF;
}

td {
    padding: 4px 10px;
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: #294087;
}

td:first-child {
    text-align: left;
}

.col3{
    text-align: center;
}

.col3 .btn {
    display: inline-block;
    cursor: pointer;
    background: #5E90FC;
    border-radius: 42px;
    width: 72px;
    height: 25px;
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 12px;
    vertical-align: middle;
    color: #fff;
    line-height: 25px;
    text-decoration: none;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate {
    animation: spin 5s linear infinite;
}

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