| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- .active-color {
- color: #13c7a7;special;
- }
- .top-title {
- padding: 10px;
- }
- .album-name {
- background: #13c7a7;
- color: white;
- padding: 10px 15px;
- border-radius: 20px;
- margin-right: 20px;
- cursor: pointer;
- }
- .album-name-against {
- background: white;
- color: black;
- padding: 10px 15px;
- border-radius: 20px;
- margin-right: 20px;
- cursor: pointer;
- }
- .select-name {
- display: flex;
- margin: 0 10px;
- position: relative;
- }
- .type-box {
- margin: 0 0 0 30px;
- cursor: pointer;
- }
- .el-icon-caret-top {
- position: absolute;
- top: 0px;
- font-size: 16px;
- }
- .el-icon-caret-bottom {
- position: absolute;
- top: 6px;
- font-size: 16px;
- }
- .bottom-album {
- margin: 0 10px;
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- grid-column-gap: 15px;
- padding-bottom: 100px;
- }
- .bottom-album .album-box {
- background: white;
- padding: 15px 15px 5px 15px;
- width: 100%;
- border-radius: 10px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-bottom: 15px;
- }
- .bottom-album .top-pane img {
- width: 22%;
- max-height: 60px;
- }
- .bottom-album .top-pane {
- display: flex;
- }
- .bottom-album .top-pane img{
- /* height: 158px; */
- }
- .bottom-album .right-box {
- margin-left: 10px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .bottom-album .goods-album-name {
- font-weight: 600;
- }
- .bottom-album .tag-name {
- background: #ffefd4;
- padding: 8px 10px;
- border-radius: 5px;
- color: #ff7f4e;
- }
- .middle-pane {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- margin: 15px 0;
- grid-column-gap: 15px;
- }
- .middle-pane img {
- width: 100%;
- }
- .date {
- display: flex;
- justify-content: space-between;
- }
- .date .date-name {
- color: #b5b5b5;
- font-weight: 600;
- }
- .bottom-pane {
- display: flex;
- justify-content: space-evenly;
- border-top: 2px solid #f4f4f4;
- align-items: center;
- }
- .bottom-pane .left-box {
- }
- .bottom-pane .line {
- width: 2px;
- height: 60px;
- background: #f4f4f4;
- }
- .bottom-pane .right-num {
- }
- .vue-page {
- padding: 20px;
- height: 130px;
- }
- .vue-page-bottom {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .vue-page-bottom .tip {
- color: #ff7a78;
- font-size: 15px;
- }
- .form-pane {
- margin: 20px 0;
- }
|