﻿

a {
    color: #333;
}

a:hover {
    color: #8A5742;
}



.right_nav {
    position: fixed;
    right: 30px;
    width: 147px;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 6px;
    box-sizing: border-box;
}

.right_nav .title {
    font-size: 18px;
    font-weight: bold;
    color: #8A5742;
    text-align: center;
    background: #FFF6F3;
    height: 26px;
    line-height: 26px;
    padding: 6px 0 24px;
    border-radius: 5px;
    margin-bottom: 7px;
    position: relative;
}

.right_nav .title .bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
}

.right_nav ul {
    background: #FFF6F3;
    border-radius: 5px;
    text-align: center;
    padding: 37px 0 10px;
}

.right_nav ul li {
    padding-bottom: 14px;
    border-bottom: 1px dashed #FCDBCE;
    padding-top: 13px;
}

.right_nav ul li:nth-child(2) {
    padding-left: 15px;
    padding-right: 15px;
}

.right_nav ul li:last-of-type {
    border-bottom: none;
}

.right_nav ul li .icon {
    display: inline-block;
    width: 41px;
    height: 41px;
    background: #8A5742;
    border-radius: 100%;
    margin-bottom: 5px;
    line-height: 41px;
    transition: all 0.4s ease-in-out;
}

.right_nav ul li:hover .icon {
    background: #BE784E;
    box-shadow: 0  0 10px #aaa;
}

.right_nav ul li .icon .iconfont {
    color: #fff;
    font-size: 20px;
}

.right_nav ul li .text {
    font-size: 15px;
    height: auto;
    line-height: 20px;
}