/* 产品展示横幅区域 */
.showcase-banner-section {position: relative;height: 385px;}

/* 顶部广告悬浮层 */
.showcase-ad-bar {position: absolute;top: 0;left: 0;right: 0;height: 45px;background-color: rgba(0, 0, 0, 0.2);backdrop-filter: blur(5px);display: flex;align-items: center;justify-content: center;font-size: 13px;font-weight: bold;color: #fff;z-index: 10;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.showcase-ad-bar a {display: block;text-align: center;color: #fff;text-decoration: none;transition: opacity 0.3s ease;}
.showcase-ad-bar a:hover {opacity: 0.8;}

/* 主要内容区域 */
.showcase-content-wrapper {height: 100%;display: flex;align-items: center;}
.showcase-content {position: relative;display: flex;align-items: center;height: 100%;}

/* 左侧悬浮图片 */
.showcase-mascot-image {position: absolute;top: 53%;transform: translateY(-50%);z-index: 15;}
.showcase-mascot-image img {width: auto;height: 300px;display: block;}

/* 右侧内容区域 */
.showcase-text-content {margin-left: 380px;color: #fff;flex: 1;display: flex;flex-direction: column;justify-content: center;align-items: flex-start;height: 100%;}

/* 标题样式 */
.showcase-main-title {font-size: 35px;line-height: 1.3;margin: 0 0 15px 0;text-align: left;font-family: Verdana, sans-serif;color: #fff;font-weight: 600;}

/* 描述文字样式 */
.showcase-description {font-size: 18px;line-height: 1.6;font-weight: 400;text-align: left;color: #ececec;}
.showcase-sub-span{display: block;font-size: 18px;opacity: 0.9;font-weight: 400;margin-bottom: 5px;}
/* .showcase-sub-span:last-child{margin-bottom: 15px;} */

/* 按钮样式 */
.showcase-cta-button {display: inline-block;height: 45px;padding: 0 20px;font-size: 14px;font-weight: bold;background-color: #ff3500;color: #fff;border: 0;border-radius: 25px;cursor: pointer;transition: all 0.3s ease;text-transform: uppercase;width: auto;line-height: 45px;margin-top: 25px;}
.showcase-cta-button:hover {background-color: #e62e00;color: #fff;}

/* 响应式设计 */
@media (max-width: 768px) {
    .showcase-banner-section {height: auto;min-height: auto;background: #009090;padding-bottom: 20px;}
    .showcase-content-wrapper {height: 100%;}
    .showcase-mascot-image {position: static;text-align: center;margin-bottom: 10px;transform: none;filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));}
    .showcase-mascot-image img {width: 130px;margin: 10px auto 0;height: auto !important;}
    .showcase-text-content {margin-left: 0;text-align: left;justify-content: center;align-items: flex-start;}
    .showcase-main-title {font-size: 28px;margin-bottom: 0;}
    .showcase-description {font-size: 14px;margin: 10px 0 0;}
    .showcase-sub-span{font-size: 14px;}
    .showcase-cta-button {display: inline-block;height: 35px;padding: 0 15px;font-size: 12px;width: auto;margin: 20px 0 0;line-height: 35px;}
    .showcase-content{display: block;}
    .showcase-main-title {font-size: 24px;}

    .showcase-ad-bar{position: static;height: 35px;font-size: 12px;}
}