1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- @charset "utf-8";
- .tips {
- font-size: 13px;
- background-color: #ffffcc;
- }
- .tips a {
- color: #03a9f4;
- text-decoration: underline;
- }
- .n-list {
- border: 1px solid #DCDCDC;
- margin: 0 10px;
- border-radius: 10px;
- }
- .family-list li {
- margin-top: 10px;
- }
- .family-list .n-list-key {
- margin: 12px 0;
- }
- .family-list .n-list .checked {
- display: none;
- }
- .family-list .n-list.on .checked {
- display: -webkit-box;
- display: -moz-box;
- display: box;
- }
- .family-list h2 {
- font-weight: bold;
- color: #323232;
- font-size: 16px;
- }
- .family-list .n-list-info p {
- margin-top: 10px;
- line-height: 18px;
- color: #909090;
- font-size: 14px;
- }
- .icon-checked {
- display: inline-block;
- width: 30px;
- height: 30px;
- background-image: url(../images/gouxuan_icon_btn.png);
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- }
- .icon-add {
- display: inline-block;
- width: 30px;
- height: 30px;
- background-image: url(../images/tianjia_jiaren_icon.png);
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- }
- .family-list .list-last {
- display: -webkit-box;
- display: -moz-box;
- display: box;
- -webkit-box-orient: vertical;
- -moz-box-orient: vertical;
- box-orient: vertical;
- -webkit-box-pack: center;
- -moz-box-pack: center;
- box-pack: center;
- height: 80px;
- border-style: dashed;
- }
- .family-list .list-last p {
- color: #dedede;
- font-size: 12px;
- }
|