/*@charset "utf-8";* {*/
/*    box-sizing: border-box*/
/*}*/

/*blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,hr,img,input,legend,li,ol,p,pre,td,textarea,th,ul {*/
/*    border: medium none;*/
/*    margin: 0;*/
/*    padding: 0*/
/*}*/

/*body {*/
/*    overflow-x: hidden;*/
/*}*/

/*body,button,input,select,textarea {*/
/*    font-family: 'Microsoft YaHei',Helvetica,sans-serif*/
/*}*/

/*h1,h2,h3,h4,h5,h6 {*/
/*    font-size: 100%;*/
/*    font-weight: 400*/
/*}*/

/*em {*/
/*    font-style: normal*/
/*}*/

/*ol,ul {*/
/*    list-style: none*/
/*}*/

/*a {*/
/*    display: inline-block;*/
/*    text-decoration: none;*/
/*    color: inherit*/
/*}*/

/*a:hover {*/
/*    text-decoration: none;*/
/*    color: inherit*/
/*}*/

/*img {*/
/*    display: block;*/
/*    border: 0;*/
/*    max-width: 100%;*/
/*    height: 200%;*/
/*}*/
/*.imgs:hover{*/
/*    transform: scale(1.5); */
/*}*/
/*button {*/
/*    background: 0 0*/
/*}*/

/*table {*/
/*    border-collapse: collapse;*/
/*    border-spacing: 0*/
/*}*/

/*input,textarea {*/
/*    outline: 0;*/
/*    resize: none!important*/
/*}*/

/*.pointer,a[href],button,input[type=image],input[type=submit],label[for],select {*/
/*    cursor: pointer;*/
/*    outline: 0;*/
/*    height: 18%;*/
/*    margin-top: 30%;*/
/*}*/

/*label {*/
/*    cursor: pointer*/
/*}*/

@charset "utf-8";

/* 设置基础的盒子模型 */
* {
    box-sizing: border-box;
}

/* 设置基本样式 */
body {
    font-family: 'Microsoft YaHei', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* 清除默认的边框和内边距 */
blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, img, input, legend, li, ol, p, pre, td, textarea, th, ul {
    border: 0;
    margin: 0;
    padding: 0;
}

/* 设置常见元素的样式 */
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 400;
}

em {
    font-style: normal;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}
.imgs:hover{
    transform: scale(1.5); 
}
img {
    display: block;
    max-width: 100%;
    height: auto; /* 保持图片的宽高比，使其在不同尺寸的屏幕上自适应 */
}

/* 设置按钮样式 */
button {
    background: none;
    cursor: pointer;
}

/* 表格样式 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 输入框和文本域样式 */
input, textarea {
    outline: 0;
    resize: none;
}

/* 设置某些元素的样式 */
.pointer, a[href], button, input[type=image], input[type=submit], label[for], select {
    cursor: pointer;
    outline: 0;
}


