@import 'common.scss';
@import '_table.scss';

.left {
    position: relative;
    width: 250px;
    height: 720px;
    ul {
        width: 100%;
        li {
            width: 100%;
            height: 45px;
            padding-left: 30px;
            box-sizing: border-box;
            line-height: 45px;
            font-size: 14px;
            color:rgba(153,153,153,1);
            &:hover {
                border-left: 2px solid #ED322A;
                background:rgba(255,238,238,1);
                a {
                    color:rgba(237,50,42,1);
                }
            }
        }
    }
}

.middle {
    position: relative;
    width: 200px;
    height: 720px;
    padding-left: 10px;
    padding-top: 50px;
    box-sizing: border-box;
    font-size: 14px;
    color: #999999;
    .panel {
        li {
            list-style: none;
            height: 30px;
            line-height: 30px;
            padding-left: 40px;
        }
    }
    .selected {
        // width:200px;
        // height:30px;
        background:rgba(246,246,246,1);
        color: #333;
    }
}

.right {
    position: relative;
    width: 100%;
    height: 616px;
    padding: 20px 24px 20px 210px;
    box-sizing: border-box;
    font-size: 14px;
    .title {
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        // margin-bottom: 44px;
        color: #333;
        border-bottom: 1px solid rgba(238,238,238,1);
        span {
            display: inline-block;
            width:100px;
            height:100%;
            font-size:14px;
            font-family:MicrosoftYaHei;
            line-height:19px;
            text-align: center;
            line-height: 40px;
            box-sizing: content-box;
            &.selected {
                border: 1px solid rgba(238,238,238,1);
                border-bottom: none;
                border-top: 2px solid #ED322A;
                color:rgba(237,50,42,1);
                background-color: #fff;
            }
        }
        
        .btns {
            span {
                display: inline-block;
                width: 80px;
                height: 36px;
                font-size: 14px;
                line-height: 36px;
                text-align: center;
                border-radius:2px;
                border:1px solid rgba(153,153,153,1);
                color:rgba(51,51,51,1);
                background:rgba(246,246,246,1);
            }
        }
    }
    .sent {
        padding-left: 200px;
    }
    .row1 {
        height: 80px;
        border-bottom: 1px solid rgba(238,238,238,1);
        div {
            padding: 1px 20px;
            line-height:  80px;
            color:rgba(0,102,204,1);
            cursor: pointer;
        }
    }
    .row2 {
        padding: 20px 0;
        border-bottom: 1px solid rgba(238,238,238,1);
        .row-wrapper {
            padding: 10px 20px;
            label {
                width: 100px;
                text-align: left;
                display: inline-block;
                vertical-align: top;
                color:rgba(153,153,153,1);
                font-size:14px;
            }
            input, textarea {
                width: 848px;
                box-sizing: border-box;
                // height:30px;
                background:rgba(246,246,246,1);
                border-radius:2px;
                outline: none;
                border: none;
                padding: 10px 15px;
            }
            input {
                height: 30px;
            }
            textarea {
                height: 90px;
            }
            .item {
                display: inline-block;
                padding-right: 20px;
            }
            .icon {
                width: 14px;
                height: 14px;
                display: inline-block;
                background: url(i/chart-selected.png) center center no-repeat;
                background-size: contain;
                &.selected {
                    background: url(i/chart-no-selected.png) center center no-repeat;
                    background-size: contain;
                }
            }
        }

    }
    .btn-group {
        position: absolute;
        bottom: -40px;
        left: 220px;
        right: 0;
        height: 98px;
        text-align: left;
        line-height: 98px;
        box-shadow: none;
        .btn {
            width: 80px;
            height: 38px;
            line-height: 38px;
            text-align: center;
            display: inline-block;
            margin: 10px;
            border: 0;
            outline: none;
            border-radius:2px;
            &.cancel {
                background: #fff;
                border:1px solid rgba(158,158,158,1);
            }
            &.surecls {
                background: rgba(237,50,42,1);
                color: #ffffff;
                border: 1px solid rgba(237,50,42,1);
            }
        }
    }
    
    
    ::-moz-placeholder { color: #999999; font-size: 12px;}
    ::-webkit-input-placeholder { color:#999999;font-size: 12px; }
    :-ms-input-placeholder { color:#999999; font-size: 12px;}
}