:root {
  --primary-orange: #F26408;
  --dark-gray: #111111;
  --medium-gray: #666666;
  --light-gray: #f4f4f4;
  --text-color: #666666;
  --border-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s;
}

ul {
  list-style: none;
}

.section {
  background-color: #f7f7f7;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 40px;
  color: var(--primary-orange);
  margin-bottom: 21px;
  font-weight: bold;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--medium-gray);
  margin-bottom: 60px;
}

.section-subtitle-download {
  margin-bottom: 80px;
}

/* --- 顶部通告栏 --- */
.top-bar {
  background-color: var(--primary-orange);
  color: white;
  /* padding: 8px 0; */
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* --- 头部导航栏 --- */
.main-header {
  background-color: white;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-gray);
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-orange);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  position: relative;
}

.search-box input {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 35px 8px 15px;
  outline: none;
  transition: border-color 0.3s;
}

.search-box input:focus {
  border-color: var(--primary-orange);
}

.search-box .fa-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-gray);
}

/* --- 1. 英雄区域 --- */
.hero-section {
  width: 100%;
  height: 450px;
  /* 您可以根据图片调整高度 */
  background: url('https://at-cms.youxiniu.net/template/ey4_top/images/anto/banner-ad.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 行情滚动条 (Swiper 修改) --- */
.ticker-bar {
  background-color: #FFFFFF;
  padding: 30px 0;
  overflow: hidden;
}

.ticker-swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.ticker-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.ticker-item .symbol {
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  color: #333333;
}

.ticker-item .price {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.ticker-item .change-up {
  color: #49B73D;
  font-size: 14px;
}

.ticker-item .change-down {
  color: #E2171B;
  font-size: 14px;
}

/* --- 行情样式最终版 --- */

/* 基础样式: 主价格默认加粗 */
.ticker-item .price {
  font-weight: bold;
}

.ticker-item .price span {
  font-weight: normal;
}

/* 1. 持久文字颜色 (基于全天走势) */
/* 全天上涨的文字颜色 */
.price.change-day-up {
  color: #19bc38;
  /* 绿色 */
}

/* 全天"下跌的文字颜色 */
.price.change-day-down {
  color: #d00;
  /* 红色 */
}

/* --- 2. 服务特色 (8项) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-item {
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-item .icon {
  font-size: 40px;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 24px;
  color: var(--dark-gray);
  margin-bottom: 10px;
  font-weight: normal;
}

.feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

/* --- 3. App 下载 (按钮居中) --- */
.app-download {
  padding: 110px 0 94px 0;
  background-color: #FFFFFF !important;
}

.app-download .container {
  text-align: center;
}

.app-download-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 81px;
}

.app-image-showcase {
  flex: 1;
}

.app-image-showcase img {
  max-width: 100%;
}

.app-info {
  flex: 1;
  text-align: left;
}

.app-info p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.download-buttons {
  display: flex;
  gap: 4.01%;
  justify-content: center;
  /* 确保按钮居中 */
}

.btn {
  width: 280.09px;
  height: 46px;
  display: flex;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: white;
  border: 2px solid var(--primary-orange);
}

.btn-primary:hover {
  background-color: #e06a1a;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
  background-color: var(--primary-orange);
  color: white;
}

/* =================================================================== */
/* --- 4. 财经日历与新闻 (最终版：精确控制事件列宽度) --- */
/* =================================================================== */

.news-section {
  padding: 88px 0 82px 0;
}

.news-section .container {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1.09%;
  align-items: stretch;
  /* 让子项高度一致 */
}

/* 容器基础样式 */
.calendar-box,
.news-box {
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
}

/* 1. 将财经日历容器设置为flex布局 */
.calendar-box {
  display: flex;
  flex-direction: column;
}

.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  flex-shrink: 0;
}

.box-title {
  font-size: 20px;
  color: var(--dark-gray);
  position: relative;
}

.calendar-box .box-header .box-title::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #F26408;
}

.box-header .view-more {
  font-size: 14px;
  color: var(--medium-gray);
}

.box-header .view-more:hover {
  color: var(--primary-orange);
}

/* 日期Tabs样式 */
.calendar-tabs {
  display: flex;
  border-bottom: 4px solid #F26408;
  margin-bottom: 0;
  justify-content: space-between;
  flex-shrink: 0;
}

