12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* Stretch inputs/textareas to full width and add height to maintain a consistent baseline */
- *{
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- select,
- textarea,
- input[type="text"],
- input[type=search],
- input[type="password"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="date"],
- input[type="month"],
- input[type="time"],
- input[type="week"],
- input[type="number"],
- input[type="email"],
- input[type="url"],
- input[type="tel"],
- input[type="color"],
- .mod-inputgroup {
- width: 100%;
- height: 44px;
- -webkit-tap-highlight-color:rgba(0,0,0,0);
- outline:none;
- padding: 10px;
- margin-bottom: 10px;
- background: #fff;
- /*border: 1px solid rgba(0, 0, 0, .2);*/
- border:1px solid #D1D1D1;
- border-radius: 3px;
- /*box-shadow: 0 1px 1px rgba(255, 255, 255, .2), inset 0 1px 1px rgba(0, 0, 0, .1);*/
- -webkit-appearance: none;
- box-sizing: border-box;
- }
- a{
- text-decoration: none;
- }
- h1,h2,h3,h4,h5,h6{ font-weight: normal; }
- em{font-style: normal;}
- ul{ list-style: none; padding: 0px; }
- p{padding: 0px; margin: 0px;}
- .wrap-box{padding:10px;}
- .u-fs1{font-size: 1.5em; font-weight:normal;}
- .u-fs2{font-size: 1.25em; font-weight:normal;}
- .u-fs3{font-size: 1.125em; font-weight:normal;}
- .u-fs4{font-size: 1em; font-weight:normal;}
- .u-fs5{font-size: 0.875em; font-weight:normal;}
- .body-background-color1{
- background-color: #F5F5F5;
- }
- /* 清除浮动 */
- .clearfix:before,
- .clearfix:after {content:'';display:table;}
- .clearfix:after {clear:both}
- .box .box-bd:before,
- .box .box-bd:after{content:'';display:table;}
- .box .box-bd:after{clear:both}
- .box .box-bd{zoom:1;}
- .webkit-box{
- display: -webkit-box;
- display: -moz-box;
- display: -o-box;
- display: -ms-box;
- display: box;
- }
- .u-arrow{
- border-width: 6px 6px 0;
- border-color: #fff transparent transparent transparent;
- border-style: solid dashed dashed dashed;
- }
- /*demo应用样式*/
- body{font-size: 100%; -webkit-text-size-adjust:100%;}
- .demo-desc{font-family: \5fae\8f6f\96c5\9ed1, sans-serif; font-weight:bold; font-size: 20px; padding:10px 0px;}
|