* {
    padding: 0;
    margin: 0;
}

ul, li {
    list-style: none;
}

body {
    background: #f5f5f5;
    color: #333;
    font-size: 12px;
}

a {
    color:#50a1ff;
    text-decoration: none;
}
a:hover {
    color:#50a1ff !important;
    text-decoration:none;
}

.container {
    width: 1200px;
    position: relative;
    margin: 0 auto;
}

.news-header .navbar {
    position: relative;
    background: white;
    height: 60px;
    z-index: 999;
    box-shadow: 0 0 18px rgb(0 0 0 / 6%);
}

.news-header .navbar.fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

.news-header .navbar .container .navbar-nav {
    display: inline-block;
    list-style: none;
    padding: 5px 0;
    float: left;
}

.news-header .navbar .container .navbar-nav .nav-item {
    display: inline-block;
    letter-spacing: 1px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    cursor: pointer;
}

.news-header .navbar .container .navbar-nav .nav-item a {
    height: 50px;
    line-height: 50px;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 600;
    color: inherit;
    padding: 0 15px;
}

.news-header .navbar .container .navbar-nav .nav-item.current_page_item  {
    color: #50a1ff;
}

.news-header .navbar .navbar-right {
    float: right;
    height: 60px;
    padding: 10px 0;
}

.news-header .navbar .navbar-right .nav-search {
    position: relative;
    float: left;
}

.news-header .navbar .navbar-right .nav-search .search-input {
    border: 1px solid #eee;
    padding: 5px 25px;
    height: 30px;
    border-radius: 30px;
    background-color: transparent;
    transition: all .3s ease-out;
    outline: none;
}

.news-header .navbar .navbar-right .nav-search .search-input:focus {
    border-color:#50a1ff;
}

.news-header .navbar .navbar-right .nav-search .search-btn {
    background: transparent;
    border: none;
    position: absolute;
    right: 20px;
    top: 9px;
}

.news-header .navbar .navbar-right .nav-search .search-btn i {
    font-size: 20px;
    cursor: pointer;
}

.news-header .navbar .navbar-right .menu-trigger {
    color: #333;
    height: 40px;
    line-height: 40px;
    display: none;
    margin-left: 10px;
    margin-right: 10px;
}

.news-header .navbar .navbar-right .menu-trigger i {
    font-size: 20px;
    font-weight: bold;
}

.news-main {
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    min-height: 747px;
}

.news-main .container {
    display: table;
}

.news-main .news-left {
    display: table-cell;
    width: 875px;
}

.news-main .news-left .news-wrap {
    background: white;
    margin-top: 20px;
    border-radius: 15px;
}

.news-main .news-left .news-wrap .news-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.news-main .news-left .news-wrap .news-item:last-child {
    border-bottom: none;
}

.news-main .news-left .news-wrap .news-item .title {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    color: #333;
    font-weight: bold;
}

.news-main .news-left .news-wrap .news-item .title:hover {
    color:#50a1ff;
}

.news-main .news-left .news-wrap .news-item .content {
    font-size: 14px;
    opacity: .7;
}

.news-main .news-left .news-wrap .news-item .date,
.news-main .news-left .news-content .date {
    font-size: 14px;
    opacity: .7;
    margin-top: 10px;
}

.news-main .news-left .news-wrap .news-item .date i,
.news-main .news-left .news-content .date i {
    font-size: 14px;
    opacity: .7;
}

.news-main .news-left .news-content {
    background: white;
    border-radius: 15px;
    padding: 15px 30px;
    line-height: 35px;
    font-size: 14px;
}

.news-main .news-left .news-content .title {
    width: 100%;
    text-align: center;
    font-size: 25px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-main .news-left .news-content #content img {
    max-width: 100%;
}

.news-main .news-right {
    display: table-cell;
    width: 300px;
    padding-left: 20px;
    vertical-align: top;
}

.news-main .news-right .hot-news-wrap {
    width: 100%;
    background: white;
    border-radius: 15px; 
}

.news-main .news-right .hot-news-wrap .title {
    color: #333;
    font-size: 16px;
    padding: 15px 15px 0 15px;
    font-weight: bold;
}

.news-main .news-right .hot-news-wrap .hot-news-title a {
    display: block;
    line-height: 20px;
    color: #333;
    font-size: 14px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.news-main .news-right .hot-news-wrap .hot-news-title a:hover {
    color:#50a1ff;
}

.news-main .news-right .tags-wrap {
    width: 100%;
    margin-top: 20px;
    background: white;
    border-radius: 15px; 
}

.news-main .news-right .tags-wrap .title {
    color: #333;
    font-size: 16px;
    padding: 15px 15px 0 15px;
    font-weight: bold;
}

.news-main .news-right .tags-wrap .tags-list {
    padding: 15px;
}

.news-main .news-right .tags-wrap .tags-list .tags {
    display: inline-block;
    background: #ddd;
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 5px;
    cursor: pointer;
}

.news-main .news-right .tags-wrap .tags-list .tags a {
    color: #333;
}

.news-main .news-right .tags-wrap .tags-list .tags a:hover {
    color:#50a1ff;
}

.news-footer {
    border-top: 1px solid #eee;
    padding: 15px 0;
    background: white;
    font-size: 14px;
}

.news-footer .footbar-left a {
    margin-right: 10px;
}

.top-wrap {
    position: fixed;
    right: 60px;
    bottom: 110px;
    z-index: 99;
    background: white;
    border: 1px solid #50a1ff;
    padding: 10px;
    display: none;
}

.top-wrap:hover {
    background: #C0C0C0;
}

.top-wrap i {
    font-size: 20px;
    color: #50a1ff;
    font-weight: bold;
}

.news-main .container .servicetitle {
    text-align: left;
    padding-left: 15px;
    padding: 10px 0 15px 15px;
    font-weight: normal;
    font-size: 20px;
    color: #34393d;
}

.news-main .container .serivce-text {
    padding: 5px 20px;
    font-size: 14px;
    line-height: 25px;
}

.news-main .container .serivce-text p {
    margin: 0 0 1.5em;
}

.news-main .container .serivce-text ul {
    list-style: disc;
    padding-left: 15px;
}

.news-main .container .serivce-text ul li {
    list-style: disc;
}

@media (max-width: 1024px)
{
    .container {
        width: auto;
        max-width: 1200px;
        padding: 0 10px;
    }
    
    .news-header .navbar .container .navbar-nav {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        width: 250px;
        margin-left: 0;
        background: #fff;
        z-index: 99999;
        overflow-y: scroll;
        display: none;
    }

    .news-header .navbar .navbar-right {
        width: 100%;
        padding-left: 10px;
    }

    .news-header .navbar .navbar-right .menu-trigger {
        display: inline-block;
        float: right;
    }

    .news-header .navbar .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.7);
        z-index: 9998;
    }

    .news-header .navbar .container .navbar-nav .nav-item {
        float: none;
        display: block;
    }

    .news-main .container {
        display: block;
    }
    
    .news-main .news-left {
        display: block;
        width: 100%;
    }
    
    .news-main .news-right {
        display: block;
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .news-main .news-left .news-content {
        background: white;
        border-radius: 15px;
        padding: 15px;
        line-height: 35px;
        font-size: 14px;
    }

    .top-wrap {
        right: 20px;
        bottom: 20px;
    }
}