    html {
        height: 100%;
    }

    body {
        background-color: #E2F0FF;
        background-image: url(/Content/Images/background.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .header {
        display: none;
    }

    .zhidian-header {
        position: fixed;
        top: 0;
        left: 0;
        height: 60px;
        width: 100%;
        background-color: #FFFFFF;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .zhidian-header .leftTop {
        display: flex;
        align-items: center;
    }

    .zhidian-header .leftTop img {
        width: 38px;
        height: 38px;
        margin-left: 36px;
        margin-right: 12px;
    }

    .zhidian-header .leftTop>div {
        font-size: 24px;
        color: #000000;
        font-family: 思源黑体;
    }

    .zhidian-header .rightTop {
        display: flex;
        align-items: center;
    }

    .zhidian-header .rightTop .kefu {
        font-size: 16px;
        margin-right: 21px;
        font-family: Source Han Sans;
        font-weight: normal;
        line-height: 24px;
        text-align: center;
        display: flex;
        align-items: center;
        letter-spacing: 0em;
        font-variation-settings: "opsz" auto;
        background: linear-gradient(270deg, #B039F6 0%, #0888FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        z-index: 1;
    }


    .zhidian-content {
        width: 100%;
    }

    .zhidian-content .content {
        margin: 200px auto;
        display: flex;
        width: 432px;
        height: 440px;
        border-radius: 16px;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        background: #FFFFFF;
        box-sizing: border-box;
        /* border: 2px solid; */
        border-image: linear-gradient(218deg, #FFFFFF 8%, #FFFFFF 13%, #EBEFF3 97%) 2;
        backdrop-filter: blur(12px);
        box-shadow: 0px 4px 20px 0px rgba(200, 205, 209, 0.15);
        z-index: 0;

    }

    .zhidian-content .content .denglu {
        height: 32px;
        margin-top: 40px;
        margin-bottom: 32px;
        font-family: Source Han Sans;
        font-size: 24px;
        font-weight: bold;
        line-height: 32px;
        text-align: center;
        display: flex;
        align-items: center;
        letter-spacing: 0em;
        font-variation-settings: "opsz" auto;
        /* 中性色/Gray 6 */
        color: rgba(0, 0, 0, 0.9);
    }

    .zhidian-content .content>div {
        /* font-size: 20px; */
        /* color: #666; */
        /* font-weight: 700; */
        padding: 20px;
    }

    .zhidian-content-ul>li {
        /* padding: 14px 0; */
        position: relative;
    }
    .zhidian-content-ul>li:first-child {
        margin-bottom: 28px;
    }
    .zhidian-content-ul>li:nth-child(2) {
        margin-bottom: 40px;
    }
    .zhidian-content-ul>li:nth-child(3) {
        position: relative;
        margin-bottom: 12px;
    }
    /* .zhidian-content-ul>li>span {
        display: inline-block;
        width: 80px;
        text-align: right;
    } */

    .zhidian-content-ul>li>input {
        /* border: none; */
        /* border-bottom: 1px solid #e2e2e2; */
        width: 320px;
        height: 44px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 12px 28px 12px 12px;
    }

    .clearShopId {
        width: 14px;
        height: 14px;
        position: absolute;
        top: 16px;
        right: 10px;
        cursor: pointer;
        display: none;
    }

    .clearShopName {
        width: 14px;
        height: 14px;
        position: absolute;
        top: 16px;
        right: 10px;
        cursor: pointer;
        display: none;
    }

    .zhidian-content-ul>li .button {
        width: 320px;
        height: 44px;
        border-radius: 8px;
        opacity: 1;
        /* 自动布局 */
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8px 12px;
        gap: 16px;
        color: #FFFFFF;
        /* 品牌色/Brand 3 */
        background: rgba(8, 136, 255, 0.3);
        z-index: 0;
    }
    .zhidian-content-ul>li .button.active {
        background: rgba(8, 136, 255);
    }
    .zhidian-content-ul>li .button.active:hover {
        background: rgba(8, 136, 255, 0.8);
    }
    .zhidian-content .content .accredit {
        height: 20px;
        opacity: 1;
        font-family: Source Han Sans;
        font-size: 14px;
        font-weight: normal;
        line-height: 20px;
        text-align: center;
        display: flex;
        align-items: center;
        letter-spacing: 0em;
        font-variation-settings: "opsz" auto;
        color: #0888FF;
        text-decoration: none;
    }

    .errMessage {
        display: none;
        position: absolute;
        top: 48px;
        left: 0px;
        color: #EA572E;
        height: 16px;
        font-size: 12px;
        width: 320px;
    }
    .errMessage span {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
        word-break: break-all;
        display: -webkit-box;
    }
    .zhidian-content-ul>li input:nth-child(2):hover {
        cursor: pointer;
        border: 1px solid #0888FF;
    }

    .zhidian-content-ul>li input:focus {
        outline: none;
        border: 1px solid #0888FF
    }

    .zhidian-content .content .accredit:hover {
        color: rgba(8, 136, 255, 0.8);
    }

    .clearShopId:hover {
        background-image: url(/Content/Images/clear01.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .clearShopName:hover {
        background-image: url(/Content/Images/clear01.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .zhidian-content-ul>li .button:hover {
        cursor: not-allowed;
    }

    input::-webkit-input-placeholder {
        color: #ccc;
    }

    .zhidian-footer {
        margin-top: -167px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .zhidian-footer .notefooter {
        font-family: Source Han Sans;
        font-size: 18px;
        font-weight: normal;
        line-height: 28px;
        color: rgba(0, 0, 0, 0.7)
    }

    .zhidian-footer>img {
        width: 1374px;
        height: 93px;
        opacity: 1;
    }
    
.loading-shade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}
.loading-wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    border: none;

}
#loadingGif{
    width: 37px;
    height: 37px;
    background: url('/Content/Images/loading.gif') no-repeat;
}
.rotating-image {
    width: 37px;
    height: 37px;
    background: url('/Content/Images/loading.png') no-repeat;
    animation: rotateAnimation 2s linear infinite;
}
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}