.calendar-tabs .tab {
  width: 100%;
  padding: 8px 15px;
  cursor: pointer;
  border-bottom: none;
  background-color: #f7f7f7;
  color: #666;
  transition: all 0.3s;
  text-align: center;
}

.calendar-tabs .tab .date {
  font-weight: bold;
  font-size: 14px;
}

.calendar-tabs .tab .day {
  font-size: 12px;
}

.calendar-tabs .tab.active {
  background-color: #F26408;
  color: white;
  border-color: #F26408;
}

.calendar-tabs .tab.active .date,
.calendar-tabs .tab.active .day {
  color: white;
}

/* 2. 表格Flex布局核心 */
.calendar-table {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.calendar-table thead,
.calendar-table tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.calendar-table tbody {
  flex-grow: 1;
}

.calendar-table thead tr,
.calendar-table tbody tr {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}

.calendar-table tbody tr {
  flex-grow: 1;
}

.calendar-table tbody tr:last-child {
  border-bottom: none;
}

.calendar-table th,
.calendar-table td {
  display: flex;
  align-items: center;
  justify-content: center;
  /* 默认水平居中 */
  padding: 5px 10px;
  font-size: 14px;
  color: #666;
  flex-shrink: 0;
  flex-basis: 0;
}

.calendar-table th {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  padding: 12px 10px;
  text-align: center;
  justify-content: center !important;
}

.importance-stars {
  color: #f9b115;
  font-size: 16px;
  letter-spacing: 2px;
}

/* 3. 关键修改：重新平衡列宽，并对事件列设置最大宽度 */

/* 时间列 */
.calendar-table th:nth-child(1),
.calendar-table td:nth-child(1) {
  flex-grow: 1;
}

/* 国家或地区列 */
.calendar-table th:nth-child(2),
.calendar-table td:nth-child(2) {
  flex-grow: 2.1;
  justify-content: center;
}

/* 事件列 (最重要) */
.calendar-table th:nth-child(3),
.calendar-table td:nth-child(3) {
  flex-grow: 3;
  /* 调整flex比例，使其不会过分挤压其他列 */
  justify-content: left;
}

/* NEW: 仅对数据单元格(td)设置最大宽度，来强制实现12个字符的截断效果 */
.calendar-table td:nth-child(3) {
  max-width: 190px;
}

/* 重要性列 */
.calendar-table th:nth-child(4),
.calendar-table td:nth-child(4) {
  flex-grow: 1.5;
}

/* 前值列 */
.calendar-table th:nth-child(5),
.calendar-table td:nth-child(5) {
  flex-grow: 1.8;
}

/* 预测值列 */
.calendar-table th:nth-child(6),
.calendar-table td:nth-child(6) {
  flex-grow: 1.8;
}

/* 公布值列 */
.calendar-table th:nth-child(7),
.calendar-table td:nth-child(7) {
  flex-grow: 1.8;
}


/* 新闻列表样式 */
.news-image {
  margin-bottom: 20px;
}

.news-image img {
  width: 100%;
  border-radius: 5px;
}

.news-list-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item a {
  flex-grow: 1;
  margin-right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 15vw;
}

.news-list-item a:hover {
  color: var(--primary-orange);
}

.news-list-item .date {
  color: #999;
  font-size: 14px;
  flex-shrink: 0;
}

/* =================================================================== */
/* --- End of Calendar/News Section --- */
/* =================================================================== */

/* --- 5. 贵金属投资百科 (重构) --- */
.encyclopedia {
  padding: 87px 0 93px 0;
  background-color: #FFFFFF;
}

.encyclopedia .container {
  gap: 36px;
  display: flex;
  flex-direction: column;
}

.encyclopedia .encyclopedia-wrapper {
  background-color: #fff;
  padding: 23px 22px 24px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  gap: 5.2%;
}

.encyclopedia-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--border-color);
}

.encyclopedia-header .title-group {
  display: flex;
  align-items: center;
}

.encyclopedia-header .title-group h3 {
  font-size: 28px;
  color: #333333;
  font-weight: bold;
  margin: 0;
  /*padding-bottom: 10px;*/
  position: relative;
  display: inline-block;
}

.encyclopedia-header .title-group h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -56%;
  width: 100%;
  height: 5px;
  background-color: var(--primary-orange);
}

