﻿@charset "UTf-8";

html, body {
    overflow: hidden;
}

.wrapper {
    padding: 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.header {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 70px;
    background-color: #f9f9f9;
    border-bottom: 5px solid #34C5E2;
}

    .header .logo {
        float: left;
        width: 10vw;
        font-size: 20px;
        font-weight: bold;
        color: #fe6968;
        line-height: 70px;
        box-sizing: border-box;
        padding-left: 30px;
        overflow: hidden;
    }

    .header .category {
        float: left;
        box-sizing: border-box;
        margin-top: 20px;
        overflow: hidden;
    }

        .header .category .current {
            color: #fff;
            background: #34C5E2;
            font-weight: bold;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            height: 45px;
            line-height: 45px;
        }

        .header .category li {
            background: #eee;
            white-space: nowrap;
            cursor: pointer;
            float: left;
            color: #666;
            padding: 0 20px;
            margin-left: 10px;
            text-align: center;
            border: 0;
            height: 40px;
            line-height: 40px;
            box-sizing: border-box;
        }

            .header .category li:hover {
                background-color: #34C5E2;
                color: #fff;
            }

    .header .member {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        border-radius: 0.2vw;
        color: #09c;
        background-color: #fff;
        font-weight: bold;
        box-sizing: border-box;
        position: absolute;
        right: 80px;
        top: 20px;
    }

        .header .member img {
            width: 15px;
            vertical-align: middle;
            margin: -3px 8px 0 5px;
            border-radius: 0.2vw;
        }

        .header .member .red {
            color: #fe6968;
        }

        .header .member a {
            color: #08c;
        }

    .header .home {
        cursor: pointer;
        box-sizing: border-box;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 30px;
        top: 20px;
        background-color: #fff;
        border-radius: 5px;
        padding: 5px;
    }

        .header .home img {
            width: 100%;
            vertical-align: top;
        }

.nav {
    background-color: #08c;
    height: 53px;
    line-height: 53px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    overflow: hidden;
}

    .nav nav {
        width: 1250px;
        margin: 0 auto;
    }

    .nav a {
        width: 14.28%;
        float: left;
        text-align: center;
        letter-spacing: 1px;
        display: block;
        color: #fff;
        box-sizing: border-box;
    }

    .nav .current {
        background: #fc8102 none;
        font-weight: bold;
        border-left: 0.1px solid #08c;
    }

    .nav a:hover {
        background: #666 none;
        color: #eee;
    }

.main {
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0.5vw;
    overflow-y: scroll;
    position: relative;
    border-left: 0.1vw solid #ddd;
}

.aside {
    width: 200px;
    box-sizing: border-box;
    overflow-x: hidden;
    float: left;
    border-right: 0.2vw solid #fff;
    overflow-y: auto;
}

.menu {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px;
}

    .menu .title {
        line-height: 50px;
        font-weight: bold;
        color: #369;
        border-bottom: 2px solid #ddd;
        padding: 0 10px;
    }

    .menu .link {
        overflow: hidden;
        border-top: 0.1vw solid #fff;
    }

        .menu .link .icon::before {
            display: none;
        }

        .menu .link .icon img {
            width: 20px;
            vertical-align: top;
            margin: 16px 8px 0 0;
            border-radius: 2px;
        }

        .menu .link li {
            color: #666;
            box-sizing: border-box;
            line-height: 50px;
            padding: 0 5px;
            cursor: pointer;
            height: 50px;
            margin: 5px 0;
        }

            .menu .link li::before {
                content: "";
                width: 1vw;
                height: 1vw;
                background-color: #ddd;
                display: inline-block;
                margin: -0.2vw 0.5vw 0 0;
                border-radius: 0.2vw;
                vertical-align: middle;
            }

            .menu .link li:hover {
                background-color: #fff;
                border-radius: 0.2vw;
            }

        .menu .link .current {
            font-weight: bold;
            color: #08c;
        }

            .menu .link .current::before {
                background-color: #34C5E2;
            }

        .menu .link em {
            color: #f00;
            font-weight: bold;
            margin-left: 0.2vw;
        }

.tabpage {
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #34C5E2;
    padding: 5px;
    background-color: #fafcfe;
    border-radius: 3px;
}

.caption {
    padding: 0 0.8vw;
    font-weight: bold;
    background-color: #e0f0f0;
    margin: 0;
    color: #08c;
    font-size: 1.1vw;
    border: 0.1vw solid #fff;
}

    .caption .button {
        color: #369;
        padding: 0 0.8vw;
        font-size: 0.9vw;
        cursor: pointer;
        text-align: center;
        display: inline-block;
        vertical-align: middle;
        border: 0.1vw solid #69C;
        overflow: hidden;
        margin: 0.3vw;
        background-color: #fafafa;
        border-radius: 0.2vw;
        line-height: 2vw;
        font-weight: normal;
    }

    .caption .textbox {
        border: 1px solid #69C;
        border-radius: 2px;
        line-height: 25px;
        vertical-align: middle;
        padding: 0 5px;
    }

    .caption .link {
        color: #369;
        margin: 0 0.2vw;
    }

    .caption .image {
        width: 1.5vw;
        height: 1.5vw;
        vertical-align: middle;
        margin: -0.2vw 0.5vw 0 0;
        background-color: #fff;
        padding: 0.1vw;
        border-radius: 0.2vw;
    }

.tab {
    position: relative;
    height: 42px;
    list-style: none;
    z-index: 2;
    margin-bottom: -0.1vw;
    width: 100%;
    overflow: hidden;
}

    .tab li {
        position: relative;
        float: left;
        margin-right: 5px;
        border-width: 1px;
        border-color: #34C5E2;
        border-style: solid;
        white-space: nowrap;
        border-radius: 3px;
        display: block;
    }

        .tab li i {
            font-style: normal;
            height: 30px;
            line-height: 30px;
            padding: 0 20px;
            border: 1px solid #fff;
            color: #333;
            display: block;
            cursor: pointer;
            overflow: hidden;
            background-color: #f2f2f2;
            text-align: center;
            border-radius: 3px;
        }

            .tab li i:hover {
                color: #09c;
            }

    .tab .current {
        height: 41px;
        background: #fefefe;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

        .tab .current i, .tab .current i:hover {
            background: #fafcfe;
            font-weight: bold;
            color: #369;
            height: 35px;
            line-height: 35px;
        }

    .tab .tool {
        position: absolute;
        right: 0;
        top: 0;
    }

        .tab .tool a:hover {
            text-decoration: none;
        }

        .tab .tool .button {
            padding: 0 15px;
            cursor: pointer;
            text-align: center;
            display: inline-block;
            overflow: hidden;
            margin-left: 5px;
            line-height: 33px;
            vertical-align: top;
            height: 33px;
            border-radius: 3px;
        }

.bigbutton {
    margin: 0.5vw 0.5vw 0 0.5vw;
    line-height: 2.8vw;
    height: 3vw;
    font-size: 1vw;
    box-sizing: border-box;
    text-align: center;
    border-radius: 8vw;
    display: inline-block;
    padding: 0 2vw;
}
