appAddressToast.less 5.57 KB
.toast_mask {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .pointsMall_close{
      width: 60px;
      height: 60px;
      position: fixed;
      left: 345px;
      bottom: 10vh;
  }
    .pointsToast_box {
        width: 560px;
        //height:698px;
        background: rgba(255, 255, 255, 1);
        border-radius: 24px;
        z-index: 3000;

        .title {
            height: 45px;
            font-size: 32px;
            font-weight: 500;
            color: rgba(51, 51, 51, 1);
            line-height: 45px;
            text-align: center;
            margin-top: 30px;
        }

        .address {
            width: 442px;
            min-height: 130px;
            background: rgba(249, 249, 249, 1);
            border-radius: 16px;
            margin: 30px;
            padding: 24px;

            .userinfo_box {
                display: flex;
                justify-content: space-between;
                font-size: 28px;
                color: #999999;
                word-break: break-all;
                .user_info {
                    display: flex;

                    div:nth-child(2) {
                        margin-left: 30px;
                    }
                }

                .btn {
                    text-align: right;
                    color: #F5A623;
                    font-size: 28px;
                    width: 100px;
                    margin-left: 10px;
                }

            }

            .info {
                height: auto;
                line-height: 40px;
                margin-top: 10px;
                font-size: 28px;
                color: #999999;
                text-overflow: ellipsis;
                overflow: hidden;
                display: -webkit-box;
                /*! autoprefixer: off */
                -webkit-box-orient: vertical;
                /*! autoprefixer: on */
                -webkit-line-clamp: 3;
                -ms-word-wrap: break-word;
                word-wrap: break-word;
            }

            .tooltips {
                height: 130px;
                line-height: 130px;
                font-size: 28px;
                font-weight: 500;
                color: rgba(153, 153, 153, 1);
                text-align: center;
                .active{
                  color: #F5A623;
                }
            }

        }

        .cards {
            width: 442px;
            background: rgba(249, 249, 249, 1);
            border-radius: 16px;
            margin: 0 30px 10px 30px;
            padding: 24px;
            border: none;
            color: #666666;
            text-align: left;
            height: 42px;
            line-height: 42px;
        }

        .cards::-webkit-input-placeholder {
            color: #c8c8c8;
            font-size: 30px;
        }

        .goods_box {
            margin: 30px;
            width: 500px;
            display: flex;

            img {
                width: 140px;
                height: 140px;
                border-radius: 24px;
            }

            .goods_info {
                flex: 1;
                margin-left: 30px;

                .goods_title {
                    height: 80px;
                    font-size: 28px;
                    font-weight: 500;
                    color: rgba(51, 51, 51, 1);
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                    -ms-word-wrap: break-word;
                    word-wrap: break-word;

                }

                .exchange {
                    height: 50px;
                    margin-top: 10px;
                    line-height: 50px;
                    font-size: 20px;
                    font-weight: 400;
                    color: rgba(153, 153, 153, 1);

                    .num {
                        font-size: 36px;
                        font-weight: 600;
                        color: #FF3B39;
                    }
                }
            }

        }

        //数量加减
        .goods_num_box {
            display: flex;
            justify-content: space-between;
            margin: 0 30px;

            .text {
                color: #999;
            }

            .num {
                display: flex;

                img {
                    width: 46px;
                    height: 46px;
                }

                div {
                    width: 60px;
                    text-align: center;
                    font-size: 28px;
                    font-weight: 400;
                    color: rgba(86, 86, 86, 1);
                    line-height: 46px;
                }

            }
        }

        //页脚
        .footer {
            margin: 30px;
            border-top: solid 1px #E6E6E6;
            display: flex;
            justify-content: space-between;

            div {
                width: 236px;
                height: 78px;
                border-radius: 16px;
                text-align: center;
                line-height: 78px;
                margin: 30px 0;
            }

            .cancel {
                background: rgba(249, 249, 249, 1);
                color: #B4B4B4;
            }

            .confirm {
                background: linear-gradient(90deg, rgba(254, 116, 3, 1) 0%, rgba(246, 65, 4, 1) 100%);
                color: #fff;
                border-radius: 16px;
            }

        }
    }
}