.encyclopedia-header .title-group p {
  font-size: 14px;
  color: var(--text-color);
  margin-left: 20px;
  line-height: 1.7;
  max-width: 85%;
}

.encyclopedia-header .view-more {
  font-size: 14px;
  color: #999;
  white-space: nowrap;
  margin-top: .75vw;
  transition: color 0.3s;
  display: flex;
  justify-content: center;

}

.encyclopedia-header .view-more:hover {
  color: var(--primary-orange);
}

.encyclopedia-content {
  display: flex;
  gap: 30px;
}

.encyclopedia-content img {
  width: auto;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
  align-self: flex-start;
}

.encyclopedia-links {
  flex: 1;
  column-count: 2;
  column-gap: 40px;
}

.encyclopedia-links li {
  padding: 9px 0;
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.encyclopedia-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #EEEEEE;
}

.encyclopedia-links a:hover,
.encyclopedia-links a:hover .link-text {
  color: var(--primary-orange);
}

.encyclopedia-links a .link-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  padding-right: 15px;
  color: #333;
  transition: color 0.3s;
  max-width: 250px;
}

.encyclopedia-links a .link-text::before {
  content: '▶';
  color: #666666;
  margin-right: 10px;
  font-size: 12px;
  display: inline-block;
  transform: scale(0.7);
}

.encyclopedia-links a .link-date {
  color: #999;
  font-size: 14px;
  flex-shrink: 0;
}

/* --- 视频介绍区 (保持不变) --- */
.video-section {
  position: relative;
  background: url('https://at-cms.youxiniu.net/template/ey4_top/images/anto/intro-bg.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 135px 0 137px 0;
}

.video-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.video-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

.video-player-container {
  width: 502px;
  height: 282.37px;
  background: #000;
  overflow: hidden;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text {
  width: 50%;
}

.video-text h2 {
  font-size: 24px;
  margin-bottom: 4.2%;
  color: #FFFFFF;
}

.video-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #FFFFFF;
}

/* --- 6. MT4交易平台 (重构) --- */
.mt4-platform {
  padding: 116px 0 127px 0;
  background-color: #FFFFFF;
}

.mt4-platform .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mt4-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.mt4-info .title-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.mt4-info h2 {
  font-size: 32px;
  color: var(--dark-gray);
  position: relative;
  padding-bottom: 14px;
}

.mt4-info h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5%;
  width: 100%;
  height: 5px;
  background-color: var(--primary-orange);
}

.mt4-info .subtitle {
  font-size: 16px;
  color: #999999;
  margin-bottom: 20px;
}

.mt4-info p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.mt4-description {
  padding: 21px 0 26px 0;
  margin-bottom: 0px !important;
}

.mt4-downloads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.mt4-download-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--light-gray);
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  color: var(--dark-gray);
  transition: all 0.3s;
  border: 1px solid var(--light-gray);
}

.mt4-download-link:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background-color: #fff;
}

.mt4-device-img {
  position: relative;
}

.mt4-device-img .mt4-pc {
  width: 451px;
  position: relative;
  z-index: 1;
  display: block;
  left: 20%;
  bottom: 40%;
}

.mt4-device-img .mt4-pad,
.mt4-device-img .mt4-phone {
  position: absolute;
}

.mt4-device-img .mt4-pad {
  width: 254px;
  left: 0;
  bottom: 0%;
  z-index: 2;
}

.mt4-device-img .mt4-phone {
  width: 81px;
  right: -7%;
  bottom: 0%;
  z-index: 3;
}

.image-placeholder {
  padding-bottom: 23px;
}

/* --- 页脚 (根据图片重构) --- */
.main-footer {
  font-size: 14px;
}

.footer-top {
  background-color: #6A6A6A;
  padding: 50px 0 20px;
  color: #E0E0E0;
  margin-top: 1vw;
}

.footer-bottom {
  background-color: #323131;
  padding: 30px 0 50px;
  color: #a0a0a0;
}

.footer-logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 35px;
  width: auto;
}

.footer-section {
  text-align: left;
  margin-bottom: 25px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-section p {
  margin: 0 auto;
  line-height: 1.8;
  color: #DCDCDC;
  font-size: 16px;
}

.friendly-links a {
  color: inherit;
  color: #DCDCDC;
  font-size: 16px;
  margin-right: 15px;
}

.friendly-links a:hover {
  color: var(--primary-orange);
}

.copyright-footer {
  text-align: center;
  color: #A9A9A9;
  font-size: 14px;
  margin: 40px 0 30px 0;
}

.disclaimer-details .disclaimer-title {
  text-align: left;
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 500;
}

.disclaimer-details h5 {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}

.disclaimer-details p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #a0a0a0;
}

