body {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
    color: #343434;
    background-color: #fff
}
.container.main {
    max-width: 1230px!important;
}
/*breadcrumb*/
.breadcrumb {
    width: 100%;
    position: relative;
    background: #f2f2f2;
    overflow: hidden;
    margin-bottom: 60px
}

.breadcrumb .bg {
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 20%
}

.breadcrumb .bg .square-cont {
    position: absolute;
    width: 100%;
    height: 100%
}

.breadcrumb .bg .square-cont > span {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center
}

.breadcrumb .bg .square-cont > span > img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.breadcrumb .bg .square-cont > span {
    overflow: hidden
}

.breadcrumb .bg .square-cont > span > img {
    max-height: initial;
    width: 100%
}

.breadcrumb .bg .square-cont .mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2
}
.breadcrumb .position{
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 1200px;
    padding-left: 20px;
    position: relative;
    box-shadow: 0 0 18px 6px rgb(0 0 0 / 10%);
}
.position ul{
    margin: 0;
    padding: 0 15px;
    list-style: none;
}
.position li {
    font-size: 1.6rem;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    overflow: auto;
}

.position li a {
    border-bottom: 1px solid transparent;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    text-decoration: none;
    color: #505050;
}

.position li a:hover {
    color: #00a3eb;
    border-bottom: 1px solid #00a3eb;
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-bottom: 40px
    }

    .position li {
        font-size: 1.4rem;
        line-height: 30px;
        display: initial
    }
}

.owl-carousel .owl-item img {
    max-width: 269px;
    max-height: 269px;
    width: auto;
    height: auto;
}

/*header start*/

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #505050eb;
    width: 100%;
    padding: 14px 30px;
    gap: 40px;
    z-index: 99999;
    position: absolute;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}
.header-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 94%;
    max-width: 1450px;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: space-between;
}

/* Logo图片自适应 */
.header-list .logo {
    display: flex;
    width: auto;
    max-width: 200px;
    max-height: 50px;
    text-align: center;
}
.header-list .logo img {
    height: auto;
    width: auto;
    display: block;
}

/* 电脑端大屏菜单容器 靠右横向布局 */
.header-list .mobile-menu-wrap {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
}
.mobile-menu-wrap .menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.menu .menu-item{
    color: #ffffff;
    padding: 0 16px;
    text-decoration: none;
    white-space: nowrap;
    height: auto;
    line-height: 85px;
    border-right: solid 1px rgb(0 0 0 / 17%);
    position: relative;
    overflow: hidden;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}
.menu .menu-item:last-child {
    border-left: solid 1px #555555;
}
.menu .menu-item a {
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all .35s ease;
}
.menu .menu-item a:hover {
    color: #fff;
}
.menu .menu-item.actives {
    background: #275a85;
}

/* 从下往上填充蓝色动画伪元素（主菜单底色#004681） */
.menu .menu-item::after {
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0px;
    width: 100%;
    height: 0%;
    background: #275a85;
    opacity: 1;
    z-index: 1;
    transition: height .35s ease;
}
/* hover时高度100%，实现从下到上填充 */
.menu .menu-item:hover::after {
    height: 100%;
}

