input,button{
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
.yello {
            color: #fff !important;
            background: #1d2088 !important;
        }
.sever{
    display: flex;
    background-color: pink;
    background: url(../images/sever_background.png) no-repeat;
}
.sever_left{
    padding-top: 50px;
    padding-left: 46px;
    width: 732px;
}
.sever_left p{
    font-family: SourceHanSansCN-Regular;
	font-size: 24px;
	color: #fffefe;
}
.sever_left button{
    width: 227px;
    height: 51px;
    font-size: 24px;
	background-color: #ffffff;
    border-radius: 26px;
    margin-top: 40px;
    color: #00b2f5;
    background-image: linear-gradient(to right, #03a9f4, #f441a5, #ffeb3b, #09a8f4);
    background-size: 400%;
}

.sever_right{
    padding-top: 40px;
    padding-right: 46px;
    width: 480px;
    color: #fff;
}
.sever_right input{
    width: 472px;
	height: 58px;
    border: solid 1px #ffffff;
    margin-bottom: 20px;
    padding-left: 20px;
    box-sizing: border-box;
}
.sever_right button{
    width: 220px;
    height: 58px;
    color: #fff;
    background-image: linear-gradient(to right, #03a9f4, #f441a5, #ffeb3b, #09a8f4);
    background-size: 400%;
    margin-bottom: 20px;
}
.sever_left button:hover,
.sever_right button:hover {
    animation: sun 8s infinite;
}
@keyframes sun {
    100% {
        background-position: -400% 0;
    }
}
.sever_right button:last-child{
    margin-left: 27px;
}
.data{
    margin-top: 50px;
    margin-bottom: 300px;
    display: flex;
    position: relative;
}
.data .data_li{
    width: 1300px;
	height: 80px;
	background-color: #f4f4f4;
    font-family: SourceHanSansCN-Regular;
	font-size: 24px;
    line-height: 36px;
    text-align: center;
    line-height: 80px;
    color: #000;
    cursor: pointer;
}
.data .data_li:hover{
    color: #fff;
    background-color: #1d2088;
}

.data1{
    position: absolute;
    display: none;
    top: 80px;
    left: 0;
    width: 1300px;
}
.data1 li{
    display: flex;
    width: 1300px;
    height: 80px;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;  
    background-color: #fff;
    border-bottom: 1px solid #edecec;   
}
.data1 li p{
    flex: 1;
    font-family: SourceHanSansCN-Regular;
	font-size: 16px;
	line-height: 80px;
    color: #757575; 
}
.data1 li p:nth-child(1){
    text-align: left;
}
.data1 li p:nth-child(3){
    text-align: right;
}
.data1 li a{
    padding:20px;
    color: #757575;
    font-size: 26px; 
}

.disblock {
    display: block;
}

.data1 li p:nth-child(3){
    animation: down 1s infinite;
}
.data1 li p:nth-child(3):hover{
    color: red;
}
@keyframes down{
    
    50%{
        line-height: 110px;
    }
    60%{
        line-height: 90px;
    }
    70%{
        line-height: 110px;
    }
    100%{
        line-height: 80px;
    }
}
.fw {
            display: flex;
            justify-content: space-around;
            margin-top: 50px;
            margin-bottom: 50px;
            text-align: center;
        }

        .fw h3 {
            font-size: 26px;
            line-height: 2.2;
        }

        .fw p {
            text-align: center;
            margin: 10px;
        }

        .fw a {
            display: block;
            padding: 10px;
            background: #393db1;
            width: 150px;
            color: #fff;
            border-radius: 5px;
            text-align: center;
            margin: 0 auto;
        }