

/* region sitemap */
.sitemap {
    width: 100%;
    text-align: center;
}
.sitemap ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.sitemap a {
    color: #333;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    margin: 0 5px;
    text-align: center;
    position: relative;
    background: #fff;
}
.sitemap .first {
    padding-top: 20px;
}
.sitemap .first > li {
    margin-top: 20px;
}
.sitemap .first > li {
    display: inline-block;
    vertical-align: top;
}
.sitemap .first a {
    font-size: 14px;
    width: 125px;
    height: 50px;
    line-height: 50px;
    z-index: 10;
    text-decoration: none;
    background: #fff;
    border: 1px solid #333;
    box-shadow: -6px -4px 0 #333;
    transition: all .3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
.sitemap .first a:before {
    content: "";
    position: absolute;
    border: 1px solid #9e9f9e;
    border-left: none;
    border-bottom: none;
    height: 9px;
    top: -10px;
    left: -100px;
    width: 163px;
}
.sitemap .first li:first-child a:before {
    border-top: none;
}
.sitemap .second {
    margin-left: 16px;
    padding-top: 20px;
}
.sitemap .second > li {
    position: relative;
}
.sitemap .second a {
    width:130px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    z-index: 5;
    font-size: 10px;
    white-space:nowrap;
    color:#3f3f3f;
}
.sitemap .second a:before {
    border: 1px solid #9e9f9e;
    border-right: none;
    border-top: none;
    height: 55px;
    top: -35px;
    left: -8px;
    width: 7px;
}
.sitemap .third {
    margin-left: 16px;
    padding-top: 20px;
}
.sitemap .third a {
    background: #ffcc00;
    width: 100px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    z-index: 5;
    font-size: 10px;
}
.sitemap .third a:before {
    border: 1px solid #9e9f9e;
    border-right: none;
    border-top: none;
    height: 55px;
    top: -35px;
    left: -8px;
    width: 7px;
}
.sitemap ul li a,
.sitemap ul li ul.second a {
    white-space: normal;
}
.sitemap ul.first > li > a span {
    line-height: 25px;
    display: inline-block;
}
.sitemap ul li ul.second a span {
    line-height: 20px;
    display: inline-block;
}
.sitemap .first a:hover,
.sitemap .first a:active{
    background-color: #fff;
    color: #333;
    border: 1px solid white;
}
/* endregion sitemap */