/*初始化样式*/
@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

ul li{
    list-style: none;
    text-align: left;
}
a {
    text-decoration: none;
}
/*共用样式*/
html{
    font-family: 微软雅黑;
}
.fixedright{
    position: fixed;
    right: 2%;
    width: 20%;
    top: 20%;
}
.fixedright img{
    width: 100%;
    margin-top: 5%;
    cursor: pointer;
}
.hui{
    width: 1920px;
    height: 1080px;
    position: fixed;
    top: 0px;
    background: rgba(0,0,0,0.3);
    z-index: 99;
    display: none;
}
.zhong{
    position: fixed;
    background: white;
    top: 20%;
    left: 2%;
    width: 96%;
    box-shadow: 0 0 5px #999;
    margin: 0 auto;
    padding-bottom: 4%;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    z-index: 999;
}
.zhong img{
    width: 100%;
}
.message_title_1{
    width:100%;
    margin-top:2%;
    margin-left: 5%;
}
.message_item_1{
    width:95%;
    margin:0 auto;
    overflow:hidden;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 3%;
}
.message_item_1 li{
    background: #efefef;
    color: #585858;
    width:31%;
    line-height:30px;
    border-radius: 6px;
    float:left;
    margin-left:2%;
    margin-top:2%;
    display:inline;
    overflow:hidden;
    text-align:center;
    font-size:15px;
    cursor:pointer;
}
.message_item_1 li.current{
    background:#ff9900;
    color: white;
}
.zhong form input{
    display:block;
    width:92%;
    margin: 3% auto;
    line-height:34px;
    border-radius: 7px;
    text-align:left;
    outline:none;
    border:1px solid #e4e4e4;
    text-indent: 3%;
}

.zhong form a{
    display: block;
    width: 92%;
    background: #ff9900;
    color: white;
    border-radius: 7px;
    line-height: 34px;
    text-align: center;
    border: none;
    margin: 0 auto;
}


.fixedright img {
    animation: scaleDrew 1s ease-in-out infinite;
}
@keyframes scaleDrew {
    /* 定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称 */
    0% {
        transform: scale(0.7);
    }
    35% {
        transform: scale(1);
        transform:rotate(-10deg)
    }
    41% {
        transform:rotate(10deg)
    }
    47% {
        transform:rotate(-10deg)
    }

    53% {
        transform:rotate(10deg)
    }
    59% {
        transform:rotate(-10deg)
    }
    65% {
        transform: scale(1);
        transform:rotate(10deg)
    }
    100% {
        transform: scale(0.7);
    }
}

@media all and (max-width: 375px) {

}
@media all and (max-width: 320px) {

}