/* TQK页面增强样式 */

/* 主容器样式 */
.pageBox {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    min-height: 100vh;
}

.wal2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 优势介绍区域样式 */
.guide {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.leftDiv {
    flex: 1;
    padding-right: 20px;
}

.leftDiv .name {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.leftDiv .name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.leftDiv .content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.ewmDiv {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    gap: 20px;
}

.ewmDiv:hover {
    transform: translateY(-5px);
}

.ewm {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ewm img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.ewm-text {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.ewmDiv p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* 右侧图片区域样式 */
.rightDiv {
    flex: 1;
    padding-left: 20px;
}

.imagePic {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.imagePic:hover {
    transform: scale(1.02);
}

.imgContainer {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.imgContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.imgContainer:hover img {
    transform: scale(1.05);
}

/* 链接卡片区域样式 */
.addPic {
    margin-top: 40px;
}

.linkContainer {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.linkWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.linkCard {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.linkCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.linkItem {
    display: flex;
    align-items: center;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    gap: 20px;
}

.linkIcon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.linkCard:hover .linkIcon {
    transform: rotate(5deg) scale(1.1);
}

.taobao-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.jd-icon {
    background: linear-gradient(135deg, #e60012 0%, #ff4757 100%);
}

.pdd-icon {
    background: linear-gradient(135deg, #e7161a 0%, #ff6b6b 100%);
}

.linkIcon svg {
    width: 30px;
    height: 30px;
}

.linkContent {
    flex: 1;
}

.linkContent h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.linkCard:hover .linkContent h3 {
    color: #667eea;
}

.linkContent p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.linkArrow {
    font-size: 24px;
    color: #bdc3c7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.linkCard:hover .linkArrow {
    color: #667eea;
    transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .guide {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .leftDiv, .rightDiv {
        padding: 0;
    }

    .leftDiv .name {
        font-size: 28px;
        text-align: center;
    }

    .linkWrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .linkItem {
        padding: 20px;
        gap: 15px;
    }

    .linkIcon {
        width: 50px;
        height: 50px;
    }

    .linkIcon svg {
        width: 25px;
        height: 25px;
    }

    .linkContent h3 {
        font-size: 16px;
    }

    .linkContent p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wal2 {
        padding: 0 15px;
    }

    .guide {
        padding: 20px 15px;
    }

    .linkContainer {
        padding: 25px 15px;
    }

    .leftDiv .name {
        font-size: 24px;
    }

    .leftDiv .content {
        font-size: 15px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide, .addPic {
    animation: fadeInUp 0.8s ease-out;
}

/* 清除浮动 */
.clear_f::after {
    content: '';
    display: table;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}
