| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .tool_downs,
- .tool_downs li {
- padding: 0;
- margin: 0;
- list-style: none;
- }
- li {
- list-style: none;
- }
- /* 随访管理 */
- .row{
- width: 500px;
- height: 40px;
- line-height: 40px;
- font-size: 18px;
- margin-left: 10px;
- }
- .row span{
- color: red;
- margin-right: 10px;
- }
- .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;
- }
- .tab-box .tb {
- display: none;
- }
- /* 让第一个框显示出来 */
- .tab-box .tb:nth-of-type(1) {
- display: block;
- }
- .change {
- background: #249fea;
- color: #fff;
- }
|