123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* .wrap {
- } */
- .wrap .tab {
- height: 5rem;
- display: flex;
- align-items: center;
- justify-content: center;
- border-bottom: 0.0625rem solid rgba(151, 151, 151, 0.2);
- position: relative;
- }
- .tab .tab-item {
- height: 5rem;
- width: 15rem;
- font-size: 1rem;
- font-weight: 400;
- color: #222222;
- text-align: center;
- line-height: 5rem;
- cursor: pointer;
- }
- .tab .current-tab {
- position: absolute;
- bottom: 0;
- width: 3.5rem;
- height: 0.125rem;
- background-color: #1d52a2;
- transition: all 0.25s;
- }
- .wrap .content {
- padding: 3.75rem 0;
- width: 90rem;
- margin: 0 auto;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- }
- .wrap .content > :not(:nth-child(3n)) {
- margin-right: 1.875rem;
- }
- .content .content-item {
- width: 28.75rem;
- height: 15.125rem;
- background: #f4f4f4;
- border: 0.0625rem solid #bfbfbf;
- padding: 1.875rem;
- margin-bottom: 1.875rem;
- }
- .content .content-item .title {
- height: 1.875rem;
- font-size: 1.375rem;
- font-weight: 500;
- color: #222222;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .content .content-item .detail {
- height: 5rem;
- font-size: 0.875rem;
- font-weight: 400;
- color: #222222;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- margin: 1.25rem 0;
- }
- .content .content-item .more {
- font-size: 0.875rem;
- font-weight: 400;
- color: #1d52a2;
- text-decoration: none;
- }
|