li {
    list-style: none;
}
a:visited {
    color: black;
    text-decoration: none;
}
a {
    text-decoration: none;
}
a:link{
    color: #C5D7F3;
}
.net-mask{
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 半透明黑色 */
    z-index: 1000;
    /* 确保遮罩层在最上层 */
    display: none;
    /* 默认隐藏 */
}
.net-container{
    position: fixed;
    top: 90px;
    right: -380px;
    /* 初始位置在屏幕右侧外 */
    width: 380px;
    height: calc(100% - 91px);
    background-color: #294EAB;
    z-index: 1001;
    /* 确保弹窗在遮罩层之上 */
    transition: right 0.3s ease;
    /* 右侧移动的过渡动画 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* 添加阴影效果 */
}
/* 打开弹窗时的样式 */
.net-container.open {
    right: 0;
}
.no-scroll {
    overflow: hidden;
}
.net-container-main {
    padding: 24px 27px 0 28px;
}
.net-container-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom:  24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #436ACF;
}
.net-container-title >div{
    display: flex;
    align-items: center;
    height: 36px;
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    cursor: default;
}
.icon-cancel {
    cursor: pointer;
    transition: transform 0.7s ease; /* 添加过渡动画 */
}
.icon-cancel:hover {
    transform: rotate(180deg) scale(1.5); /* 旋转180度并放大1.1倍 */
}
.net-container-a > a {
    height: 24px;
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #C5D7F3;
    line-height: 19px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    margin-top: 16px;
}
.icon-netA {
    margin-right: 11px;
}
.net-container-wechat{
    margin-top: 60px;
}
.net-container-wechat-title{
    width: 120px;
    height: 30px;
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 23px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.net-container-wechat-bg{
    width: 160px;
    height: 160px;
    background: #FFFFFF;
   background-size:cover;
background-repeat: no-repeat;
    border-radius: 3px;
    margin: 12px 0 8px;
}
.net-container-wechat-content{
    width:160px;
    height: 18px;
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 14px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    justify-content: center;
}

