* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: #333;
}
html {
    min-width: 1200px;
    color: #333;
    font: 14px/1.5 'Helvetica Neue', Helvetica, Arial, 'Microsoft Yahei',
    'Hiragino Sans GB', 'Heiti SC', 'WenQuanYi Micro Hei', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.mobile-hide {
    display: flex;
}
.header {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-left: 15%;
    position: relative;
}

.header-bg {
    width: 100%;
    min-width: 1200px;
    max-width: 5000px;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: bottom;
    min-height: 300px;
    height: 300px;
    z-index: -1;
    transform: scaleX(1);
}
.header-logo a{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}
.header-logo-image {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50%;
}
.header-logo-text {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

.menu {
    display: flex;
    align-items: center;
    height: 52px;
    color: #fff;
    padding-left: 10%;
    margin-top: 10px;
}

.menu-item {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    border-bottom: 3px solid transparent;
    margin-right: 30px;
    padding: 0 15px;
    text-align: center;
}

.menu-item:hover {
    color: #fff;
    border-bottom: 3px solid #ffffff;
}

.menu-current {
    border-bottom: 3px solid #ffffff;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15%;
}

.fast {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-self: center;
    margin-top: 10px;
}
.fast-list {
    margin-right: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 28%;
    height: 160px;
    box-shadow: 1px 1px 3px 1px rgba(135, 172, 175, 0.5);
    border-radius: 5px;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(to bottom, #E2F0FF, #FEFFFF);
}

.fast-list:hover {
    background: linear-gradient(to top, #E2F0FF, #FEFFFF);
    transform: scale(1.03);
}
.fast-list-icon {
    width: 80px;
    height: 80px;
}
.fast-list-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}

.card-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0;
}

.card {
    width: 32%;
    flex-direction: column;
    margin-top: 12px;
    box-shadow: 1px 1px 3px 0 rgba(135, 172, 175, 0.5);
    border-radius: 15px;
    min-height: 200px;
    overflow: hidden;
}
.card-title {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    margin-bottom: 15px;
}

.card-title:hover {
    letter-spacing: 2px;
}
.card-title-text {
    font-size: 18px;
    font-weight: 600;
}
.card-title-icon {
    width: 30px;
    height: 30px;
    position: relative;
    right: -18px;
}
.card-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 6px;
    width: 100%;
    padding: 5px 10px 5px 18px;
    position: relative;

}
.card-list::before {
    content: "•";
    color: #1E77E7;
    font-size: 18px;
    position: absolute;
    left: 5px;
    top: 30%;
}
.card-list-text {
    color: #000;
    padding: 0 0 3px 0;
    border-radius: 8px;
    min-width: 87px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}
.card-list-title {
    width: 100%;
    color: #444;
    overflow:hidden;
    white-space: nowrap;
    font-size: 14px;
    text-overflow: ellipsis;
    -o-text-overflow:ellipsis;
}
.card-list-title:hover {
    color: #1178b3 !important;
}

.tag-hot {
    color: #fff;
    background: #ff7f50;
    font-size: 11px;
    border-radius: 3px;
    padding: 2px 3px;
}
.tag-top {
    color: #fff;
    background: #27ae60;
    font-size: 11px;
    border-radius: 3px;
    padding: 2px 3px;
}
.tag-recommend {
    color: #fff;
    background: #0984e3;
    font-size: 11px;
    border-radius: 3px;
    padding: 2px 3px;
}
.tag-color {
    color: #fff;
    background: #ff6348;
    font-size: 11px;
    border-radius: 3px;
    padding: 2px 3px;
}
.news-location {
    padding-left: 15%
}
.news {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 15%;
    margin-top: 20px;
    flex: 1;
}
.news-title {
    font-size: 25px;
    font-weight: 700;
}
.news-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
    color: #8c8484;
    font-weight: bold;
    margin-top: 5px;
}
.news-subtitle span{
    margin: 0 20px;
}
.news-detail {
    width: 100%;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.news-detail img{
    max-width: 100%;
}
.news_sx {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.news_sx a{
    color: #1178b3;
}

.phone {
    width: 100%;
    background: #0879b4;
    color: #fff;
    margin-bottom: 20px;
    height: 92px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}
.phone-icon {
    width: 56px;
    height: 40px;
}
.phone-number {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 18px;
}

.page ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 15px;
}

.page ul li{
    margin: 5px;
}
.page ul li a:hover{
    color: #0879b4;
}
.page-current {
    color: #2db578;
}
.page-nouse {
    cursor: not-allowed;
    opacity: 0.5;
}

.location {
    color: #16a085;
    padding-left:  10px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.location a {
    cursor: pointer;
}
.location a:hover {
    color: #0879b4;
}

.footer {
    margin-top: 20px;
    background: #0159A1;
    width: 100%;
    padding: 7px 15%;
    color: #fff;
    font-size: 13px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.foot-left {
    display: flex;
    flex-direction: column;
}
.foot-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.foot-line{
    width: 100%;
    margin: 1px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.foot-line:hover{
    color: #fff;
}
.foot-line img{
    width: 16px;
    height: 16px;
    margin-right: 3px;
}
.foot-code {
    width: 80px;
    height: 80px;
}
.foot-wechat {
    font-size: 12px;
    margin-top: 3px;
}
.recent {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-top: none;
}
.recent-title {
    background: #0879B4;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
}
.recent-title img{
    width: 29px;
    height: 32px;
}
.recent-title:hover{
    color: #fff;
}
.recent-no {
    text-align: center;
    line-height: 30px;
    border: 1px solid #eee;
    border-top: none;
}
.recent-list a{
    padding-left: 5px;
    color: #0879B4;
    line-height: 35px;
    font-size: 16px;
}
.recent-list a::before{
    content: '●';
    margin-right: 3px;
    color: #0879B4;
    line-height: 30px;
    font-size: 16px;
    width: 100%;
}

.title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    margin: 25px 0 15px 0;
    position: relative;
    align-self: center;
    padding-left: 0;
}

.title-left {
    color: #333;
}

.title-right {
    color: #0F5DEB;
}

.title-bottom {
    position: absolute;
    bottom: 2px;
    right: 10%;
    width: 80%;
    height: 6px;
    background: linear-gradient(to left, #2db578, transparent);
    border-radius: 3px;
    z-index: -1;
}

.link {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.link p {
    width: 48%;
}

.link a {
    width: 100%;
    display: block;
    box-shadow: 1px 1px 3px 1px rgba(135, 172, 175, 0.5);
    height: 60px;
    padding-left: 15px;
    line-height: 60px;
    margin-bottom: 15px;
    border-radius: 8px;
    background: linear-gradient(to right, #CEF0F6, #FEFFFF);
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.link a::after {
    content: '立即进入';
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #3D95C4;
    background: #E5EEF7;
    border-radius: 10px;
    padding: 2px 15px;
    height: 30px;
    line-height: 30px;
    box-shadow: 1px 1px 3px 1px rgba(135, 172, 175, 0.5);
    background: linear-gradient(to bottom, #CEF0F6, #FEFFFF);
}

.link a:hover::after {
    background: linear-gradient(to top, #CEF0F6, #FEFFFF);
    color: #2db578;
    transform: scale(1.01);
}

