/* 顶部选择区域按钮 */
.top_select_region_button {
    background-color: #353d51;
    color: white;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 6px;
    padding-bottom: 6px;

    border-radius: 6px;
    border: 2px solid transparent;
    outline: none;
  }
/* */
  .top_select_region_button:hover {
    background-color: #33353d51;
    color: #9dee95;
  }

/* 中间的p标签: 描述的p标签 */
  .center_prefix_desc_p_style {
    width: 100px;
    text-align: right;
    font-size: 16px;
    margin-right: 10px;
    color: #96a0af;
  }

  /* input标签: flex-grow border rounded px-2 py-1 ml-4  */
  .center_input_value_style {
    flex-grow: 1;
    height: 30px;
    border: 1px solid #dfdcdc;
    border-radius: 4px;
    padding: 2px 4px;
    margin-left: 4px;
  }

/* 热门国家的 a 标签的样式 */
.left_hot_country_link_style a {
    color: #000000; /* 默认文字颜色为蓝色 */
    text-decoration: underline; /* 默认显示蓝色下划线 */
    font-size: 16px; /* 默认文字大小，可根据需求调整 */
}

.left_hot_country_link_style a:visited {
    color: #000000; /* 访问后的链接颜色也为蓝色 */
    text-decoration: underline; /* 默认显示蓝色下划线 */
}

.left_hot_country_link_style a:hover {
    color: #739205; /* 鼠标悬停时文字颜色变为红色 */
    text-decoration: none; /* 去除下划线 */
    text-decoration: underline; /* 默认显示蓝色下划线 */
    cursor: pointer;
}

.left_hot_country_link_style a:active {
    color: #000000; 
    text-decoration: underline; 
}


