/* 标签外观 */
/*清除元素默认的内外边距  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body, #contanier {
    width: 100%;
    height: 100%;
}
/* body总体设置 */
body {
    background-color: white;
    font: 16px/1.5 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
    color: white;
}
/*取消链接的下划线*/
a {
    color: black;
    text-decoration: none;
}
/*去掉列表前面的小点*/
li {
    list-style: none;
}

/*让所有斜体 不倾斜*/
em, i {
    font-style: normal;
}
/*图片没有边框   去掉图片底侧的空白缝隙*/
img {
    border: 0;  /*ie6*/
    vertical-align: middle;
}
/*让button 按钮 变成小手*/
button {
    cursor: pointer;
}
button, input {
    font-family: 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
    /*取消轮廓线 蓝色的*/
    outline: none;
}
.a:hover {
    cursor: pointer;
}

body::-webkit-scrollbar {
    display: none;
    width: 3px;
    background-color: #F5F5F5;
}

.title{
    color: black;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 40px;
}

.contact{
    width: 100%;
    height: 100%;
    display: none;
}
.home{
    width: 100%;
    height: 100%;
    display: block;
}

.bottom{
    position: absolute;
    height: 100px;
    width: 100%;
    border-top: 1px solid #c9c9c9;
}


@media only screen and (max-width: 600px) {
    html{

        touch-action:none;
        
        touch-action:pan-y;
        
    }

    .title{
        color: black;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 40px;
        font-size: 20px;
    }
}