/* 单行文本截断 */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 多行文本截断 */
.truncate-multiline-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 125px;
    line-height: 25px;
}
.truncate-multiline-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 75px;
    line-height: 25px;
}
.truncate-multiline-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 50px;
    line-height: 25px;
}

/* 缩放动画 */
.scale-transition {
    transition: -webkit-transform ease 0.3s;
    transition: transform ease 0.3s;
    transition:
        transform ease 0.3s,
        -webkit-transform ease 0.3s;
}
.scale-transition:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.panel-wihte {
    width: 100%;
    overflow: hidden;
    background: #fff;
    margin-top: 26px;
}

.max1200 {
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
}

.panel-title {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    color: #3a3a3a;
    line-height: 18px;
    height: 24px;
    margin-bottom: 56px;
    margin-top: 28px;
}

/* 我们的产品 */
.product {
    width: 100%;
    height: 323px;
    box-shadow: 3px 3px 5px #ccc;
    margin: auto;
    overflow: hidden;
    color: #84888c;
    background: #fff;
    position: relative;
    border-radius: 6px;
}

.product img {
    width: 100%;
    height: 240px;
    display: block;
}
.product p {
    width: 100%;
    height: 30px;
    overflow: hidden;
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 14px;
    position: relative;
    font-weight: 500;
    color: #3a3a3a;
    padding-top: 8px;
    padding-left: 8px;
    margin-bottom: 5px;
    margin-top: 10px;
}
.product .more {
    color: #fff;
    position: relative;
    width: 96px;
    height: 30px;
    background: #2065fc;
    border-radius: 6px;
    left: 65%;
    padding-top: 5px;
}
.product .more:hover {
    background: #0d41aa;
}
.product .more:hover span.more-icon {
    background: #0d41aa url('../images/more.png') no-repeat center center;
}
.product span {
    padding-right: 8px;
}
.product span.more-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #2065fc url('../images/more.png') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 8px;
}
.product a {
    display: block;
    text-align: center;
    color: #469ae5;
    position: relative;
}
.product a:hover {
    text-decoration: none;
}
/* 场景化安全解决方案，专业解决典型问题 */
.solution-panel {
    transition: width 0.5s; /* 设置过渡效果，0.5秒完成宽度变化 */
    transition-timing-function: ease-out; /* 设置过渡效果为缓慢开始 */
}
.solution {
    height: 427px;
    margin: 0 auto;
    color: #fff;
    padding-top: 67px;
    border-radius: 6px;
    box-shadow: 3px 3px 5px #ccc;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center center;
}

.solution .title {
    padding-top: 300px;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 2px 2px 2px rgba(31, 45, 58, 0.5);
    text-align: center;
}
.solution.websecurity {
    background-image: url('../images/index/solution/websecurity_normal.png');
}
.solution.websecurity .title {
    background: url('../images/icon_websecurity_normal.png') no-repeat center 270px;
}
.solution.e-government {
    background-image: url('../images/index/solution/e-government_normal.png');
}
.solution.e-government .title {
    background: url('../images/icon_e-government_normal.png') no-repeat center 270px;
}
.solution.hospital {
    background-image: url('../images/index/solution/hospital_normal.png');
}
.solution.hospital .title {
    background: url('../images/icon_hospital_normal.png') no-repeat center 270px;
}
.solution.safetyprotection {
    background-image: url('../images/index/solution/safetyprotection_normal.png');
}
.solution.safetyprotection .title {
    background: url('../images/icon_safetyprotection_normal.png') no-repeat center 270px;
}
.solution .description,
.solution .more {
    display: none;
}

.solution.push .title {
    padding-top: 0;
    padding-left: 65px;
    text-align: left;
}

.solution.websecurity.push {
    background-image: url('../images/index/solution/websecurity_push.png');
}
.solution.websecurity.push .title {
    background: url('../images/icon_websecurity_push.png') no-repeat 30px bottom;
}
.solution.e-government {
    background-image: url('../images/index/solution/e-government_push.png');
}
.solution.e-government.push .title {
    background: url('../images/icon_e-government_push.png') no-repeat 30px bottom;
}
.solution.hospital.push {
    background-image: url('../images/index/solution/hospital_push.png');
}
.solution.hospital.push .title {
    padding-left: 60px;
    background: url('../images/icon_hospital_push.png') no-repeat 30px bottom;
}
.solution.safetyprotection.push {
    background-image: url('../images/index/solution/safetyprotection_push.png');
}
.solution.safetyprotection.push .title {
    background: url('../images/icon_safetyprotection_push.png') no-repeat 30px bottom;
}

.solution.push .description {
    display: -webkit-box;
    margin-top: 150px;
    padding-left: 64px;
    padding-right: 100px;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 2px 2px 2px rgba(31, 45, 58, 0.5);
}
.solution.push .more {
    display: block;
}
.solution.push .more a {
    padding-top: 10px;
    padding-left: 64px;
    font-weight: 600;
    font-size: 14px;
    line-height: 30px;
    color: #95e1ff;
}

/* 覆盖业务全生命周期的安全技术服务 */
.tech-service {
    width: 100%;
    box-shadow: 3px 3px 5px #ccc;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.tech-service:hover {
    margin-top: -20px;
    box-shadow: 0 8px 40px rgba(213, 216, 218, 0.4);
}

