body{
    color: #333;
    font-size: 16px;
}

a{
    color: #333;
    text-decoration: none;
}

a:hover{
    color: #cb2b2c;
}

.wrap{
    width: 1200px;
    margin: 0 auto;
}


.no-data{
    width: 100% !important;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ellipsis {
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

[v-cloak] {
  display: none;
}

/* 头部 */
.header {
    background-color: rgba(0, 0, 0, .7);
    height: 76px;
    line-height: 76px;

    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

.header a {
    color: #fff;
}

.header>.wrap {
    display: flex;
    justify-content: space-between;
}

.header-logo img {
    width: auto;
    vertical-align: middle;
    height: 50px;
}

.header-nav {
}

.header-nav>ul {
    float: left;
}

.header-nav ul img {
    display: none;
}

.header-nav>ul>li{
    float: left;
    position: relative;
}

.header-nav ul a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0 22px;
    font-size: 18px;
}

.header-nav>ul>li:after {
    content: "";
    display: block;
    height: 3px;
    width: 0px;
    transition: all 0.2s ease-out;
    margin: 0px auto 0;
    background-color: #cb2b2c;
}

.header-nav>ul>li:hover:after,
.header-nav>ul .nav-current:after {
    width: calc(100% - 20px);
}

.header-nav>ul>li:hover .nav-second{
    display: block;
}

/* 二级导航 */
.header-nav .nav-second{
    background-color: #fff;
    position: absolute;
    top: 79px;
    left: 0;
    width: calc(100% + 40px);
    transition: all .3s;
    display: none;
}

.header-nav .nav-second li{
    height: 48px;
    line-height: 48px;
    text-align: left;
    padding-right: 10px;
}

.header-nav .nav-second li a{
    display: block;
    padding-left: 15px;
    font-size: 14px;
    line-height: 48px;
    color: #2b2e2e;
    opacity: .7;
}

.header-nav .nav-second li:hover{
    background-color: #f6f6f6;
}

.header-nav .nav-second li:hover a {
    opacity: 1;
}

/* .header-nav .nav-second .has-sublevel>a,
.mobile-nav-bar-wrap .has-sublevel>a{
    background: url(/main/dist/gttz/images/icon/arrow.png) no-repeat right center;
    background-size: 10px;
}

.header-nav .header-nav.nav-second .has-sublevel:hover>a,
.mobile-nav-bar-wrap .has-sublevel:hover>a{
    background-image: url(/main/dist/gttz/images/icon/arrow-hover.png);
} */

.header-nav .nav-second li:hover .nav-third{
    display: block;
}

/* 三级 */
.header-nav .nav-third{
    width: 100%;
    min-height: 100%;
    position: absolute;
    right: -100%;
    top: 0;
    background-color: #f6f6f6;
    transition: all .3s;
    display: none;
}

.header-nav .nav-second .nav-third li a{
    background: none;
}

.header-nav .nav-second .nav-third li:hover a {
    color: #cb2b2c;
}

/* 搜索 */
.header-search {
    display: inline-block;
    height: 76px;
    position: relative;
}

.header-search>a {
    display: block;
    padding-left: 22px;
    margin-left: 22px;
    width: 20px;
    height: 100%;
    background: url(/main/dist/gttz/images/icon/search.png) no-repeat center;
    background-size: 20px;
    box-sizing: content-box;
}

.header-search>a:hover {
    background-image: url(/main/dist/gttz/images/icon/search-hover.png);
}

.header-search:hover .search-wrap {
    opacity: 1;
    right: 0;
    width: auto;
    z-index: 1;
}

.header-search:hover .search-wrap input,
.header-search:hover .search-wrap button {
    display: block;
}

.search-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100%;
    opacity: 0;
    width: 0;
    transition: all .3s;
}

.search-wrap input{
    box-sizing: border-box;
    width: 170px;
    border: 1px solid #fff;
    outline: none;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    border-radius: 5px;
    padding: 0 40px 0 20px;
    background-color: #fff;
    display: none;
}

.search-wrap button{
    position: absolute;
    top: 0;
    right: 5px;
    width: 32px;
    height: 32px;
    border: 0;
    background: url(/main/dist/gttz/images/icon/search.png) no-repeat center;
    background-size: 18px;
    outline: none;
    cursor: pointer;
    display: none;
}

.search-wrap button:hover{
    background-image: url(/main/dist/gttz/images/icon/search-hover.png);
}


.header-btn a{
    display: inline-block;
    line-height: 36px;
    width: 90px;
    text-align: center;
    border-radius: 50px;
    vertical-align: middle;
    border: 1px solid #fff;
    margin-left: 20px;
    transition: all .2s;
}

.header-btn a:hover {
    background-color: #fff;
    color: #16332d;
}

.header-btn .header-btn-blue {
    background-color: #00d6d2;
    border-color: #00d6d2;
    color: #16332d;
}

.header-btn .header-btn-blue:hover {
    background-color: transparent;
    color: #00d6d2;
}

.header-login {
    color: #fff;
}

.header-login img {
    width: 38px;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 2px;
}

/* 底部 */
.footer {
    color: #000;
    background-color: #959595;
}

.footer p {
    line-height: 28px;
}

.footer-msg {
    padding: 80px 34px 50px;
    position: relative;
}

.footer-msg-left {
    overflow: hidden;
}

.footer-logo,
.footer-text {
    float: left;
}

.footer-text {
    border-left: 4px solid #626262;
    margin-left: 35px;
    padding-left: 35px;
    font-size: 18px;
    font-weight: 400;
}

.footer-msg-right {
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
}

.footer-bottom {
    text-align: center;
    background-color: #333;
    padding: 18px;
    color: #eee;
    line-height: 24px;
}

.footer-bottom a {
    color: #eee;
}

.footer-bottom a:hover {
    color: #cb2b2c;
}

.top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 50px;
    right: 39px;
    background-color: rgba(203,43,44,.6);
    z-index: 1000;
    text-align: center;
    display: none;
    cursor: pointer;
    border-radius: 50%;
}

