div {
    box-sizing: border-box;
}

/* 作废h-ui默认样式 */

p {
    margin-bottom: 0px;
}

.tabBar {
    border-bottom: 0px;
}

a:hover {
    text-decoration: none;
    color: #0491ff;
}

.border-1px {
    border: 1px solid #333;
}

.blank10 {
    width: 100%;
    height: 10px;
}

.blank20 {
    width: 100%;
    height: 20px;
}

.blank50 {
    width: 100%;
    height: 50px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mask {
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.ie-message {
    height: 40px;
    line-height: 40px;
    max-width: 1140px;
    margin: 0px auto;
    text-align: center;
    font-size: 30px;
    background-color: salmon;
    color: #fff;
}

.diandiandian1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.diandiandian2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.diandiandian3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.diandiandian5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}



/* 文章导航区 */

.menu-nav dl dt, .menu-nav dl dd {
    float: left;
    font-size: 16px;
    /* color: #6F6F6F; */
    letter-spacing: 1px;
    font-weight: 600;
}

.menu-nav dl dd {
    margin-right: 5px;
}

.menu-nav dl dd:after {
    content: '>';
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: -1px;
}

.menu-nav dl dd:last-child:after {
    content: '';
}

.menu-nav dl dd a {
    /* color: #6F6F6F; */
    font-size: 16px;
    font-weight: 600;
}

/* 文章导航区 */


/* 手机端菜单 */

.header-menu {
    position: relative;
}

.header-menu #menu {
    display: none;
}

.header-menu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 4.13rem;
    height: 4.13rem;
    transition: transform 250ms ease;
    cursor: pointer;
    z-index: 20;
    background-color: transparent;
    border: 0px;
}

.header-menu .menu span {
    position: relative;
    display: block;
    width: 50%;
    height: 2px;
    background-color: white;
    float: left;
    transform-origin: center center;
    transition: transform 250ms ease;
    z-index: 20;
}

.header-menu .menu span:nth-of-type(1) {
    transform: translateY(-5px);
}

.header-menu .menu span:nth-of-type(3) {
    transform: translateY(5px);
}

.header-menu #menu:checked~.menu {
    background-color: transparent;
    transform: rotate(360deg);
    transition: transform 250ms ease;
}

.header-menu #menu:checked~.menu span {
    background-color: white;
    transition: transform 250ms ease;
}

.header-menu #menu:checked~.menu span:nth-of-type(1) {
    transform: translateY(1px) rotate(45deg);
}

.header-menu #menu:checked~.menu span:nth-of-type(2) {
    display: none;
}

.header-menu #menu:checked~.menu span:nth-of-type(3) {
    transform: translateY(-1px) rotate(-45deg);
}

.header-menu .header-menu-links {
    opacity: 0;
    z-index: 20;
    text-align: center;
    position: absolute;
    top: 4.5rem;
    left: -6.5rem;
    width: 10rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    box-shadow: 2px 2px 12px 0 rgba(77, 87, 85, 0.21);
}

.header-menu #menu:checked~.header-menu-links {
    transition: all .2s linear .2s;
    opacity: 100;
}

.header-menu-link {
    display: block;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.13rem;
}

.header-menu-link.cur {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.2rem;
}

/* 手机端菜单 */




/* flex宫格 */

