| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .clear {
- clear: both;
- height: 1px;
- width: 100%;
- overflow: hidden;
- margin-top: -1px;
- }
- #wrap1 {
- width: 100%;
- height: auto;
- margin: 0px auto;
- }
- #heard1 {
- color: #fd0002;
- margin-bottom: 10px;
- width: 100%;
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 30px;
- font-weight: bold;
- }
- #main {
- width: 60%;
- height: auto;
- margin: 0px auto;
- }
- #mytable {
- padding: 0;
- margin: 0px 0px 10px 0px;
- border-collapse: collapse;
- border: 2px solid #fd0002;
-
- }
- #mytable td {
- border: 1px solid #fd0002;
- background: #fff;
- font-size: 11px;
- padding: 6px 6px 6px 6px;
- font-size: 14px;
- font-weight: 600;
- text-align: left;
- }
- #mytable td.alt {
- color: #fd0002;
- font-size: 14px;
- font-weight: 600;
- text-align: center;
- }
- #mytable td input,select,textarea{
- width: 80%;
- }
- #mytable td textarea{
- height: 50px !important;
- }
- #stable td {
- padding: 3px 3px 3px 6px;
- }
- .l-tab-links {
- position: relative;
- float: left;
- height: 32px;
- line-height: 32px;
- width: 100%;
- overflow: hidden;
- margin: 0px;
- background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
- to(#f7f4f4));
- font-size: 12px;
- background: rgb(245, 245, 245);
- }
- .l-tab-links .l-selected a {
- font-size: 12px;
- font-weight: bold;
- height: 30px;
- line-height: 30px;
- }
- .l-tab-links li a {
- font-size: 12px;
- color: #777;
- font-weight: bold;
- height: 30px;
- line-height: 30px;
- }
- .l-tab-links li.l-selected {
- position: relative;
- float: left;
- height: 30px;
- background: #e6e6e6;
- overflow: hidden;
- text-decoration: none;
- background-position: 0 -15px;
- -webkit-transition: background-position 0.1s linear;
- -moz-transition: background-position 0.1s linear;
- -o-transition: background-position 0.1s linear;
- transition: background-position 0.1s linear;
- }
- .l-tab-links ul li {
- width: 120px;
- float: left;
- margin-right: -1px;
- margin-bottom: 0;
- font-size: 14px;
- height: 30px;
- line-height: 30px;
- text-align: center;
- vertical-align: middle;
- cursor: pointer;
- color: #333333;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
- background-color: #f5f5f5;
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
- to(#e6e6e6));
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',
- endColorstr='#ffe6e6e6', GradientType=0);
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
- border-bottom-color: #b3b3b3;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px
- rgba(0, 0, 0, .05);
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px
- rgba(0, 0, 0, .05);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px
- rgba(0, 0, 0, .05);
- }
- .error{
- color: red;
- }
|