/* 全局样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	color: #333;
	line-height: 1.6;
	background-color: #fff;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}

ul {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.btn {
	display: inline-block;
	background-color: #e74c3c;
	color: white;
	padding: 12px 30px;
	border-radius: 4px;
	font-weight: bold;
	transition: background-color 0.3s;
	cursor: pointer;
	border: none;
	font-size: 16px;
	text-align: center;
}

.btn:hover {
	background-color: #c0392b;
}

.section-title {
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
	color: #2c3e50;
}

/* 顶部栏样式 */
.top-bar {
	background-color: #f8f9fa;
	padding: 8px 0;
	font-size: 14px;
	border-bottom: 1px solid #eaeaea;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-links a {
	margin-left: 20px;
	color: #555;
}

.top-bar-links a:hover {
	color: #e74c3c;
}

.logo {
	font-size: 22px;
	font-weight: bold;
	color: #e74c3c;
}

/* 折扣横幅 */
.discount-banner {
	background-color: #e74c3c;
	color: white;
	text-align: center;
	padding: 10px 0;
	font-weight: bold;
	font-size: 16px;
}

/* 英雄区域样式 */
.hero {
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/34bg.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0;
}
.hero .hero-info {
	font-size: 14px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}
.hero h1 {
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #ff6600;
}

.hero .hero-bottom {
	font-size: 20px;
	margin-bottom: 5px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}
.hero .hero-button {
    margin-top: 50px;
	font-size: 20px;
}

.commission-container {
    max-width: 1200px;
    margin: 0 auto;
}
.commission-container .header {
    text-align: center;
    margin-bottom: 10px;
    padding: 30px 0;
}

.commission-container .title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* 佣金信息卡片 */
.commission-container .commission-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.commission-container .commission-card {
    background-color: #ff6b00;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(255, 77, 138, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commission-container .commission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 77, 138, 0.3);
}

.commission-container .card-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.commission-container .card-title i {
    margin-right: 12px;
    font-size: 22px;
}

