.bidProcessWrite-container {
    width: 900px;
    height: 630px;
    margin-bottom: 60px;
    padding: 30px 55px;
    border-radius: 2px;
    border: solid 1px #e2e2e2;


    .process {
        display: flex;
        align-items: center;


        .process-title {
            font-size: 24px;
            color: #fdba57;
        }

        .process-container {
            position: relative;
            margin-left: 60px;
            flex: 1;
            height: 70px;

            .progressBarBox {
                position: absolute;
                top: 15px;
                left: 68px;
                z-index: -1;
                width: 450px;
                height: 16px;
                background-color: #e8f3fd;

                .progressBar {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 0px;
                    height: 16px;
                    background-color: #fdba57;
                }
            }

            .processList {
                display: flex;
                justify-content: space-between;
                padding: 0 40px;

                .item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    &.active {

                        .iconBox {
                            background-color: #fdba57;
                            border: solid 4px #fff;
                            box-shadow: 0px 3px 8px 1px rgba(38, 16, 0, 0.09);


                            i {
                                color: #fff;
                            }
                        }

                        .tag {
                            color: #161616;
                        }
                    }

                    .iconBox {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 44px;
                        height: 44px;
                        background-color: #ffffff;
                        border-radius: 50%;
                        border: solid 4px #e8f3fd;

                        i {
                            color: #e8f3fd;
                            font-size: 20px;
                        }
                    }

                    .tag {
                        margin-top: 10px;
                        font-size: 14px;
                        color: #828282;
                        line-height: 1;
                    }
                }
            }
        }
    }

    .CardBox {
        margin-top: 30px;


        .CardBox-header {
            position: relative;
            display: flex;
            align-items: center;
            height: 38px;
            padding-bottom: 12px;
            padding-left: 22px;
            border-bottom: 1px solid #e2e2e2;

            &::after {
                content: '';
                position: absolute;
                top: 1px;
                left: 0;
                width: 4px;
                height: 24px;
                background-color: #fdba57;

            }

            .header-title {
                font-size: 24px;
                color: #161616;
            }

            .header-tip {
                margin-left: 30px;
                font-size: 14px;
                color: #b2b2b2;
            }
        }

        .CardBox-body {

            .el-form {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding-top: 30px;

                .el-form-item {

                    label {
                        font-size: 14px;
                        color: #0a0a0a;
                    }

                    .el-input {
                        width: 336px;
                    }

                }
            }

            .op {
                padding-top: 25px;
                text-align: center;

                a {
                    display: inline-block;
                    width: 390px;
                    height: 46px;
                    background-image: linear-gradient(0deg,
                            #2b4d7b 0%,
                            #446db9 100%);
                    border-radius: 4px;

                    text-align: center;
                    line-height: 46px;
                    font-size: 16px;
                    color: #ffffff;


                }
            }


        }

    }
}

.bidProcessUpload-container {
    width: 900px;
    margin-bottom: 60px;
    padding: 30px 55px 50px;
    border-radius: 2px;
    border: solid 1px #e2e2e2;


    .process {
        display: flex;
        align-items: center;


        .process-title {
            font-size: 24px;
            color: #fdba57;
        }

        .process-container {
            position: relative;
            margin-left: 60px;
            flex: 1;
            height: 70px;

            .progressBarBox {
                position: absolute;
                top: 15px;
                left: 68px;
                z-index: -1;
                width: 450px;
                height: 16px;
                background-color: #e8f3fd;

                .progressBar {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 278px;
                    height: 16px;
                    border-radius: 8px;
                    background-color: #fdba57;
                }
            }

            .processList {
                display: flex;
                justify-content: space-between;
                padding: 0 40px;

                .item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    &.active {

                        .iconBox {
                            background-color: #fdba57;
                            border: solid 4px #fff;
                            box-shadow: 0px 3px 8px 1px rgba(38, 16, 0, 0.09);


                            i {
                                color: #fff;
                            }
                        }

                        .tag {
                            color: #161616;
                        }
                    }

                    .iconBox {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 44px;
                        height: 44px;
                        background-color: #ffffff;
                        border-radius: 50%;
                        border: solid 4px #e8f3fd;

                        i {
                            color: #e8f3fd;
                            font-size: 20px;
                        }
                    }

                    .tag {
                        margin-top: 10px;
                        font-size: 14px;
                        color: #828282;
                        line-height: 1;
                    }
                }
            }
        }
    }

    .tipBox {
        padding-top: 30px;
        padding-left: 130px;

        .tip {
            width: 410px;
            height: 30px;
            margin: 0 auto;
            background-color: #f9eae9;

            text-align: center;
            line-height: 30px;

            font-size: 14px;
            color: #828282;

            i {
                color: #fc301d;
            }
        }
    }

    .CardBox {
        margin-top: 30px;


        .CardBox-header {
            position: relative;
            display: flex;
            align-items: center;
            height: 38px;
            padding-bottom: 12px;
            padding-left: 22px;
            border-bottom: 1px solid #e2e2e2;

            &::after {
                content: '';
                position: absolute;
                top: 1px;
                left: 0;
                width: 4px;
                height: 24px;
                background-color: #fdba57;

            }

            .header-title {
                font-size: 24px;
                color: #161616;
            }

            .header-tip {
                margin-left: 30px;
                font-size: 14px;
                color: #b2b2b2;
            }
        }

        .CardBox-body {

            padding-top: 23px;


            .el-textarea {
                textarea {
                    width: 668px;
                    height: 166px;
                    resize: none;
                }
            }



            &.uploadFile {
                display: flex;
                padding-left: 25px;

                .labelBox {
                    font-size: 16px;
                    color: #161616;
                }

                .uploadBox {

                    .upload-demo {
                        display: flex;
                        height: 40px;
                        line-height: 40px;

                        .el-upload {
                            margin-right: 26px;
                           
                            button {
                                font-size: 16px;
                            }
                        }

                        .el-upload-list__item {
                            height: 100%;
                            display: flex;
                            margin-top: 0;
                            line-height: inherit;

                            .el-upload-list__item-name {
                                padding: 0 10px;
                                background-color: #fdba57;
                                border-radius: 4px;
                                color: #fff;
                                font-size: 16px;

                                i {
                                    display: none;
                                }
                            }
                        }
                    }

                    .tip {
                        margin-top: 15px;
                        font-size: 14px;
                        color: #fdba57;
                        line-height: 1;
                    }
                }

            }







        }

    }

    .op {
        padding-top: 60px;
        text-align: center;

        a {
            display: inline-block;
            width: 390px;
            height: 46px;
            background-image: linear-gradient(0deg,
                    #2b4d7b 0%,
                    #446db9 100%);
            border-radius: 4px;

            text-align: center;
            line-height: 46px;
            font-size: 16px;
            color: #ffffff;


        }
    }
}