@charset "utf-8";
@import "var.css";

/* header部分 begin */
.header {
    width: 100%;
    background-color: #fff;
}

.container {
    width: 96%;
    margin: 0 auto;
}

.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 94px;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo img{
    width: 200px;
}

.header-title {
    margin-left: 30px;
}

.header-title span{
    font-size: 12px;
    color: #ccc;
}

.header-title span i {
    color: var(--main-color);
}

.header-right {
    display: flex;
    padding-right: 40px;
}

.navs {
    display: flex;
}

.nav {
    margin-right: 15px;
}

.nav>a {
    color: #666;
    font-size: 14px;
}

.nav>a:hover {
    color: var(--main-color);
}

.tel-warp {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.tel-warp>img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.tel-warp .phone-num {
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
}

/* header部分 end */

.show-info-box {
    padding: 15px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 5px #ddd;
    border-radius: 3px;
}

.show-box-title {
    display: flex;
}

.show-box-title > a {
    padding-bottom: 10px;
    margin-right: 20px;
    color: #999;
    border-bottom: 2px solid #fff;
    font-weight: bold;
}

.show-box-title a.active-title {
    color: #000;
    border-bottom: 2px solid var(--main-color);
    background: url(../images/jt_15_1.gif) center bottom no-repeat;
}

.show-box-content {
    margin-top: 15px;
    overflow: hidden;
}

.show-box-content a,
.show-box-content span,
.show-box-content p {
    line-height: 26px;
    color: #666;
}

.show-box-content a:hover {
    color: var(--main-color);
}

/* 线路导航条部分 begin */
.cate-navs-warp {
    width: 100%;
    background-color: var(--main-color);
}

.cate-navs-warp .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cate-navs-left {
    display: flex;
}

.lines-nav-warp {
    width: 172px;
    position: relative;
}

.lines-nav-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 46px;
    background-color: #333;
    cursor: pointer;
}

.lines-nav-title span {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: bold;
}

.lines-nav-title .icon-appstore-fill {
    font-size: 23px;
    color: #fff;
    transition: 0.8s ease-in-out;
}

.lines-nav-title:hover {
    background-color: var(--main-color);
}

.lines-nav-title:hover .icon-appstore-fill {
    transform: rotate(360deg);
    transition: 0.8s ease-in-out;
}

/* 隐藏区域栏部分 */
.all-area-box {
    position: absolute;
    left: 0;
    top: 46px;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid var(--main-color);
    /* box-shadow: 0px 0px 3px #f60; */
    display: none;
    z-index: 999;
}

/* 放上去显示 */
.lines-nav-warp:hover .all-area-box{
    display: block;
}

.province-info-box {
    /* 或者写死和父元素宽度一样172px */
    width: 100%;
}

.province-row {
    position: relative;
}

.province-row-left {
    min-height: 48px;
    padding: 14px 10px 14px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    border-left-color: var(--main-color);
    border-right-color: var(--main-color);
    background: #fff;
    z-index: 1000;
}

.province-row a {
    color: #666;
    font-size: 14px;
}

.province-row a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.province-row em {
    color: #ccc;
    margin: 0 5px;
    font-size: 14px;
}

.province-row i {
    color: #ccc;
}

/* hover 时左侧高亮 */
.province-row:hover .province-row-left {
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    border-right-color: #fff;
    position: relative;
    z-index: 1001;
}

/* 右侧弹层 */
.province-row-right {
    position: absolute;
    top: 0;
    left: 172px;
    width: 1028px;
    min-height: 360px;
    max-height: 620px;
    overflow-y: auto;
    border: 1px solid var(--main-color);
    padding: 18px 22px 22px;
    background-color: #fff;
    display: none;
    z-index: 1000;
}

.province-row:hover {
    cursor: pointer;
}
/* 当前区 hover 显示右侧 */
.province-row:hover .province-row-right{
    display: block;
}

/* 右侧区标题 */
.fuwu-nav-area-tab-title {
    margin-bottom:14px;
}

.fuwu-nav-area-tab-title>a{
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
}

.fuwu-nav-area-tab-title span {
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
}

/* 标签区域 */
.fuwu-nav-area-tab-head {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    margin-bottom: 18px;
    padding-bottom: 8px;
}

