/* 全局样式重置 */
* {
	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/21bg.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: 62px;
	margin-bottom: 10px;
	font-weight: 700;
}

.hero .hero-bottom {
	font-size: 20px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}
.hero .hero-button {
	font-size: 20px;
}

/* 服务样式 */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.services-container .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.services-container .service-card {
    background-color: #000;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.services-container .service-card:hover {
    transform: translateY(-5px);
}

.services-container .service-header {
    display: flex;
    color:white;
    align-items: center;
    margin-bottom: 20px;
}

.services-container .service-icon {
    width: 60px;
    height: 60px;
    background-color: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.services-container .service-icon i {
    font-size: 24px;
    color: #000;
}

.services-container .service-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.services-container .service-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .services-container .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-container .service-card {
        padding: 20px;
    }

    .services-container .service-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .services-container .service-icon i {
        font-size: 20px;
    }

    .services-container .service-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    .services-container .service-card {
        padding: 15px;
    }

    .services-container .service-header {
        margin-bottom: 15px;
    }

    .services-container .service-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }

    .services-container .service-title {
        font-size: 1.2rem;
    }
}

/* 步骤的样式 */
.allsteps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.allsteps-container .page-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.allsteps-container .steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.allsteps-container .step {
    background-color: #000;
    color: white;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    min-height: 50px;
}

.allsteps-container .step-icon {
    width: 40px;
    height: 40px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.allsteps-container .step-content {
    flex: 1;
}

.allsteps-container .step-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.allsteps-container .step-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .allsteps-container .page-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .allsteps-container .step {
        padding: 20px 25px;
        min-height: 90px;
    }

    .allsteps-container .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 15px;
    }

    .allsteps-container .step-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .allsteps-container .page-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .allsteps-container .step {
        padding: 15px 20px;
        min-height: 80px;
        flex-direction: column;
        align-items: flex-start;
    }

    .allsteps-container .step-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .allsteps-container .step-title {
        font-size: 1.1rem;
    }

    .allsteps-container .step-description {
        font-size: 0.95rem;
    }
}

/*空运价格与时效*/
.comps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.comps-container .page-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.comps-container .intro-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.5;
}

.comps-container .comparison-container {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.comps-container .delivery-option {
    flex: 1;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.comps-container .air-delivery {
    background-color: #f6ffed;
}

.comps-container .road-delivery {
    background-color: #fff7e6;
}

.comps-container .option-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.comps-container .air-icon {
    color: #1890ff;
}

.comps-container .road-icon {
    color: #fa8c16;
}

.comps-container .option-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.comps-container .price-info {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.comps-container .time-info {
    font-size: 1.1rem;
    color: #666;
}

.comps-container .comparison-label {
    text-align: center;
    font-size: 1.1rem;
    margin: 15px 0;
    color: #666;
    font-style: italic;
}

.comps-container .important-section {
    background-color: #f6ffed;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 30px;
}

.comps-container .important-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ff6600;
}

.comps-container .important-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.comps-container .view-road-delivery {
    display: inline-block;
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.comps-container .view-road-delivery:hover {
    background-color: #e55a00;
}

@media (max-width: 768px) {
    .comps-container .comparison-container {
        flex-direction: column;
    }

    .comps-container .page-title {
        font-size: 1.8rem;
    }

    .comps-container .intro-text {
        font-size: 1rem;
    }

    .comps-container .delivery-option {
        padding: 20px;
    }

    .comps-container .option-icon {
        font-size: 2.5rem;
    }

    .comps-container .option-title {
        font-size: 1.3rem;
    }

    .comps-container .price-info {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .comps-container .page-title {
        font-size: 1.5rem;
    }

    .comps-container .important-section {
        padding: 20px;
    }

    .comps-container .view-road-delivery {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* 服务步骤样式 */
.services2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.services2-container .page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #333;
    line-height: 1.3;
}

.services2-container .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services2-container .service-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services2-container .service-card:hover {
    transform: translateY(-5px);
}

.services2-container .service-number {
    width: 60px;
    height: 60px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.services2-container .service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.services2-container .service-description {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .services2-container .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services2-container .page-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .services2-container .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .services2-container .page-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .services2-container .service-card {
        padding: 30px 20px;
    }

    .services2-container .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .services2-container .page-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .services2-container .service-card {
        padding: 25px 20px;
    }

    .services2-container .service-title {
        font-size: 1.3rem;
    }
}


/* 货物展示样式 */
.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.trust-container .trust-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-container .trust-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    max-width: 800px;
    line-height: 1.2;
}

.trust-container .view-all-btn {
    background-color: #ff6b00;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.trust-container .view-all-btn:hover {
    background-color: #e55a00;
}

.trust-container .trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-container .trust-card {
    text-align: center;
}

.trust-container .trust-image {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.trust-container .trust-image-img{
    height: 180px;
}

.trust-container .trust-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .trust-container .trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-container .trust-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-container .trust-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .trust-container {
        padding: 25px 20px;
    }

    .trust-container .trust-cards {
        grid-template-columns: 1fr;
    }

    .trust-container .trust-title {
        font-size: 1.5rem;
    }

    .trust-container .trust-image {
        height: 150px;
    }
}

/* 步骤样式 */
.step-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.step-container .title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #000;
}

.step-container .steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step-container .step {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
}


.step-container .step-number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    border-radius: 12px;
    padding: 10px 10px;
    color: white;
    width:100%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0px;
}
.step-container .step-number img {
    width:30px;
    height:30px;
    margin-left: auto;
}
.step-container .step-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .step-container .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-container .title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* 表单样式 */
.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-info, .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;
    }
}




/* 页脚样式 */
.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: 20px;
	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;
	}
	
	.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;
	}
}