* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Microsoft YaHei, PingFang, HarmonyOS_Sans, Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
  font-family: Microsoft YaHei, PingFang, HarmonyOS_Sans, Arial, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  background-color: #fff;
  color: #333;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1280px;
  font-family: Microsoft YaHei, PingFang, HarmonyOS_Sans, Arial, sans-serif;
}

img,
picture,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:-webkit-any-link:focus-visible {
  outline: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  text-align: left;
}

button {
  cursor: pointer;
  background: none;
  padding: 0;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

textarea {
  display: block;
}
.placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bfc3ce;
}
.placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bfc3ce;
}
.placeholder,
input:-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #bfc3ce;
}
.placeholder,
input::placeholder,
textarea::placeholder {
  color: #bfc3ce;
}

input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #d6dae7;
  border-radius: 50%;
  background-color: white;
  transition: all 0.2s ease;
  vertical-align: middle;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  background-color: #1969fa;
  border-color: #1969fa;
}

input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
  font-family: "iconfont" !important;
  content: "\e65b";
  display: block;
  text-align: center;
  color: white;
  font-size: 5px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  position: relative;
  left: -1px;
}

select:focus option[value=""] {
  display: none;
}

/* select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}
select::after {
  font-family: "iconfont" !important;
  content: "\e660";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
} */
select option {
  background-color: #fff;
}
option:hover {
  background-color: pink !important;
}
/* select:focus::after {
  font-family: "iconfont" !important;
  content: "\e661"; */
/* background-image: linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, gray, gray);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0; */
/* } */
pre {
  font-family: Microsoft YaHei;
}

/* 针对整个滚动条 */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 2px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
  background: transparent; /* 滚动条轨道的颜色 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #7f879e; /* 滚动条滑块的颜色 */
  border-radius: 2px;
  cursor: pointer;
}

/* 滑块悬停时的样式 */
/* ::-webkit-scrollbar-thumb:hover {
  background: #7f879e;
} */

/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.main {
  max-width: 1280px;
  margin: auto;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center !important;
}
.between {
  justify-content: space-between;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unselectable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.bg-f5 {
  background-color: #f5f5fa;
}

.bg {
  background: #0a3ac9;
  color: #fff;
}

.primary {
  color: #1953ff;
}

.color-666 {
  color: #666;
}

.primary-btn {
  background-color: #1953ff;
  color: #fff;
  height: 46px;
  line-height: 46px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  width: 100%;
}

.primary-btn:hover {
  background: #0a3ac9;
}

.def-btn {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e6e8ee;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  width: 100%;
  color: #7f879e;
}

.def-btn:hover {
  background: #1953ff;
  color: white;
}

.pointer {
  cursor: pointer;
}

/* header */
.pcb-header {
  background: transparent;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease; /* 平滑过渡 */
}

.pcb-header .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.pcb-header .logo {
  width: 287px;
}
.pcb-header .logo i {
  font-size: 20px;
  display: none;
}
.pcb-header .logo .svg-logo {
  width: calc(68px + 27px);
  height: auto;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
  position: relative;
  left: -0.15rem;
}

.pcb-header .nav {
  flex: 1;
  font-weight: bold;
  font-size: 16px;
  display: flex;
}

.pcb-header .nav li {
  margin-right: 50px;
  position: relative;
}

.pcb-header .nav li.active::after,
.pcb-header .nav li:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #1969fa;
  bottom: -10px;
  left: 0;
}
.pcb-header .nav li:hover::after {
  background: rgba(25, 105, 250, 0.35);
}
.pcb-header .nav li.active::after {
  background: #1969fa;
}

.pcb-header .nav li.active {
  position: relative;
}

