﻿.header-products-popover {
    margin: 0 auto;
    background: #fff;
    height: 100%;
    overflow: hidden;

    /* 为了适配低版本，不使用变量，修改时所有地方替换 */
    /* --left-width: 22%; 左侧宽度占比 */
    /* --left-min-content-width: 234px; 左侧内容最小宽度 */
}

.header-products-popover .wrapper {
    position: static;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.header-products-popover .slogan {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-bottom: 16px;
}

.header-products-popover .main-content {
    display: flex;
    position: relative;
    width: 100%;
}

.header-products-popover .main-content .desc {
    width: 22%; /* --left-width */
    margin-top: 40px;
    min-width: calc(234px + 24px * 2); /* --left-min-content-width*/
    position: relative;
    border-right: 1px solid rgba(120, 130, 140, 0.13);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.header-products-popover .main-content .desc .desc-main {
    font-size: 26px;
    line-height: 40px;
    margin: -7px auto 16px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.85);

}

.header-products-popover .main-content .desc .desc-sub {
    font-size: 16px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 auto;
}

.header-products-popover .main-content .desc .desc-main,
.header-products-popover .main-content .desc .desc-sub {
    min-width: 238px;
    width: 70%;
}


.header-products-popover .columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 40px calc(22% * 0.15 - 16px) 0; /* --left-width */
    min-width: 1008px;
}

.product-column + .product-column {
    margin-left: 24px;
}

.header-products-popover .product-column {
    flex: 1;
    font-size: 16px;
    min-width: 210px;
}

.product-column .column-item {
    cursor: pointer;
    user-select: none;
    color: inherit;
    display: block;
    font-size: inherit;
    position: relative;
    padding: 12px 16px;
}

.product-column .column-item + .column-item {
    margin-top: 12px;
}

.product-column .column-item:hover {
    background-color: #F7F8FA;
}

.product-column .item-title,
.product-column .item-desc {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.product-column .item-title {
    font-weight: 700;
    font-size: 16px;
    color: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.new-feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  border-radius: 2px;
  background: #FFE6C8;
  padding: 0px 5px;
  color: #EE7200;
  font-style: normal;
  font-weight: 700;
  height: 15px;
}

.new-feature-tag .tag-text {
  font-size: 16px;
  zoom: 0.5;
}

.item-title .clifont {
    transition: all .2s ease-in-out;
}

/* .column-item:hover .item-title {
    color: #00A13B;
} */

.product-column .column-item:hover .clifont {
    transform: translateX(4px);
    color: #00A13B;
}

.product-column .column-title {
    font-weight: 600;
    color: #008C33;
    font-size: 14px;
    margin-bottom: 6px;
    padding-bottom: 16px;
    padding-left: 16px;
    line-height: 1;
}

.column-item .item-title {
    line-height: 26px;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color .2s ease-in-out;
}
.column-item .item-title .clifont{
    margin-left: 6px;
    display: none; /* 调试先隐藏 */
}

.product-column .item-desc {
    color: rgba(0, 0, 0, 0.65);
    margin-top: 8px;
    font-size: 13px;
}
