@charset "gb18030";
/* CSS Document */


/* article 栏目*/
#location {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* 下拉触发器容器 */
.drop-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
/* 小箭头图标 */
.arrow-icon {
    margin-left:4px;
    width:0;
    height:0;
    border-left:4px solid transparent;
    border-right:4px solid transparent;
    border-top:5px solid #666;
    transition: transform 0.2s;
}
.arrow-icon.open {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.drop-menu {
    position:absolute;
    top:calc(100% + 0px);
    left:0;
    background:#fff;
    border:1px solid #ccc;
    box-shadow:0 2px 8px rgba(0,0,0,0.12);
    min-width:130px;
    z-index:999;
    display:none;
    padding:4px 0;
}
.drop-menu.show {
    display:block;
}
.drop-menu a {
    display:block;
    padding:6px 12px;
    color:#333;
    text-decoration:none;
	line-height:30px;
}
.drop-menu a:hover {
    background:#f5f5f5;
    text-decoration:none;
}