.tr_ctet{
    display: flex;
    justify-content: space-between;
}
.tr_side {
  width: 294px;
  height: 700px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.tr_side .tr_side_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100px;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    border-bottom: 1px solid #E7E7E7;
}

.tr_side .tr_side_title > span:first-child > img {
  display: block;
  height: 24px;
  width: 24px;
  margin-right: 10px;
  margin-left: 18px;
  position: relative;
  margin-top: 3px;
}

.tr_side .tr_side_title > span:nth-child(2) {
  font-size: 22px;
  color: #222;
  font-weight: bold;
}

.tr_side .catalog {
  font-size: 14px;
  color: #aaa;
  margin-top: 35px;
  margin-bottom: 22px;
  padding-left: 30px;
}

.tr_side .tr_menu {
    width: 94%;
    margin: 0 auto;
}

.tr_side .tr_menu a {
  height: 42px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 7px;
  margin-top: 5px;
}

.tr_side .tr_menu a span {
  padding-left: 20px;
  font-weight: bold;
  font-size: 14px;
}

.tr_side .tr_menu a span:first-child img {
  width: 24px;
  height: 24px;
}

.tr_side .tr_menu a:hover {
  background-color: var(--primary-color);
}

.tr_side .tr_menu a.tr_menu_active {
  background: linear-gradient(#00E5AE, #129979);
}

.tr_side .tr_menu a:hover,
.tr_side .tr_menu a.tr_menu_active {
  color: #fff;
  text-decoration: none;
}

.tr_side .tr_menu a:hover img,
.tr_side .tr_menu a.tr_menu_active img {
  filter: invert(100%);
}

.tr_side p.line {
  width: 90%;
  height: 0;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E7E7E7;
}

.tr_side p.tip {
  text-align: center;
  font-size: 12px;
  color: #868686;
  margin-top: -7px;
}

.tr_side .qrcode_zone {
  width: 80%;
  margin: 0 auto;
  margin-top: 29px;
}

.tr_side .qrcode_zone .qrcode_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
}

.tr_side .qrcode_zone .qrcode_item > div:first-child {
  position: relative;
    width: 100px;
    height: 100px;
    background-color: rgba(18, 153, 121, 0.5);
    display: flex;
    justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.tr_side .qrcode_zone .qrcode_item > div:first-child a {
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 5px;
  overflow: hidden;
}

.tr_side .qrcode_zone .qrcode_item > div:first-child a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tr_side .qrcode_zone .qrcode_item > div:first-child .triangle {
  position: absolute;
  width: 0;
  height: 0;
  top: calc( 50% - 14px);
  right: -20px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid rgba(18, 153, 121, 0.5);
  transform: rotateY(180deg);
}

.tr_side .qrcode_zone .qrcode_item > div:last-child {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tr_side .qrcode_zone .qrcode_item > div:last-child img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid #979797;
  margin-bottom: 10px;
}

.tr_side .qrcode_zone .qrcode_item > div:last-child p {
  font-size: 14px;
  color: #000;
}

.tr_sider_hide::before{
    content: "";
    width: 294px;
    height: 700px;
}
.tr_side.active_fix{
    position: fixed;
    top: 2px;
}
.tr_side.active_fix_abs{
    position: absolute !important;
}
.tr_main{
    width: 874px;
    /* height: 1000px; */
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-height: 700px;
}