﻿/* 弹出弹出禁止滚动样式 */
.td-layer-disabledScroll{
    overflow: hidden;
}
/* 通用弹窗样式 */
/* start */
.flexBox {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}
.td-layer-dialog{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2000;
}
.td-layer-dialog-show{
    display: block;
}
.td-layer-dialog-mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.td-layer-contentBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 220px;
    padding: 32px 32px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #fff;
}
.td-layer-title{
    font-size: 14px;
    color: #252525;
}
.td-layer-fontW{
    font-weight: bold;
}
.td-layer-dialog-close{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0px;
    right: 0px;
    background: url(img/close.svg) center center no-repeat;
    cursor: pointer;
}
.td-layer-logo{
    min-width: 40px;
    min-height: 40px;
}
.td-layer-desc{
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}
.td-layer-btn{
    margin-right: 24px;
    font-size: 14px;
    color: #252525;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}
.td-layer-btn:last-child{
    margin-right: 0;
}
/* end */

/* 复制链接弹窗 */
/* start */
.copyLinkWin .td-layer-contentBox{
    padding: 24px 24px;
    width: 280px;
}
.copyLinkWin .td-layer-logoBox{
    margin-bottom: 20px;
}
.copyLinkWin .td-layer-desc{
    font-size: 14px;
}
.copyLinkWin .td-layer-descState0{
    color: #252525;
}
.copyLinkWin .td-layer-descState1{
    color: #999999;
}
.copyLinkWin .td-layer-btnBox{
    margin-top: 20px;
}
.copyLinkWin .td-layer-btnState0{
    color: #4285F4;
}
/* end */

/* 右上角分享指引 */
/* start */
.guideWin .td-layer-dialog-mask{
    background-color: rgba(0, 0, 0, 0.8);
}
.guideWin .td-layer-contentBox{
    width: 100%;
    padding: 0 0;
    border-radius: 0;
    background: transparent;
    top: 0;
    transform: translate(-50%, 0);
}
.guideWin .td-layer-logoBox{
    justify-content: flex-end;
}
.guideWin .td-layer-logo{
    height: 240px;
}
/* end */

/* 二维码分享 */
/* start */
.shareCodeWin .td-layer-title{
    margin: 0 auto 16px;
    font-size: 16px;
    text-align: center;
    color: #FABB28;
}
.shareCodeWin .td-layer-contentBox{
    padding: 40px 32px;
}
.shareCodeWin .td-layer-logo{
    width: 198px;
    height: 198px;
}
.shareCodeWin .td-layer-descState0{
    margin-top: 12px;
    font-size: 14px;
    color: #999999;
}
/* end */

@media screen and (max-width: 750px) {
    /* 通用弹窗样式 */
    /* start */
    .td-layer-dialog-close{
        width: 0.6rem;
        height: 0.6rem;
    }
    .td-layer-contentBox {
        min-width: 4.4rem;
        padding: 0.48rem 0.32rem;
        border-radius: 0.24rem;
    }
    .td-layer-logo {
        min-width: 0.8rem;
        min-height: 0.8rem;
    }
    .td-layer-desc {
        font-size: .24rem;
        line-height: .48rem;
    }
    /* end */

    /* 复制链接弹窗 */
    /* start */
    .copyLinkWin .td-layer-contentBox{
        padding: 0.32rem 0.32rem;
        width: 80%;
    }
    .copyLinkWin .td-layer-logoBox {
        margin-bottom: 0.24rem;
    }
    .copyLinkWin .td-layer-desc{
        font-size: 14px;
    }
    .copyLinkWin .td-layer-btnBox{
        margin-top: .24rem;
    }
    .copyLinkWin .td-layer-desc {
        font-size: .24rem;
        line-height: .48rem;
    }
    .copyLinkWin .td-layer-descState0{
        font-size: .28rem;
        line-height: .56rem;
    }
    .copyLinkWin .td-layer-btn {
        margin-right: .4rem;
        font-size: .28rem;
        line-height: .56rem;
    }
    .copyLinkWin .td-layer-btn:last-child{
        margin-right: 0;
    }
    /* end */

    /* 右上角分享指引 */
    /* start */
    .guideWin .td-layer-logo {
        height: 4.8rem;
    }
     /* end */

    /* 二维码分享 */
    /* start */
    .shareCodeWin .td-layer-title {
        margin: 0 auto 0.32rem;
        font-size: .32rem;
    }
    .shareCodeWin .td-layer-contentBox{
        padding: .6rem .32rem;
    }
     .shareCodeWin .td-layer-logo {
        width: 4.4rem;
        height: 4.4rem;
    }
    .shareCodeWin .td-layer-descState0 {
        margin-top: 0.24rem;
        font-size: .28rem;
        line-height: .56rem;
    }
    /* end */
}