html {
    width: 100%;
    height: 100%;
    font-family: "Microsoft Yahei"
}

body {
    width: 100%;
    height: 100%;
}

.wrap {
    width: 100%;
    min-height: 100%;
    background: #fafafa url(../img/bg.jpg) center 0 no-repeat;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 68px;
    width: 100%;
    background: #00b2ec;
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
    z-index: 999;
}

    .header .inner {
        width: 1100px;
        margin: 0 auto;
    }

        .header .inner .logo {
            width: 407px;
            height: 53px;
            float: left;
            margin-top: 8px;
        }

        .header .inner .nav {
            float: left;
            width: 520px;
            height: 68px;
            line-height: 65px;
            color: #ffffff;
            font-size: 16px;
        }

            .header .inner .nav a {
                color: #fff;
            }
            .header .inner .nav li p{
                width:20px;
                height:20px;
                background:#ff0000;
                border-radius:10px;
                line-height:20px;
                font-size: 11px;
                position:absolute;
                top:10px;
                right: -8px;
                font-weight: normal;
            }
            .header .inner .nav li {
                float: left;
                line-height: 65px;
                border-bottom: 3px solid transparent;
                width: 90px;
                text-align: center;
                margin: 0 3px;
                position:relative
            }

                .header .inner .nav li:hover, .header .inner .nav li.active {
                    font-weight: bold;
                    border-color: #ffffff;
                }
        /* 未登录 */
        .header .inner .login, .header .inner .login a {
            float: left;
            line-height: 65px;
            font-size: 16px;
            color: #fff;
        }

            .header .inner .login a {
                float: none;
            }

                .header .inner .login a:hover {
                    text-shadow: 0 0 3px rgba(255,255,255,.8)
                }
        /* 已登录 */
        .header .inner .logged {
            float: left;
            height: 68px;
            position: relative;
            font-size: 14px;
        }

            .header .inner .logged .avatar {
                width: 30px;
                height: 30px;
                float: left;
                margin-top: 20px;
                margin-right: 10px;
            }

                .header .inner .logged .avatar img {
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                }

            .header .inner .logged .name {
                float: left;
                width: 133px;
                overflow: hidden;
                line-height: 65px;
                color: #ffffff;
                font-size: 14px;
                height: 65px;
            }
            .header .inner .logged .name a{
                color:#fff;
            }
            .header .inner .logged .name a:hover{
                color: #000;
            }
            .header .inner .logged .action {
                position: absolute;
                top: 78px;
                left: -83px;
                width: 200px;
                border-radius: 5px;
                border-top: 4px solid #00b2ec;
                color: #606266;
                font-size: 14px;
                text-align: center;
                background: #fff;
                box-shadow: 0 3px 10px rgba(0,0,0,.5);
                display: none;
            }

            .header .inner .logged:hover .action {
                display: block;
            }

            .header .inner .logged .action:after {
                content: "";
                position: absolute;
                top: -18px;
                left: 93px;
                transform: rotate(180deg);
                border-top: 7px solid #00b2ec;
                border-right: 7px solid transparent;
                border-bottom: 7px solid transparent;
                border-left: 7px solid transparent;
            }
            .header .inner .logged .action::before {
                width: 100%;
                height: 17px;
                position: absolute;
                content: '';
                top: -17px;
                left: 0;
            }
            .header .inner .logged .action .status_list {
                width: 100%;
                margin-bottom: 6px;
            }

                .header .inner .logged .action .status_list li {
                    margin-top: 6px;
                    height: 40px;
                    line-height: 40px;
                    background: #f4f4f4;
                }
                .header .inner .logged .action .status_list li a{
                    display:block;
                    width:100%;
                    height:100%;
                    color:#606266;
                }
                .header .inner .logged .action .status_list li.active a{
                    background: #9ec1e4;
                    color: #000;
                    cursor: pointer;
                    font-weight: bold;
                }
                    .header .inner .logged .action .status_list li:hover{
                        background: #00b2ec;
                        color: #fff;
                        cursor: pointer;
                        font-weight: bold;
                    }

            .header .inner .logged .action .add_status {
                width: 100%;
                height: 40px;
                line-height: 40px;
                font-weight: bold;
                font-size: 18px;
                color: #fff;
                background: #00b2ec;
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
            }

                .header .inner .logged .action .add_status a {
                    color: #fff;
                }

                .header .inner .logged .action .add_status:hover {
                    cursor: pointer;
                    background: #15bcf3;
                }
