﻿.add-head {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

    .add-head .add-tit {
        margin-left: 20px;
        color: #333;
        font-size: 15px;
        white-space: nowrap;
    }

        .add-head .add-tit img {
            width: 36px;
            margin-right: 10px;
        }

    .add-head .add-btn {
        background: #28c445;
        color: #fff;
        height: 36px;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        margin-right: 20px;
        white-space: nowrap;
    }

.popup-copy {
    position: fixed;
    z-index: 999999;
    width: 88%;
    padding: 30px 0;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    border-radius: 20px;
    left: 6%;
    top: 50%;
    margin-top: -80px;
    display: none;
}

    .popup-copy .popup-block {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

        .popup-copy .popup-block .tips {
            font-size: 20px;
            color: #000;
            display: flex;
            align-items: flex-end;
        }

            .popup-copy .popup-block .tips img {
                width: 30px;
                margin-right: 10px;
            }

        .popup-copy .popup-block .phone {
            margin: 15px 0;
            font-size: 17px;
            color: #333;
        }

        .popup-copy .popup-block .ok-btn {
            height: 40px;
            padding: 0 30px;
            background: #22ac38;
            color: #fff;
            display: flex;
            align-items: center;
            border-radius: 20px;
            font-size: 15px;
            cursor: pointer;
        }
