@charset "UTF-8";

.aside{
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translate(0,-50%);
    width: 122px;
    z-index: 99999;
    background: url("/aside/images/img-7.png") no-repeat top center/100% 100%;
    padding-top: 33px;
    transition: all .5s;
}
.aside li a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 103px;
}
.aside li .ico{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 41px;
}
.aside li .ico img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: all .5s;
}
.aside li h4{
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 4px;
}
.aside li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 38px;
    margin: 0 auto;
    background: #FFFFFF;
    opacity: .1;
}
.aside li:last-child:before{
    opacity: 0;
}
.aside li:last-child a{
    height: 85px;
}
.aside li:hover .ico img{
    transform: rotateY(180deg);
}
.aside li{
    position: relative;
}

.aside.hide{
    right: 0;
    transform: translate(100%,-50%);
}
.tc1 .tc {
    pointer-events: none;
    filter: alpha(opacity=0);

    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 99999999999;
}

.tc1 .tc.act {
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
}

.tc1 .close:hover {
    transform: rotate(180deg);
}

.tc1 .close,.tc {
    transition: all ease 400ms;

}

.tc1 .tc-box {
    position: absolute;
    background: #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
    top: 50%;
    z-index: 9999;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
    padding: 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.tc1 .tc.act .tc-box {
    transform: scale(1);
}

.tc1 .tc.act {
    display: block;
}

.tc1 .close {
    position: absolute;
    cursor: pointer;
    font-size: 20px;
    right: 30px;
    top: 30px;
}

.tc1 .tc_bg {
    height: 100%;
    background: rgba(0,0,0,.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.tc1 .tc-box h3 img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.tc1 .tc-box h5 {
    padding-top: 10px;
    font-size: 14px;
    color: #6c6c6c;
    text-align: center;
}


@media (max-width: 1199px) {
    .aside{
        display: none;
    }
}