| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /*// 主题色*/
- /*字体主色调*/
- /*线条主色调*/
- /*按钮主色调*/
- /*底纹色*/
- .articlelisttable {
- padding: 0 9px;
- }
- .articlelisttable .table > tbody > tr > td,
- .articlelisttable .table > tbody > tr > th,
- .articlelisttable .table > tfoot > tr > td,
- .articlelisttable .table > tfoot > tr > th,
- .articlelisttable .table > thead > tr > td,
- .articlelisttable .table > thead > tr > th {
- border-bottom: none;
- cursor: pointer;
- }
- /*文章页*/
- .articledetailbox {
- padding: 0 60px;
- }
- .articledetailtit {
- text-align: center;
- line-height: 60px;
- font-size: 30px;
- border-bottom: 1px solid #eceff4;
- padding-top: 15px;
- padding-bottom: 5px;
- }
- .articledetailcon {
- padding-top: 15px ;
- }
- .system_list .m-withe {
- padding-bottom: 190px;
- min-width: 1200px;
- max-width: 1500px;
- }
- .system_tit .right {
- float: right;
- padding-top: 12px;
- }
- .system_list_content {
- padding-top: 20px;
- }
- .system_list_content ul li {
- width: 275px;
- margin-left: 20px;
- margin-bottom: 20px;
- display: inline-block;
- float: left;
- padding: 10px;
- padding-bottom: 15px;
- border: 1px solid #eceff4;
- transition: all 0.1s ease-in-out 0s;
- -moz-transition: all 0.1s ease-in-out 0s;
- -webkit-transition: all 0.1s ease-in-out 0s;
- -o-transition: all 0.1s ease-in-out 0s;
- }
- .system_list_content ul li:hover {
- -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
- box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
- -webkit-transform: translate3d(0, -2px, 0);
- transform: translate3d(0, -2px, 0);
- transition: all 0.1s ease-in-out 0s;
- -moz-transition: all 0.1s ease-in-out 0s;
- -webkit-transition: all 0.1s ease-in-out 0s;
- -o-transition: all 0.1s ease-in-out 0s;
- }
- .system_list_content ul li h1 {
- font-size: 16px;
- line-height: 30px;
- padding-bottom: 10px;
- font-weight: bold;
- }
- .system_list_content ul li .imgbox {
- width: 100%;
- max-height: 130px;
- overflow: hidden;
- margin-bottom: 10px;
- }
- .system_list_content ul li .imgbox img {
- width: 100%;
- }
- .system_list_content ul li .listinfo {
- line-height: 25px;
- height: 50px;
- white-space: inherit;
- display: -webkit-box;
- -webkit-box-sizing: border-box;
- word-break: break-all;
- word-wrap: break-word;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- text-overflow: ellipsis;
- overflow: hidden;
- margin-bottom: 10px;
- }
- .system_list_content ul li .listinfo2 .f_l {
- line-height: 28px;
- }
|