/* Banner蒙版样式 */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 黑色半透明蒙版 */
    z-index: 1;
}

.banner .banner_txt,
.banner .gallery-button-container {
    position: relative;
    z-index: 2;
    /* 确保文字和按钮在蒙版上方 */
}

.gallery-button:hover {
    background-color: white;
    transform: translateY(-2px);
    color: #20B2AA;
}

.gallery-button:active {
    transform: translateY(1px);
}

.gallery-button {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #20B2AA;
    color: white;
}

.container2 {
    padding: 40px 0;
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: center;
}

.card-group {
    position: relative;
    width: 400px;
    height: 460px;
    border-radius: 12px;
    overflow: visible;
}

.card {
    box-sizing: border-box;
    position: absolute;
    padding: 20px;
    background: #f1f2f3;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-top {
    top: 0;
    height: 45%;
    z-index: 2;
}

.card-bottom {
    bottom: 0;
    height: 45%;
    z-index: 1;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.card-header i {
    font-size: 28px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.card-content {
    color: #34495e;
    font-size: 16px;
    line-height: 1.6;
    /* overflow: hidden; */
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* 卡片组1样式 */
.group-1 .card-top .card-header i {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.group-1 .card-bottom .card-header i {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* 卡片组2样式 */
.group-2 .card-top .card-header i {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.group-2 .card-bottom .card-header i {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* 卡片组3样式 */
.group-3 .card-top .card-header i {
    background: linear-gradient(135deg, #f39c12, #d35400);
}

.group-3 .card-bottom .card-header i {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

/* 悬停效果 */
.card-top.expanded {
    width: 100%;
    height: 70%;
    /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2); */
}

.card-top.collapsed {
    width: 100%;
    height: 20%;
    background: #DCE3F3;
    /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2); */
}

.card-bottom.expanded {
    width: 100%;
    height: 70%;
    /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2); */
}

.card-bottom.collapsed {
    width: 100%;
    height: 20%;
    background: #DCE3F3;
    /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2); */
}


.card-text {
    font-size: 16px;
    display: none;
}

/* 不同高度下的内容显示控制 */
.card.normal .card-text {
    display: none;
}

.card.normal .card-header,
.card.normal .card-content,
.card.normal .card-img {
    display: block;
}

.card.collapsed .card-img {
    display: block;
}

.card.collapsed .card-header,
.card.collapsed .card-content,
.card.collapsed .card-text {
    display: none;
}

.card.expanded .card-img,
.card.expanded .card-header,
.card.expanded .card-content {
    display: block;
}

.card.expanded .card-text {
    margin-top: 25px;
    display: block;
}

/* card-text-img样式 */
.card-text-img {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card-text-img:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/template/pc/skin/gongyingshang/gou.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .card-group {
        max-width: 100%;
        height: 450px;
        margin-bottom: 40px;
    }
}

.instructions {
    max-width: 800px;
    margin-top: 50px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.instructions h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    /* font-size: 1.5rem; */
}

.instructions p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.instructions p .icon {
    margin-right: 10px;
    color: #3498db;
    /* font-size: 1.2rem; */
}

.footer {
    margin-top: 50px;
    text-align: center;
    color: #7f8c8d;
    /* font-size: 0.9rem; */
}

.highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.card-img img {
    width: 13%
}

.job-img {
    width: 100%;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.job-img img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.job-img :hover {
    transform: translateY(-10px);
    transition: all 0.5s ease-in-out;
}

.job-title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    background: #76C7B8;
    width: 220px;
    border-radius: 30px;
    padding: 10px 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-title:hover {
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
    background: #8fd0c1;
    transform: translateY(-3px);
}

.job-title.active {
    background: #5ab5a4;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
}

.job-card {
    width: 20%;
    justify-items: center;
    text-align: center;
}


.job {
    margin: 40px 0;
    display: flex;
    height: 600px;
    justify-content: center;
}

.job1 {
    color: white;
    justify-items: center;
    border: 1px solid rgb(187, 187, 187);
    background: #76C7B8;
    width: 25%;
}

.job1-button {
    margin-top: 40px;
    cursor: pointer;
    text-align: center;
    padding:10px;
    border: 1.5px solid white;
    width: 45%;
    font-size: 20px;
}

.job1-top {
    box-sizing: border-box;
    height: 33.33%;
    padding: 30px 15%
}

.job1-top-title {
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0px;
}

.job1-top-text {
    margin: 20px 0px;
    font-size: 18px;
}

.job1-bottom {
    box-sizing: border-box;
    height: 66.66%;
    padding: 30px 12%
}

.job1-bottom-text {
    font-size: 17px;
    margin: 30px 0px;
    display: flex;
    align-items: center;
}

.job1-bottom-text img {
    width: 10%;
    margin-right: 15px;
}

.job2 {
    /* border: 1px solid rgb(187, 187, 187); */
    width: 25%;
}

.job2-card {
    padding: 10%;
    border: 1px solid rgb(187, 187, 187);
    height: 50%;
    box-sizing: border-box;
}

.job2-title {
    font-size: 18px;
    color: black;
}

.job2-title img {
    margin: 10px;
    width: 13%;
    border: none;
    vertical-align: middle;
}

.job2-text {
    margin: 10px;
    font-size: 17px;
}

.job3 {
    overflow: hidden;
    border: 1px solid rgb(187, 187, 187);
    width: 40%;
}

.job3 img {
    height: 100%;
    width: 134%;
}

.last-button {
    font-weight: bold;
    font-size: 18px;
    padding: 15px 15px;
    text-align: center;
    width: 120px;
    color: white;
    background: #20B2AA;
    border-radius: 30px;
    /* box-shadow: 0 6px 16px rgba(0, 112, 201, 0.4); */
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.last-button:hover {
    color: #20B2AA;
    background: white;
    box-shadow: 0 4px 12px #20b2ab81;
    transform: translateY(-3px);
    transition: all 0.5s ease-in-out;
}

.anli-left {
    position: relative;
    padding: 30px;
    border: 1px solid black;
    /* height: 100%; */
    width: 38%;
}

/* 默认隐藏所有卡片，除了第一个 */
.anli-left-card {
    display: none;
}

.anli-left-card:first-child {
    display: block;
}

.anli-right {
    background-image: url(/template/pc/skin/gongyingshang/克勒博.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    width: 62%;
    height: 100%;
    position: relative;
    transition: background-image 0.3s ease;
    /* 添加过渡效果 */
}


.anli-in {
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #353f4f7d;
    height: 100%;
    width: 25%;
    border-left: none;
    border-right: 1px solid white;
    border-bottom: 1px;
    color: white;
    justify-content: center;
    position: relative;
}


.anli-text {
    position: relative;
    top: 40px;
}

.anli-left-title {
    margin-bottom: 25px;
    color: black;
    font-size: 30px;
    font-weight: bold;
}

.anli-left-text {
    color: gray;
    font-size: 16px;
    line-height: 1.9;
    margin: 15px 0;
}

.anli-left-text h {
    font-weight: 600;
    color: black;
}

.anli-left-button {
    position: relative;
    bottom: -55px;
    text-align: end;
}

.anli-left-button a {
    color: rgba(51, 112, 255, 1);

}

.anli-left-button a:hover {
    color: rgba(51, 112, 255, 1);
}

.anli-right.kelebo,
#Advantages.sxlv,
#Advantages.xie {
    background-size: 100% 100%;
    background-image: url('/template/pc/skin/gongyingshang/克勒博.png');
}

.anli-right.cangku,
#Advantages.kelebo,
#Advantages.cangku {
    background-size: 100% 100%;
    background-image: url('/template/pc/skin/gongyingshang/仓库.png');
}

.anli-right.gou,
#Advantages.gou {
    background-size: 100% 100%;
    background-image: url('/template/pc/skin/gongyingshang/gou.png');
}

#Advantages.sxlv {
    background-size: 100% 100%;
    background-image: url('{eyou:global name="web_templets_pc" /}/skin/gongyingshang/sxlv.png');
}

#Advantages.xie {
    background-size: 100% 100%;
    background-image: url('{eyou:global name="web_templets_pc" /}/skin/gongyingshang/xie.png');
}