/* 下拉父容器基准定位 */
.menu .menu-item.dropdown {
    position: relative;
    overflow: visible !important; /* 关键：下拉菜单要溢出显示，不能被裁剪 */
}
/* 下拉面板：背景#004681，固定尺寸，垂直缩放从上往下展开动画，高度不变 */
.menu-item.dropdown .drop-sub {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0); /* 垂直缩放初始压缩为0，高度不变形 */
    transform-origin: top center; /* 缩放原点设置在顶部，实现从上到下展开 */
    transition: all 0.35s ease;
    position: absolute;
    top: 100%;
    left: -1px;
    background: #275a85;
    min-width: 320px;
    padding: 10px 0;
    z-index: 9999; /* 高层级防止被遮挡 */
}
/* 鼠标悬浮dropdown，下拉从上向下完整展开+淡入 */
.menu-item.dropdown:hover .drop-sub {
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
/* 下拉子项容器，开启相对定位，做底部上滑动画 */
.menu-item.dropdown .drop-sub a {
    display: block;
    padding: 12px 20px;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.8;
    overflow: hidden;
    color: #fff;
    border-bottom: solid 1px #f2f2f22e;
}
/* 下拉子项hover伪元素：从下往上填充深色底色 */
.menu-item.dropdown .drop-sub a::after {
    content: '';
    position: absolute;
    left: -1px;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #19619f;
    z-index: -1;
    transition: all 0.35s ease;
}
/* 子菜单hover触发动画 */
.menu-item.dropdown .drop-sub a:hover::after {
    height: 100%;
}

/* 右侧语言搜索区域 */
.header-list .header-right {
    display: flex;
    align-items: center;
    color: #fff;
    height: 100%;
    flex-direction: row;
    text-align: right;
    flex-wrap: nowrap;
}
/* ========== 语言下拉菜单新增样式 ========== */
.header-right .lang {
    width: 140px;
    cursor: pointer;
    position: relative;
    overflow: visible !important;
    transition: color 0.35s ease;
}

.header-right .lang .e {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.header-right .lang .e p{
    transition: all 0.35s ease;
    font-size: 16px;
    margin: 0;
}
/* 鼠标悬浮语言区域，下拉平滑展开 */
.header-right .lang:hover .list {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
.header-right .lang:hover .e p {
    color: #00a3eb;
}
/* 语言下拉子项 */
.header-right .lang .list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    height: 52px;
    font-size: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #f2f2f22e;
    text-decoration: none;
}
/* 语言子项hover 从下往上填充动画（和产品子菜单样式统一） */
.header-right .lang .list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #19619f;
    z-index: -1;
    transition: all 0.35s ease;
}
.header-right .lang .list li a:hover::after {
    height: 100%;
}
/* 国旗图标+文字排版 */
.header-right .lang .list li a i {
    font-size: 18px;
}
.header-right .lang .list li a p {
    margin: 0;
    font-size: 16px;
}
.header-right .search-icon {
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.35s ease;
}
.header-right .search-icon:hover {
    color: #ec5520;
}

.header-right .lang .list {
    margin: 0;
    padding: 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all 0.35s ease;
    position: absolute;
    top: 100%;
    right: 0;
    background: #275a85;
    min-width: 160px;
    z-index: 9999;
}
.header-right .lang:hover .list {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

.header-right .lang .list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #19619f;
    z-index: -1;
    transition: all 0.35s ease;
}
.header-right .lang .list li a:hover::after {
    height: 100%;
}

/*搜索*/
.header-nav  .modal {
    padding-right: 0 !important
}

.header-nav  .pnl {
    height: 100%;
    color: #fff;
    position: relative;
    width: 100%;
    background: rgb(0 0 0 / 70%);
}

.header-nav  .pnl .close {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    right: 25px;
    top: 5%;
    text-align: center;
    border: 0;
    color: #ec5520;
    font-size: 7rem;
}

.header-nav  .pnl .close:hover {
    color: #00a3eb;
}

.header-nav  .pnl .search-box {
    position: absolute;
    top: 35%;
    width: 100%
}

.header-nav  .pnl .search-box .input-text {
    outline: 0;
    height: 50px;
    width: 60%;
    margin: 0 0 0 20%;
    color: #505050;
    border: 0;
    float: left;
    padding-left: 1rem;
    font-size: 1.8rem
}

.header-nav  .pnl .search-box .search-btn {
    position: absolute;
    left: 80%;
    width: 50px;
    height: 50px;
    border: 0;
    background: #ec5520;
    cursor: pointer;
    color: #fff;
    font-size: 2.6rem
}
/* 大屏隐藏汉堡 */
.bar-icon-btn {
    display: none;
}
.mobile-menu-wrap .search-box {display: none}

.header-list .logo,
.header-list .logo img {
    max-width: 170px;
}

.menu .menu-item a {
    font-size: 18px;
}

.header-nav,
.menu .menu-item,
.header-right .lang .e{
    height: 90px;
}

/*移动端样式*/
/* 1200px以下缩小整体元素 */
@media screen and (max-width: 1398px) {
    .header-nav,
    .menu .menu-item,
    .header-right .lang .e {
        height: 80px;
    }
    .header-list .logo,
    .header-list .logo img {
        max-width: 170px;
    }
    .header-list .mobile-menu-wrap {
        gap: 20px;
    }
    .menu .menu-item {
        line-height: 80px;
        padding: 0 10px;
    }
    .menu .menu-item a {
        font-size: 16px;
    }
    .header-right .lang {
        width: 135px;
    }
}
@media screen and (max-width: 1200px) {
    .header-nav,
    .menu .menu-item,
    .header-right .lang .e {
        height: 65px;
    }
    .header-list {
        width: 100%;
    }
    .header-list .mobile-menu-wrap {
        gap: 10px;
    }
    .header-list .logo,
    .header-list .logo img {
        max-width: 100px;
    }
    .menu .menu-item {
        line-height: 65px;
    }
    .menu .menu-item a {
        font-size: 16px;
    }
    .menu-item.dropdown .drop-sub a {
        padding: 10px 20px;
    }
    .header-right .lang .e {}
}

/* 768px以下：强制显示汉堡按钮，覆盖上方display:none */
@media screen and (max-width: 998px) {
    .header-nav,
    .menu .menu-item,
    .header-right .lang .e {
        height: 60px;
    }
    .header-nav {
        padding: 14px 15px;
    }
    .header-list {
        width: 100%;
    }
    /* Logo缩小 */
    .header-list .logo {
        max-width: 140px;
        max-height: 40px;
    }

    /* 修复冲突：移动端强制显示汉堡按钮 */
    .bar-icon-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 5px;
    }
    .bar-icon-btn span {
        width: 28px;
        height: 3px;
        background: #fff;
        display: block;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    /* 右侧只保留搜索图标 */
    .header-right {
        width: auto;
    }
    /* 移动端弹出菜单容器（默认隐藏） */
    .mobile-menu-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #505050;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top center;
        transition: all 0.35s ease;
    }
    /* 菜单激活显示 */
    .mobile-menu-wrap.active {
        visibility: visible;
        opacity: 1;
        transform: scaleY(1);
        gap: 0;
    }
    /* 移动端菜单内部样式 */
    .mobile-menu-wrap .menu{
        display: flex !important;
        flex-direction: column;
        width: 50%;
    }
    .mobile-menu-wrap .header-right {
        display: flex;
        width: 50%;
        flex-wrap: nowrap;
        height: 300px;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
    }
    .mobile-menu-wrap .menu .menu-item {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #5d5d5d;
        line-height: 60px;
    }
    .mobile-menu-wrap .menu-item.dropdown:hover .drop-sub {
        display: none;
    }
    .mobile-menu-wrap .menu .menu-item:first-child {
        border-left: none;
    }
    .mobile-menu-wrap .lang {
        top: 0;
        text-align: center;
        position: absolute;
    }
    .mobile-menu-wrap .lang .e {
        display: none;
    }
    .mobile-menu-wrap .lang .list {
        opacity: 1;
        visibility: unset;
        transform: unset;
        background: unset;
    }
    .mobile-menu-wrap .lang .e {
        justify-content: center;
    }
    .mobile-menu-wrap .search-icon {display: none}
    .mobile-menu-wrap .search-box {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
    }
    .mobile-menu-wrap .search-box form {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0 20px;
    }
    .mobile-menu-wrap .search-box form .input-text {
        outline: 0;
        height: 45px;
        width: 90%;
        color: #505050;
        border: 0;
        float: left;
        padding-left: 1rem;
        font-size: 1.6rem;
    }
    .mobile-menu-wrap .search-box form .search-btn {
        width: 45px;
        height: 45px;
        border: 0;
        background: #ec5520;
        cursor: pointer;
        color: #fff;
        font-size: 2.6rem;
    }
}

