Shipping Policy
Total Delivery time = Handling time+Transit time
Shipping Regions: United States
| Cost |
Service |
Handling |
Transit |
Total Days |
| FREE |
Standard |
0 day |
3-5 days |
3-5 days |
| $4.99 |
Expedited |
0 day |
2-3 days |
2-3 days |
📦 Key Terms
-
Handling Time: Handling time refers to the period between when an order is placed and when it is ready for shipment, including order processing, picking, packing, and carrier pickup.
-
Transit Time: Transit time is the time it takes the carrier to deliver a product to a customer.
-
Business Days: Mon-Fri only
-
Tax: Taxes are borne by the customer.
/* 样式部分完全未改动,保持与原始一致 */
.shipping-policy {
max-width: 1000px;
margin: 0 auto;
padding: 20px 15px;
font-family: inherit;
}
.policy-title {
font-size: clamp(1.5rem, 3vw, 2.5rem);
color: inherit;
text-align: center;
margin: 1.5rem 0;
font-weight: 700;
}
.policy-highlight {
background: rgba(43, 108, 176, 0.1);
padding: 1.25rem;
border-radius: 12px;
text-align: center;
font-weight: 500;
margin: 1.5rem 0;
color: #2b6cb0;
line-height: 1.4;
}
.policy-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
}
@media screen and (max-width: 767px) {
.policy-table thead {
display: none;
}
.policy-table tr {
display: block;
margin-bottom: 1.5rem;
background: #f8fafc;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.policy-table td {
display: flex;
justify-content: space-between;
padding: 16px 14px;
border-bottom: 1px solid #e2e8f0;
font-size: 0.95rem;
}
.policy-table td::before {
content: attr(data-label);
font-weight: 600;
color: #4a5568;
margin-right: 1rem;
white-space: nowrap;
}
.policy-table td:last-child {
border-bottom: 0;
}
}
@media (min-width: 768px) {
.policy-table th,
.policy-table td {
padding: 1.25rem;
text-align: center;
border: 1px solid #e2e8f0;
}
.policy-table th {
background: #2b6cb0;
color: white;
font-weight: 500;
}
.policy-table tr:nth-child(even) {
background: #f8fafc;
}
}
.policy-card {
background: white;
padding: 1.5rem;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
margin: 2.5rem 0;
border: 1px solid #e2e8f0;
}
.policy-subtitle {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
color: #1a365d;
}
.policy-list {
list-style: none;
padding: 0;
margin: 0;
}
.policy-list li {
margin-bottom: 0.75rem;
line-height: 1.5;
}
.term-highlight {
color: #2b6cb0;
font-weight: 600;
}
.policy-info {
background: rgba(43, 108, 176, 0.05);
padding: 1.5rem;
border-radius: 12px;
text-align: center;
margin: 2rem 0;
}
.policy-text {
margin-bottom: 0.75rem;
line-height: 1.5;
}
.policy-email {
color: #2b6cb0;
text-decoration: underline;
font-weight: 500;
}
.policy-email:hover {
text-decoration: none;
}
.response-time {
color: #718096;
font-size: 0.9rem;
margin-top: 0.5rem;
}
@media (min-width: 768px) {
.shipping-policy {
padding: 40px 20px;
}
}