.top:hover {
    background-color: #cb2b2c;
}

.top img {
    width: 58%;
    vertical-align: middle;
}

/* banner */
.banner {
    position: relative;
}

.banner img {
    display: block;
    width: 100%;
}

.banner-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -70%);
    z-index: 2;
    width: 20% !important;
}

/* 轮播 */
.swiper-button-next, 
.swiper-button-prev{
    opacity: 0;
    transition: all .3s;
}

.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev{
    opacity: 1;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    --swiper-navigation-color: #cb2b2c;
}

.swiper-pagination-bullet{
    background: transparent;
    opacity: 1;
    border: 1px solid #fff;
    width: 12px;
    height: 12px;
}

.swiper-container-horizontal>.swiper-pagination-bullets{
    text-align: right;
    padding-right: 12px;
}

.swiper-pagination-bullet-active{
    background: #cb2b2c;
    border-color: #cb2b2c;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

/* content */
.gray {
    background-color: #f5f5f5;
}

.gray2 {
    background-color: #f2f2f2;
}

.content-module {
    padding-bottom: 35px;
}

.content-title {
    text-align: center;
    padding: 80px 0 50px;
}

.content-title h2 {
    font-size: 28px;
    font-weight: normal;
    color: #010101;
}

.content-title p {
    line-height: 26px;
    margin-top: 25px;
}

.content-service ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-service ul::after {
    content: "";
    width: 31%;
    height: 0;
}

.content-service ul li {
    width: 31%;
    background-color: #fff;
    text-align: center;
    margin-bottom: 35px;
    box-shadow: 0 0 5px rgba(203, 202, 200, .5);
    transition: all .16s;
}

.content-service ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 50px 0 36px;
    border-bottom: 4px solid #cb2b2c;
}

.img-hover {
    display: none;
}

.content-service li h3 {
    font-size: 18px;
    font-weight: normal;
    color: #010101;
    margin: 30px 0 20px;
}

.content-service li p {
    line-height: 24px;
    color: #666;
    font-size: 14px;
}

.content-service ul li:hover {
    background-color: #000;
}

