123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- :host {
- --page-padding: 16px;
- --primary-color: #b64d24;
- --card-border-radius: 12px;
- --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
- }
- // 头部导航样式
- .header-container {
- padding: 8px var(--page-padding);
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: white;
- .menu-icon {
- font-size: 24px;
- color: #333;
- padding: 8px;
- border-radius: 50%;
- cursor: pointer;
- transition: background-color 0.3s;
- &:hover {
- background-color: rgba(0, 0, 0, 0.05);
- }
- }
- .nav-links {
- display: flex;
- gap: 32px;
- .nav-item {
- font-size: 15px;
- color: #666;
- padding: 6px 2px;
- cursor: pointer;
- position: relative;
- transition: color 0.3s;
- &[underline="true"] {
- color: var(--primary-color);
- font-weight: 500;
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: var(--primary-color);
- border-radius: 2px;
- }
- }
- }
- }
- .search-icon {
- font-size: 22px;
- color: #666;
- padding: 8px;
- border-radius: 50%;
- cursor: pointer;
- transition: all 0.3s;
- &:hover {
- color: var(--primary-color);
- background-color: rgba(182, 77, 36, 0.1);
- }
- }
- }
- // 分类导航样式
- .category-nav {
- background: white;
- border-bottom: 1px solid #f5f5f5;
- margin-bottom: 8px;
- ion-tab-bar {
- --background: transparent;
- --border-color: transparent;
- padding: 0 var(--page-padding);
- ion-tab-button {
- --color: #666;
- --color-selected: var(--primary-color);
- --padding-top: 8px;
- --padding-bottom: 8px;
- ion-label {
- font-size: 14px;
- font-weight: 500;
- }
- &.tab-selected::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 20px;
- height: 3px;
- background: var(--primary-color);
- border-radius: 1.5px;
- }
- }
- }
- }
- // 内容网格样式
- .content-grid {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 12px;
- padding: 12px;
- .content-card {
- background: white;
- border-radius: var(--card-border-radius);
- box-shadow: var(--card-shadow);
- overflow: hidden;
- .card-image {
- width: 100%;
- height: 200px;
- object-fit: cover;
- }
- .card-content {
- padding: 12px;
- .title {
- font-size: 14px;
- color: #333;
- margin-bottom: 12px;
- line-height: 1.4;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
- .user-info {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .user {
- display: flex;
- align-items: center;
- gap: 8px;
- .avatar {
- width: 28px;
- height: 28px;
- border-radius: 50%;
- object-fit: cover;
- }
- .info {
- display: flex;
- flex-direction: column;
- .name {
- font-size: 13px;
- color: #333;
- font-weight: 500;
- }
- .date {
- font-size: 12px;
- color: #999;
- }
- }
- }
- .likes {
- display: flex;
- align-items: center;
- gap: 4px;
- color: #666;
- font-size: 13px;
- ion-icon {
- font-size: 16px;
- color: #999;
- transition: all 0.3s;
- cursor: pointer;
- &:hover {
- color: #ff4b4b;
- transform: scale(1.1);
- }
- }
- }
- }
- }
- }
- }
- // 侧边菜单样式
- ion-menu {
- --width: 280px;
- --background: white;
- .menu-content {
- --background: white;
- .menu-header {
- padding: 24px 20px;
- background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
- h2 {
- color: white;
- margin: 0;
- font-size: 20px;
- font-weight: 600;
- }
- }
- ion-list {
- padding: 12px 0;
- ion-item {
- --padding-start: 20px;
- --padding-end: 16px;
- --min-height: 50px;
- --background: transparent;
- --background-hover: rgba(182, 77, 36, 0.05);
- --ripple-color: rgba(182, 77, 36, 0.1);
- ion-icon {
- color: #666;
- font-size: 20px;
- margin-right: 12px;
- }
- ion-label {
- font-size: 15px;
- font-weight: 500;
- color: #333;
- }
- &:hover {
- ion-icon {
- color: var(--primary-color);
- }
- ion-label {
- color: var(--primary-color);
- }
- }
- }
- }
- }
- }
- // 修改菜单按钮样式
- .menu-icon {
- font-size: 24px;
- padding: 8px;
- border-radius: 50%;
- cursor: pointer;
- color: #333;
- transition: background-color 0.3s;
- &:hover {
- background-color: rgba(0, 0, 0, 0.05);
- }
- }
|