*{
    margin: 0;
    padding: 0;
}
.cavs{
    z-index:1;
    position: fixed;
    width:95%;
    margin-left: 20px;
    margin-right: 20px;
}

html,body{
    width: 100%;
    height: 100%;
    background: url("../image/bg1.jpg") no-repeat;
    background-size: 100% 100%;
    background-color: #101010;
    font-family: SimSun, "宋体";
}


.page{
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.page-item{
    width: 1200px;
    margin: 10px auto;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
}
.con-align{justify-content: space-between;}
.page-title{
    color: #D3D7F7;
    line-height: 60px;
    height: 60px;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 5px #8b0000;
    font-size: 32px;
    font-weight: 700;
}

.cesu{
    width: 300px;
    color: white;
    margin-left: auto;
}
.cesu i{
    display: inline-block;
    width: 16px;
    height: 16px;
    background: green;
    vertical-align: middle;
    border-radius: 50%;
    margin-left: 15px;
    margin-right: 5px;
}
.cesu i:nth-child(2){
    background: #eca447;
}
.cesu i:nth-child(3){
    background: #f94e3f;
}
.link a{
    width: 480px;
    display: inline-block;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 30px;
    line-height: 40px;
}
.link a.grey{
    background: -webkit-linear-gradient(left, grey, #606060); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, grey,#606060); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, grey, #606060); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, grey , #606060); /* 标准的语法 */
}
.link a.green{
    background: -webkit-linear-gradient(left, green, #789f88); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, green,#789f88); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, green, #789f88); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, green , #789f88); /* 标准的语法 */
}
.link a.yellow{
    background: -webkit-linear-gradient(left, #eca447, #f9bf73); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #eca447,#f9bf73); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #eca447, #f9bf73); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #eca447 , #f9bf73); /* 标准的语法 */
}
.link a.red{
    background: -webkit-linear-gradient(left, #f94e3f, #ff7b6f); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #f94e3f,#ff7b6f); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #f94e3f, #ff7b6f); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #f94e3f , #ff7b6f); /* 标准的语法 */
}
.link a:nth-child(odd){
    margin-right: 15px;
}
.link span.mm{
    display: inline-block;
    width: 100px;
    text-align: center;
    overflow: hidden;
    color: white;
}
.link span.href{
    display: inline-block;
    width: 200px;
    text-align: center;
    color: white;
    overflow: hidden;
}
.link span.text{
    display: inline-block;
    text-align: center;
    color: white;
    width: 100px;
    vertical-align: top;
}
.loginmain{
    background: rgba(0, 0, 0, 0.5);
    width: 540px;
    padding: 30px 30px 30px 30px;
    box-shadow: -15px 15px 15px rgba(6, 17, 47, 0.7);
    z-index: 99999;
    box-sizing: border-box;
    margin-bottom: 60px;
}
.login-title{
    color: #D3D7F7;
    height: 60px;
    font-size:20px;
    text-shadow: 0 0 5px #000000;
    font-weight: 700;
}

.login-btn{
    text-align: center;
}
.login-btn input{
    border-radius: 3px;
    background: transparent;
    border: 2px solid #4FA1D9;
    color: #4FA1D9;
    text-transform: uppercase;
    font-size: 11px;
    cursor: pointer;
    padding: 5px;
    width: 40%;
    transition-property: background,color;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}
.login-btn input:hover{
    color: white !important;
    background: #4FA1D9;
    cursor: pointer;
    -webkit-transition-property: background,color;
    transition-property: background,color;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}