.content-service ul li:hover a {
    border-color: #000;
}

.content-service ul li:hover img {
    /* display: none; */
    filter: contrast(0) grayscale(100%) brightness(200%);
}

.content-service ul li:hover .img-hover {
    display: inline-block;
}


.content-service ul li:hover h3 {
    color: #cb2b2c;
}

.content-service ul li:hover p {
    color: #fff;
}

/* 项目实例 */
.content-case ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-case ul::after {
    content: "";
    width: 31%;
    height: 0;
}


.content-case li {
    width: 31%;
    margin-bottom: 35px;
    text-align: center;
    transition: all .16s;
}

.case-pic {
    position: relative;
    box-shadow: 0 0 8px rgba(203, 202, 200, .8);
}

.case-pic,
.case-pic img {
    display: block;
    width: 100%;
}

.shade {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .16s;
}

.content-case li p {
    height: 52px;
    line-height: 50px;
    padding: 0 12px;
    font-size: 18px;
}

.content-case li:hover {
    background-color: #ff0000;
}

.content-case li:hover .shade {
    opacity: 1;
}

.content-case li:hover p {
    color: #fff;
}

/* 更多按钮 */
.content-btn {
    text-align: center;
    padding-top: 20px;
}

.content-btn a {
    display: inline-block;
    min-width: 162px;
    height: 36px;
    line-height: 34px;
    border: 1px solid #cb2b2c;
    color: #666;
    transition: all .16s;
}

.content-btn a:hover {
    background-color: #cb2b2c;
    color: #fff;
}

/* 新闻动态 */
.content-news li {
    margin-bottom: 42px;
    border: 1px solid transparent;
    transition: all .16s;
}

.content-news li a {
    display: block;
    background-color: #fff;
    display: flex;
    width: 100%;
}

.news-pic {
    flex-shrink: 0;
    width: 31%;
    margin-right: 3.5%;
    box-shadow: 0 0 8px rgba(203, 202, 200, .8);
}

.news-pic img {
    display: block;
    width: 100%;
}

.news-text {
    flex: auto;
    overflow: hidden;
    padding-right: 60px;
}

.news-text h4 {
    color: #010101;
    font-size: 18px;
    margin: 32px 0 20px;
    transition: all .16s;
}

.news-text p {
    line-height: 24px;
    color: #333;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-text div {
    text-align: right;
    font-size: 14px;
    margin-top: 24px;
    color: #333;
}

.content-news li:hover {
    border-color: #ff0000;
}

.content-news li:hover h4 {
    color: #ff0000;
}

/* 关于我们 */
.content-about {
    display: flex;
    margin-bottom: 42px;
}

.content-about .news-text p {
    -webkit-line-clamp: 8;
    text-indent: 2em;
    line-height: 26px;
}

/* 面包屑 */
.crumbs {
    color: #666;
    font-size: 14px;
    line-height: 20px;
    padding: 22px 0 50px;
}

.crumbs a {
    color: #666;
}

.crumbs a:hover {
    color: #cb2b2c;
}

.crumbs span {
    padding: 0 2px;
}

/* 列表页 */
.main {
    padding-bottom: 50px;
}

.main-wrap {
    display: flex;
}

.main-wrap-left {
    flex-shrink: 0;
    width: 280px;
    margin-right: 60px;
}

.column-list {
    background-color: #fff;
    padding: 0 30px 40px;
    border-radius: 5px;
}

.column-list h3 {
    padding: 42px 0 18px;
    border-top: 2px solid #ce0f19;
    color: #010101;
    font-size: 20px;
    font-weight: normal;
}

.column-list .el-menu {
    border-right: 0;
}

.column-list .el-submenu__title,
.column-list .el-menu-item {
    font-size: 18px;
}

.column-list>.el-menu>.el-menu-item,
.column-list>.el-menu>.el-submenu>.el-submenu__title {
    background-color: #f2f2f2;
    border-radius: 5px;
    -webkit-transition: border-color .16s,background-color .06s,color .16s;
    transition: border-color .16s,background-color .06s,color .16s;
}