/* 弹窗通用 */
.pop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 414px;
    height: 258px;
    border-radius: 3px;
    border-top: 6px solid #00b2ec;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    z-index: 99;
}

    .pop .tite {
        height: 54px;
        line-height: 54px;
        border-bottom: 1px solid #dfdfdf;
        color: #00b2ec;
        text-align: center;
        font-weight: bold;
        font-size: 20px;
    }
/* 滚动条通用 */
.scroll {
    overflow-x: hidden;
}

    .scroll::-webkit-scrollbar {
        width: 5px;
    }

    .scroll::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background: #00b2ec;
    }

        .scroll::-webkit-scrollbar-thumb:hover {
            background: #29c7fc;
        }
/* tab通用 */
.tabs {
    padding-top: 22px;
    height: 30px;
    border-bottom: 2px solid #cfcfcf;
}

    .tabs li {
        height: 28px;
        line-height: 28px;
        padding: 0 30px;
        color: #7c7d80;
        font-size: 14px;
        position: relative;
        float: left;
        border-bottom: 2px solid transparent;
        margin-right: 2px;
    }

        .tabs li.active, .tabs li:hover {
            cursor: pointer;
            color: #00b2ec;
            border-color: #00b2ec;
        }
            .tabs li p{
                width:20px;
                height:20px;
                background:#ff0000;
                border-radius:10px;
                text-align:center;
                line-height:20px;
                color:#fff;
                font-size:12px;
                position:absolute;
                top:-5px;
                right:18px
            }
            .tabs li.active:after, .tabs li:hover:after {
                height: 2px;
                width: 100%;
                content: "";
                background: #00b2ec;
                position: absolute;
                bottom: -4px;
                left: 0;
                content: ""
            }

            .tabs li.active:before, .tabs li:hover:before {
                content: "";
                position: absolute;
                top: 32px;
                left: 42%;
                border-top: 7px solid #00b2ec;
                border-right: 7px solid transparent;
                border-bottom: 7px solid transparent;
                border-left: 7px solid transparent;
            }
/* 通用表格样式 */
.el-table th {
    background: #f5f6f7;
}

.el-table thead {
    color: #888888;
    font-weight: bold;
    font-size: 14px;
}

.el-table__row {
    text-align: center;
}

.el-table--enable-row-hover .el-table__body tr:hover > td {
    background: #ecf5ff;
}

.el-table th > .cell {
    text-align: center;
}
/* 时间轴通用 */
.el-step__icon-inner {
    display: none;
}

.el-step__icon.is-text {
    width: 1px;
    height: 1px;
    border-color: #ebeef5;
    background: #ebeef5;
    top: -17px;
    left: 9px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.el-step__line {
    background: #ebeef5;
}

.el-step.is-vertical .el-step__line {
    width: 1px;
}

.el-step.is-vertical .el-step__title {
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    color: #606266;
}

.el-step.is-vertical .el-step__main {
    margin-top: -8px;
}

.el-step__description, .el-step__description.is-wait {
    color: #606266;
    height: 18px;
    line-height: 18px;
}

.el-step__title.is-process {
    font-weight: normal
}

.steps {
    position: relative;
}

    .steps:after {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        background: #ebeef5;
        left: 11px;
        top: 0;
    }

/* 首页 */
#main{
    width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 100px;
}
#main .banner{
    width: 100%;
    height: 300px;
    box-shadow: 0 0 5px 1px rgba(0,0,0,.3);
    margin-bottom: 24px;
}
#mian .banner img{
    width: 100%;
    height: 100%;
    float: left;
}
#main .introduce{
    width: 100%;
    height: 540px;
    background: url(../img/introduce.jpg) 0 0 no-repeat;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 0 5px 1px rgba(0,0,0,.3);
}
#main .introduce a{
    display: block;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    background: #00b2ec;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    bottom: 44px;
    left: 50%;
    margin-left: -150px;
    position: absolute;
}
#main .introduce a:hover{
    background: #3bcafa;
}
#main .news{
    width: 100%;
    box-shadow: 0 0 5px 1px rgba(0,0,0,.3);
    background: #fff;
    padding-top: 50px;
}
#main .news .tite{
    width: 100%;
    height: 46px;
    background: url(../img/title.png) center 0 no-repeat;
    margin-bottom: 32px;
}