| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .tab-menu ul {
- width: 600px;
- list-style: none;
- }
- .tab-menu li {
- display: block;
- width: 80px;
- float: left;
- border: 1px solid #e7e5e8;
- margin-right: 10px;
- text-align: center;
- line-height: 20px;
- margin-bottom: 10px;
- cursor: pointer;
- }
- .tab-box .tb {
- display: none;
- }
- /* 让第一个框显示出来 */
- .tab-box .tb:nth-of-type(1) {
- display: block;
- }
- .change {
- background: #1ab394;
- color: #fff;
- }
- .sendMessageBtn {
- line-height: 20px;
- }
- .operation a {
- margin-right: 5px;
- display: inline-block;
- }
- .tool_downs {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .tool_downs li {
- display: inline-block;
- min-width: 35px;
- }
- .tool_downs li .aBtn {
- min-width: 35px;
- }
|