.fuwu-nav-area-tab-item {
    display: block;
    max-width: 220px;
    padding: 8px 12px;
    margin: 0 8px 8px 0;
    background-color: #f7f7f7;
    border: 1px solid #eee;
    color: #555;
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fuwu-nav-area-tab-item:hover,
.fuwu-nav-area-tab-item.active {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/* 内容区 */
.fuwu-nav-area-tab-content {
    display: none;
}

.fuwu-nav-area-tab-content.active {
    display: block;
}

/* 每个村庄 */
.village-road-group {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #eee;
}

.village-road-group:last-child {
    border-bottom: none;
}

.village-title {
    margin-bottom: 8px;
}

.village-title a {
    color: var(--main-color);
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.village-title a:hover {
    text-decoration: underline;
}

/* 路段列表 */
.road-list {
    display: flex;
    flex-wrap: wrap;
}

.road-list a {
    margin: 6px 24px 6px 0;
    color: #555;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-decoration: none;
}

.road-list a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

/* 导航红色底部分 */

.cate-navs {
    display: flex;
}

.cate-nav-title {
    cursor: pointer;
}

.cate-nav-title a{
    display: block;
    padding: 0 20px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    height: 46px;
    line-height: 46px;
    border-right: 1px solid var(--main-near-color);
}

.cate-nav {
    position: relative;
}

.sub-cate-nav {
    position: absolute;
    left: 0;
    top: 45px;
    width: 164px;
    z-index: 999;
    border: 1px solid var(--main-near-color);
    box-shadow: 0px 0px 3px var(--main-near-color);
    overflow: hidden;
    background-color: #fff;
    display: none;
}

.sub-cate-name {
    padding: 10px 25px;
}

.sub-cate-name>a {
    color: var(--main-near-color);
}


.send-recv-goods-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    padding: 0 20px;
    height: 46px;
}

.send-recv-goods-box>a {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    font-weight: bold;
    background-color: var(--main-color);
    border-radius: 15px;
}
/* 线路导航条部分 end */

/* 分站列表 友情链接 begin */
.sub-site-warp {
    margin: 35px 0;
}

.sub-site-warp .links {
    display: flex;
    align-items: center;
    padding-right: 100px;
}

.sub-site-warp .links .link {
    width: 10%;
}
/* 分站列表 友情链接 end */

/* footer begin */
.footer-top-warp {
    display: flex;
    justify-content: space-between;
    padding: 30px 55px;
    background-color: #eee;
}

.cate-quick-box {
    width: 9%;
    min-width: 100px;
    margin-right: 4%;
}

.cate-quick-box .cate-title{
    padding: 2px 5px;
    color: #666;
    border-radius: 3px;
    border: 1px solid #999;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.cate-quick-box .cate-title:hover {
    border: 1px solid var(--main-color);
    box-shadow: 0px 0px 3px var(--main-near-color);
}

.cate-quick-box .quick-links {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.cate-quick-box .quick-links a {
    color: #999;
    padding: 2px 0;
    margin: 3px 0;
}

.cate-quick-box .quick-links>a>i {
    opacity: 0;
}

.cate-quick-box .quick-links>a>span {
    margin-left: -15px;
    transition: 0.6s ease-in-out;
}

.cate-quick-box .quick-links>a:hover {
    color: var(--main-near-color);
}

.cate-quick-box .quick-links>a:hover>span {
    margin-left: 0px;
    transition: 0.6s ease-in-out;
}

.cate-quick-box .quick-links a:hover>i {
    opacity: 1;
    transition: 0.6s ease-in-out;
}

.footer-top-center {
    width: 150px;
    height: 150px;
    margin-right: 8%;
    overflow: hidden;
}

/* 下面的部分 */
.footer-bottom-warp {
    background-color: var(--main-color);
    z-index: 999;
}

.footer-bottom-warp .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 20px 15px;
}

.footer-bottom-warp p,
.footer-bottom-warp span{
    color: #fff;
    line-height: 25px;
    font-size: 12px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
}

.footer-bottom-left .wechat-qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding-top: 27px;*/
}

.wechat-qr-box .qr-img-box {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.qr-img-box img {
    width: 100%;
    height: 100%;
}

.contact-info-warp {
    margin-left: 20px;
}

.contact-info-warp .company-info {
    font-weight: bold;
}

.contact-info-warp .company-info a{
    color: #fff;
}

.contact-info-warp .lines-links a {
    color: #000;
}

.contact-info-warp .lines-links a:hover {
    color: #000;
}

.contact-info-warp .collections-page-links {
    margin-top: 10px;
}

.contact-info-warp .collections-page-links a {
    color: #FFFFFF;
    margin-right: 20px;
}

.footer-bottom-right {
    align-self: flex-end;
}

.footer-bottom-right .copyright span {
    font-size: 15px;
    line-height: 26px;
}

.footer-bottom-right .copyright a {
    color: #fff;
    margin-right: 20px;
}

.mobile-footer-box {
    display: none;
    padding-bottom: 60px;
}

.mobile-footer-warp {
    background-color: var(--main-color);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .15);
}

.mobile-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 60px;
}

.mobile-links .mobile-link {
    text-align: center;
    border-right: 1px solid #ee3d38;
}

.mobile-links .mobile-link a {
    color: #fff;
    line-height: 60px;
}

.mobile-links .mobile-link a i {
    font-size: 20px;
    padding-right: 5px;
}

/* footer end */
/* 新增一个隐藏的头部*/
#head-bar {
    display: none;
}

.head-bar {
    width: 100%;
    height: 48px;
    line-height: 48px;
    overflow: hidden;
    background: #F8F8F8;
    border-bottom: #B2B2B2 1px solid;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
}

.head-bar-back {
    float: left;
    padding: 0 0 0 5px;
}

.head-bar img {
    width: 24px;
    height: 24px;
    vertical-align: top;
    padding-top: 12px;
}

.head-bar span {
    color: #007AFF;
    font-size: 18px;
}

.head-bar-title {
    position: absolute;
    z-index: 9;
    left: 80px;
    right: 80px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.head-bar-right {
    float: right;
    padding: 0 10px 0 0;
}

.head-bar img {
    width: 24px;
    height: 24px;
    vertical-align: top;
    padding-top: 12px;
}

.head-bar-fix {
    height: 48px;
    clear: both;
}

/* 媒体查询部分 */

@media screen and (max-width:1200px) {
    .header .container {
        flex-wrap: wrap;
    }

    .logo img {
        max-width: 100%!important;
    }

    .header-title {
        display: none;
    }

    .navs {
        display: none;
    }

    .lines-nav-warp {
        display: none;
    }

    .cate-navs-right {
        display: none;
    }

    .cate-navs {
        flex-wrap: wrap;
    }

    .footer-bottom-warp {
        display: none;
    }

    .footer-top-warp {
        width: 100%;
        flex-wrap: wrap;
        padding: 20px 20px 10px;
    }

    .footer-top-center {
        display: none;
    }

    .cate-quick-box {
        margin-bottom: 20px;

    }

    .mobile-footer-box {
        display: block;
        padding-bottom: 60px;
    }
}

@media screen and (max-width:420px) {
    .header-left,
    .header-right {
        width: 50%;
    }
}