/* ========================================
   Win 类型软件详情页 & 落地页样式
   主题色: #609c3f
   ======================================== */

/* === Win 详情页 - 软件信息区 === */
.win-info {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: 25px;
}
.win-info .win-icon {
    flex-shrink: 0;
    width: 120px;
}
.win-info .win-icon img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    object-fit: cover;
}
.win-info .win-meta {
    flex: 1;
}
.win-info .win-meta h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.win-info .win-meta .win-version {
    display: inline-block;
    background: #f0f7eb;
    color: #609c3f;
    font-size: 13px;
    padding: 2px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.win-info .win-attrs {
    list-style: none;
    padding: 0;
    margin: 0;
}
.win-info .win-attrs li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #666;
}
.win-info .win-attrs li i {
    font-style: normal;
    color: #999;
    margin-right: 4px;
}
.win-info .win-attrs li span {
    color: #333;
}

/* === Win 详情页 - 下载按钮区 === */
.win-download {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.win-download .win-dl-info {
    font-size: 14px;
    color: #666;
}
.win-download .win-dl-info strong {
    color: #609c3f;
    font-size: 16px;
}
.win-dl-btn {
    display: inline-block;
    background: linear-gradient(135deg, #609c3f, #4a8530);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(96,156,63,0.3);
}
.win-dl-btn:hover {
    background: linear-gradient(135deg, #4a8530, #3a7020);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(96,156,63,0.4);
    color: #fff !important;
}
.win-dl-btn .dl-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: -2px;
}

/* === Win 详情页 - 截图区 === */
.win-screenshots {
    background: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.win-screenshots .win-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    padding-left: 12px;
    border-left: 4px solid #609c3f;
}
.win-screenshots .screen-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.win-screenshots .screen-list::-webkit-scrollbar {
    height: 6px;
}
.win-screenshots .screen-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}
.win-screenshots .screen-list .screen-item {
    flex-shrink: 0;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.2s;
}
.win-screenshots .screen-list .screen-item:hover {
    transform: scale(1.03);
}
.win-screenshots .screen-list .screen-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* === Win 详情页 - 内容介绍区 === */
.win-content {
    background: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.win-content .win-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    padding-left: 12px;
    border-left: 4px solid #609c3f;
}
.win-content .entry {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.win-content .entry img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}
.win-content .entry p {
    margin-bottom: 12px;
}

/* === Win 详情页 - 安装说明区 === */
.win-install {
    background: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.win-install .win-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    padding-left: 12px;
    border-left: 4px solid #609c3f;
}
.win-install .install-steps {
    list-style: none;
    padding: 0;
    counter-reset: step;
}
.win-install .install-steps li {
    position: relative;
    padding: 12px 0 12px 45px;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.win-install .install-steps li:last-child {
    border-bottom: none;
}
.win-install .install-steps li:before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    background: #f0f7eb;
    color: #609c3f;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
    font-size: 14px;
}

/* === Win 详情页 - 相关软件 === */
.win-related {
    background: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.win-related .win-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    padding-left: 12px;
    border-left: 4px solid #609c3f;
}
.win-related ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.win-related ul li {
    width: calc(20% - 12px);
    text-align: center;
}
.win-related ul li figure {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    border-radius: 14px;
    overflow: hidden;
}
.win-related ul li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.win-related ul li p {
    font-size: 13px;
    color: #555;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.win-related ul li p a:hover {
    color: #609c3f;
}

/* ========================================
   落地页样式（极简推广风格）
   ======================================== */
.lp-page {
    min-height: 100vh;
    background: #f5f7fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Microsoft Yahei', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    position: relative;
}
.lp-page:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent;
    z-index: 0;
}
.lp-page > * { position: relative; z-index: 1; }

/* === 顶部导航 === */
.lp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 18px 50px;
    box-sizing: border-box;
}
.lp-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}
.lp-logo:hover { opacity: 0.85; }
.lp-search form {
    display: flex;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}
.lp-search-input {
    border: none;
    outline: none;
    padding: 8px 16px;
    font-size: 13px;
    width: 200px;
    background: transparent;
}
.lp-search-btn {
    border: none;
    background: #609c3f;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
}

/* === 主体内容区（左对齐） === */
.lp-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 50px 0;
    box-sizing: border-box;
}

/* === 内容居中区 === */
.lp-center {
    text-align: left;
    max-width: 1600px;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
}
.lp-promo-text {
    margin-bottom: 40px;
}
.lp-promo-text h1 {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 34px;
}
.lp-promo-text p {
    font-size: 40px;
    color: #fff;
    line-height: 1.7;
}

/* === 下载按钮 === */
.lp-download {
    margin-bottom: 50px;
}
.lp-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #609c3f 0%, #4a8530 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 20px 47px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgb(96 156 63 / 35%);
    letter-spacing: 2px;
}
.lp-dl-btn:hover {
    background: linear-gradient(135deg, #4a8530 0%, #3a7020 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(96,156,63,0.45);
    color: #fff;
}
.lp-dl-btn svg {
    flex-shrink: 0;
}

/* === 底部标签 === */
.lp-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.lp-badges span {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 4px;
}
.lp-stars {
    display: inline-flex;
    gap: 2px;
}
.lp-stars i {
    color: #f5a623;
    font-size: 18px;
    font-style: normal;
}

/* === 广告语 === */
.lp-slogan {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.9);
    font-size: 28px;
    letter-spacing: 2px;
}
.lp-slogan:after {
    content: '';
    display: inline-block;
    width: 180px;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.6), transparent);
}

/* === 系统提示 === */
.lp-sysinfo {
    text-align: center;
    padding: 24px 20px 0;
}
.lp-sysinfo p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* === 底部版权 === */
.lp-footer {
    text-align: center;
    padding: 24px 0;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}
.lp-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.lp-footer a:hover {
    color: #fff;
}

/* === 响应式适配 === */
@media (max-width: 1024px) {
    .inner { width: 100%; padding: 0 15px; box-sizing: border-box; }
    .lp-promo-text h1 { font-size: 36px; }
    .win-related ul li { width: calc(25% - 12px); }
}
@media (max-width: 768px) {
    .win-info { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
    .win-info .win-attrs li { display: block; margin-right: 0; }
    .win-download { flex-direction: column; gap: 15px; text-align: center; }
    .win-screenshots .screen-list .screen-item { width: 160px; }
    .win-screenshots .screen-list .screen-item img { height: 250px; }
    .lp-header { flex-direction: column; gap: 12px; }
    .lp-search-input { width: 160px; }
    .lp-promo-text h1 { font-size: 30px; }
    .lp-promo-text p { font-size: 17px; }
    .lp-dl-btn { font-size: 17px; padding: 14px 36px; }
    .win-related ul li { width: calc(33.33% - 10px); }
}