.tech-service img {
    width: 100%;
    height: 225px;
    display: block;
}
.tech-service .content {
    height: 234px;
    background: linear-gradient(0deg, #ffffff, #ebf0f5);
    border-radius: 6px;
    padding-left: 20px;
}
.tech-service .content .title {
    font-weight: 600;
    font-size: 18px;
    color: #3a3a3a;
    padding-top: 24px;
}
.tech-service .content .description {
    font-weight: 500;
    font-size: 14px;
    color: #3a3a3a;
    padding-top: 24px;
    padding-right: 24px;
}

.tech-service .content ul {
    font-weight: 500;
    font-size: 14px;
    color: #3a3a3a;
    padding-top: 24px;
    padding-right: 24px;
    padding-left: 10px;
    max-height: 125px;
}
.tech-service .content ul li {
    line-height: 26px;
    list-style-type: disc;
}
.tech-service .content ul li a {
    display: block;
    max-width: 314px;
    color: #3a3a3a;
}

.tech-service .content .more {
    font-weight: 500;
    font-size: 12px;
    text-align: right;
    padding-top: 24px;
    padding-right: 24px;
    color: #0075bf;
}

/* 海峡动态 */
.news {
    margin-bottom: 30px;
}
.news .tabs {
    display: inline-block;
    margin-bottom: 28px;
    margin-left: 60px;
}
.news .tabs li {
    float: left;
    width: 100px;
    height: 35px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 6px 16px;
    margin-right: 70px;
    cursor: pointer;
    font-size: 14px;
}
.news .tabs li:hover,
.news .tabs li.active {
    background: #2065fc;
    color: #ffffff;
}

.news .more {
    text-align: right;
    padding-right: 45px;
}
.news .more a {
    font-weight: 400;
    color: #2065fc;
    background: url('../images/more_normal.png') no-repeat center left;
    padding-left: 18px;
}
.news .more a:hover {
    background: url('../images/more_push.png') no-repeat center left;
}

.news-head img {
    width: 100%;
    height: 332px;
    display: block;
}
.news-head .content .title {
    padding-left: 8px;
    padding-top: 16px;
}
.news-head .content .title a {
    display: block;
    max-width: 545px;
    font-weight: bold;
    font-size: 16px;
    color: #1f1d1d;
}
.news-head .content .description {
    font-size: 12px;
    color: #3a3a3a;
    padding-left: 8px;
    line-height: 20px;
}

.news-list .date .day {
    font-weight: 400;
    font-size: 24px;
    color: #828282;
    text-align: right;
}
.news-list .date .year {
    font-weight: 400;
    font-size: 12px;
    color: #828282;
    text-align: right;
}
.news-list .divide {
    min-width: 1px;
    max-width: 1px;
    min-height: 1px;
    height: 68px;
    border-left: 1px solid #dcdcdc;
    padding: 0;
}
.news-list ul,
.news-list ul li {
    display: inline-block;
}
.news-list ul li {
    margin-bottom: 20px;
}

.news-list .content .title a {
    display: block;
    max-width: 396px;
    font-weight: bold;
    font-size: 14px;
    color: #3a3a3a;
    line-height: 25px;
}
.news-list .content .description {
    font-size: 12px;
    color: #828282;
}

.navigation {
    top: 680px;
    right: 350px;
    text-align: center;
    z-index: 1000;
}
.navigation ul,
.navigation ul > li {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: #ffffff;
}
.navigation a {
    font-weight: 500;
    font-size: 12px;
    color: #ffffff;
}

.navigation .fuxia {
    position: absolute;
    top: 0px;
    left: 0px;
    background: url('../images/fuxia_normal.png') no-repeat center top;
    width: 85px;
    height: 93px;
}
.navigation:hover .fuxia {
    background: url('../images/fuxia_push.png') no-repeat center top;
}

.navigation .divide {
    min-width: 1px;
    min-height: 1px;
    width: 44px;
    height: 8px;
    border-bottom: 1px solid #8db1ff;
    padding: 0;
    margin-left: 12px;
}
.navigation ul {
    width: 72px;
    height: 219px;
    background: #2065fc;
    border-radius: 6px;
    margin-top: 50px;
    margin-left: 5px;
    padding-top: 55px;
}

@keyframes slide-in-from-right {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.navigation .online {
    cursor: pointer;
}
.navigation .online .online-wx-qq {
}

.navigation .phone {
    cursor: pointer;
    background: url('../images/phone_normal.png') no-repeat center top;
    padding-top: 24px;
    margin-top: 10px;
}
.navigation .online .online-wx-qq,
.navigation .phone .online-phone {
    position: absolute;
    top: 130px;
    left: -190px;
    background: url('../images/phone_bg.png') no-repeat center top;
    width: 190px;
    height: 58px;
    padding-top: 20px;
    color: #2065fc;
    font-weight: 600;
    font-size: 12px;
    display: none;
    overflow: hidden;
    animation: slide-in-from-right 0.3s ease forwards;
}
.navigation .online .online-wx-qq {
    top: 90px;
}
.navigation .online .online-wx-qq a,
.navigation .phone .online-phone a {
    color: #2065fc;
}

.navigation .phone:hover {
    background: url('../images/phone_push.png') no-repeat center top;
}
.navigation .online:hover .online-wx-qq,
.navigation .phone:hover .online-phone {
    display: block;
}

.navigation .top {
    cursor: pointer;
    background: url('../images/top_normal.png') no-repeat center top;
    padding-top: 24px;
    margin-top: 10px;
}
.navigation .top:hover {
    background: url('../images/top_push.png') no-repeat center top;
}
