我的购物车
点击商品加入购物车
| 规格 | 2kg |
|---|---|
| 海鲜种类 | 螃蟹、对虾、扇贝、海带等 |
| 保鲜方式 | 冷藏保鲜 |
| 产地 | 浙江三门 |
| 运输方式 | 冷链配送 |
| 保质期 | 3天 |
海鲜非常新鲜,螃蟹味道特别好,肉质鲜嫩,包装也很到位,配送很及时。
海鲜新鲜,口感不错,吃完还想再来一次。推荐给大家。
/* 页面总体布局 */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
h1.page-title {
font-size: 3em;
color: #333;
margin-bottom: 30px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
animation: slideIn 1s ease-in-out;
}
@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* 海鲜信息部分 */
.seafood-info {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-bottom: 50px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
transition: transform 0.3s ease;
animation: fadeInUp 1.2s ease-in-out;
}
.seafood-info:hover {
transform: scale(1.05);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.seafood-image {
max-width: 400px;
margin-right: 40px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
border-radius: 12px;
transition: transform 0.3s;
}
.seafood-image img {
width: 100%;
border-radius: 12px;
object-fit: cover;
}
.seafood-image:hover {
transform: scale(1.05);
}
.seafood-details {
max-width: 600px;
text-align: left;
animation: fadeInLeft 1.2s ease-in-out;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.seafood-title {
font-size: 2.5em;
margin-bottom: 10px;
color: #333;
font-weight: 600;
}
.seafood-price {
font-size: 1.8em;
color: #FF6347;
margin-bottom: 20px;
}
.seafood-description {
font-size: 1.2em;
color: #555;
margin-bottom: 25px;
}
.buy-button {
font-size: 1.3em;
background-color: #FF6347;
color: white;
padding: 18px 35px;
text-decoration: none;
border-radius: 10px;
transition: background-color 0.3s, transform 0.3s;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.buy-button:hover {
background-color: #e53e4d;
transform: scale(1.05);
}
.buy-button i {
margin-right: 12px;
}
/* 规格参数表格 */
.seafood-specifications {
margin-bottom: 50px;
width: 80%;
max-width: 850px;
text-align: left;
background-color: #f4f4f4;
padding: 25px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
animation: fadeIn 1.5s ease-in-out;
}
.seafood-specifications h3 {
font-size: 2em;
margin-bottom: 25px;
color: #333;
text-align: center;
font-weight: 600;
}
table {
width: 100%;
border-collapse: collapse;
}
table th, table td {
padding: 10px;
text-align: left;
border: 1px solid #ddd;
}
table th {
background-color: #FF6347;
color: white;
}
/* 使用建议部分 */
.seafood-usage {
width: 80%;
max-width: 850px;
margin-bottom: 50px;
text-align: left;
background-color: #ffffff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
animation: fadeInRight 1.5s ease-in-out;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.seafood-usage h3 {
font-size: 2em;
margin-bottom: 20px;
color: #333;
text-align: center;
font-weight: 600;
}
.seafood-usage ul {
list-style: none;
padding: 0;
font-size: 1.2em;
color: #555;
}
.seafood-usage ul li {
margin-bottom: 15px;
display: flex;
align-items: center;
}
.seafood-usage ul li i {
margin-right: 12px;
color: #FF6347;
}
/* 客户评价部分 */
.seafood-reviews {
width: 80%;
max-width: 850px;
text-align: left;
background-color: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.review {
margin-bottom: 30px;
padding: 15px;
background-color: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.review-author {
font-weight: bold;
font-size: 1.2em;
color: #333;
}
.review-date {
font-size: 0.95em;
color: #888;
}
.review-text {
font-size: 1.1em;
color: #555;
margin-top: 15px;
}
.review-rating {
font-size: 1.3em;
color: #ffaa00;
margin-top: 10px;
}
/* 响应式布局 */
@media screen and (max-width: 768px) {
.seafood-info {
flex-direction: column;
align-items: center;
}
.seafood-image {
margin-right: 0;
margin-bottom: 20px;
}
.seafood-details {
text-align: center;
}
.buy-button {
width: 100%;
padding: 15px;
}
.seafood-specifications,
.seafood-usage,
.seafood-reviews {
width: 100%;
margin-top: 20px;
}
}

| 规格 | 2kg |
|---|---|
| 海鲜种类 | 螃蟹、对虾、扇贝、海带等 |
| 保鲜方式 | 冷藏保鲜 |
| 产地 | 浙江三门 |
| 运输方式 | 冷链配送 |
| 保质期 | 3天 |
海鲜非常新鲜,螃蟹味道特别好,肉质鲜嫩,包装也很到位,配送很及时。
海鲜新鲜,口感不错,吃完还想再来一次。推荐给大家。
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
h1.page-title {
font-size: 3em;
color: #333;
margin-bottom: 30px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
animation: slideIn 1s ease-in-out;
}
@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* 海鲜信息部分 */
.seafood-info {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
transition: transform 0.3s ease;
animation: fadeInUp 1.2s ease-in-out;
}
.seafood-info:hover {
transform: scale(1.05);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.seafood-image {
max-width: 400px;
margin-right: 40px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
border-radius: 12px;
transition: transform 0.3s;
}
.seafood-image img {
width: 100%;
border-radius: 12px;
object-fit: cover;
}
.seafood-image:hover {
transform: scale(1.05);
}
.seafood-details {
max-width: 600px;
text-align: left;
animation: fadeInLeft 1.2s ease-in-out;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.seafood-title {
font-size: 2.5em;
margin-bottom: 10px;
color: #333;
font-weight: 600;
}
.seafood-price {
font-size: 1.8em;
color: #FF6347;
margin-bottom: 20px;
}
.seafood-description {
font-size: 1.2em;
color: #555;
margin-bottom: 25px;
}
.buy-button {
font-size: 1.3em;
background-color: #FF6347;
color: white;
padding: 18px 35px;
text-decoration: none;
border-radius: 10px;
transition: background-color 0.3s, transform 0.3s;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.buy-button:hover {
background-color: #e53e4d;
transform: scale(1.05);
}
.buy-button i {
margin-right: 12px;
}
/* 规格参数表格 */
.seafood-specifications {
margin-bottom: 50px;
width: 80%;
max-width: 850px;
text-align: left;
background-color: #f4f4f4;
padding: 25px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
animation: fadeIn 1.5s ease-in-out;
}
.seafood-specifications h3 {
font-size: 2em;
margin-bottom: 25px;
color: #333;
text-align: center;
font-weight: 600;
}
table {
width: 100%;
border-collapse: collapse;
}
table th, table td {
padding: 10px;
text-align: left;
border: 1px solid #ddd;
}
table th {
background-color: #FF6347;
color: white;
}
/* 使用建议部分 */
.seafood-usage {
width: 80%;
max-width: 850px;
margin-bottom: 50px;
text-align: left;
background-color: #ffffff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
animation: fadeInRight 1.5s ease-in-out;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.seafood-usage h3 {
font-size: 2em;
margin-bottom: 20px;
color: #333;
text-align: center;
font-weight: 600;
}
.seafood-usage ul {
list-style: none;
padding: 0;
font-size: 1.2em;
color: #555;
}
.seafood-usage ul li {
margin-bottom: 15px;
display: flex;
align-items: center;
}
.seafood-usage ul li i {
margin-right: 12px;
color: #FF6347;
}
/* 客户评价部分 */
.seafood-reviews {
width: 80%;
max-width: 850px;
text-align: left;
background-color: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.review {
margin-bottom: 30px;
padding: 15px;
background-color: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.review-author {
font-weight: bold;
font-size: 1.2em;
color: #333;
}
.review-date {
font-size: 0.95em;
color: #888;
}
.review-text {
font-size: 1.1em;
color: #555;
margin-top: 15px;
}
.review-rating {
font-size: 1.3em;
color: #ffaa00;
margin-top: 10px;
}