*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    overflow-x: hidden;
    line-height: 1;
    /*font-size: 16px;*/
    font-family: "Arial", "Microsoft YaHei", "\u5b8b\u4f53", Tahoma, Geneva, sans-serif;
    color: #333;
}
::-webkit-scrollbar {
    width: 5px;
}
iframe{
    overflow: hidden;
    width: 100vw;
    display: block;
    justify-content: center;
}

.title_1{
    --titleColor:"#7f7f7f";
    --font:"16px";
}
/*******************导航默认样式*********************/

#menu-list a{
    /*自定义a默认形态*/
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

a{
    color: #3b3b3b;
 
}
a:hover{
    color: #095ab5;
}

/*******************表单默认样式*********************/

input::placeholder{
    color: rgb(98, 96, 96);
}

form{
    display: block;
    width: 100%;
    position: relative;
}

button{
    border: none;
    background-color: transparent;
}

input{
    display: inline-block;
    margin: 0 auto;
    width:100%;
    height: 2.5em;
    padding: 0 1em;
    border-radius: 1em;
    border: 1.5px #4b4ba2 solid;
}

/*********************列表默认样式****************************/
.wp-window ul{
    display: flex;
    justify-content: space-between;
}

.rotation-list-pointer ul{
    display: flex;
    justify-content: space-between;
}

li{
    list-style: none;
}

