/*主题模板样式*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #0a0a1a;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 导航栏样式 */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 26, 0.8);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b36bff;
}

.login-btn {
    background-color: transparent;
    border: 1px solid #b36bff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.login-btn:hover {
    background-color: #b36bff;
    color: #fff;
}

/* 主区域样式 */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b3b3cc;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, #b36bff, #ff61b3);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #b36bff;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 107, 255, 0.3);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    z-index: 1;
}

.hero-stats {
    display: flex;
    margin-top: 50px;
}

.stat-item {
    margin-right: 50px;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #b36bff;
}

.stat-text {
    font-size: 14px;
    color: #b3b3cc;
}

/* 渠道分类部分 */
.channels {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
}

.section-subtitle {
    color: #b3b3cc;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.channel-cards {
    display: flex;
    justify-content: space-between;
}

.channel-card {
    background-color: rgba(30, 30, 60, 0.5);
    border-radius: 8px;
    padding: 30px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    transform: translateY(-10px);
}

.channel-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
}

.channel-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon img {
    max-width: 100%;
}

.channel-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.channel-desc {
    font-size: 14px;
    color: #b3b3cc;
    line-height: 1.6;
}

/* 解决方案部分 */
.solutions {
    padding: 100px 0;
    text-align: center;
}

.solution-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(30, 30, 60, 0.5);
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-circle:before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid #b36bff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.solution-text {
    font-size: 18px;
    color: #fff;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.solution-card {
    background-color: rgba(30, 30, 60, 0.5);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(179, 107, 255, 0.2);
}

.solution-card-icon {
    color: #ff6b6b;
    font-size: 40px;
    margin-bottom: 20px;
}

.solution-card-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.solution-card-desc {
    font-size: 14px;
    color: #b3b3cc;
    line-height: 1.6;
}

/* 案例展示部分 */
.cases {
    padding: 100px 0;
    text-align: center;
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.case-gallery::-webkit-scrollbar {
    display: none;
}

.case-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.case-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.case-info {
    padding: 15px;
    background-color: rgba(30, 30, 60, 0.9);
    text-align: left;
}

.case-category {
    font-size: 12px;
    color: #b36bff;
    margin-bottom: 5px;
}

.case-views {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

/* 霓虹灯效果 */
.neon-effect {
    text-shadow: 0 0 5px #b36bff, 0 0 10px #b36bff, 0 0 20px #b36bff;
}

.glow {
    box-shadow: 0 0 10px #b36bff, 0 0 20px #b36bff;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .channel-cards {
        flex-direction: column;
        align-items: center;
    }

    .channel-card {
        width: 80%;
        margin-bottom: 30px;
    }

    .solution-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }
}

/* 页面标题 */
.page-title {
    padding: 150px 0 50px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
}

.section-subtitle {
    color: #b3b3cc;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 16px;
}

/* 列表项样式 */
.list-container {
    padding: 0 0 80px;
}

.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.list-item:nth-child(even) {
    flex-direction: row-reverse;
}

.list-item:nth-child(even) .list-content {
    margin-left: 0;
    margin-right: 50px;
    text-align: right;
}

.list-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s;
}

.list-item:hover .list-image {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(179, 107, 255, 0.5);
}

.list-content {
    margin-left: 50px;
    flex: 1;
}

.list-tag {
    display: inline-block;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.list-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.list-desc {
    font-size: 16px;
    color: #b3b3cc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.list-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    background-color: transparent;
    border: 1px solid #b36bff;
    color: #fff;
}

.list-btn:hover {
    background-color: #b36bff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 107, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .list-item, .list-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .list-content, .list-item:nth-child(even) .list-content {
        margin: 30px 0 0;
        text-align: center;
    }

    .case-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .case-gallery {
        grid-template-columns: 1fr;
    }
}


/* 详情页样式 */
.detail-container {
    padding: 0 0 80px;
}

.detail-card {
    background-color: rgba(30, 30, 60, 0.5);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.detail-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.detail-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.detail-meta-item {
    margin-right: 20px;
    font-size: 14px;
    color: #b3b3cc;
    display: flex;
    align-items: center;
}

.detail-meta-item i {
    margin-right: 5px;
    color: #b36bff;
}

.detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.detail-content {
    margin-bottom: 30px;
    line-height: 1.8;
}

.detail-content p {
    margin-bottom: 20px;
    color: #e6e6e6;
}

.detail-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #fff;
}

.detail-content img{
    max-width: 100%;
    height: auto;
}

.detail-features {
    margin: 30px 0;
}

.feature-list {
    list-style: none;
}

.feature-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(179, 107, 255, 0.2);
    display: flex;
    align-items: flex-start;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(179, 107, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.feature-desc {
    font-size: 14px;
    color: #b3b3cc;
    line-height: 1.6;
}

.contact-info {
    background-color: rgba(20, 20, 40, 0.5);
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
}

.contact-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.contact-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
}

.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(179, 107, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 16px;
    color: #e6e6e6;
}

.action-buttons {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(90deg, #b36bff, #ff61b3);
    border: none;
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 107, 255, 0.3);
}

.secondary-btn {
    background-color: transparent;
    border: 1px solid #b36bff;
    color: #fff;
}

.secondary-btn:hover {
    background-color: rgba(179, 107, 255, 0.1);
    transform: translateY(-3px);
}

.btn-icon {
    margin-right: 8px;
}

/* 相关推荐 */
.related-section {
    margin-top: 60px;
}

.related-title {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.related-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background-color: rgba(30, 30, 60, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.related-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.related-card-desc {
    font-size: 14px;
    color: #b3b3cc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.related-link {
    color: #b36bff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.related-link:hover {
    text-decoration: underline;
}

.related-link-icon {
    margin-left: 5px;
}

/* 霓虹灯效果 */
.neon-effect {
    text-shadow: 0 0 5px #b36bff, 0 0 10px #b36bff, 0 0 20px #b36bff;
}

.glow {
    box-shadow: 0 0 10px #b36bff, 0 0 20px #b36bff;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .detail-card {
        padding: 30px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .detail-card {
        padding: 20px;
    }

    .detail-image {
        height: 300px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* 登录表单样式 */
.login-container {
    padding: 0 0 80px;
}

.login-card {
    background-color: rgba(30, 30, 60, 0.5);
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #fff;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(20, 20, 40, 0.5);
    border: 1px solid rgba(179, 107, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #b36bff;
    box-shadow: 0 0 10px rgba(179, 107, 255, 0.3);
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input {
    margin-right: 10px;
}

.form-checkbox label {
    font-size: 14px;
    color: #b3b3cc;
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-links a {
    color: #b36bff;
    text-decoration: none;
    transition: all 0.3s;
}

.form-links a:hover {
    text-decoration: underline;
    color: #ff61b3;
}

.login-submit {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #b36bff, #ff61b3);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.login-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 107, 255, 0.3);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #b3b3cc;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: rgba(179, 107, 255, 0.3);
}

.login-divider span {
    padding: 0 15px;
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(20, 20, 40, 0.5);
    border: 1px solid rgba(179, 107, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: rgba(179, 107, 255, 0.2);
    transform: translateY(-3px);
}

/* 霓虹灯效果 */
.neon-effect {
    text-shadow: 0 0 5px #b36bff, 0 0 10px #b36bff, 0 0 20px #b36bff;
}

.glow {
    box-shadow: 0 0 10px #b36bff, 0 0 20px #b36bff;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .login-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .login-card {
        padding: 20px;
    }
}