/*header end*/





/*-owl-carousel-*/
.container.owl {
    position: relative;
    padding: 20px 12px;
    border: 1px solid #f2f2f2;
    border-top: 0;
    margin-bottom: 80px;
}
.container.owl .item{
    background: #fff;
    text-align: center;
    margin: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
}
.container.owl .item a{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}
.container.owl .item .cover{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}
.container.owl .owl-img {
    display: inline-block;
    max-width: 350px;
    max-height: 350px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.container.owl .owl-title{
    color: #505050;
    text-decoration: none;
    word-break: break-word;
    height: 6rem;
    text-align: center;
    padding: 0 15px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    font-size: 1.4rem;
    margin: 0;
}
.container.owl .owl-buttons{
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
}
.container.owl .owl-buttons .owl-prev {
    position: absolute;
    left: 0;
}
.container.owl .owl-buttons .owl-next {
    position: absolute;
    right: 0;
}
.container.owl .owl-buttons .imco {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
    line-height: 32px;
    border: 0;
    color: #fff;
    background: #e6000f;
    opacity: .5;
    display: inline-block;
    text-align: center;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.container.owl .owl-buttons .owl-prev:hover .imco,
.container.owl .owl-buttons .owl-next:hover .imco{
    opacity: 1;
}


@media (max-width: 768px) {
    .copyright-n101m-1 {
        font-size: 1.4rem
    }
}

.contact-box-n120m-1 {
    z-index: 110;
    position: fixed;
    right: 0;
    bottom: 30%;
    transition: right .5s;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
    border-radius: 5px
}

.contact-box-n120m-1 .box {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff
}

.contact-box-n120m-1 .box .item {
    position: relative;
    text-align: center;
    color: #505050;
    border-bottom: 1px solid #e5e5e5
}

.contact-box-n120m-1 .box .item a {
    text-decoration: none;
    display: block;
    font-size: 28px;
    color: inherit;
    padding: 15px;
    cursor: pointer
}

.contact-box-n120m-1 .box .item a:hover {
    color: inherit
}

.contact-box-n120m-1 .box .item i {
    color: inherit
}

.contact-box-n120m-1 .box .item p {
    font-size: 1.3rem;
    margin: 0;
    color: #505050
}

.contact-box-n120m-1 .box .item:hover {
    color: #fff;
    background: #e6000f
}

.contact-box-n120m-1 .box .item:hover .tools {
    display: block
}

.contact-box-n120m-1 .box .item:hover p {
    color: inherit
}

.contact-box-n120m-1 .box .whatapp {
    color: #2bd46a
}

.contact-box-n120m-1 .box .whatapp:hover {
    background: #2bd46a
}

.contact-box-n120m-1 .box .skype {
    color: #ffa319
}

.contact-box-n120m-1 .box .skype:hover {
    background: #ffa319
}

.contact-box-n120m-1 .box .email {
    color: #0054a3
}

.contact-box-n120m-1 .box .email:hover {
    background: #0054a3
}

.contact-box-n120m-1 .box .tools {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    background: #ffe8e6
}

.contact-box-n120m-1 .box .qrcode {
    padding: 10px;
    max-width: 150px;
    max-height: 150px
}
.additional.video{
    height: 100%;
    background: #000;
    width: 100%;
    padding: 0;
    margin: 0;

}
.main.about-us {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(/static/images/about-us.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.main.our-advantage {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(/static/images/our-advantage.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.main.news {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(/static/images/news.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.main.bottom {
    background-color: rgba(37, 37, 37, 1);
}


.main.news .news-time {
    padding: 14px;
}
.main.news .news-time h4{
    min-height: 20px;
    font_radio: 2;
    padding-left: 0px;
    font-size: 50px;
    color: rgba(102, 102, 102, 1);
    line-height: 1.2;
    transition: all .5s ease;
    font-family: Impact;
    text-align: center;
}

.main.news .news-time p{
    min-height: 20px;
    font_radio: 2;
    padding-left: 0px;
    font-size: 16px;
    color: rgba(102, 102, 102, 1);
    line-height: 1.6;
    transition: all .5s ease;
    font-family: Arial;
    font-weight: bold;
}

.pl_service3 {
    position: fixed;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}
.pl_service3 .item_con {
    text-align: right;
}
.pl_service3 .service_item {
    padding-left: 43px;
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 30px;
    background: #999;
    color: #fff;
    overflow: hidden;
    transition: width 0.4s;
    position: relative;
    cursor: pointer;
}
.pl_service3 .service_item.wx {
    background: #64c548;
}
.pl_service3 .service_item.qyszmp {
    background: #009ca0;
}
.pl_service3 .service_item.skype {
    background: #00a3ed;
}
.pl_service3 .service_item.alww {
    background: #1ac1ed;
}
.pl_service3 .service_item.whatsapp {
    background: #3dceb2;
}
.pl_service3 .service_item.yj {
    background: #3f6ee0;
}
.pl_service3 .service_item.qq {
    background: #529cd1;
}
.pl_service3 .service_item.kf {
    background: #f56c6c;
}
.pl_service3 .service_item.kfz {
    background: #999;
}
.pl_service3 .service_item.link {
    background: #f60;
}
.pl_service3 .service_item.tel {
    background: #06f;
}
.pl_service3 .service_item.custom {
    background: #fc0;
}
.pl_service3 .service_item.smService {
    background: #6bd8bb;
}
.pl_service3 .service_item:hover {
    width: 206px;
}
.pl_service3 .service_icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pl_service3 .service_icon .icon {
    width: 100%;
    height: 100%;
    margin: 10px 0 0;
    padding: 0;
    font-size: 26px;
    text-align: center;
}
.pl_service3 .service_value {
    margin: 0;
    padding: 0 5px;
    text-align: left;
    line-height: 18px;
}
.pl_service3 .service_value.dh {
    line-height: 35px;
    text-align: center;
    width: 120px;
    margin-top: 6px;
}

.pl_service3 .icon{
    font-size: 16px;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    margin-top: -3px;
    fill: currentColor;
}
.pl_service3 span{
    font-size: 14px;
    line-height: 1.66666;
    margin: 0 auto;
    padding: 0;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
.pl_service3 p{
    padding: 0;
    margin: 0;
}
.pl_service3 p a,.pl_service3 p span,.p_doThirdFunc{
    font-size: 14px;
    line-height: 1.66666;
    margin: 0 auto;
    padding: 0;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-box-n120m-1 .box .item a {
        font-size: 24px;
        padding: 5px
    }

    .contact-box-n120m-1 .box .item p {
        font-size: 1rem
    }
}

.friendly-link-n119m-1 {
    position: relative;
    padding: 32px 0 0 0
}

.friendly-link-n119m-1 .blk {
    display: none;
    float: left;
    padding: 10px
}

.friendly-link-n119m-1 a, .friendly-link-n119m-1 h3.title {
    display: inline-block;
    width: 100%;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    line-height: 24px;
    margin-bottom: 8px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.friendly-link-n119m-1 h3.title {
    font-size: 1.6rem;
}
.friendly-link-n119m-1 a:hover {
    color: #00a3eb
}

.friendly-link-n119m-1 .title {
    color: #fff;
    font-size: 2rem
}

.friendly-link-n119m-1 .cus {
    position: relative;
    margin-bottom: 15px
}

.friendly-link-n119m-1 .cus .imco {
    color: #fff;
    font-size: 26px;
    position: absolute;
    left: 2px
}

.friendly-link-n119m-1 .cus .info {
    padding-left: 48px
}

.friendly-link-n119m-1 .cus .info a {
    margin-bottom: 0
}



.friendly-link-n119m-1 .snsinfo a {
    color: #bf0013;
    background-color: #343434;
    background: #fff;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    margin: 0 8px;
    text-decoration: none
}

.friendly-link-n119m-1 .snsinfo a:hover {
    color: #f2272e;
    background: #e5e5e5
}

.friendly-link-n119m-1 .snsinfo a i {
    font-size: 1.8rem;
    display: block
}

@media (max-width: 768px) {
    .friendly-link-n119m-1 {
        padding: 16px 0 55px 0;
        margin-bottom: -50px
    }

    .friendly-link-n119m-1 .container {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        width: 100%
    }

    .friendly-link-n119m-1 .container .sns a {
        margin: 0 8px 8px 0
    }

    .friendly-link-n119m-1 .container .blk:last-child {
        display: block;
        padding: 0
    }
}

@media (min-width: 768px) {
    .friendly-link-n119m-1 .blk {
        padding: 32px 16px
    }

    .friendly-link-n119m-1 .blk:nth-child(1), .friendly-link-n119m-1 .blk:nth-child(2), .friendly-link-n119m-1 .blk:nth-child(3), .friendly-link-n119m-1 .blk:last-child {
        display: block
    }
}

.back-top-n8m-2 {
    position: fixed;
    padding: 8px 10px 12px 10px;
    text-align: center;
    border: 1px solid #00a3eb;
    color: #cbcbcb;
    background-color: #00a3eb36;
    opacity: .7;
    right: 16px;
    bottom: 8%;
    display: none;
    margin-bottom: 8px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.back-top-n8m-2:hover {
    opacity: 1;
    background-color: #00a3eb;
    cursor: pointer
}

.back-top-n8m-2 i {
    color: #78d6ff;
    width: 28px;
    height: 28px;
    display: inline-block;
    font-size: 24px
}

.footer {
    position: relative;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(37, 37, 37, 1)
}
.footer .footer-menu {
    position: relative;
    padding: 32px 0 0 0;
}
.footer .footer-menu .container {
    margin-bottom: 20px;
    margin-top: 20px;
}
.footer-menu h3{

}
.footer-menu ul {
    padding: 0;
}
.footer-menu li{
    line-height: 20px;
    list-style-type: none;
    margin: 10px 0;
}
.footer-menu .title{
    color: #f2f2f2;
    font-size: 1.6rem;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-menu .footer-menu-list .value{
    font-weight: 300;
    font-style: normal;
    font-size: 1.45rem;
    line-height: 21px;
    color: #ccc;
    border-bottom: 1px solid transparent;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.footer-menu .footer-menu-list .value:hover{
    color: #00a3eb;
    border-bottom: 1px solid #00a3eb;
}
.footer-menu .footer-menu-map .value{
    color: #ccc;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5rem;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.footer-menu .footer-menu-map .value:hover{
    color: #00a3eb;
}

.footer-menu .contact {
    position: relative;
    margin-bottom: 15px;
}
.footer-menu .contact .imco {
    color: #fff;
    font-size: 26px;
    position: absolute;
    left: 2px;
}
.footer-menu .contact .info {
    padding-left: 48px;
}

.footer-menu .contact .info .value {
    display: inline-block;
    width: 100%;
    font-size: 1.45rem;
    text-decoration: none;
    line-height: 24px;
    margin-bottom: 8px;
}
.footer-menu .sns a {
    width: 32px;
    height: 32px;
    line-height: 30px;
    font-size: 2.8rem;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    margin: 0 15px 15px 0;
    opacity: 1;
    display: block;
    float: left;
}

.footer-menu .sns a .f-skype {
    color: #00aff0
}

.footer-menu .sns a .f-twitter {
    color: #010101
}

.footer-menu .sns a .f-google-plus {
    color: #cc3b1e
}

.footer-menu .sns a .f-linkedin {
    color: #006a9a
}

.footer-menu .sns a .f-facebook {
    color: #4267b2
}

.footer-menu .sns a .f-instagram {
    color: #4267b2
}

.footer-menu .sns a .f-youtube {
    color: #4267b2
}

.footer-menu .sns a .f-comment {
    color: #4267b2
}

.footer-menu .sns a .f-pinterest {
    color: #e10600
}

.footer-menu .sns a .f-tiktok {
    color: #740dbc
}

.footer .footer-powerby{
    text-align: center;
    padding: 20px 0;
    background-color: rgba(50, 50, 50, 1);
    border-top: 1px solid rgb(187 187 187 / 20%);
}
.footer-powerby .footer-title{
    font-size: 1.5rem;
    line-height: 1.4;
    color: #a7a7a7;
    background-color: rgba(50, 50, 50, 1);
}


@media (max-width: 768px) {
    .area-background-n4m-129.zone {
        padding: 30px 25px 0 25px;
        margin-bottom: 40px
    }
}

.area-background-n4m-129.zone.lastaz {
    margin-bottom: 0 !important;
    padding-top: 0 !important
}

.area-background-n4m-129.zone > .area-background-cont {
    z-index: -20
}

.area-background-n4m-129.widget > .area-background-cont {
    z-index: -19
}

.area-background-n4m-129 > .area-background-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(37, 37, 37, 1)
}

.navigation .navbar-ul > li.avtives > a {
    color: #00a3eb;
}
ul li {
    list-style: none;
}


.headline-title, .headline-title-1 {
    background: #f2f2f2;
    padding: 10px 15px;
}
.headline-title {
    margin-bottom: 24px;
}

.headline-title .wm-tlt, .headline-title-1 .wm-tlt{
    padding: 6px 10px;
    margin: 0;
    border-left: 4px solid #ec5520;
    color: #00a3eb;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: capitalize
}
.headline-title .search {
    font-size: 1.5rem;
    text-transform: none;
}
.headline-title .search strong {
    color: #ec5520;
}
.search-msg {
    margin: 100px 0;
    padding: 1rem;
}
.search-msg p {
    font-size: 1.52rem;
    font-weight: 700;
    line-height: 1.8;
    color: red;
    text-align: center;
    margin: 0;
    padding: 1.2rem;
    border: 1px dashed red;
}

/*single-page*/
.single-page{
    padding-bottom: 50px;
}
.single-page .title {
    padding: 6px 10px;
    border-left: 4px solid #ec5520;
}
.single-page .title .wm {
    color: #00a3eb;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize
}
.single-page .content {
    padding: 0 20px;
    font-size: 1.6rem;
    /*border: 1px dashed #ec5520;*/
}
.single-page .content ul li {
    list-style: auto;
}
.single-page .content h1,
.single-page .content h2
{
    width: 100%;
    text-align: start;
    padding: 6px 20px;
    box-sizing: border-box;
    border-bottom: 3px solid #ec5520;
    margin: 0;
}


@media (max-width: 768px) {
    .headline-title-1 {
        margin-bottom: 16px;
        padding: 5px 15px
    }

    .headline-title-1 .wm-tlt {
        padding: 6px 8px
    }
}


/*message*/
.message-book{
    position: relative;
    overflow: auto;
    background: #fff;
    border: 1px solid #f2f2f2;
    margin-bottom: 60px
}

.message-book .mtitle {
    padding: 15px;
    margin: 0 0 24px 0;
    color: #fff;
    background: #00a3eb;
    font-size: 1.6rem;
    font-weight: 700
}

.message-book .mtitle i {
    width: 10px;
    height: 25px;
    display: inline-block;
    background: #ec5520;
    float: left;
    margin-right: 20px;
    transform: skewX(150deg)
}

.message-book .mdesc {
    color: #00a3eb
}

.message-book .line {
    overflow: hidden;
    margin-bottom: 20px
}

.message-book .line label {
    font-size: 1.6rem;
    font-weight: normal
}

.message-book .line label i {
    margin-right: 6px;
    color: #ec5520;
    font-size: 16px
}

.message-book .line input, .message-book .line textarea {
    font-size: 1.6rem;
    -webkit-appearance: none;
    outline: 0;
    border: 1px solid #f2f2f2;
    border-radius: 2px
}

.message-book .line input:focus, .message-book .line textarea:focus, .message-book .line input:hover, .message-book .line textarea:hover {
    outline: 0;
    -webkit-appearance: none;
    border: 1px solid #ec5520;
}

.message-book .line textarea {
    line-height: 26px;
    resize: none
}

.message-book .line input {
    line-height: 40px;
    height: 40px;
    padding: 0 12px
}

.message-book .field-validation-error {
    color: #ec5520;
    padding: 0 12px;
    margin-top: 2px;
    display: inline-block;
    font-size: 1.4rem
}

.message-book .subbtn {
    float: left;
    padding: 0 15px
}

.message-book .subbtn button {
    transition: background-color .3s ease 0s;
    outline: 0;
    cursor: pointer;
    appearance: none;
    user-select: none;
    text-align: center;
    word-spacing: normal;
    height: 40px;
    line-height: 38px;
    padding: 0 24px;
    font-size: 16px;
    border: 0;
    color: #fff;
    background: #ec5520;
}

.message-book .subbtn button:hover {
    background: #00a3eb;
}

.message-book .privacy {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-left: 8px;
    font-weight: normal
}

.message-book .privacy input[type="checkbox"] {
    display: block;
    position: relative;
    vertical-align: middle;
    margin-right: 24px;
    height: 1px;
    opacity: 0;
    margin: 0;
    cursor: pointer
}

.message-book .privacy input[type="checkbox"]:checked + span:before {
    border-color: #00a3eb;
    background-color: #00a3eb
}

.message-book .privacy input[type="checkbox"]:checked + span:after {
    border-color: #fff
}

.message-book .privacy .nschb {
    display: block;
    position: relative;
    font-size: 14px;
    padding-left: 24px;
    line-height: 40px;
    cursor: pointer;
    color: #333
}

.message-book .privacy .nschb:before, .message-book .privacy .nschb:after {
    display: block;
    position: absolute;
    content: '';
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.message-book .privacy .nschb:before {
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    margin-top: -9px
}

.message-book .privacy .nschb:after {
    width: 9px;
    height: 6px;
    border-width: 0 0 2px 2px;
    border-color: transparent;
    border-style: solid;
    top: 50%;
    left: 4px;
    margin-top: -5px;
    transform: rotate(-45deg)
}

.message-book .privacy a {
    color: #505050;
    text-decoration: none;
    font-size: 1.6rem
}

.message-return-show{
    position: fixed;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(236, 85, 32);
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 99999999;
    cursor: pointer;
    max-width: 75vw;    /* 最大宽度占屏幕80%，不会贴满屏幕 */
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
}

@media (max-width: 768px) {
    .message-book{
        padding: 16px 1px;
        margin-bottom: 40px
    }

    .message-book .line {
        margin-bottom: 12px
    }

    .message-book .line input {
        line-height: 32px;
        height: 32px
    }

    .message-book .mtitle {
        margin-bottom: 12px
    }
}

/*pagesize*/
.page-list-menu {
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
    margin: 50px 0;
    padding: 0 15px;
    height: 40px;
}

.page-list-menu ul {
    display: inline-block;
    padding: 0;
    margin: 0
}

.page-list-menu ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 1.4rem;
    text-align: center;
    padding: 0 6px;
    line-height: 38px;
    height: 40px;
    min-width: 40px;
    border: 1px solid #f2f2f2;
    margin: 0 5px 5px 5px;
    color: #505050;
    background-color: #fff;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.page-list-menu ul li:hover {
    color: #fff;
    background-color: #00a3eb;
}

.page-list-menu ul li a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: inline-block
}

.page-list-menu ul .active {
    border-color: #00a3eb;
    background: #00a3eb;
    color: #fff !important
}

.page-list-menu ul .pageinfo {
    border: 0;
    background: transparent;
    color: #505050 !important
}

/*sitemap*/
.sitemap {
    overflow: auto;
    border: 1px solid #f2f2f2;
    margin-bottom: 60px;
}
.sitemap .title {
    display: inline-block;
    width: 100%;
    font-size: 2rem;
    line-height: 1.576;
    padding: 5px 20px;
    font-weight: normal;
    color: #505050;
    background: #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    margin-top: 20px;
}
.sitemap .title:first-child {
    margin-top: 0;
}
.sitemap .item {
    width: 33%;
    float: left;
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 20px 20px 10px 20px;
}
.sitemap .item-sub {
    width: auto;
    margin: 20px;
}
.item-sub span {
    font-size: 1.8rem;
}
.item-sub ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.item-sub ul li {
    float: left;
    width: 25%;
    padding: 8px;
}
.item-sub ul li a{
    font-size: 1.45rem;
    margin: 5px 0;
    line-height: 1.2;
    word-break: break-word;
}