1234567891011121314151617181920212223242526272829303132333435 |
- @charset "utf-8";
- /* CSS Document */
- body,html{ height: 100%; width: 100%;}
- body{ background: url(../images/bj_01.jpg) no-repeat #fff7f7; background-position: top center; background-size:100%;}
- *{ margin:0; padding:0;
- -moz-box-sizing:border-box;/*火狐浏览器*/
- -webkit-box-sizing:border-box;/*火狐浏览器*/
- box-sizing:border-box;/*padding和border算在盒子内*/
- }
- body{ font-size:16px; font-family:"微软雅黑"; color:#333;}
- b{ font-weight:normal}
- i{ font-style: normal}
- a,a:hover,a:active{ text-decoration:none; color:#333;}
- input,textarea,select{ outline:none}
- img{ border:none; vertical-align:top;}
- li{ list-style:none;}
- .fl{float:left}
- .fr{float:right}
- .cl{ clear:both}
- .clearfix::after{
- content:"";
- display:table;
- clear:both;}
- .c{ width: 930px;margin: 0 auto;}
- .title{ text-align: center; margin-top: 50px;}
- #content{ background: url(../images/bj_re.png) repeat-y;padding: 10px 50px; width: 100%; overflow: hidden;}
- #content h3{line-height: 40px; margin:30px 0px 10px; width:100%;}
- #content input{ width: 20px; height: 20px;margin-right: 10px;vertical-align:text-bottom; margin-bottom:-1px; *margin-bottom:-4px;}
- #content li{ line-height: 40px; float: left; font-size: 16px;}
- #content textarea{ color: #333;padding: 10px;font-size: 16px;}
- #btn { text-align: center;margin: 30px;}
- #btn button{width: 200px;height:40px;background-color: brown;color: #FFF7F7;font-size: 18px;border-radius: 4px; border:0;}
|