/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.auto {
    width: 100%;
}

.fix::after {
    content: "";
    display: table;
    clear: both;
}

.fl {
    float: left;
}

/* 顶栏导航 */
.topbar {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
}

.topbar p {
    margin: 0;
}

.topbar a {
    color: #4285e3;
    text-decoration: none;
}

.topbar a:hover {
    color: #57c2ff;
}

/* Logo头部 */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.header .wrap {
    display: flex;
    align-items: center;
}

.x-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.x-logo::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285e3 0%, #57c2ff 100%);
    border-radius: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.l-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    white-space: nowrap;
}

.l-link .logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #4285e3;
    line-height: 1.2;
}

.l-link .logo-subtitle {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.l-link .logo-domain {
    font-size: 11px;
    color: #bbb;
    margin-top: 2px;
}

.l-link:hover .logo-text {
    color: #57c2ff;
}

.x-search {
    flex: 1;
    max-width: 600px;
    margin-left: 40px;
}

.s-wrapper {
    display: flex;
    margin-bottom: 8px;
}

.s-input {
    flex: 1;
    height: 36px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.s-input:focus {
    border-color: #4285e3;
}

.s-btn {
    display: inline-block;
    height: 36px;
    padding: 0 20px;
    background-color: #4285e3;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    line-height: 36px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.s-btn:hover {
    background-color: #57c2ff;
}

.s-keyword {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.k-item {
    color: #666;
    text-decoration: none;
    margin-right: 15px;
}

.k-item:hover {
    color: #4285e3;
}

/* 头部导航 */
.navbar {
    background: linear-gradient(135deg, #4285e3 0%, #57c2ff 100%);
    padding: 0;
    box-shadow: 0 2px 12px rgba(66, 133, 227, 0.25);
    position: relative;
}

.navbar .wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.n-item {
    display: inline-block;
    padding: 18px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    border-radius: 4px;
    margin: 0 2px;
}

.n-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fff;
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.n-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.n-item:hover::before {
    width: 60%;
}


/* 顶部内容 */
.content {
    background-color: #f7f8fa;
    padding: 20px 0 35px 0;
}

.content .wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.content .soft-top {
    display: block;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.soft-top .s-title {
    padding: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 24px 0px rgba(209, 204, 255, 0.12);
    box-shadow: 0px 4px 24px 0px rgba(209, 204, 255, 0.12);
}

.soft-top .s-title .s-site {
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.soft-top .s-title .s-site .icon-crumbs {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
    background: url(../images/icon-crumbs.png) no-repeat center;
    background-size: contain;
}

.soft-top .s-title .s-site span {
    display: inline;
    vertical-align: middle;
    color: #999;
}

.soft-top .s-title .s-site a {
    color: #4285e3;
    text-decoration: none;
    margin: 0 3px;
}

.soft-top .s-title .s-site a:hover {
    color: #57c2ff;
    text-decoration: underline;
}

/* 软件简介 */
.m-sw-center {
    display: block;
    position: relative;
    width: 100%;
}

.m-sw-center .sw-info {
    width: 100%;
    height: 72px;
    line-height: 72px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.m-sw-center .sw-info::after {
    content: "";
    display: table;
    clear: both;
}

.m-sw-center .sw-info .img {
    display: inline-block;
    float: left;
    width: 48px;
    height: 48px;
    margin: 14px 8px 0 0;
}

.m-sw-center .sw-info .sw-title {
    float: left;
    max-width: calc(100% - 200px);
    height: 72px;
    line-height: 72px;
    overflow: hidden;
}

.m-sw-center .sw-info .cname {
    float: left;
    max-width: 612px;
    height: 72px;
    overflow: hidden;
    font-size: 24px;
    line-height: 72px;
    font-weight: normal;
    color: #333;
    margin: 0;
}

.m-sw-center .sw-info .safe {
    display: inline-block;
    width: 90px;
    height: 28px;
    margin-left: 24px;
}

.m-sw-center .sw-param {
    position: relative;
    width: 100%;
    min-height: 284px;
    overflow: visible;
    margin-top: 15px;
}

.m-sw-center .sw-param::after {
    content: "";
    display: table;
    clear: both;
}

.m-sw-center .sw-param .param-content {
    display: inline-block;
    width: calc(100% - 372px);
    min-width: 500px;
}

.m-sw-center .sw-param .param-content ul {
    white-space: normal;
    font-size: 14px;
}

.m-sw-center .sw-param .param-content .btn-group {
    display: inline-block;
    white-space: nowrap;
    font-size: 0;
    margin-top: 18px;
    vertical-align: top;
}

.m-sw-center .sw-param .param-content .btn-group .u-btn,
.m-sw-center .sw-param .param-content .btn-group .safe-btn {
    display: inline-block !important;
    white-space: nowrap;
    vertical-align: top;
    font-size: 23px;
}

.m-sw-center .sw-param .param-content ul {
    padding: 15px 0 0 0;
    list-style: none;
    margin: 0;
}

.m-sw-center .sw-param .param-content ul li {
    float: left;
    width: 235px;
    height: 24px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #999;
    list-style: none;
}

.m-sw-center .sw-param .param-content ul li span {
    display: inline-block;
    width: 138px;
    color: #444;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.m-sw-center .sw-param .param-content ul li .star-bar {
    width: 85px;
    height: 16px;
    font-size: 0;
    background: url(../images/icon-star.png) repeat-x 0 0;
}

.m-sw-center .sw-param .param-content ul li .star-bar .star {
    display: inline-block;
    height: 15px;
    background: url(../images/icon-star.png) repeat-x 0 -16px;
}

.param-content .btn-group .u-btn {
    display: inline-block !important;
    position: relative;
    font-size: 23px;
    line-height: 74px;
    text-align: center;
    color: #fff;
    margin-top: 0;
    margin-right: 20px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    vertical-align: top;
    float: none;
}

.param-content .btn-group .u-btn:hover {
    opacity: .9;
}

.param-content .btn-group .u-btn .lj-btn {
    display: inline-block;
    width: 210px;
    height: 74px;
    background-color: #ff9543;
    border-radius: 12px;
    line-height: 74px;
    transition: all 0.3s;
}

.param-content .btn-group .u-btn:hover .lj-btn {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 149, 67, 0.3);
}

.param-content .btn-group .safe-btn {
    display: inline-block !important;
    position: relative;
    width: 210px;
    min-height: 74px;
    height: auto;
    padding: 12px 10px;
    background-color: #1EC456;
    border-radius: 12px;
    margin-top: 0;
    margin-left: 20px;
    vertical-align: top;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    white-space: normal;
    float: none;
    font-size: 18px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.param-content .btn-group .safe-btn b {
    position: relative;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
    display: block;
    width: 100%;
    font-weight: normal;
}

.param-content .btn-group .safe-btn:hover {
    background-color: #1ab345;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 196, 86, 0.3);
}

.m-sw-center .sw-param .sw-param-right {
    float: right;
    width: 352px;
    margin-top: 12px;
    margin-left: 20px;
    display: block;
}

.m-sw-center .sw-param .relevant-sw {
    width: 352px;
    min-height: 228px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #f7f8fa;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.m-sw-center .sw-param .relevant-sw .title {
    height: 40px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 40px;
    font-weight: bold;
    color: #323232;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
}

.m-sw-center .sw-param .relevant-sw .title .icon-title {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: linear-gradient(135deg, #4285e3 0%, #57c2ff 100%);
    border-radius: 4px;
    position: relative;
}

.m-sw-center .sw-param .relevant-sw .title .icon-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}

.m-sw-center .sw-param .relevant-sw ul {
    height: auto;
    overflow: hidden;
}

.m-sw-center .sw-param .relevant-sw li {
    display: block;
    position: relative;
    width: 100%;
    min-height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    padding: 5px 0;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.m-sw-center .sw-param .relevant-sw li:hover {
    background-color: #fff;
}

.m-sw-center .sw-param .relevant-sw li img {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.m-sw-center .sw-param .relevant-sw li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.m-sw-center .sw-param .relevant-sw li p {
    height: auto;
    line-height: 1.5;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    margin: 0;
    flex: 1;
}

.m-sw-center .sw-param .relevant-sw li:hover p {
    color: #333;
}

.g-activity {
    display: inline-block;
    float: right;
    width: 260px;
    margin-top: 86px;
    margin-right: 15px;
}

.g-activity .act-img img {
    width: 260px;
    height: auto;
}

.g-activity .act-pic img {
    width: 260px;
    height: auto;
    padding: 10px 0;
}

/* 主要内容 */
.content .soft-main {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

.soft-main .soft-left {
    position: relative;
    flex: 2.1;
    min-width: 0;
    min-height: 1330px;
    flex-shrink: 0;
}

.soft-main .soft-right {
    flex: 0.9;
    margin-top: 0;
    position: relative;
    flex-shrink: 0;
    min-width: 0;
}

.box {
    margin-bottom: 16px;
    padding: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 4px 24px 0px rgba(209, 204, 255, 0.12);
    box-shadow: 0px 4px 24px 0px rgba(209, 204, 255, 0.12);
    background: #fff;
}

.box>.title {
    position: relative;
    height: 52px;
    font-size: 24px;
    line-height: 52px;
    font-weight: bold;
    color: #323232;
    border-bottom: 1px solid #ebedf0;
}

.box>.title::before {
    content: ".";
    display: inline-block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 152px;
    height: 2px;
    font-size: 0;
    background: -webkit-linear-gradient(179deg, #4285e3 0%, #57c2ff);
    background: linear-gradient(271deg, #4285e3 0%, #57c2ff);
}

.box>.title>.icon-title {
    display: inline-block;
    width: 26px;
    height: 26px;
    vertical-align: text-bottom;
    background: url(../images/icon-down3.png) no-repeat center;
}

.soft-left .con-nav {
    position: relative;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.soft-left .con-nav .u-tab {
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 20px;
    color: #969799;
    border-bottom: 1px solid #ebedf0;
}

.soft-left .con-nav .u-tab .item {
    display: inline-block;
    width: 105px;
    text-align: center;
}

.soft-left .con-nav .u-tab .item.z-cur {
    color: #40a9ff;
    border-bottom: 2px solid #40a9ff;
}

.soft-left .con-nav .tags {
    margin-top: 10px;
    font-size: 14px;
    line-height: 26px;
}

.soft-left .con-nav .tags b {
    display: inline-block;
    margin-right: 5px;
    text-indent: 20px;
    background: url(../images/icon-tj.png) no-repeat left center;
}

.soft-left .con-nav .tags a {
    margin-right: 10px;
    text-decoration: underline;
    color: #40a9ff;
}

/* 基本简介 */
.soft-left .soft-info {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.soft-left .soft-info .img-txt-box {
    min-height: 205px;
    overflow: hidden;
    font-size: 14px;
    line-height: 30px;
}

.soft-left .soft-info .img-txt-box a {
    text-decoration: underline;
    color: #40a9ff;
}

/* 下载地址 - 使用和"大家正在用"一样的卡片式布局 */
.soft-left .download-box {
    width: 100%;
    max-width: 100%;
    padding: 20px !important;
    margin: 0 0 16px 0;
    box-sizing: border-box;
    box-shadow: 0px 4px 24px 0px rgba(209, 204, 255, 0.12);
    background: #fff;
    border-radius: 12px;
}

.soft-left .download-box .recommend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebedf0;
}

.soft-left .download-box .recommend-title {
    font-size: 24px;
    font-weight: bold;
    color: #323232;
    margin: 0;
    line-height: 1;
}

.soft-left .download-box .more-link {
    font-size: 14px;
    color: #4285e3;
    text-decoration: none;
    transition: color 0.3s;
}

.soft-left .download-box .more-link:hover {
    color: #357abd;
}

.soft-left .download-box .recommend-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 大家正在用 - 推荐区域 */
.soft-left .recommend-box {
    width: 100%;
    max-width: 100%;
    padding: 20px !important;
    margin: 0 0 16px 0;
    box-sizing: border-box;
    box-shadow: 0px 4px 24px 0px rgba(209, 204, 255, 0.12);
    background: #fff;
    border-radius: 12px;
}

.soft-left .recommend-box .recommend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebedf0;
}

.soft-left .recommend-box .recommend-title {
    font-size: 24px;
    font-weight: bold;
    color: #323232;
    margin: 0;
    line-height: 1;
}

.soft-left .recommend-box .more-link {
    font-size: 14px;
    color: #4285e3;
    text-decoration: none;
    transition: color 0.3s;
}

.soft-left .recommend-box .more-link:hover {
    color: #357abd;
}

.soft-left .recommend-box .recommend-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    padding: 0;
}

.soft-left .recommend-box .recommend-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 下载地址和推荐区域的通用样式 */
.soft-left .download-box .recommend-item,
.soft-left .recommend-box .recommend-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.soft-left .download-box .recommend-item:hover,
.soft-left .recommend-box .recommend-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-color: #4285e3;
}

.soft-left .download-box .recommend-item .tag-64,
.soft-left .recommend-box .recommend-item .tag-64 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 0 8px 0;
    z-index: 1;
}

.soft-left .download-box .recommend-item .item-content,
.soft-left .recommend-box .recommend-item .item-content {
    flex: 1;
    margin-left: 0;
    padding-top: 8px;
}

.soft-left .download-box .recommend-item .item-title,
.soft-left .recommend-box .recommend-item .item-title {
    font-size: 16px;
    font-weight: 600;
    color: #323232;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.soft-left .download-box .recommend-item .item-info,
.soft-left .recommend-box .recommend-item .item-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.soft-left .download-box .recommend-item .item-info span,
.soft-left .recommend-box .recommend-item .item-info span {
    line-height: 1.5;
}

.soft-left .download-box .recommend-item .item-info .update-date,
.soft-left .recommend-box .recommend-item .item-info .update-date {
    color: #ff6b35;
    font-weight: 500;
}

.soft-left .download-box .recommend-item .item-desc,
.soft-left .recommend-box .recommend-item .item-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin: 12px 0 0 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.soft-left .download-box .recommend-item .item-actions,
.soft-left .recommend-box .recommend-item .item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
    flex-shrink: 0;
}

.soft-left .download-box .recommend-item .action-btn,
.soft-left .recommend-box .recommend-item .action-btn {
    display: block;
    padding: 8px 20px;
    background: #fff;
    color: #666;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
    box-sizing: border-box;
}

.soft-left .download-box .recommend-item .action-btn:hover,
.soft-left .recommend-box .recommend-item .action-btn:hover {
    background: #4285e3;
    color: #fff;
    border-color: #4285e3;
}

/* 右侧分类 - 已在上面定义 */

.soft-main .soft-right .m-right-item {
    display: inline-block;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0px 4px 24px 0px rgb(209 204 255 / 12%);
}

.soft-main .soft-right .m-right-item:first-child {
    margin-top: 0;
}

.soft-right h1 {
    position: relative;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #ebedf0;
}

.soft-right h1::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 115px;
    height: 2px;
    font-size: 0;
    background: linear-gradient(272deg, #4285e3 0%, #57c2ff);
}

.soft-right h1 i {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: text-top;
}

/* 更多分类 */
.soft-right .m-classify h1 i {
    background: url(../images/icon-kind.png) no-repeat center;
}

.soft-right .m-classify ul li {
    display: inline-block;
    float: left;
    width: 25%;
    font-size: 14px;
}

.soft-right .m-classify ul li a {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.soft-right .m-classify ul li a:hover {
    color: #333;
    background-color: #f7f8fa;
}

/* 本周最热最新软件 */
.week-newlist {
    padding-bottom: 1px !important;
}

.week-newlist h2 {
    font-size: 0;
}

.week-newlist .w-tab.z-cur {
    color: #4182E1;
    border-bottom: 2px solid #4182E1;
}

.week-newlist .w-tab {
    display: inline-block;
    width: 50%;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    border-bottom: 2px solid #ebedf0;
}

.m-rank-list {
    margin-top: 20px;
}

.m-rank-list .item {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.m-rank-list .item .num,
.m-rank-list .item .img-box,
.m-rank-list .item .info {
    display: inline-block;
    vertical-align: middle;
}

.m-rank-list .item .num {
    width: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #646566;
}

.m-rank-list .item:nth-of-type(1) .num {
    color: #f82e04;
}

.m-rank-list .item:nth-of-type(2) .num {
    color: #f65b0d;
}

.m-rank-list .item:nth-of-type(3) .num {
    color: #fa8e17;
}

.m-rank-list .item .img-box {
    display: none;
    width: 73px;
    height: 73px;
    margin: 0 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
}

.m-rank-list .item .img-box img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    border-radius: 8px;
    -webkit-border-radius: 8px;
}

.m-rank-list .item.z-cur .img-box {
    display: inline-block;
}

.m-rank-list .item .img-box img {
    box-shadow: 0px 4px 24px 0px rgba(209, 204, 255, 0.12);
}

.m-rank-list .item .info {
    width: 85%;
}

.m-rank-list .item.z-cur .info {
    width: 124px;
}

.m-rank-list .item .info a {
    display: block;
    text-align: left;
    color: #333;
    text-decoration: none;
}

.m-rank-list .item .info a:hover .w-text {
    color: #333;
}

.m-rank-list .item .info .w-text {
    width: 100%;
    height: 22px;
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    color: #333;
    text-decoration: none;
}

.m-rank-list .star-bar {
    display: inline-block;
    width: 85px;
    height: 15px;
    overflow: hidden;
    font-size: 0;
    background: url(../images/icon-star.png) repeat-x 0 0;
}

.m-rank-list .star-bar .star {
    display: inline-block;
    height: 15px;
    background: url(../images/icon-star.png) repeat-x 0 -16px;
}

.m-rank-list .item .info .star-bar {
    display: none;
    margin: 2px 0 4px;
}

.m-rank-list .item .info .u-btn-down {
    display: none;
    width: 60px;
    height: 24px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #40a9ff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    border: 1px solid #40a9ff;
}

.m-rank-list .item.z-cur .num {
    font-size: 30px;
    -webkit-transition: all .3s;
}

.m-rank-list .item:nth-of-type(10).z-cur .num {
    width: 35px;
}

.m-rank-list .item.z-cur .info .w-text {
    width: 100%;
    height: 22px;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    color: #333;
    -webkit-transition: all .3s;
    overflow: hidden;
    word-break: break-all;
}

.m-rank-list .item.z-cur .info .kind,
.m-rank-list .item.z-cur .info .star-bar,
.m-rank-list .item.z-cur .info .u-btn-down {
    display: block;
}

.show {
    display: block;
}

.hide {
    display: none;
}

/* 最近更新 */
.soft-right .lately-new h1 i {
    background: url(../images/icon-rhot.png) no-repeat center;
}

.soft-right .lately-new ul li {
    display: inline-block;
    width: 25%;
    height: auto;
    margin-top: 25px;
    float: left;
}

.soft-right .lately-new ul li .new-img {
    display: block;
    margin: 0 auto;
    width: 59px;
    height: 59px;
}

.soft-right .lately-new ul li .new-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.soft-right .lately-new ul li:hover .new-img img {
    box-shadow: 0px 10px 21px 0px rgb(0 0 70 / 29%);
}

.soft-right .lately-new ul li .new-text {
    display: block;
    height: 22px;
    line-height: 22px;
    margin-top: 12px;
    padding: 0 6px;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    color: #333;
    text-decoration: none;
}

.soft-right .lately-new ul li:hover .new-text {
    color: #333;
}

/* 底部页尾 */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-link {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-link a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-link a:hover {
    color: #4285e3;
}

.footer p {
    text-align: center;
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.8;
    margin: 8px 0;
}

.footer p:first-of-type {
    color: #bdc3c7;
    font-size: 13px;
}

/* 移动端样式 - 等比例缩放 */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    .navbar .wrap {
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .navbar .wrap::-webkit-scrollbar {
        display: none;
    }
    
    .n-item {
        padding: 14px 20px;
        font-size: 14px;
        margin: 0 1px;
        flex-shrink: 0;
    }
    
    .n-item::before {
        display: none;
    }
    
    .m-sw-center .sw-param .param-content .btn-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
        width: 100%;
    }
    
    .m-sw-center .sw-param .param-content .btn-group .u-btn,
    .m-sw-center .sw-param .param-content .btn-group .safe-btn {
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .param-content .btn-group .u-btn .lj-btn {
        width: 100% !important;
    }
    
    .param-content .btn-group .safe-btn {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    .m-sw-center .sw-param .sw-param-right {
        float: none !important;
        width: 100% !important;
        margin: 20px 0 0 0 !important;
    }
    
    .m-sw-center .sw-param .relevant-sw {
        width: 100% !important;
    }
    
    .soft-left .download-box .down-list .download-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .soft-left .download-box .safe-down {
        flex: 1;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid #ebedf0;
    }
    
    .soft-left .download-box .normal-down {
        flex: 1;
        padding-left: 0;
        padding-top: 0;
    }
    
    .soft-left .download-box .safe-down .con {
        grid-template-columns: 1fr;
    }
    
    .soft-left .download-box .recommend-item,
    .soft-left .recommend-box .recommend-item {
        flex-direction: column;
        padding: 16px;
    }
    
    .soft-left .download-box .recommend-item .item-content,
    .soft-left .recommend-box .recommend-item .item-content {
        margin-left: 0;
        margin-bottom: 16px;
        width: 100%;
    }
    
    .soft-left .download-box .recommend-item .item-actions,
    .soft-left .recommend-box .recommend-item .item-actions {
        margin-left: 0;
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }
    
    .soft-left .download-box .recommend-item .action-btn,
    .soft-left .recommend-box .recommend-item .action-btn {
        flex: 1;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}
