﻿.底部弹窗_隐藏 {
    position: fixed;
    width: 100%;
    z-index: 0;
    bottom: -120%;
    left: 0px;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-top: 1px solid rgb(235, 235, 235);
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    transition: all 0.5s ease 0s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-height: auto;
}

.底部弹窗_显示 {
    padding: 20px;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: rgb(255, 255, 255);
    z-index: 4;
    border-top: 1px solid rgb(235, 235, 235);
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0px);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0px);
    transform: rotate(0deg) scale(1) translate(0%, 0px);
    transition: all 0.5s ease 0s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.全屏弹窗 {
    width: 100%;
    height: 100%;
    min-height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 4;
    background-color: rgba(255,255,255,1);
    display:initial;
}
/*.DkGo商品弹窗{
    display:none;
}*/
.操作提示_显示状态 {
    width: 100%;
    min-height: auto;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    transition: all 0.5s ease 0s;
    z-index: 2;
}

.操作提示_隐藏状态 {
    width: 100%;
    min-height: auto;
    height: 100%;
    position: fixed;
    z-index: -1;
    top: 0px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    transition: all 0.5s ease 0s;
}
.跳转提示_显示状态 {
    position: absolute;
    right: 6px;
    top: 10px;
    min-height: auto;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    transition: all 0.3s ease 0s;
    border-width: 1px;
    border-radius: 12px;
    border-style: solid;
    border-color: transparent;
}

.跳转提示_隐藏状态 {
    position: fixed;
    right: 12px;
    top: -40px;
    min-height: auto;
    border-radius: 6px;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    z-index: 3;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-width: 1px;
    border-color: rgb(204, 204, 204);
    border-style: solid;
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    transition: all 0.3s ease 0s;
}


