@font-face {
    font-family: "UKIJEKRAN";
    src: local("UKIJEKRAN"), url(https://dilsir.cn/quxur/fonts/UKIJEKRAN.ttf) format("opentype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #EDEDED;
    color: #161616;
    font-family: UKIJEKRAN, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slider {
    flex: 1;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    right: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(16px);
    z-index: 10;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    margin-right: 4px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.2;
}

.slider-dots .dot:last-child {
    margin-right: 0;
}

.slider-dots .dot.active {
    opacity: 1;
}

.bottom-view {
    padding: 10px;
    background-color: #EDEDED;
    border-radius: 38px 38px 0 0;
    transform: translateY(-35px);
}

.button-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 28px;
    box-shadow: 0px 1px 0px 0px #FFFFFF30;
    box-shadow: 1px 1px 2px 0px #0000001C inset;
    backdrop-filter: blur(32px)
}

.button-group .btn {
    position: relative;
    display: block;
    margin-bottom: 8px;
    padding: 3px;
    background: linear-gradient(180deg, #FFFFFF 0%, #ECECEC 100%);
    border-radius: 20px;
    box-shadow: 0px 0.9px 3.6px 0.9px rgba(0, 0, 0, 0.3);
    outline: none;
    overflow: hidden;
}

.button-group .btn .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 11px 0;
    background: linear-gradient(180deg, #F4F4F4 0%, #FEFEFE 100%);
    color: #161616;
    font-size: 16px;
    border-radius: 16px;
    z-index: 1;
}

.button-group .btn .icon {
    width: 28px;
    height: 28px;
    margin-left: 8px;
}

.button-group .btn .text {
    width: 112px;
    text-align: right;
}

.button-group .btn:last-child {
    margin-bottom: 0;
}

.wx-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, .65);
    backdrop-filter: blur(2px);
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    direction: rtl;
    display: none;
}

.wx-mask.show {
    display: block;
}

body.dark {
    background-color: #111;
    color: #A5A5A5;
}

.dark .bottom-view {
    background-color: #111111;
}

.dark .button-group {
    background-color: rgba(0, 0, 0, 0.4);
}

.dark .button-group .btn {
    background: linear-gradient(180deg, #222222 0%, #171717 100%);
    border-color: #222222;
}

.dark .button-group .btn .content {
    background: linear-gradient(180deg, #1A1A1A 0%, #202020 100%);
    color: #A5A5A5;
}