/* 零售订单样式 */
.commission-container .retail-card .commission-rate {
    background-color: #ff6b00;
    border-radius: 12px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.commission-container .rate-label {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.commission-container  .rate-value {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .commission-container .header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .commission-container .main-title {
        font-size: 24px;
    }

    .commission-container .commission-card {
        padding: 25px 20px;
    }

    .commission-container .card-title {
        font-size: 22px;
    }

    .commission-container .rate-value {
        font-size: 32px;
    }

    .commission-container .amount-range, .rate-label {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .commission-container .main-title {
        font-size: 22px;
    }

    .commission-container .commission-card {
        padding: 20px 15px;
    }

    .commission-container .card-title {
        font-size: 20px;
    }

    .commission-container .rate-value {
        font-size: 28px;
    }

    .commission-container .amount-range, .rate-label {
        font-size: 16px;
    }

}
/* 物流运输价格表 */
.logistic-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* 标题样式 */
.logistic-container .main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 物流卡片容器 */
.logistic-container .logistics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* 单个物流卡片 */
.logistic-container .logistics-card {
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    border-radius: 12px;
    width: 270px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logistic-container .logistics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* 卡片顶部标题区域 */
.logistic-container .card-header {
    background-color: #ff6b00;
    color: white;
    padding: 20px 15px;
    text-align: center;
}

.logistic-container .logistics-type {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

/* 卡片中间价格区域 */
.logistic-container .card-price {
    flex-grow: 1;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logistic-container .price-value {
    color: #ff6b00;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.logistic-container .delivery-time {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

/* 卡片底部描述区域 */
.logistic-container .card-description {
    background-color: #f2f2f2;
    color: #333;
    padding: 20px 15px;
    text-align: center;
    border-top: 2px solid #e6e6e6;
}

.logistic-container .description-text {
    font-size: 16px;
    line-height: 1.4;
}

/* 图标装饰 */
.logistic-container .icon-container {
    margin-bottom: 10px;
    font-size: 30px;
}

/* 卡片特定样式 */
.logistic-container .auto-express {
    border-top: 5px solid #ff6b00;
}

.logistic-container .auto-super-express {
    border-top: 5px solid #ff6b00;
}

.logistic-container .avia {
    border-top: 5px solid #ff6b00;
}

.logistic-container .avia-courier {
    border-top: 5px solid #ff6b00;
}
/* 响应式设计 */
@media (max-width: 1150px) {
    .logistic-container .logistics-container {
        justify-content: center;
    }

    .logistic-container .logistics-card {
        width: calc(50% - 20px);
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .logistic-container .main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .logistic-container .logistics-container {
        gap: 15px;
    }

    .logistic-container .logistics-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .logistic-container .main-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .logistic-container .logistics-type {
        font-size: 20px;
    }

    .logistic-container .price-value {
        font-size: 32px;
    }

    .logistic-container .delivery-time {
        font-size: 18px;
    }
}
/* 聊天消息容器 */
.chats-container {
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
    margin-top: 30px;
}


.chats-container .chat-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 提问消息（粉色气泡） */
.chats-container .question-bubble {
    align-self: flex-end;
    max-width: 85%;
}

.chats-container .question-content {
    background-color: #ff6b00;
    color: #ffffff;
    border-radius: 20px 20px 4px 20px;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 回答消息（浅灰色气泡） */
.chats-container .answer-bubble {
    align-self: flex-start;
    max-width: 90%;
}

.chats-container .answer-content {
    background-color: #f0f0f0;
    color: #333;
    border-radius: 20px 20px 20px 4px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 消息段落样式 */
.chats-container .message-paragraph {
    margin-bottom: 12px;
}

.chats-container  .message-paragraph:last-child {
    margin-bottom: 0;
}

/* 计算公式样式 */
.chats-container .calculation {
    background-color: #ffffff;
    border-left: 4px solid #ff6b00;
    padding: 12px 15px;
    margin: 12px 0;
    border-radius: 0 4px 4px 0;
}

.chats-container .calculation p {
    margin-bottom: 8px;
}

/* 强调文本 */
.chats-container .highlight {
    font-weight: 700;
    color: #ff6b00;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .chats-container .question-bubble, .answer-bubble {
        max-width: 95%;
    }

    .chats-container .question-content {
        font-size: 16px;
        padding: 12px 16px;
    }

    .chats-container .answer-content {
        font-size: 15px;
        padding: 16px;
    }
}

@media (max-width: 480px) {

    .chats-container .chat-container {
        gap: 15px;
    }

    .chats-container .question-content {
        font-size: 15px;
        padding: 10px 14px;
    }

    .chats-container .answer-content {
        font-size: 14px;
        padding: 14px;
    }
}
/*包装费用说明*/
.pack-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

/* 主标题样式 */
.pack-container .main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 包装选项容器 */
.pack-container .packaging-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* 包装选项卡片 */
.pack-container .packaging-card {
    background-color: #ffffff;
    border-radius: 12px;
    width: 270px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pack-container .packaging-card:hover {
    transform: translateY(-5px);
}

/* 卡片标题区域 */
.pack-container .card-title {
    background-color: #ff6b00;
    color: white;
    text-align: center;
    padding: 20px 15px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 卡片内容区域 */
.pack-container .card-content {
    padding: 25px 20px;
    text-align: center;
}

/* 价格样式 */
.pack-container .price {
    color: #333333;
    font-size: 16px;
    margin-bottom: 10px;
}

/* 重量说明 */
.pack-container .weight-info {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 卡片描述 */
.pack-container .card-description {
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

/* 重要信息区域 */
.pack-container .important-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.pack-container .important-title {
    color: #ff6b00;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-container .important-title:before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #ff6b00;
    color: #f0f0f0;
    border-radius: 50%;
    font-weight: 800;
    margin-right: 10px;
}

.pack-container .important-text {
    display: flex;
    font-size: 18px;
    line-height: 1.6;
    align-items: center;
    justify-content: center;
}


/* 响应式设计 */
@media (max-width: 1150px) {
    .pack-container .packaging-container {
        justify-content: center;
    }

    .pack-container .packaging-card {
        width: calc(50% - 20px);
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .pack-container .main-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .pack-container .packaging-container {
        gap: 15px;
    }

    .pack-container .packaging-card {
        width: 100%;
        max-width: 350px;
    }

    .pack-container .important-section {
        padding: 20px;
    }

    .pack-container .important-title {
        font-size: 22px;
    }

    .pack-container .important-text {
        font-size: 16px;
    }

}

@media (max-width: 480px) {
    .pack-container .main-title {
        font-size: 26px;
    }

    .pack-container .card-title {
        font-size: 18px;
        padding: 15px 10px;
    }

    .pack-container .price {
        font-size: 24px;
    }

    .pack-container .weight-info {
        font-size: 16px;
    }

    .pack-container .important-section {
        padding: 15px;
    }
}
/*卸货与丢失保险服务*/
.cards-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
/* 标题样式 */
.cards-container .main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 双卡片容器 */
.cards-container .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* 单个卡片样式 */
.cards-container .service-card {
    background-color: #ff6b00;
    border-radius: 12px 12px 0 0;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top: 4px solid white;
    border-bottom: 4px solid white;
}

/* 卡片标题区域 */
.cards-container .card-title {
    color: white;
    text-align: center;
    padding: 30px 20px 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.cards-container .title-main {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* 价格/费率区域 */
.cards-container .price-section {
    background-color: #ff6b00;
    color: white;
    padding: 25px 20px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.cards-container .main-price {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.1;
}

.cards-container .price-condition {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.95;
}

/* 描述区域 */
.cards-container .description-section {
    background-color: #f8f8f8;
    color: #737373;
    padding: 30px 25px;
    font-size: 18px;
    line-height: 1.6;
}

.cards-container .description-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6b00;
}

.cards-container .description-text {
    margin-bottom: 15px;
}

.cards-container .description-text:last-child {
    margin-bottom: 0;
}

/* 保险卡片的特殊样式 */
.cards-container .insurance-card .main-price {
    font-size: 34px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .cards-container .card-container {
        gap: 25px;
    }

    .cards-container .service-card {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .cards-container .card-container {
        flex-direction: column;
        align-items: center;
    }

    .cards-container .service-card {
        max-width: 500px;
    }

    .cards-container .title-main {
        font-size: 26px;
    }

    .cards-container .main-price {
        font-size: 36px;
    }

    .cards-container .insurance-card .main-price {
        font-size: 32px;
    }

    .cards-container .price-condition {
        font-size: 17px;
    }

    .cards-container .description-section {
        font-size: 17px;
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .cards-container .card-title {
        padding: 25px 15px 20px;
    }

    .cards-container .title-main {
        font-size: 24px;
    }

    .cards-container .price-section {
        padding: 20px 15px 15px;
    }

    .cards-container .main-price {
        font-size: 32px;
    }

    .cards-container .insurance-card .main-price {
        font-size: 28px;
    }

    .cards-container .price-condition {
        font-size: 16px;
    }

    .cards-container .description-section {
        font-size: 16px;
        padding: 20px 15px;
    }
}


/* 表单样式 */
.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-container .form-title {
    width: 50%;
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    padding: 20px;
}

.form-container .form-content {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.form-container .form-group {
    width: 100%;
    max-width: 500px;
    margin-bottom: 10px;
}

.form-container .form-group label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.form-container .form-group input,
.form-container .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-container .form-group:nth-child(2) input,
.form-container .form-group:nth-child(4) textarea {
    border-color: #333;
}

.form-container .form-group input:focus,
.form-container .form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
}

.form-container .form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-container .submit-btn {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    margin-top: 10px;
    width: 100%;
    max-width: 500px;
}

.form-container .submit-btn:hover {
    background-color: #e55a00;
}

@media (max-width: 992px) {
    .form-container .form-title {
        font-size: 3rem;
        width: 35%;
    }

    .form-container .form-content {
        width: 65%;
    }
}

@media (max-width: 768px) {
    .form-container .form-container {
        flex-direction: column;
    }

    .form-container .form-title {
        width: 100%;
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .form-container .form-content {
        width: 100%;
        align-items: center;
    }

    .form-container .form-group {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .form-container .form-title {
        font-size: 2rem;
    }

    .form-container .form-group input,
    .form-container .form-group textarea {
        padding: 10px 12px;
    }

    .form-container .submit-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* 联系方式样式 */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.contact-container .contact-info {
    width: 50%;
    padding: 60px 40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-container .contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.contact-container .contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-container .contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-container .contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-container .contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 2px;
    color: #ff6b00;
}

.contact-container .contact-text {
    flex: 1;
}

.contact-container .contact-label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-container .contact-value {
    color: #555;
    font-size: 1.1rem;
}

.contact-container .contact-image-div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.contact-container .contact-image-div  .contact-image {
    width: 100%;
}
.contact-container .truck-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 992px) {
    .contact-container .contact-image {
        width: 100%;
    }

    .contact-container .contact-info {
        padding: 40px 30px;
    }

    .contact-container .contact-image {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .contact-container .contact-image {
        width: 100%;
    }
    .contact-container .contact-info {
        padding: 30px 20px;
    }

    .contact-container .contact-title {
        font-size: 2rem;
    }

    .contact-container .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-container .contact-label, .contact-value {
        font-size: 1rem;
    }

    .contact-container .image-placeholder {
        font-size: 1rem;
    }

    .contact-container .image-placeholder i {
        font-size: 3rem;
    }
}

/*博客页面*/
.article-container {
    max-width: 1200px;
    margin: 0 auto;
}

.article-container .header {
    text-align: left;
    margin-bottom: 40px;
    padding-top: 30px;
}

.article-container .header-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.article-container .date {
    font-size: 1rem;
    color: #666666;
    background-color: #f5f5f5;
    padding: 5px 15px;
    border-radius: 20px;
}

.article-container .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.article-container .product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-container .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.article-container .product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.article-container .product-content {
    padding: 20px;
}

.article-container .product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    min-height: 60px;
}

.article-container .product-description {
    font-size: 1rem;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.article-container .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.article-container .read-more {
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.article-container .article-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.article-container .article-section {
    margin-bottom: 30px;
}

.article-container .article-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.article-container .article-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.article-container .highlight {
    background-color: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
    margin: 20px 0;
}



/* 响应式设计 */
@media (max-width: 992px) {
    .article-container .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .article-container .header-h1 {
        font-size: 2rem;
    }

    .article-container .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .article-container .product-title {
        min-height: auto;
    }

    .article-container .article-title {
        font-size: 1.3rem;
    }

    .article-container .article-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .article-container .header {
        margin-bottom: 30px;
    }

    .article-container .header-h1 {
        font-size: 1.8rem;
    }

    .article-container .product-content {
        padding: 15px;
    }

    .article-container .product-title {
        font-size: 1.2rem;
    }
}


/* 页脚样式 */
.footer {
	background-color: #2c3e50;
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.footer-column h3 {
	margin-bottom: 20px;
	font-size: 18px;
	color: #ecf0f1;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #bdc3c7;
}

.footer-column ul li a:hover {
	color: #e74c3c;
}

.contact-info {
	margin-bottom: 20px;
	color: #bdc3c7;
	line-height: 1.6;
}

.contact-info p {
	margin-bottom: 8px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 50%;
	transition: background-color 0.3s;
}

.social-links a:hover {
	background-color: #e74c3c;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 5px;
	text-align: center;
	font-size: 14px;
	color: #bdc3c7;
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 15px 0;
}

.footer-links a {
	margin: 0 10px;
	color: #bdc3c7;
}

.footer-links a:hover {
	color: #e74c3c;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.process-steps {
		flex-direction: column;
		gap: 30px;
	}
	
	.process-steps::before {
		display: none;
	}
	
	.hero h1 {
		font-size: 36px;
	}
	
	.hero p {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.navbar-content {
		flex-direction: column;
		min-height: 50px;
	}
	
	.nav-links {
		margin-top: 15px;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	
	.nav-links li {
		margin: 5px 10px;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.advantages-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	.pricing-comparison {
		flex-direction: column;
		align-items: center;
	}
	
	.top-bar-content {
		flex-direction: column;
		gap: 10px;
	}
	
	.top-bar-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.top-bar-links a {
		margin: 0 10px 5px 0;
	}
	
	.section-title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 80px 0;
	}
	
	.hero h1 {
		font-size: 28px;
	}
	
	.hero p {
		font-size: 16px;
	}
	
	.features, .process, .pricing, .advantages, .testimonials, .contact-form-section {
		padding: 60px 0;
	}
}