*{
    margin: 0;
    padding: 0;
    list-style: none;
}
html,body{
    width: 100%;
    height: 100%;
    background: url(../images/bg.jpg) no-repeat;
    background-size: 100% 100%;
    overflow:auto;
}
span{
    display: block;
}
.header_wrap{
    width: 100%;
    height: auto;
    display: flex;
    text-align: center;
    margin-top: 45px;
    position: relative;
}
.header_logo{
    width: 75px;
    height: 75px;
    margin-left: 45px;
    position: absolute;
    top: 0;
    left: 0;
}
.header_logo img{
    width: 100%;
    height: 100%;
}
.header_title{
    width: 100%;
    color: #fff;
    font-size: 47px;
    text-align: center;
}
.header_title span:first-child{
    background-image: -webkit-linear-gradient(left,blue,#66ffff 10%,#cc00ff 20%,#CC00CC 30%, #CCCCFF 40%, #00FFFF 50%,#CCCCFF 60%,#CC00CC 70%,#CC00FF 80%,#66FFFF 90%,blue 100%);
    -webkit-text-fill-color: transparent;/* 将字体设置成透明色 */
    -webkit-background-clip: text;/* 裁剪背景图，使文字作为裁剪区域向外裁剪 */
    -webkit-background-size: 200% 100%; 
    -webkit-animation: masked-animation 4s linear infinite;
}
@keyframes masked-animation {
    0% {
        background-position: 0  0;
    }
    100% {
        background-position: -100%  0;
    }
}
.header_title span:last-child{
    margin-top: 20px;
/*    background-image: -webkit-linear-gradient(left,blue,#66ffff 10%,#cc00ff 20%,#CC00CC 30%, #CCCCFF 40%, #00FFFF 50%,#CCCCFF 60%,#CC00CC 70%,#CC00FF 80%,#66FFFF 90%,blue 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-background-size: 200% 100%; 
    -webkit-animation: masked-animation 4s linear infinite;*/
}
.main_wrap{
    width: calc(100% - 550px);
    height: auto;
    background: rgba(225, 225, 225, 0.5);
    margin: 30px auto 0;
    text-align: center;
    padding: 20px 45px;
}
.main_title{
    font-size: 40px;
    color: #2C8359;
    font-weight: bold;
    text-shadow:-2px 0 white,0 2px white,2px 0 white,0 -2px white
}
.main_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}
.main_block1{
    width: 300px;
    height: 280px;
    color: #fff;
    background: #17AAD5;
    cursor: pointer;
}
.main_block1 img{
    width: 150px;
    height: auto;
    margin-top: 65px;
}
.main_block1 span{
    font-size: 20px;
    margin-top: 50px;
}
.main_block2{
    width: 200px;
    height: 280px;
    margin: 0 10px;
}
.main_view1{
    width: 100%;
    height: 130px;
    background: #F9827A;
    color: #fff;
    cursor: pointer;
}
.main_view1 img{
    width: 45px;
    height: auto;
    margin-top: 32px;
    margin-bottom: 20px;
}
.main_view2{
    width: 100%;
    height: 130px;
    margin-top: 20px;
    background: #7F8EFF;
    color: #fff;
    cursor: pointer;
}
.main_view2 img{
    width: 45px;
    height: auto;
    margin-top: 32px;
    margin-bottom: 20px;
}
.main_login{
    width:250px;
    height: 220px;
    background: #fff;
    border-radius: 5px;
    padding: 30px 35px;
}
.login_title{
    color: #00A0E8;
    text-align: left;
    font-weight: bold;
}
.login_input_wrap{
    width: calc(100% - 20px);
    height: 30px;
    border: 1px solid #F0F0F0;
    border-radius: 40px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 0 10px;
}
.login_input_wrap img{
    width: 10px;
    height: auto;
}
.login_input_wrap input{
    width: calc(100% - 20px);
    height: 100%;
    margin-left: 10px;
    border: none;
    outline: none;
    font-size: 12px;
}
.login_input_wrap input::placeholder{
    color: #D2D2D2;
    font-size: 12px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"]{
  -moz-appearance: textfield;
}
.login_btn{
    width: 100%;
    height: 30px;
    background: #00A0E8;
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 40px;
    margin-top: 25px;
    cursor: pointer;
}
.footer_wrap{
    width: 100%;
    height: auto;
    margin-top: 70px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.footer_wrap a{
    color: #fff;
    text-decoration: none;
}
.show_box2{
    display: none;
    cursor: pointer;
}
.show_box2 img{
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.cadet{
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.cadet p {
    line-height: 25px;
    color: rgb(85,85,85);
    letter-spacing: 1px;
    text-align: left;
}
.cadet p a{
    text-align: left;
}
.cadet p:first-child {
    width: 108px;
    margin-right: 5px;
    text-align: right;
}
.cadet p:last-child {
    width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}