/* WebKit browsers (Chrome, Safari) */
::-webkit-input-placeholder {
  color: #BBBBBB;
  opacity: 1;
}

/* Mozilla Firefox 19+ */
::-moz-placeholder {
  color: #BBBBBB;
  opacity: 1;
}

/* Microsoft Edge */
:-ms-input-placeholder {
  color: #BBBBBB;
  opacity: 1;
}

/* Internet Explorer 10-11 */
::placeholder {
  color: #BBBBBB;
  opacity: 1;
}

.qr-button-wrapper {
  position: relative;
  /* 为绝对定位的二维码提供定位上下文 */
  display: inline-block;
  /* 使包裹容器的尺寸适应按钮 */
}

.qr-popup {
  /* 初始状态：隐藏 */
  visibility: hidden;
  opacity: 0;

  /* 样式和布局 */
  position: absolute;
  bottom: calc(100% + 10px);
  /* 定位在按钮上方，并留出10px间距 */
  left: 50%;
  transform: translateX(-50%);
  /* 水平居中 */
  width: 160px;
  /* 二维码容器宽度 */
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  /* 漂亮的阴影效果 */
  z-index: 10;

  /* 平滑过渡效果 */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qr-popup img {
  width: 100%;
  display: block;
  /* 移除图片下方的默认空隙 */
}

/* 鼠标悬停在包裹容器上时，显示二维码 */
.qr-button-wrapper:hover .qr-popup {
  visibility: visible;
  opacity: 1;
}

/* --- 用于控制新图标图片的样式 --- */

.feature-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .icon img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

/* --- 贵金属投资百科 (终极解决方案) --- */

.article-link-group {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-right: 15px;
  min-width: 0;
  /* 保持，这是让内部flex项目正确计算宽度的前提 */
}

.article-link-group::before {
  content: '▶';
  color: #666666;
  margin-right: 10px;
  font-size: 12px;
  display: inline-block;
  transform: scale(0.7);
  flex-shrink: 0;
}

.article-link-group .sort-name {
  font-weight: bold;
  margin-right: 8px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  flex-shrink: 0;
  /* 分类名称不收缩 */
}

.article-link-group .article-title {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;

  flex-grow: 1;
  /* 占据所有剩余空间 */
  min-width: 0;
  /* 允许自身被压缩 */

  display: block;
}

.article-link-group .article-title span {
  display: block;
  /* 确保它是个块级元素 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-link-group a:hover,
.article-link-group a:hover .article-title span {
  color: var(--primary-orange);
}

.encyclopedia-links .link-date {
  color: #999;
  font-size: 14px;
  flex-shrink: 0;
}

.styles_toolBar__3Tri- {
    position: fixed;
    bottom: 20vh;
    right: 50px;
    z-index: 9999
}

.styles_toolBar__3Tri- .tool-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    color: #999;
    line-height: 1;
    width: 48px;
    height: 48px;
    transition: .25s;
    cursor: pointer;
    position: relative
}

.styles_toolBar__3Tri- .tool-item i {
    font-size: 22px
}

.styles_toolBar__3Tri- .tool-item>span {
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    background: #fff;
    color: #333;
    border-radius: 6px 0 0 6px;
    display: none;
    white-space: nowrap
}

.styles_toolBar__3Tri- .tool-item>span.qr {
    padding-bottom: 10px;
    bottom: auto;
    background: #fff;
    font-size: 12px;
    color: #999;
    white-space: wrap;
    text-align: center;
    line-height: 2;
    border-radius: 0;
    right: 120%;
    top: -78px
}

.styles_toolBar__3Tri- .tool-item:not(:last-child) {
    margin-bottom: 1px
}

.styles_toolBar__3Tri- .tool-item:hover {
    background: #ff7401;
    color: #fff;
    transition: .25s
}

.styles_toolBar__3Tri- .tool-item:hover>span {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px hsla(0, 0%, 39.2%, .15);
    padding: 1vw;
}

.styles_toolBar__3Tri- .tool-item:hover>span.qr {
    display: block
}