.pcb-header .nav li.active::after {
  content: "";
}
.pcb-header .nav .high {
  color: #ff9500;
}
.pcb-header .nav-wave {
  display: flex;
  align-items: center;
}
.pcb-header .wave-container {
  display: flex;
  align-items: center;
  margin-left: 6px;
  height: 12px;
}
.pcb-header .wave-container .wave-bar {
  margin-right: 2px;
  width: 2px;
  background-color: #ff9500;
  animation: wave 1.2s ease-in-out infinite;
}
.pcb-header .wave-container .wave-bar.wave-bar-1 {
  animation-delay: -0.8s;
}
.pcb-header .wave-container .wave-bar.wave-bar-2 {
  animation-delay: -0.4s;
  height: 10px;
}
.pcb-header .wave-container .wave-bar.wave-bar-3 {
  animation-delay: 0s;
}
@keyframes wave {
  0%,
  100% {
    height: 60%;
  }
  50% {
    height: 100%;
  }
}
.pcb-header .user {
  text-align: center;
  min-width: 94px;
}

.pcb-header .user .btns {
  display: flex;
}

.pcb-header .user .btn {
  display: block;
  width: 80px;
  height: 34px;
  line-height: 34px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcb-header .user .btn i {
  margin-right: 5px;
}
.pcb-header .user .btn.active {
  background: #ffffff;
  border-color: #fff;
  color: #1969fa;
}

.pcb-header .user .btn:hover,
.pcb-header .user .operate__item .user-dropdown li:hover {
  background: #1969fa;
  border-color: #1969fa;
  color: #fff;
}

.pcb-header .user .btn + .btn {
  margin-left: 16px;
}

.pcb-header .user .operate {
  display: flex;
  align-items: center;
  min-width: 94px;
}

.pcb-header .user .operate .operate__item {
  position: relative;
}

.pcb-header .user .operate .operate__item .iconfont {
  font-size: 18px;
}

.pcb-header .user .operate .operate__item + .operate__item {
  margin-left: 27px;
}

.pcb-header .user .operate .operate__item .badge {
  position: absolute;
  min-width: 16px;
  height: 16px;
  line-height: 14px;
  background: #fd0031;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 11px;
  color: #ffffff;
  padding: 0 4px;
  top: -2px;
  right: -11px;
}

.pcb-header .user .operate .operate__item .__title span {
  font-weight: bold;
  font-size: 14px;
  color: #00ffeb;
  margin: 0 5px 0 3px;
}
.pcb-header .user .operate .operate__item-user .__title {
  display: flex;
}
.pcb-header .user .operate .operate__item-user .layui-icon-up,
.pcb-header .user .operate .operate__item-user .layui-icon-down {
  font-size: 10px;
}

.pcb-header .user .operate .operate__item-user {
  cursor: pointer;
  height: 60px;
  line-height: 60px;
}

.pcb-header .user .operate .operate__item-user .layui-icon-up {
  display: none;
}

.pcb-header .user .operate .operate__item-user:hover .layui-icon-down {
  display: none;
}

.pcb-header .user .operate .operate__item-user:hover .user-dropdown {
  display: block;
}

.pcb-header .user .operate .operate__item-user:hover .layui-icon-up {
  display: initial;
}

.pcb-header .user .operate__item .user-dropdown {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  margin: auto;
}

.pcb-header .user .operate__item .user-dropdown li + li {
  margin-top: 7px;
}

.pcb-header .user .operate__item .user-dropdown li {
  width: 100px;
  height: 30px;
  line-height: 30px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-weight: bold;
  font-size: 12px;
  color: #1969fa;
  margin: auto;
}

.pcb-header .user .operate__item .user-dropdown li .iconfont {
  font-size: 10px;
  margin-right: 5px;
}
.pcb-header.sticky {
  background: #1969fa;
}
/* .pcb-header.sticky .nav li.active,
.pcb-header.sticky .nav li:hover {
  color: #ff9500;
} */
.pcb-header.sticky i {
  display: block;
}
.pcb-header.sticky .svg-logo {
  display: none;
}
.pcb-header.sticky .nav li.active::after {
  background: #fff;
  bottom: -32px;
}
.pcb-header.sticky .nav li::after {
  background: rgba(255, 255, 255, 0.35);
  bottom: -32px;
}
.pcb-header.sticky .user .btn:hover,
.pcb-header.sticky .user .operate__item .user-dropdown li:hover {
  background: #0a3ac9;
  border-color: #0a3ac9;
  color: #fff;
}
/* header  end */

.module-header {
  min-height: 215px;
  background: #0a3ac9;
}

.module-header__title {
  font-size: 40px;
  padding: 67px 0 0;
  line-height: 48px;
  display: block;
}

.module-header__title .en {
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  margin-top: 10px;
  color: #878686;
  display: block;
}

.pcb-footer {
  background: #f5f5f7;
  font-size: 14px;
}
.pcb-footer .main > div,
.pcb-footer .main > ul {
  display: flex;
  align-items: center;
}
.pcb-footer-link {
  justify-content: space-between;
  align-items: baseline !important;
  padding: 50px 0 14px;
}
.pcb-footer-link li {
  flex: 1;
}
.pcb-footer-link dt {
  font-size: 16px;
  color: #333333;
  line-height: 16px;
  margin-bottom: 24px;
}
.pcb-footer-link dd {
  color: #86868b;
  line-height: 20px;
}

.pcb-footer-link dd + dd,
.pcb-footer-link p + p {
  margin-top: 10px;
}
.pcb-footer-link p {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  white-space: nowrap;
}

.pcb-footer .back-top:hover span,
.pcb-footer-link dd a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pcb-footer-resource {
  display: flex;
  font-size: 12px;
  color: #acacac;
  line-height: 20px;
  justify-content: space-between;
  margin-bottom: 8px;
}
.pcb-footer .back-top {
  cursor: pointer;
}
.pcb-footer-resource > div:first-child {
  display: flex;
  font-size: 11px;
  text-align: center;
}
.pcb-footer-resource > div:nth-child(2) i {
  font-size: 38px;
}
.pcb-footer-resource > div:nth-child(2) i:hover {
  color: #7f879e;
}
.pcb-footer-resource > div:nth-child(3) i {
  font-size: 30px;
}

.pcb-footer-resource > div:last-child i {
  margin-right: 0;
  margin-left: 5px;
  font-size: 8px;
}
.pcb-footer-resource ul {
  margin-right: 19px;
}
.pcb-footer-resource img {
  width: 54px;
  height: 54px;
}
.pcb-footer-resource i {
  margin-right: 11px;
}
.pcb-footer .copyright {
  font-size: 12px;
  color: #acacac;
  line-height: 38px;
  border-top: #dcdcdc solid 1px;
  padding-bottom: 16px;
}
.pcb-footer .copyright img {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 37px;
  margin-right: 10px;
  vertical-align: middle;
}
/* footer end */

/* 固定框部分 */
.fixed-contact {
  position: fixed;
  right: 20px;
  bottom: 35px;
  z-index: 29;
  /* min-height: 120px; */
}
.fixed-contact-expand {
  width: 160px;
  height: 498px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(4, 38, 94, 0.08);
  border-radius: 16px;
  padding: 30px 20px 20px;
  position: relative;
  text-align: center;
  font-size: 12px;
  color: #7f879e;
  margin-bottom: 9px;
  display: none;
}
.fixed-contact-expand.show {
  display: block;
}
.fixed-contact-expand ul + ul {
  margin-top: 8px;
}
.fixed-contact-expand ul:nth-child(1) {
  height: 56px;
}
.fixed-contact-expand ul:nth-child(3) li:last-child,
.fixed-contact-expand ul:nth-child(4) li:last-child {
  line-height: 28px;
}
.fixed-contact-expand .wechat {
  margin-bottom: 22px;
}
.fixed-contact-expand .wechat li:first-child {
  width: 90px;
  height: 27px;
  line-height: 27px;
  background: #29ad61;
  border-radius: 14px;
  margin: auto;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.fixed-contact-expand .wechat li:first-child:hover a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fixed-contact-expand .wechat li:nth-child(2) {
  line-height: 25px;
}
.fixed-contact-expand .wechat i {
  color: #fff;
  font-size: 15px;
  margin-right: 2px;
}
.fixed-contact-expand i {
  font-size: 20px;
  color: #1969fa;
  margin-right: 6px;
}
.fixed-contact-expand img {
  width: 81px;
  height: 81px;
  margin: auto;
}
.fixed-contact .pcb-toolkit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.fixed-contact .pcb-toolkit li {
  width: 43px;
  height: 43px;
  line-height: 40px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  text-align: center;
  cursor: pointer;
}
.fixed-contact .pcb-toolkit li + li {
  margin-top: 3px;
}
.fixed-contact .pcb-toolkit .icon-kefu {
  font-size: 18px;
}

.fixed-contact .pcb-toolkit li:first-child:hover .icon-kefu {
  color: #1969fa;
}
.fixed-contact .pcb-toolkit .icon-top {
  color: #7f879e;
}
/* .fixed-contact:hover .fixed-contact-expand {
  display: block;
} */
/* 固定框部分 end */

.PCB-pricing {
  height: 100px;
  background: #002a88;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 59px 0 50px;
}

.PCB-pricing .PCB-pricing__title {
  font-weight: bold;
  font-size: 24px;
  color: #f5f5f7;
  width: 126px;
  height: 24px;
  line-height: 24px;
}

.PCB-pricing .PCB-pricing__field {
  /* width: 340px; */
  width: 220px;
  height: 44px;
  line-height: 44px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 0 20px 0 16px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.PCB-pricing .PCB-pricing__field select {
  /* 移除默认样式 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100px;
  padding: 0 20px 0 10px;
  font-size: 14px;
  color: #333;

  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="%23333333" d="M5 6L0 0h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;

  transition: border-color 0.2s ease;
}

/* .PCB-pricing .PCB-pricing__field select:hover {
  border-color: #999;
} */

/* .PCB-pricing .PCB-pricing__field select:focus {
/* border-color: #5b9dd9; */
/* box-shadow: 0 0 3px rgba(91, 157, 217, 0.5);
} */
.PCB-pricing .PCB-pricing__field.large {
  width: 340px;
}

.PCB-pricing .PCB-pricing__field .label {
  font-weight: bold;
  font-size: 14px;
  color: #7f879e;
  margin-right: 12px;
}
.PCB-pricing .PCB-pricing__field input {
  color: #333;
}

.PCB-pricing .PCB-pricing__field.large input {
  width: 110px;
  height: 20px;
  line-height: 20px;
}

.PCB-pricing .PCB-pricing__field.large input:last-child {
  text-align: right;
  border-left: #7f879e 1px solid;
}

.PCB-pricing .PCB-pricing__btn {
  width: 220px;
  height: 44px;
  line-height: 44px;
  background: #0f87ff;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.PCB-pricing .PCB-pricing__btn:hover {
  background-color: #1969fa;
}
.custom-select {
  position: relative;
  flex: 1;
  text-align: right;
}
.custom-select .select-val {
  cursor: pointer;
  color: #333;
}
.custom-select .select-val > i {
  font-size: 5px;
  margin-left: 8px;
}

.custom-option,
.pcs-option-panel {
  display: none;
  width: 100%;
  padding: 10px;
  color: #333;
  background: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(34, 60, 135, 0.16);
  border-radius: 8px;
  position: absolute;
  left: 0;
  z-index: 11;
}
.custom-option {
  padding: 0;
}
.custom-option ul {
  padding: 6px 0;
}
.custom-option li {
  padding: 0 17px;
  cursor: pointer;
  text-align: left;
}
.custom-option li.disabled {
  font-weight: 400;
  font-size: 12px;
  color: #b7b7b7;
  line-height: 26px;
}
.custom-option li:not(.disabled) {
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
}

.custom-option li:not(.disabled).active,
.custom-option li:not(.disabled):hover {
  background: #1969fa;
  color: #fff;
}
.pcs-option-panel {
  width: 300px;
  padding: 10px;
  /* height: 200px; */
}
.PCB-pricing .pcs-option-panel {
  left: inherit;
  right: -20px;
}

.pcs-option-panel ul {
  display: flex;
  flex-wrap: wrap;
}
.pcs-option-panel ul li {
  margin: 0 !important;
  border: none !important;
  padding: 0 6px !important;
  width: 40px;
  height: 30px !important;
  line-height: 30px !important;
  border-radius: 5px;
  text-align: left !important;
  cursor: pointer;
  color: #333;
  /* font-size: 13px; */
}
.pcs-option-panel ul li.active,
.pcs-option-panel ul li:hover {
  background-image: none !important;
  background: #1969fa !important;
  color: #fff !important;
}
.pcs-option-panel > div {
  margin-top: 10px;
  font-size: 12px;
  color: #b7b7b7;
  display: flex;
  align-items: center;
}
.pcs-option-panel input {
  margin: 0 !important;
  width: 85px !important;
  height: 30px;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #7f879e !important;
  padding: 0 8px;
  line-height: 20px;
  color: #333;
}
.pcs-option-panel .btn {
  margin-left: 5px;
  width: 62px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  background: #1969fa;
  color: #ffffff;
}
.pcs-option-panel .btn:hover {
  background: #0a3ac9;
}
.pcs-option-panel .btn.plan {
  background: #f2f9ff;
  border-radius: 5px;
  border: 1px solid #e0f1ff;
  color: #1969fa;
}
.pcs-option-panel .btn.plan:hover {
  background: #e0f1ff;
  border-color: #e0f1ff;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  color: #141414;
}

.pagination li {
  min-width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #dce1e4;
  padding: 0 14px;
  cursor: pointer;
}

.pagination li:hover {
  background: #dce1e4;
}
.pagination li.active {
  background: #1969fa;
  color: #fff;
}

.pagination li.link,
.pagination li.prev,
.pagination li.next {
  padding: 0 17px;
}

.pagination li + li {
  margin-left: 10px;
}
/* 分页 end */

.swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  width: 37px;
  height: 37px;
  background: rgba(222, 222, 226, 0.65);
  border-radius: 50%;
  /* top: 258px; */
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(222, 222, 226, 0.85);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  /* color: #363636; */
  color: #72767e;
  font-family: "iconfont" !important;
}
.swiper-button-next:after {
  content: "\e64b";
}
.swiper-button-prev:after {
  content: "\e65e";
}
.layui-layer:not(.layui-layer-msg) {
  border-radius: 16px;
}
.layui-layer-title {
  font-weight: bold;
}
.layui-layer-setwin .layui-layer-close2 {
  background: none;
  color: #333;
  border: none;
  top: 0;
  right: 0;
  font-size: 18px;
  width: 38px;
  height: 38px;
  line-height: 34px;
  text-align: center;
}
.layui-layer-setwin .layui-layer-close2::before {
  font-family: "iconfont" !important;
  content: "\e669";
}
.layui-layer-setwin .layui-layer-close2:hover {
  background: #f5f5f5;
  border-radius: 5px;
}

.green {
  background: #1fae14 !important;
}

.blue {
  background: #0f87ff !important;
}
.kelly {
  background: #aeac14 !important;
}

.copy-btn {
  font-size: 12px;
  color: #7f879e;
  width: 32px;
  height: 15px;
  line-height: 12px;
  background: #f6f6f6;
  border-radius: 4px;
  border: 1px solid #bfc3ce;
  margin-left: 10px;
  text-align: center;
}
.copy-btn:hover {
  background: #bfc3ce;
}