.column-list>.el-menu>.el-menu-item,
.column-list>.el-menu>.el-submenu {
    margin-bottom: 13px;
}

.column-list .el-submenu__title i {
    font-size: 20px;
    font-weight: bold;
}

.column-list>.el-menu>.el-menu-item:hover,
.column-list>.el-menu>.el-submenu>.el-submenu__title:hover,
.column-list .el-submenu .el-menu-item>a:hover {
    background-color: #ce0f19;
    color: #fff;
}

.column-list>.el-menu>.el-menu-item:hover i,
.column-list>.el-menu>.el-submenu>.el-submenu__title:hover i {
    color: #fff;
}

.column-list>.el-menu>.el-menu-item:hover a {
    color: #fff;
}

.column-list .el-submenu .el-menu-item:focus, 
.column-list .el-submenu .el-menu-item:hover{
    background-color: transparent;
}

.column-list .el-submenu .el-menu-item {
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 0 !important;
}

.column-list>.el-menu>.el-menu-item>a,
.column-list .el-submenu .el-menu-item>a {
    display: block;
    width: 100%;
    height: 100%;
}

.column-list>.el-menu>.el-menu-item.is-active,
.column-list .el-submenu .el-menu-item.is-active {
    border-bottom: 1px solid #ce0f19;
    background-color: transparent;
    border-radius: 0;
}

.column-list>.el-menu>.el-menu-item.is-active a,
.column-list .el-submenu .el-menu-item.is-active a {
    color: #ce0f19;
    background-color: transparent;
}

/* 右边 */
.main-wrap-right {
    flex: auto;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    padding: 35px 35px 45px;
}

.content-list li {
    margin-bottom: 25px;
    border: 1px solid transparent;
    transition: all .16s;
}

.content-list li:hover {
    border-color: #ce0f19;
}

.content-list li:hover h3 {
    color: #ff0000;
}

.content-list li>a {
    display: block;
    display: flex;
    background-color: #f2f2f2;
}

.list-pic {
    width: 222px;
    flex-shrink: 0;
}

.list-pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-msg {
    padding: 0 30px;
    color: #333;
    flex: auto;
    min-height: 124px;
    /* 解决省略号设置无效 */
    width: 0; 
}

.list-msg h3 {
    color: #010101;
    font-size: 18px;
    font-weight: normal;
    padding: 12px 0 8px;
}

.list-msg p {
    height: 48px;
    line-height: 24px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-msg div {
    text-align: right;
    font-size: 14px;
    margin-top: 10px;
}

/* 分页 */
.paging {
    text-align: right;
}

/* 领导列表页 */
.content-leader li>a {
    padding: 20px 0 20px 30px;
}

.content-leader .list-pic {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(203, 202, 200, .8);
    background-color: #fff;
    padding: 6px;
    overflow: hidden;
}

.content-leader .list-msg {
    padding: 0 50px;
    min-height: auto;
}

.content-leader .list-msg h3 {
    font-size: 24px;
    padding: 8px 0 10px;
}

.content-leader .list-msg h3 span {
    font-size: 18px;
    color: #333;
    margin-left: 5px;
}

.content-leader li:hover h3 span {
    color: #ff0000;
}


/* 正文 */
.content-article {
    
}

.article-title {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    line-height: 34px;
    margin: 6px 0 30px;
}

.article-main {
    font-size: 18px;
    line-height: 32px;
}

.article-main img {
    max-width: 100%;
}

.article-time {
    text-align: right;
    margin-top: 40px;
}

.no-left .main-wrap-left {
    display: none;
}

.no-left .main-wrap-right {
    background-color: transparent;
    padding: 0 0 45px 0;
    margin-top: -20px;
}


.qrcode-warp {
	text-align: center;
	font-size: 14px;
	margin: 30px auto 0;
}

.qrcode-warp canvas {
	max-width: 120px;
	max-height: 120px;
}

.qrcode-warp-desc {
	margin-top: 6px;
}

/* 2022-03-24改 */
.banner {
    padding-top: 76px;
}<!--0.00010418891906738-->