/* CSS By ZhouCan 2024-12-09 */
/* 青出于蓝而胜余蓝 */

:root {
    --theme-bg: #eef4f8;
    --theme-color: #0573ab;
    --theme-active: #0f99de;
    --font-222: #222;
    --font-444: #444;
    --font-666: #666;
    --font-888: #888;
    --font-white: #fff;
    --ltk-white: #fff;
    --ltk-foot-bg: #093f59;
    --close-btn: #d23d3d;
    --line-dark: #ccc;
    --line-light: #ddd;
    --box-dark: #eee;
    --banner-2-h: 450px;
    --head-bar-h: 60px;
}

/* 引入iconfont图标 写在最前面以便后面的字体样式能被笼罩.若是一个class内里除了有icon- 尚有其他的类名，，，请把iconfont的类名写在最前面 */
[class^=icon-] {
    font-family: "iconfont" !important;
    font-size: 20px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 4px;
    /* display: none; */
}

::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 0.4rem;
}

html,
body,
ul,
li {
    padding: 0;
    margin: 0;
}

p {
    margin: 1.6rem 0;
}

body {
    background: var(--theme-bg);
    font-size: 1.6rem;
    font-family: HarmonyOS_Regular, system-ui, -apple-system, 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
    color: var(--font-222);
    background-image: url(/template/V2016/skin/bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-position: center calc(100% - 150px);
}

li {
    list-style: none;
}

a {
    color: var(--font-222);
}

a:hover {
    color: var(--theme-color);
}

/* CSS原子化 */
.p-40-0 {
    padding: 40px 0;
}

.bg-b {
    background: var(--theme-color);
    color: var(--font-white);
}

.bg-w {
    background: var(--ltk-white);
    color: var(--font-222);
}

.bg-b-h:hover {
    background: var(--theme-active);
    color: var(--font-white);
}

/* flex 容器 */
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

/* flex 偏向 */
.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

/* flex界说换行方式 */
.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* 界说多根轴线的对齐方式（针对调行情形） */
.content-center {
    align-content: center;
}

.content-start {
    align-content: flex-start;
}

.content-end {
    align-content: flex-end;
}

.content-around {
    align-content: space-around;
}

.content-between {
    align-content: space-between;
}

.content-stretch {
    align-content: stretch;
}

/* flex 界说主轴对齐方式 */
.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* 界说交织轴对齐方式 */
.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-stretch {
    align-items: stretch;
}

.items-baseline {
    align-items: baseline;
}

/* 界说子元素自身的对齐方式（笼罩父容器的对齐设置） */
.self-start {
    align-self: flex-start;
}

.self-end {
    align-self: flex-end;
}

.self-center {
    align-self: center;
}

.self-baseline {
    align-self: baseline;
}

.self-stretch {
    align-self: stretch;
}

/* 界说子元素的伸缩属性 */
.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.flex-basis-auto {
    flex-basis: auto;
}

.flex-basis-0 {
    flex-basis: 0;
}

/* 可以界说更多详细的 flex-basis 值，，，好比宽度相关 */
.flex-basis-100px {
    flex-basis: 100px;
}

.flex-basis-50 {
    flex-basis: 50%;
}

.flex-basis-100 {
    flex-basis: 100%;
}

/*amazeui.min.css 重写内容*/
.am-container {
    max-width: 1300px;
}

[class*=am-u-]+[class*=am-u-]:last-child {
    float: left;
}

.am-dimmer-active {
    overflow: visible;
    /*更改语言弹出框后。。body的属性overflow: visible;，，，还需要在amazeui.min.js内里更改body弹窗后的padding值*/
}

/*head*/
.head {
    background: var(--theme-color);
    overflow: hidden;
}

.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    transition: .5s !important;
    z-index: 1000;
    animation: fadeInDown 500ms ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.head .topbar {
    width: 100%;

}

.head .app-logo {
    padding-left: 10px;
    float: left;
}

.head .app-logo a {
    display: inline-block;
}

.head .app-logo img {
    width: 100px;
}


.head>div .btn-fold {
    margin: 0;
    padding: 0 10px;
    color: var(--font-white);
    background: var(--theme-active);
}

.btn-fold span {
    border-radius: 4px;
    background: var(--font-white);
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px;
    transition: all 0.3s ease;
}

.head>div .am-collapsed span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.head>div .am-collapsed span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.head>div .am-collapsed span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.head .am-topbar-btn:focus {
    outline: none;
}

.head .am-nav>li.am-active>a,
.head .am-nav>li.am-active>a:focus,
.head .am-nav>li.am-active>a:hover {
    background-color: var(--theme-active);
}

.head .am-topbar-nav>li.am-active>a,
.head .am-topbar-nav>li.am-active>a:focus,
.head .am-topbar-nav>li.am-active>a:hover {
    color: var(--font-white);
    background: var(--theme-active);
}

.head .am-nav>li>a:focus,
.head .am-nav>li>a:hover {
    background: var(--theme-active);
}

.head .am-topbar-nav>li>a {
    padding: 0 20px;
    height: var(--head-bar-h);
    line-height: var(--head-bar-h);
    color: var(--font-white);
}

.head .am-topbar-nav>li>a:after {
    display: none;
}

.head .am-topbar-collapse {
    padding: 0;
    margin-right: 50px;
    float: right;
    overflow: hidden;
}

.head-h-l {
    height: var(--head-bar-h);
    line-height: var(--head-bar-h);
}

/*导航栏 ico 按钮公共CSS*/
.button-bar {
    padding: 0;
    float: right;
}

.button-bar>a {
    padding: 0 10px;
    color: var(--font-white);
}

.button-bar>a:hover {
    color: var(--theme-active);
}

@media only screen and (max-width:1024px) {
    .head .am-topbar-collapse {
        margin-right: 0;
    }
}

@media only screen and (max-width:917px) {
    .head .am-topbar-nav>li>a {
        padding: 0 10px;
    }
}

@media only screen and (max-width:767px) {
    .am-container {
        padding-left: 0;
        padding-right: 0;
    }

    .am-topbar-nav {
        margin-bottom: 0;
    }

    .head .am-topbar-nav>li>a {
        border-top: 1px solid var(--theme-active);
    }

    .am-topbar-nav>li+li {
        margin-top: 0;
    }

    .about-info {
        padding: 0 10px;
    }
}

/*语言切换按钮 弹出窗口*/
.full-dialog {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background: var(--ltk-white);
    display: inline-block;
    vertical-align: middle;
    width: 96%;
    border-radius: 6px;
}

.icon30 {
    font-size: 30px;
}

.icon-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.icon-close:hover {
    color: var(--close-btn);
}

.lg-title {
    text-align: left;
    font-size: 20px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--line-dark);
}