.grid-items {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.grid-items .grid-item {
    width: 32.6%;
    /* height: 140px; */
    background: #F7F8FB;
    position: relative;
    z-index: 5;
    cursor: pointer;
    padding-bottom: 40px;
}

.grid-items .grid-item.grid-3 {
    width: 32.6%;
    margin-bottom: 10px;
}

.grid-items .grid-item.grid-5 {
    width: 19%;
    margin-bottom: 10px;
}

.grid-items .grid-item:before {
    content: '';
    position: absolute;
    background-image: url('https://cdn.xt12366.com/image/puduo/puduo-shuiyin.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 88px;
    height: 88px;
    right: -2px;
    bottom: -10px;
    z-index: -1;
}

.grid-items .grid-item .info-title {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.grid-items .grid-item .info-title::after {
    content: '';
    width: 24px;
    height: 2px;
    /* background-color: #0491FF; */
    background-image: linear-gradient(180deg, #0BC3FF 0%, #0491FF 100%);
    position: absolute;
    left: calc(50% - 12px);
    bottom: 0px;
}

.grid-items .grid-item .info-title.no-border::after {
    height: 0px;
}

.grid-items .grid-item .info-info {
    width: 80%;
    margin: 15px auto;
}

.grid-items .grid-item .grid-item-foot {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -30px;
    height: 30px;
    line-height: 30px;
    background-image: linear-gradient(90deg, #0491FF 0%, #0BC3FF 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* flex宫格 */

/* 返回顶部 */

.to-top {
    width: 46px;
    height: 46px;
    background-image: url('/Public/puduo/icon/icon_goback.png');
    background-repeat: no-repeat;
    background-position: 0px 0px;
    text-indent: -50px;
    overflow: hidden;
}

.to-top:hover {
    background-position: 0px -47px;
}

/* 返回顶部 */

/* 公共颜色区 */

.font-bold {
    font-weight: bold;
}

.font-color-main {
    color: #394557;
}

.font-color-secondary {
    color: #5B6572;
}

.font-color-tips {
    color: #acb5c2;
}

.back-color-main {
    background-color: #0491ff;
}

.back-color-decorate {
    background-color: #ff882d;
}

.back-color-difference {
    background-color: #f7f8fb;
}

/* 公共颜色区 */

/* 分页 */

.pager a {
    display: inline-block;
    border-radius: 1px;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid #d9d9d9;
    text-decoration: none;
    margin-right: 5px;
    /* float: left; */
    color: #333;
}

.pager a.current {
    border: 1px solid #04A4FF;
    color: #fff;
    background: #04A4FF
}

.pager span {
    float: right;
    color: #999
}

/* 分页 */

/* 基础类库 */

.tag-padding-40-46 {
    padding: 40px 46px;
}

.tag-padding-10-32 {
    padding: 10px 32px;
}

.tag-normal {
    color: #5B6572;
    border: 1px solid #ACB5C2;
    display: inline-block;
    cursor: pointer;
}

.tag-normal:hover {
    border: 1px solid #0491FF;
}

.tag-select {
    color: #fff;
    background-color: #0491FF;
}

/* 基础类库 */

/* 弹窗提交邮件 */

.openwindow {
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.form-row {
    display: flex;
    align-items: center;
    padding: 10px;
}

.form-row textarea {
    padding-left: 10px;
}

.form-row-title {
    font-size: 14px;
    color: #555;
    width: 20%;
    text-align: right;
}

.form-row .input-text, .form-row .textarea {
    width: 60%;
    margin-left: 10px;
    margin-right: 10px;
}

.form-row-textarea {
    align-items: flex-start;
}

.error-msg {
    color: rgb(228, 21, 21)
}

/* 弹窗提交邮件 */

/* 头部导航区 */

.top-content {
    width: 100%;
    min-height: 88px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.top-content .logo {
    width: 200px;
    height: 88px;
    overflow: hidden;
}

.top-content .topmenu {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    align-items: center;
}

.top-content .topmenu .menu-item {
    position: relative;
    margin-bottom: 0px;
    /* line-height: 1; */
    transition: 0.2s all linear;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-item a {
    font-size: 16px;
    color: #5B6572;
    display: block;
}

.menu-item.current>a {
    color: #0491FF;
    font-weight: 600;
}

.menu-item>a::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 100%;
    width: 0;
    /* height: 100%; */
    border-bottom: 2px solid #0491FF;
    transition: 0.1s all linear;
    -webkit-transition: 0.1s all linear;
    -moz-transition: 0.1s all linear;
    -ms-transition: 0.1s all linear;
    -o-transition: 0.1s all linear;
}

.menu-item.current>a:before {
    left: 0px;
    width: 100%;
}

.menu-item:hover>a::before {
    width: 100%;
    top: 65px;
    left: 0;
    transition-delay: 0.1s;
    border-bottom-color: #0491FF;
    z-index: -1;
}

.menu-item:hover~.menu-item::before {
    left: 0;
    top: 65px;
}

.menu-item-sub {
    position: absolute;
    top: 70px;
    left: -19px;
    background-color: #fff;
    display: none;
    z-index: 10;
}

.menu-item-sub a {
    box-sizing: border-box;
    width: 100px;
    padding: 10px;
    text-align: center;
    font-size: 15px;
}

.menu-item:hover .menu-item-sub {
    display: block;
}

.menu-item.current .menu-item-sub {
    display: block;
}

.top-content .search {
    height: 28px;
    position: relative;
    width: 160px;
    align-self: center;
}

.top-content .search #search-txt {
    border: 1px solid #0491FF;
    border-right: 0px;
    background-color: #fff;
    height: 28px;
    box-sizing: border-box;
    width: 132px;
    box-sizing: border-box;
    padding-left: 10px;
}

.top-content .search .search-btn {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background-color: #0491FF;
    position: absolute;
    top: 0px;
    right: 0px;
}

/* 头部导航区 */

/* 网站底部 */

.foot {
    min-height: 480px;
    background-color: #333;
    padding-top: 60px;
}

.guanyu-items {
    display: flex;
    justify-content: flex-start;
}

.guanyu-item {
    margin-right: 60px;
}

.guanyu-item .p1 {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 20px;
}

.guanyu-item .p2 a {
    display: block;
    opacity: 0.7;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.saoma {
    display: flex;
    justify-content: flex-start;
}

.saoma-item {
    margin-right: 46px;
}

.saoma-item img {
    width: 100px;
    height: 100px;
}

.saoma-item p {
    padding-top: 10px;
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.lianjei .p1 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.lianjei .p2 span {
    margin-right: 60px;
}

.lianjei .p2 span a {
    opacity: 0.7;
    font-size: 14px;
    color: #FFFFFF;
}

.banquan {
    border-top: 1px solid #6C6C6C;
    padding-top: 20px;
    padding-left: 10px;
}

.banquan span {
    opacity: 0.7;
    font-size: 14px;
    color: #FFFFFF;
    padding-right: 10px;
}

.banquan span a {
    font-size: 14px;
    color: #FFFFFF;
}

/* 网站底部 */

/* 右侧飘窗 */

.uladdRight {
    position: fixed;
    bottom: 90px;
    right: 14px;
    z-index: 300;
    box-sizing: border-box;
    width: 48px;
    background-color: #fff;
}

.uladdRight li {
    padding: 10px;
}

.uladdRight li:hover>a {
    color: #fff;
}

li.zxzx {
    padding-top: 45px;
    background-image: url('/Public/puduo/icon/kefu/icon_zxizx_normal.png');
    background-position: center 10px;
    background-repeat: no-repeat;
}

li.zxzx:hover {
    background-image: url('/Public/puduo/icon/kefu/icon_zxizx_press.png');
    background-color: #0491ff;
}

li.kefu {
    padding-top: 45px;
    background-image: url('/Public/puduo/icon/kefu/icon_kf_normal.png');
    background-position: center 10px;
    background-repeat: no-repeat;
    position: relative;
}

li.kefu:hover {
    background-image: url('/Public/puduo/icon/kefu/icon_kf_press.png');
    background-color: #0491ff;
}

li.kefu .kefu-div {
    position: absolute;
    right: 50px;
    top: 0px;
    width: 210px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 15px #e5e5e5;
    -moz-box-shadow: 0px 5px 15px #e5e5e5;
    box-shadow: 0px 5px 15px #e5e5e5;
}

li.tucao {
    padding-top: 45px;
    background-image: url('/Public/puduo/icon/kefu/icon_tucao.png');
    background-position: center 10px;
    background-repeat: no-repeat;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

li.tucao:hover {
    background-color: #0491ff;
}

.uladdRight li>a {
    display: inline-block;
    font-size: 12px;
    color: #5B6572;
    width: 100%;
    height: 100%;
}

a.kefu-item {
    display: block;
    background-image: url('/Public/puduo/icon/kefu/icon_qq.png');
    background-repeat: no-repeat;
    background-position: left 12px;
    padding-left: 20px;
    padding-top: 10px;
}

/* .uladdRight a.huiyuanZm {
    background: url(/Public/puduo/images/1zm.png) no-repeat;
    width: 48px;
    height: 116px
}

.uladdRight a.keFu {
    background: url('/Public/puduo/icon/kefu/icon_kf_press.png') no-repeat;
    
}

.uladdRight a.keFu:hover {
    background: url(/Public/puduo/images/2kf_hover.png) no-repeat;
}

.uladdRight a.tugeCao {
    background: url(/Public/puduo/images/3tc.png) no-repeat;
    width: 48px;
    height: 90px
}

.uladdRight a.tugeCao:hover {
    background: url(/Public/puduo/images/3tc_hover.png) no-repeat;
} */

/* 右侧飘窗 */

@media (max-width: 767px) {
    html, body {
        overflow: auto;
        height: 100%;
    }
    .blank10 {
        width: 100%;
        height: 10px;
    }
    .blank20 {
        width: 100%;
        height: 10px;
    }
    .blank50 {
        width: 100%;
        height: 20px;
    }
    .top-content {
        flex-direction: column;
    }
    .top-content .logo {
        order: 1;
        /* background-color: #0491FF; */
        width: 100%;
        height: 100%
    }
    .top-content .logo img {
        height: 70px;
    }
    .top-content .search {
        margin-top: 10px;
        order: 2;
        width: 50%;
        position: absolute;
        top: 12px;
        right: 16px;
    }
    .top-content .search #search-txt {
        width: calc(100% - 28px);
    }
    .top-content .topmenu {
        order: 3;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
    }
    .top-content .topmenu .menu-item {
        box-sizing: border-box;
        width: 33.333%;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 10px;
        border: 1px solid #f5f5f5;
    }
    .no-border-right {
        border-right: 0px !important;
    }
    .no-border-bottom {
        border-bottom: 0px !important;
    }
    .menu-item.current:before {
        left: 0px;
        width: 0px;
    }
    .foot {
        padding-top: 20px;
    }
    .guanyu-items {
        flex-direction: column;
    }
    .guanyu-item {
        margin-right: 0px;
    }
    .guanyu-item .p1 {
        margin-bottom: 10px;
    }
    .lianjei .p2 span {
        margin-right: 42px;
    }
    .banquan span {
        display: block;
    }
    .grid-items .grid-item.grid-3 {
        width: 49%;
        margin-bottom: 10px;
    }
    .grid-items .grid-item.grid-5 {
        width: 49%;
        margin-bottom: 40px;
    }
    .banquan {
        border: 0px;
        padding: 0px;
    }
    .saoma {
        margin-top:18px;
        display: flex;
        justify-content: space-evenly;
    }
    .saoma-item {
        margin:0px;
    }
}<!--耗时1774175119.3804秒-->