.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list
{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before, .slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}
.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden
{
    display: none;
}
#c-content
{
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#c-content .c-wrap
{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0 50px;
    width: 100%;
    max-width: 1300px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#c-content .c-wrap .c-form
{
    width: 380px;
    padding: 55px 50px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,.1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#c-content .c-wrap .c-form .c-title
{
    padding-bottom: 40px;
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    color: #383838;
}
#c-content .c-wrap .c-form .c-user, #c-content .c-wrap .c-form .c-password
{
    position: relative;
    padding-bottom: 30px;
}
#c-content .c-wrap .c-form .c-code
{
    position: relative;
    padding-bottom: 40px;
}
#c-content .c-wrap .c-form .c-user span, #c-content .c-wrap .c-form .c-password span, #c-content .c-wrap .c-form .c-code span
{
    position: absolute;
    top: 0;
    left: 0;
    width: 58px;
    height: 48px;
}
#c-content .c-wrap .c-form .c-user span
{
    background: url(../image/user.png) no-repeat center center;
}
#c-content .c-wrap .c-form .c-password span
{
    background: url(../image/password.png) no-repeat center center;
}
#c-content .c-wrap .c-form .c-code span
{
    background: url(../image/code.png) no-repeat center center;
}
#c-content .c-wrap .c-form .c-user input, #c-content .c-wrap .c-form .c-password input
{
    padding-left: 58px;
    width: 100%;
    height: 50px;
    line-height: 48px;
    font-size: 15px;
    color: #333;
    border: 1px solid #e1e1e1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
#c-content .c-wrap .c-form .c-code input
{
    padding: 0 96px 0 58px;
    width: 100%;
    height: 50px;
    line-height: 48px;
    font-size: 15px;
    color: #000;
    border: 1px solid #e1e1e1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
#c-content .c-wrap .c-form .c-code .c-img
{
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}
#c-content .c-wrap .c-form .c-code .c-img img
{
    vertical-align: middle;
}
#c-content .c-wrap .c-form .c-code .c-img:before
{
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 0;
    height: 22px;
    width: 1px;
    background: #e1e1e1;
}
#c-content .c-wrap .c-form .c-btn button
{
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    background: #383838;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
#c-content .c-wrap .c-form .c-btn button:hover
{
    background: #222;
}
#c-content .c-wrap .c-form .c-user input:focus, #c-content .c-wrap .c-form .c-password input:focus, #c-content .c-wrap .c-form .c-code input:focus
{
    border-color: #383838;
}
.c-info
{
    margin-top: 10px;
    margin-left: 60px;
    color: #f00;
    margin-bottom: -30px;
}