_suggest.scss 9.36 KB
@import "compass/layout";

$suggest: sprite-map("me/suggest/*.png",$spacing: 5px);

.yoho-suggest-page {
    width: 100%;
    height: auto;

    // 意见反馈头部
    .suggest-header {
        text-align: center;
        color: #fff;
        font-size: pxToRem(26px);
        line-height: pxToRem(46px);
        overflow: hidden;
        padding-bottom: pxToRem(20px);

        @include background-image(linear-gradient(#383838, #505050));

        &:before {
            content: '';
            display: block;

            @include rem-sprite($suggest, suggest-logo);
            width: pxToRem(image_width(sprite-file($suggest, suggest-logo)));
            height: pxToRem(image_height(sprite-file($suggest, suggest-logo)));

            margin: pxToRem(10px) auto pxToRem(15px) auto;
        }
    }

    //意见反馈主体
    .suggest-content {
        border-top: 1px solid #e0e0e0;

        .suggest-item {
            width: 100%;
            color: #444;
            border-top: 1px solid #e0e0e0;
            border-bottom: pxToRem(30px) solid #f0f0f0;
            overflow: hidden;

            .suggest-item-img {
                width: 100%;
                overflow: hidden;
                > img {
                    margin: 0 auto;
                    display: block;
                    max-width: 100%;
                }
            }

            > h2 {
                font-size: pxToRem(38px);
                margin: pxToRem(30px) 0 pxToRem(42px - 11px) 0;
                padding: 0 pxToRem(35px);
            }

            > p {
                font-size: pxToRem(26px);
                line-height: pxToRem(48px);
                padding: 0 pxToRem(35px);
            }

            .suggest-type {
                margin-top: pxToRem(29px - 11px);
                height: pxToRem(88px);
                line-height: pxToRem(88px);
                border-top: 1px solid #e0e0e0;
                border-bottom: 1px solid #e0e0e0;
                color: #b0b0b0;
                font-size: pxToRem(26px);
                display: none;
                text-align: center;

                &.suggest-active {
                    > div {
                        width: 50%;
                        height: 100%;
                        float: left;
                        text-align: left;
                        padding-left: pxToRem(128px);
                        @include box-sizing();

                        &:nth-last-of-type(1) {
                            padding-left: pxToRem(0);
                            padding-right: pxToRem(128px);
                            text-align: right;
                            float: right;

                            > span {

                                display: inline-block;
                                height: 100%;
                                overflow: hidden;

                                &:nth-of-type(1) {
                                    @include rotate(180deg);
                                }
                            }
                        }
                    }
                }

                > .active {
                    color: #444;
                }

                &.show {
                    display: block;
                }

                &.suggest-bad {
                    > div {
                        > span {
                            display: inline-block;
                            height: 100%;
                            overflow: hidden;

                            &:nth-of-type(1) {
                                @include rotate(180deg);
                            }
                        }
                    }
                }
            }
        }
    }

    //发表意见
    .create-new-suggest {
        display: block;

        width: 100%;
        height: pxToRem(88px);
        line-height: pxToRem(88px);
        text-align: center;
        font-size: pxToRem(30px);
        //border-top: 1px solid #e0e0e0;
        //border-bottom: 1px solid #e0e0e0;
        border-top: pxToRem(30px) solid #f0f0f0;
        border-bottom: pxToRem(30px) solid #f0f0f0;
        position: relative;
        &:after {
            content: '';
            width: 100%;
            height: 1px;
            border-top: 1px solid #e0e0e0;
            position: absolute;
            left: 0;
            top: 0;
        }
        &:before {
            content: '';
            width: 100%;
            height: 1px;
            border-bottom: 1px solid #e0e0e0;
            position: absolute;
            left: 0;
            bottom: 0;
        }

        a {
            color: #444;
            display: inline-block;
        }

        > span {
            color: #b0b0b0;
            font-size: pxToRem(26px);
        }
    }
}

// 提交页面
.yoho-suggest-sub-page {
    width: 100%;
    //height: 100%;
    background: #f0f0f0;

    .suggest-sub-form {
        background: #fff;
        width: 100%;

        #suggest-textarea {
            @include box-sizing();
            width: 100%;
            max-width: 100%;
            min-width: 100%;
            height: pxToRem(255px);
            max-height: pxToRem(255px);
            min-height: pxToRem(255px);
            padding: pxToRem(30px);
            font-size: pxToRem(26px);
            line-height: pxToRem(48px);
            //color: #b0b0b0;
            color: #000;
            display: block;
            background: #fff;
            border: none;
            outline: none;
        }

        .img-form {
            padding: 0 pxToRem(30px);
            padding-top: pxToRem(40px);
            overflow: hidden;

            .upload-img-list {
                float: left;

                > li {
                    display: block;
                    width: pxToRem(130px);
                    height: pxToRem(130px);
                    float: left;
                    margin-right: pxToRem(30px);
                    background: image_url('loading.gif') center center no-repeat;
                    @include background-size(50px);
                    position: relative;

                    > img {
                        display: block;
                        width: 100%;
                        height: 100%;
                        overflow: hidden;
                    }

                    > span {
                        $width: pxToRem(image_width(sprite-file($suggest, sub_del)));
                        $height: pxToRem(image_height(sprite-file($suggest, sub_del)));
                        display: block;

                        @include rem-sprite($suggest, sub_del);
                        width: $width;
                        height: $height;

                        position: absolute;
                        top: -($height/2);
                        right: -($width/2);

                    }
                }
            }

            .img-add {
                display: block;
                width: pxToRem(130px);
                height: pxToRem(130px);
                border: 1px dashed #e0e0e0;
                position: relative;
                text-indent: -1000px;
                float: left;

                &:after {
                    $width: pxToRem(image_width(sprite-file($suggest, suggest-add)));
                    $height: pxToRem(image_height(sprite-file($suggest, suggest-add)));
                    content: '';
                    display: block;

                    @include rem-sprite($suggest, suggest-add);
                    width: $width;
                    height: $height;

                    position: absolute;
                    top: 50%;
                    left: 50%;
                    margin-top: -$height / 2;
                    margin-left: -$width / 2;
                }

                input[type="file"],  {
                    position: absolute;
                    //@include stretch();
                    @include opacity(0.2);
                    border: none;
                    outline: none;
                    display: block;

                    width: pxToRem(130px);
                    height: pxToRem(130px);

                    top: 0;
                    left: 0;
                }
            }
        }
    }
}

//dialog
.dialog-wrapper {
    background: hsla(0, 0%, 0%, .5);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;

    .dialog-box {
        width: pxToRem(540px);
        @include border-radius(pxToRem(20px));
        background: hsla(100, 100%, 100%, .8);
        position: absolute;
        left: 50%;
        margin-left: pxToRem(-540px)/2;
        font-size: pxToRem(30px);
        text-align: center;
        color: #000;
    }

    .dialog-content {
        padding: pxToRem(60px) pxToRem(30px);
    }

    .dialog-footer {
        border-top: 1px solid #ccc;
        height: pxToRem(88px);
        line-height: pxToRem(88px);

        > span {
            display: block;
            width: 50%;
            height: 100%;
            float: left;
            @include box-sizing();

            &:nth-last-of-type(1) {
                border-left: 1px solid #ccc;
                color: #ee0011;
            }
        }
    }
}