.lg-dialog {
    max-width: 540px;
}

.lg-bd i {
    margin-right: 30px;
    vertical-align: middle;
}

.lg-bd {
    padding: 10px 20px;
}

.lg-bd div {
    padding: 14px 0;
}

.lg-bd div a {
    width: 124px;
    text-align: left;
}

/*搜索按钮 弹出窗口*/
.search-dialog {
    max-width: 800px;
    padding: 25px 0;
}


#search-dialog-close {
    top: 50%;
    transform: translateY(-50%);
}

.search-bd {
    padding-left: 20px;
    padding-right: 60px;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    color: var(--theme-color);
}

.search-box {
    border-radius: 15px;
    padding: 0 40px;
    background: none;
    width: 100%;
    height: 44px;
    border: 1px solid var(--theme-color);
    outline: none;
}

.search-box:focus {
    border: 1px solid var(--theme-active);
}

.search-box:focus+.search-img {
    color: var(--theme-active);
}

/*ie8.0-warning*/
.ie-warning {
    margin: 0px;
}

.ie-warning .am-container {
    text-align: center;
    height: 40px;
    line-height: 40px;
}

/*index_banner*/
.index_banner {
    margin: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.index_banner .am-slider-images {
    height: 760px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.index_banner .am-slider-desc {
    position: absolute;
    left: 0;
    top: 35%;
    right: 0;
    color: var(--font-white);
    text-align: center;
    background: none;
}

.index_banner .am-slider-content h2 {
    font-size: 40px;
    margin: 0;
    padding: 0;
}

.index_banner .am-slider-content p {
    margin: 0;
    display: block;
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 2.0rem;
}

.index_banner .am-slider-title {
    font-weight: normal;
    margin-bottom: 5px;
    display: block;
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.index_banner .am-slider-en {
    font-size: 12px;
}

.index_banner .am-btn {
    margin-top: 20px;
    margin-right: 10px;
}

.index_banner .am-direction-nav .am-prev {
    background: url(/template/v2016/skin/pre_fff.png) center no-repeat #666;
    opacity: .4;
    left: 0;
}

.index_banner .am-direction-nav .am-next {
    background: url(/template/v2016/skin/next_fff.png) center no-repeat #666;
    right: 0;
    opacity: .4;
}

.index_banner .am-direction-nav a:before {
    display: none
}

.index_banner .am-direction-nav a {
    position: absolute;
    top: 40%;
    z-index: 10;
    display: block;
    width: 48px;
    height: 64px;
    margin: -18px 0 0;
    box-shadow: none;
    opacity: .8;
    cursor: pointer;
    color: rgba(0, 0, 0, .65);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease
}

.index_banner .am-slider-images a:hover {
    -moz-transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
    -ms-transform: translate3d(0, -2px, 0);
    -o-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
    -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.index_banner .am-control-nav {
    bottom: 30px;
}

.index_banner .am-control-nav li a {
    border-radius: 15px;
    width: 30px;
}

/*benner下方原点切换按钮*/
.index_banner .am-btn-danger {
    color: var(--font-white);
    background-color: var(--theme-color);
    border-color: var(--theme-active);
    padding: 10px 25px;
    border-radius: 20px;
    letter-spacing: 2px;
}

/*benner文字按钮*/
.index_banner .am-control-nav li a.am-active {
    background: var(--theme-active);
}

@media screen and (min-width: 960px) and (max-width: 1600px) {
    .index_banner .am-slider-images {
        height: 600px;
    }

    .index_banner .am-slider-desc {
        top: 40%;
    }

    .index_banner .am-direction-nav,
    .index_banner .am-pauseplay {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
    .index_banner .am-slider-images {
        height: 560px;
    }

    .index_banner .am-slider-desc {
        top: 35%;
    }

    .index_banner .am-slider-content h2 {
        font-size: 40px;
    }

    .index_banner .am-slider-content p {
        font-size: 24px;
    }

    .index_banner .am-btn {
        margin-top: 10px;
    }

    .index_banner .am-direction-nav,
    .index_banner .am-pauseplay {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .index_banner .am-slider-images {
        height: 480px;
    }

    .index_banner .am-slider-desc {
        text-align: center;
        top: 35%;
    }

    .index_banner .am-slider-content h2 {
        font-size: 20px;
    }

    .index_banner .am-slider-content p {
        font-size: 14px;
    }

    .index_banner .am-btn {
        margin-top: 10px;
    }

    .index_banner .am-direction-nav,
    .index_banner .am-pauseplay {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .index_banner .am-slider-images {
        height: 420px;
    }

    .index_banner .am-slider-desc {
        text-align: center;
        top: 35%;
    }

    .index_banner .am-slider-content h2 {
        font-size: 20px;
    }

    .index_banner .am-slider-content p {
        font-size: 14px;
    }

    .index_banner .am-btn {
        margin-top: 10px;
    }

    .index_banner .am-direction-nav,
    .index_banner .am-pauseplay {
        display: none;
    }
}

/*所有栏目列表问题*/
.box-top {
    width: 100%;
    height: 40px;
    margin: 20px 0;
    border-bottom: 1px solid var(--line-dark);
}

.box-left {
    border-bottom: 3px solid var(--theme-active);
    height: 41px;
    line-height: 41px;
}

.box-title-lg {
    font-size: 2rem;
    padding: 0 4px;
}

.box-title-sm {
    font-size: 1.2rem;
    margin-left: 1rem;
}

/*首页关于PP电子-公司动态*/
.i-company {
    background-image: url(/template/V2016/imgs/i-company-bg.jpg), linear-gradient(#F9FCFF, #fff);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.i-about-pic {
    padding: 36px;
}

.i-about-pic img {
    border-radius: 8px;
    width: 100%;
}

.i-about-content {
    padding: 30px;
    padding-top: 50px;
}

.i-news-li {
    border-top: 1px solid var(--line-dark);
    padding-top: 20px;
}

.i-news-pic {
    width: 150px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}

.i-news-pic img {
    width: 100%;
    border-radius: 4px;
}

.i-news-body {
    width: 100%;
    height: 96px;
    margin-left: 1rem;
}

.i-news-title {
    padding: 0;
    margin: 0;
}

.i-news-content {
    height: 46px;
    font-size: 1.4rem;
    color: var(--font-888);
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.i-news-info {
    font-size: 1.4rem;
    color: var(--font-888);
    padding: 0;
    margin: 0;
    margin-top: 1rem;
}

.i-news-info i {
    font-size: 1.4rem;
    margin-right: 1rem;
}

.i-news-info span {
    margin-right: 2rem;
}

@media only screen and (max-width:767px) {
    .i-news-pic {
        width: 100px;
        height: 72px;
    }

    .i-news-body {
        height: 74px;
    }

    .i-news-title {
        height: 50px;
    }

    .i-news-content {
        display: none;
    }
}

/*首页产品中心*/
.com-box-product {
    background: var(--ltk-white);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    width: 100%;
    border: 1px solid var(--box-dark);
    transition: all .5s;
    overflow: hidden;
}

.com-box-product:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.i-product .am-u-lg-3 {
    text-align: center;
}

/*鼠标放上图片放大效果*/
.img-layer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.img-layer-zoom {
    width: 100%;
    height: 100%;
    transition: all 1.2s;
    -moz-transition: all 1.2s;
    -webkit-transition: all 1.2s;
    -o-transition: all 1.2s;
}

.img-layer-zoom:hover {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

/*首页--相助同伴*/
.partner-list {
    overflow: hidden;
    text-align: center;
}

.partner-list li {
    width: 120px;
}

.partner-list li a {
    display: block;
    color: var(--font-white);
}

.partner-list li img {
    width: 100%;
    padding: 6px 12px;
}

.flip-box {
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    padding: 0;
    border: 0;
    margin: 15px;
}

.flip-box-logo,
.flip-box-name {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    height: auto;
    -webkit-transition: .6s;
    transition: .6s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: var(--ltk-white);
    border: 1px solid var(--box-dark);
    border-radius: 4px;
}

.flip-box-name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme-color);
    line-height: 60px;
    text-align: center;
    transform: rotateX(180deg);
}

.flip-box:hover .flip-box-logo {
    transform: rotateX(-180deg);
}

.flip-box:hover .flip-box-name {
    transform: rotateX(0);
}


.i-banner-2 {
    text-align: center;
    color: var(--font-white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.i-banner-2 a {
    color: var(--font-white);
}

.i-banner-2 h1 {
    font-size: 3rem;
    font-weight: 300;
}

.i-banner-2 p {
    font-size: 2rem;
}

.banner-slogan {
    height: var(--banner-2-h);
    position: relative;
}

.banner-slogan div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width:768px) {
    .i-banner-2 h1 {
        font-size: 20px;
    }

    .banner-slogan {
        height: 300px;
    }

    .i-banner-2 p {
        font-size: 16px;
    }
}

/* -------------------公司动态----------------------- */
/* 左边新闻列表 */
.news-li {
    margin: 20px 0;
    border-bottom: 1px solid var(--line-dark);
}

.news-pic {
    width: 240px;
    height: 160px;
}

.news-pic img {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.news-body {
    width: 100%;
    height: 180px;
    padding: 0 12px;
    overflow: hidden;
}

.news-title {
    padding: 0;
    margin: 0;
}

.news-title a {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    /* 榨取换行 */
    overflow: hidden;
    /* 隐藏溢出内容 */
    text-overflow: ellipsis;
    /* 使用省略号体现溢出内容 */
}

.news-content {
    height: 110px;
    font-size: 1.4rem;
    color: var(--font-888);
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.news-info {
    font-size: 1.4rem;
    color: var(--font-888);
    padding: 0;
    margin: 0;
}

.news-info i {
    font-size: 1.4rem;
    margin-right: 1rem;
}

.news-info span {
    margin-right: 3rem;
}

/* 右边新闻排行 */
.news-li-s {
    margin: 10px 0px;
    width: 100%;
}

.news-li-s-num {
    font-size: 1.4rem;
    text-align: center;
    color: var(--font-white);
    margin-right: .5rem;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 2px;
    background: var(--font-888);
}

/* 新闻排行前面的数字标签 */
.news-right>ul>li:nth-child(1) span {
    background: #025894;
}

.news-right>ul>li:nth-child(2) span {
    background: #1e78a5;
}

.news-right>ul>li:nth-child(3) span {
    background: #4283a3;
}

.news-right>ul>li:nth-child(4) span {
    background: #5ca1c4;
}

.news-right>ul>li:nth-child(5) span {
    background: #9ccae1;
}

@media only screen and (max-width:767px) {
    .news-li {
        margin: 10px 0;
    }

    .news-pic {
        width: 100px;
        height: 72px;
    }

    .news-body {
        height: 74px;
    }

    .news-title {
        height: 50px;
    }

    .news-content {
        display: none;
    }
}

@media only screen and (max-width:1025px) {
    .news-right {
        display: none;
    }
}

/* 新闻列表两种视图 */
.news-view {
    margin-top: 6px;
    margin-right: 6px;
}

.news-view span {
    padding-left: 10px;
    cursor: pointer;
}

.news.grid-on [data-mode="grid"] {
    color: var(--theme-active);
}

.news [data-mode="list"] {
    color: var(--theme-active);
}

.news.grid-on [data-mode="list"] {
    color: var(--font-222);
}

.news-li-s-txt {
    white-space: nowrap;
    /* 榨取文本换行 */
    overflow: hidden;
    /* 隐藏凌驾容器的部分 */
    text-overflow: ellipsis;
    /* 使用省略号体现被截断的文本 */
}

.news.grid-on .news-content {
    display: none;
}

.news.grid-on .news-li {
    margin: 0;
    border: 0;
    width: 33.3333%;
}

.news.grid-on .news-pic img {
    border-radius: 6px 6px 0 0;
}

.news.grid-on .news-pic {
    float: none;
    margin: 0;
    width: 100%;
    height: auto;
}

.news.grid-on .news-body {
    height: auto;
}

.news.grid-on p {
    padding: 4px 0;
}

.news.grid-on .news-item {
    border: 1px solid var(--box-dark);
    border-radius: 6px;
    flex-direction: column;
    background: var(--ltk-white);
    margin-right: 12px;
    margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
    .news.grid-on .news-li {
        width: 50%;
    }
}

@media only screen and (max-width: 479px) {
    .news.grid-on .news-li {
        width: 100%;
    }
}

/*公司动态内容页*/
.news-title-l {
    font-size: 24px;
    margin: 0;
}

.news-title-m {
    font-size: 16px;
    margin: 0;
}

.news-tltle-s {
    font-size: 14px;
    color: var(--font-666);
    margin: 0;
    padding: 0;
}

.news-txt {
    margin: 20px 0;
}

.news-txt-top {
    border-bottom: 1px solid var(--line-dark);
    padding-bottom: 10px;
}

.news-txt-bt {
    padding: 20px;
    line-height: 200%;
}

.news-txt-bt img {
    width: 100%;
}


/* 关于PP电子 */
.about-info {
    background: var(--ltk-white);
}

.about-content {
    line-height: 200%;
    padding: 20px
}

.about-content img {
    max-width: 100%;
    border-radius: 4px;
}

.gallery-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gallery-title {
    margin: 10px 0;
    text-align: center;
    font-weight: 400;
}

/* 分页横导航和页码 */
.i-nav {
    max-width: 100%;
    background-color: var(--ltk-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px 0px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.i-nav ul {
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.i-nav li {
    text-align: center;
    font-size: 16px;
    padding: 0 20px;
    border-right: 1px solid var(--line-dark);
}

.i-nav li:last-child {
    border: 0;
}


/* 产品中心 */
.i-detail-imglist>.am-gallery li {
    margin: 0 0 30px 0;
    padding: 0 10px;
}

/*page按纽样式*/
.page_css {
    padding: 0;
    text-align: center;
    margin: 20px 0;
}

.page_css a {
    padding: 5px 10px;
    margin: 2px;
    border: solid 1px var(--box-dark);
    background: var(--ltk-white);
    text-decoration: none;
    border-radius: 4px;
}

.page_css a:hover {
    color: var(--ltk-white);
    background: var(--theme-color);
    border-color: var(--theme-color);
    text-decoration: none;
}

.page_css .nowpage {
    color: var(--theme-color);
}

.com-title {
    text-align: center;
}

.com-title h1 {
    margin: 1.2rem 0;
    font-size: 2.8rem;
    font-weight: 300;
}

.com-title p {
    font-size: 2rem;
    margin: 1.6rem 0;
}

.info-box {
    background: var(--ltk-white);
    padding: 30px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.info-box p:first-child {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.info-box p {
    text-align: center;
}

.info-box i {
    vertical-align: middle;
    font-size: 18px;
    padding-right: 10px;
}

/**==========联系方式边框动画最先==========**/
.info-box::before,
.info-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 2px solid #0573ab;
    border-radius: 8px;
    transform: scale(0);
    transition: 0.3s;
}

.info-box::before {
    border-right: none;
    border-bottom: none;
    transform-origin: 0 0;
}

.info-box::after {
    border-left: none;
    border-top: none;
    transform-origin: 100% 100%;
}

.info-box:hover::before,
.info-box:hover::after {
    transform: scaleX(1);
}

/**==========联系方式边框动画end==========**/

/* ============全球据点CSS最先=============== */
.company-list {
    background: url(/template/V2016/imgs/company.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 0 60px 0;
    display: none;
}

.com-box-site p {
    text-align: center;
}

.com-box-site {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    cursor: pointer;
}

.com-box-site p:first-child {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.com-box-site:hover {
    background: var(--theme-color);
    transform: translateY(-15px);
    transition: 0.3s;
    color: var(--font-white);
}

.com-box-site p i {
    font-size: 18px;
    vertical-align: middle;
    padding-right: 8px;
}

/* ============全球据点CSS end=============== */

/* foot css 最先*/
.i-foot {
    background: var(--ltk-foot-bg);
    color: var(--font-white);
    font-size: 1.4rem;
    margin-top: 30px;
}

.i-foot a {
    color: var(--font-white);
}

.foot-info {
    padding: 20px 0;
}

.logo-info p {
    font-size: 16px;
}

.logo-info img {
    width: 100px;
}

.i-foot p {
    margin: 0;
}

.foot-weixin {
    text-align: center;
}

.foot-weixin P {
    padding: 10px 0;
}

.foot-weixin img {
    width: 100px;
    border-radius: 5px;
}

.beian a:hover {
    color: var(--theme-color);
}

.webinfo {
    text-align: center;
    padding-bottom: 10px;
}

.foot-line {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.copy {
    padding: 10px 0;
}

[class*=am-u-] {
    padding: 1rem;
}

/* 加入PP电子 */
.accordion .hr-title {
    cursor: pointer;
    display: block;
    padding: 15px;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid var(--line-dark);
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    right: 12px;
    left: auto;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li.open .hr-title {
    color: var(--theme-color);
    border: none;
}

.accordion li.open i {
    transform: rotate(180deg);
    color: var(--theme-active);
}

.submenu {
    display: none;
}

.hr-content {
    color: var(--font-666);
    padding: 15px 30px;
    margin: 0;
    overflow: hidden;
    background: var(--ltk-white);
    border-radius: 6px;
}

.hr-info {
    text-align: right;
}

.join-us-item {
    padding: 30px 0;
    background: var(--ltk-white);
}

.hr-img {
    padding: 15px;
}

.hr-img img {
    width: 100%;
    border-radius: 10px;
}

@media only screen and (max-width:768px) {
    .accordion .link {
        font-size: 16px;
    }

    .accordion li i {
        font-size: 16px;
    }
}

.btn-more {
    text-align: center;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    margin-top: 40px;
}


/* 百度地图css */
.anchorBL {
    display: none;
    /*去掉百度版权信息*/
}

.shadow {
    display: none;
    /*去掉信息窗口阴影*/
}

.BMap_bubble_title,
.BMap_bubble_buttons {
    display: none;
    /* 去掉信息窗口问题和按钮 */
}

.BMap_bubble_bottom+img {
    display: none;
    /*去掉信息窗口默认三角形指示箭头*/
}

.BMap_bubble_top {
    height: 6px !important;
}

.BMap_bubble_content {
    overflow: visible !important;
}

.BMap_bubble_pop {
    width: 298px !important;
    /* height: 248px !important; */
}

/* 自界说信息窗口三角型指示 */
.BMap_bubble_pop::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 170px;
    width: 21px;
    height: 21px;
    background: #fff;
    /* border: 1px solid rgb(221, 221, 221); */
    transform: rotate(45deg);
    /* z-index: -10; */
    box-shadow: rgb(221 221 221) 1px 1px 0px 0px;
}

.maps-item {
    width: 280px;
    height: 216px;
    font-size: 14px;
}

.maps-item>div {
    padding: 6px 10px;
}

.maps-item>div>p {
    margin: 0;
    padding: 2px 0;
    color: var(--font-666);
    display: flex;
}

.maps-item>div .site-n-m {
    font-size: 16px;
    color: var(--font-222);
}

.info-address {
    flex-grow: 0;
    flex-shrink: 0;
}

.maps-img {
    width: 280px;
    height: 138px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.address,
.phone,
.email {
    color: var(--font-666);
    ;
}

.site-nav {
    width: 420px;
    position: absolute;
    top: 10px;
    z-index: 1000;
}

.site-left {
    background: #f5f8fa;
    border-radius: 8px;
    padding: 12px;
    margin-top: 20px;
}

.site-title {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

.site-list>div {
    background: var(--ltk-white);
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
}

.site-list .active {
    transition: 0.3s;
    background: var(--theme-active);
    color: var(--font-white);
}


.site-list .active p {
    color: var(--font-white);
}

.site-name p:first-child {
    font-weight: 600;
}

.site-name p {
    margin: 0;
    padding: 4px 10px;
    display: flex;
}

.site-name p i {
    padding-right: 10px;
    font-size: 16px;
}

#map {
    width: 100%;
    height: 100%;
}

.baidumap {
    position: relative;
    width: 100%;
    height: 820px;
    margin-bottom: -40px;
}

@media only screen and (max-width: 767px) {
    #map {
        display: none;
    }

    .site-nav {
        width: 100%;
    }
}

/* IE忠言窗口样式 - 使用兼容IE的定位方式 */
.ie-warning {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3182ce;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    z-index: 1000;
    display: none;
    /* 默认隐藏 */
}

.warning-content {
    padding: 40px;
    font-size: 16px;
    line-height: 1.5;
}

.warning-actions {
    text-align: center;
    margin-bottom: 30px
}

.dont-show-btn {
    background: #74b0e9;
    color: white;
    border: 1px solid #fff;
    padding: 6px 20px;
    border-radius: 26px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.dont-show-btn:hover {
    background: #2b6cb0;
}<!--耗时1765754496.4418秒-->