| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- @import url("reset.css");
- *{
- font-family: "microsoft yahei"
- }
- .fl{
- float: left;
- }
- .fr{
- float: right;
- }
- .clear{
- overflow: hidden;
- }
- .clear2{
- clear: both;
- }
- .ib{
- display:inline-block;
- zoom: 1;
- *display: inline;
- }
- .bg-white{
- background-color: #FFFFFF;
- }
- .lightgray{
- color: #959595;
- }
- .gray{
- color: #737373;
- }
- .deepgray{
- color: #464646;
- }
- .red{
- color: #FF4400;
- }
- .blue{
- color: #1f50bf;
- }
- .white{
- color: white;
- }
- .black{
- color: black;
- }
- .container{
- width: 1200px;
- margin: 0 auto;
- }
- .text-center{
- text-align: center;
- }
- .text-right{
- text-align: right;
- }
- .text-left{
- text-align: left;
- }
- .normal{
- font-style: normal;
- font-weight: 100;
- }
- .nowrap{
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .bold{
- font-weight: bold;
- }
- .font12{
- font-size: 12px;
- }
- .font14{
- font-size: 14px;
- }
- .font16{
- font-size: 16px;
- }
- .font18{
- font-size: 18px;
- }
- .font20{
- font-size: 20px;
- }
- .font22{
- font-size: 22px;
- }
- .font24{
- font-size: 24px;
- }
- .vertical-top{
- vertical-align: top;
- }
- .hidden{
- display: none;
- }
- .row{
- margin-top: 25px;
- }
- .red-title{
- padding: 0 10px 5px 10px;
- border-bottom: 1px solid #FF4400;
- margin-bottom: 15px;
- }
- .gray-title{
- line-height: 1;
- padding: 0 10px 5px 10px;
- border-bottom: 2px solid #cccccc;
- margin-bottom: 15px;
- }
- .more{
- padding-top: 5px;
- }
- .m a:link, .m a:visited, .m a:active {
- color: #333333;
- text-decoration: none;
- }
- .foot{
- color: #666666;
- text-align: center;
- line-height: 32px;
- padding: 10px 0 10px 0;
- }
|