.brand .title {
  text-align: center;
  color: #002249;
}
.brand .title h2 {
  font-size: 42px;
  color: #002249;
  font-weight: 600;
}
.brand .title-w {
  color: #fff;
}
.brand .title-w h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .brand .title h2 {
    font-size: 30px;
  }
}
.brand-custom {
  padding: 40px 0;
  background-color: #f0f4f9;
}
.brand-custom img {
  width: 100%;
}
.brand-custom .custom-title {
  font-size: 28px;
  white-space: nowrap;
  color: #002249;
  padding-right: 20px;
}
.brand-custom .custom-list {
  max-width: 850px;
}
@media screen and (max-width: 768px) {
  .brand-custom {
    display: none;
  }
}
.brand-condition {
  padding: 80px 0;
  background-color: #f4f8ff;
}
.brand-condition .condition-content {
  margin: auto;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  max-width: 940px;
}
.brand-condition .condition-item {
  width: 33.3%;
  box-shadow: 0 0 30px rgba(12, 89, 219, 0.15);
  max-width: 290px;
  border-radius: 10px;
  background-color: #fff;
}
.brand-condition .condition-item .cd-tit {
  border-radius: 10px 10px 0 0;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 0 30px;
  background-size: 100% 100%;
}
.brand-condition .condition-item .condition-desc {
  padding: 30px 30px 0;
}
@media screen and (max-width: 768px) {
  .brand-condition {
    padding: 40px 0;
  }
  .brand-condition .condition-content {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .brand-condition .condition-item {
    max-width: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .brand-condition .condition-item .cd-tit {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    padding: 0 20px;
  }
  .brand-condition .condition-item .condition-desc {
    padding: 20px 15px 0;
  }
  .brand-condition .condition-item img {
    display: none;
  }
}
.brand-intro-card {
  padding: 100px 0 50px;
}
.brand-intro-card .service-tit {
  position: absolute;
  top: -29px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.brand-intro-card .service-tit h2 {
  font-weight: bold;
  background: url(/img/page/v2020/brand/tort/title.png) no-repeat center;
  padding: 20px 40px;
  display: inline-block;
  background-size: cover;
}
.brand-intro-card .service-info {
  border-radius: 10px;
  border: 1px solid #a9c9ff;
  box-shadow: 0 0 15px rgba(12, 89, 219, 0.3);
  padding: 90px 20px 40px;
}
.brand-intro-card .service-info .desc {
  max-width: 930px;
  margin: auto;
  text-align: center;
}
.brand-process {
  padding: 80px 0;
  background: url(/img/page/v2020/brand/tort/process-bg.jpg) no-repeat center;
  background-size: cover;
}
.brand-process .process-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: 80px;
}
@media screen and (min-width: 769px) {
  .brand-process .process-wrap::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    top: 50px;
    border-bottom: 1px dashed #fff;
    z-index: 0;
  }
}
.brand-process .process-img {
  position: relative;
  height: 100px;
  align-items: center;
  line-height: 100px;
}
.brand-process .process-img span {
  position: absolute;
  top: -70px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: block;
  left: 0;
  margin: auto;
  text-align: center;
  right: 0;
}
.brand-process .process-item {
  width: 25%;
  text-align: center;
  z-index: 1;
}
.brand-process .process-item img {
  transform: translateY(0);
  transition: 0.5s;
}
.brand-process .process-item:hover {
  cursor: pointer;
}
.brand-process .process-item:hover img {
  transform: translateY(-12px);
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .brand-process .process-item:not(:last-child) .process-img:after {
    content: url(/img/page/v2020/brand/tort/arrow.png);
    position: absolute;
    display: inline-block;
    line-height: 115px;
    right: 0;
    animation: Animation 3s linear infinite;
  }
}
@keyframes Animation {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(20px);
    opacity: 0;
  }
}
.brand-process .process-info {
  padding: 30px 0 20px;
}
.brand-process .process-info h5 {
  margin-bottom: 20px;
}
.brand-process .process-info p {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .brand-process .process-wrap {
    flex-direction: column;
  }
  .brand-process .process-info {
    padding: 0 0 20px;
    width: calc(100% - 80px);
  }
  .brand-process .process-info .c-section-tit-w {
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .brand-process .process-img {
    width: 80px;
    text-align: center;
  }
  .brand-process .process-img img {
    width: 50px;
  }
  .brand-process .process-img span {
    top: -40px;
  }
  .brand-process .process-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    text-align: left;
  }
}
.brand-detection-alert {
  padding: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: url(/img/page/v2020/brand/detection-bg.jpg) no-repeat center;
}
.brand-detection-alert .container {
  padding: 20px 0;
}
@keyframes sticky2 {
  0% {
    bottom: -250px;
    opacity: 0.5;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}
.brand-detection-alert.alert-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: sticky2 0.5s;
}
.brand-detection-alert .detection-title {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.brand-detection-alert .detection-title .closebtn {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 1;
}
.brand-detection-alert .detection-btn {
  cursor: pointer;
}
.brand-detection-alert .detection-desc {
  opacity: 0;
  transition: all 0.5s;
  height: 0;
  overflow: hidden;
}
.brand-detection-alert .detection-desc p {
  color: #4f1600;
  font-size: 16px;
  max-width: 800px;
  line-height: 28px;
}
@media screen and (min-width: 1200px) {
  .brand-detection-alert .container:hover .detection-desc {
    opacity: 1;
    height: 60px;
    margin-top: 13px;
    transition: all 0.5s;
  }
}
.brand-ssl-package .package-tit {
  color: #002249;
  font-size: 30px;
  font-weight: normal;
}
.brand-ssl-package .package-desc {
  background-color: #002249;
  text-align: center;
  max-width: 280px;
  width: 280px;
}
.brand-ssl-package .package-desc ul {
  display: table;
  margin: auto;
}
.brand-ssl-package .package-desc li {
  color: #aec2d8;
  text-align: left;
}
.brand-ssl-package .package-table {
  border: 1px solid #738ba5;
  margin-bottom: 20px;
}
.brand-ssl-package .package-table td {
  border: 1px solid #738ba5;
}
.brand-ssl-package .package-price {
  padding: 10px 30px 20px;
}
.brand-ssl-package .package-price h5 {
  font-size: 20px;
  color: #002249;
  line-height: 50px;
  border-bottom: 1px solid #d0ddeb;
}
.brand-ssl-package .package-price span {
  font-size: 16px;
  color: #002249;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}
.brand-ssl-package .package-price p {
  font-size: 16px;
  color: #738ba5;
}
.brand-ssl-package .package-price label {
  display: block;
  font-size: 36px;
  color: #002249;
  font-weight: normal;
}
.brand-ssl-package .package-content {
  padding: 10px 20px;
}
.brand-monitor .c-pro-tit {
  text-align: center;
  font-size: 42px;
  margin-bottom: 70px;
}
.brand-monitor-func {
  padding: 70px 0;
  background-color: #e9eef4;
}
.brand-monitor-func .title {
  padding-right: 50px;
}
.brand-monitor-func .title h5 {
  color: #0c59db;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 50px;
}
.brand-monitor-func .func-desc {
  margin: 0 -10px;
  margin-top: 20px;
}
.brand-monitor-func .func-desc .flex-item {
  padding: 10px;
}
.brand-monitor-func .func-desc .desc-item {
  background: #fff;
  height: 100%;
}
.brand-monitor-func .func-desc .info {
  padding: 20px 10px;
  vertical-align: top;
}
.brand-monitor-func .func-desc .icon {
  padding: 20px 10px;
}
.brand-monitor-poser {
  padding: 70px 0;
}
.brand-monitor-worth {
  padding: 100px 0;
}
.brand-monitor-worth .title {
  color: #002249;
  font-size: 30px;
  font-weight: bold;
}
.brand-monitor-worth .title p {
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 30px;
}
.brand-monitor-worth .title .sub {
  color: #f87652;
}
.brand-monitor-worth .table-row > div {
  vertical-align: top;
  padding-right: 10px;
}
.brand-monitor-worth .worth-timely {
  padding: 50px;
  position: relative;
  background-color: #0d2363;
  margin-bottom: 20px;
}
.brand-monitor-worth .worth-timely .title {
  color: #fff;
  padding: 40px 0;
  position: absolute;
  top: 35%;
  right: 40px;
}
.brand-monitor-worth .worth-timely .pic {
  padding: 100px 0;
}
.brand-monitor-worth .worth-timely .markicon {
  -webkit-animation: shine 2s linear infinite;
  animation: shine 2s linear infinite;
}
@keyframes shine {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.brand-monitor-worth .worth-timely-content {
  position: relative;
  text-align: center;
}
.brand-monitor-worth .worth-timely-content .item {
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  text-align: left;
  transition: all 0.5s;
}
.brand-monitor-worth .worth-timely-content .item:hover {
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
  transition: all 0.5s;
}
.brand-monitor-worth .worth-timely-content label {
  font-size: 20px;
  color: #002249;
  font-weight: bold;
  margin-bottom: 0;
}
.brand-monitor-worth .worth-timely-content p {
  font-size: 16px;
  color: #002249;
}
.brand-monitor-worth .worth-protect {
  position: relative;
}
.brand-monitor-worth .worth-protect .title {
  color: #fff;
  padding: 40px 0;
  position: absolute;
  top: 35%;
  right: 40px;
}
.brand-monitor-worth .worth-upgrade {
  padding: 50px;
  position: relative;
  background-color: #e9eef4;
  margin-bottom: 20px;
}
.brand-monitor-worth .worth-upgrade .title {
  padding: 40px 0;
  position: absolute;
  top: 100px;
}
.brand-monitor-worth .worth-upgrade-content {
  position: relative;
  text-align: right;
}
@keyframes bounce-down {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(-5px);
  }
}
.brand-monitor-worth .worth-upgrade-content .arrow1 {
  -webkit-animation: bounce-down 2s linear infinite;
  animation: bounce-down 2s linear infinite;
}
.brand-monitor-worth .worth-upgrade-content .arrow2 {
  -webkit-animation: bounce-down 2s linear 0.5s infinite;
  animation: bounce-down 2s linear 0.5s infinite;
}
.brand-monitor-worth .worth-upgrade-content .arrow3 {
  -webkit-animation: bounce-down 2s linear 1s infinite;
  animation: bounce-down 2s linear 1s infinite;
}
.brand-monitor-worth .worth-upgrade-content .item {
  position: absolute;
  min-height: 150px;
  max-width: 220px;
  text-align: left;
}
.brand-monitor-worth .worth-upgrade-content .item label {
  font-size: 20px;
  color: #0c59db;
  font-weight: bold;
}
.brand-monitor-worth .worth-upgrade-content .item p {
  font-size: 16px;
  color: #002249;
}
.brand-monitor-adv {
  background-color: #e9eef4;
  padding: 80px 0 120px;
}
.brand-monitor-adv .item {
  padding: 60px 40px 0;
}
.brand-monitor-adv .card {
  position: relative;
  text-align: center;
  height: 100%;
  background-color: #fff;
  border: 1px solid #b6cdf4;
  padding: 70px 20px 10px 20px;
  box-shadow: 4px 4px 4px #d0d8e2;
}
.brand-monitor-adv .card span {
  font-size: 24px;
  color: #0c59db;
  font-weight: bold;
}
.brand-monitor-adv .card img {
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: -50px;
}
.brand-monitor-qna {
  background-color: #e9eef4;
  padding: 70px 0;
}
.brand-monitor-qna .qna-item {
  padding: 10px;
}
.brand-monitor-qna .card {
  background: url(/img/page/v2020/brand/monitor/bg/b001.png) no-repeat center;
  border-top: 3px solid #0c59db;
}
.brand-monitor-qna .card li {
  height: 60px;
  line-height: 60px;
  border-bottom: 1px dashed #dcdcdc;
  padding: 0 30px;
  font-size: 16px;
  color: #002249;
}
.brand-monitor-qna .card li a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.brand-monitor-part {
  padding: 90px 0;
}
.brand-dpml .title {
  text-align: center;
  color: #002249;
}
.brand-dpml .title-w {
  color: #fff;
}
.brand-dpml .title h2 {
  font-size: 42px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .brand-dpml .title h2 {
    font-size: 30px;
  }
}
.brand-dpml-custom {
  padding: 40px 0;
  background-color: #f0f4f9;
}
.brand-dpml-custom img {
  width: 100%;
}
.brand-dpml-custom .custom-title {
  font-size: 28px;
  white-space: nowrap;
  color: #002249;
  padding-right: 20px;
}
.brand-dpml-custom .custom-list {
  max-width: 850px;
}
@media screen and (max-width: 768px) {
  .brand-dpml-custom {
    display: none;
  }
}
.brand-dpml-point {
  padding: 80px 0;
}
.brand-dpml-point .point-card {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.brand-dpml-point .point-item {
  width: 25%;
  position: relative;
  text-align: center;
}
.brand-dpml-point .point-item .point-item-wrap {
  background: #fff;
  padding: 20px 25px;
  box-shadow: 0 0 20px rgba(12, 89, 219, 0.15);
  transition: all 0.5s;
}
.brand-dpml-point .point-item .c-section-tit {
  margin: 10px 0;
}
.brand-dpml-point .point-item p {
  font-size: 16px;
  color: #002249;
  line-height: 30px;
  text-align: left;
}
.brand-dpml-point .point-item:hover {
  cursor: pointer;
}
.brand-dpml-point .point-item:hover .point-item-wrap {
  transition: all 0.5s;
}
.brand-dpml-point .point-item:hover .low1 {
  transform: translateY(110px);
}
.brand-dpml-point .point-item:hover .low2 {
  transform: translateY(-20px);
}
.brand-dpml-point .point-item:hover .low3 {
  transform: translateY(40px);
}
.brand-dpml-point .point-item:hover .low4 {
  transform: translateY(0px);
}
@media screen and (min-width: 1200px) {
  .brand-dpml-point .low1 {
    transform: translateY(130px);
  }
  .brand-dpml-point .low2 {
    transform: translateY(0px);
  }
  .brand-dpml-point .low3 {
    transform: translateY(60px);
  }
  .brand-dpml-point .low4 {
    transform: translateY(20px);
  }
  .brand-dpml-point .point-card {
    justify-content: space-between;
    padding-bottom: 120px;
    background: url(/img/page/v2020/brand/dpml/b004.jpg) no-repeat bottom;
  }
  .brand-dpml-point .point-item .point-item-wrap {
    background: url(/img/page/v2020/brand/dpml/b003.png) no-repeat;
    box-shadow: unset;
    background-size: 100% 100%;
    padding: 50px 45px;
  }
}
@media screen and (max-width: 1200px) {
  .brand-dpml-point {
    padding: 60px 0;
  }
  .brand-dpml-point .point-item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .brand-dpml-point {
    padding: 40px 0;
  }
  .brand-dpml-point .point-item {
    width: 100%;
  }
}
.brand-dpml-ad {
  height: 600px;
  background: url(/img/page/v2020/brand/dpml/b001.jpg) no-repeat center;
}
.brand-dpml-ad .ad-content {
  padding-top: 180px;
}
.brand-dpml-ad .ad-tit {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}
.brand-dpml-ad .ad-subtit {
  font-size: 42px;
  color: #ffd790;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .brand-dpml-ad {
    height: 250px;
  }
  .brand-dpml-ad .ad-content {
    padding-top: 50px;
  }
  .brand-dpml-ad .ad-tit,
  .brand-dpml-ad .ad-subtit {
    font-size: 24px;
  }
}
.brand-dpml-intro {
  background: url(/img/page/v2020/brand/dpml/b002.jpg) no-repeat bottom;
  padding: 60px 0;
}
.brand-dpml-intro .intro-desc {
  max-width: 700px;
  margin: auto;
  margin-top: 50px;
}
.brand-dpml-trait {
  background: #0c59db;
}
.brand-dpml-trait .trait-content {
  display: flex;
  justify-content: space-between;
  margin: 30px -10px;
}
.brand-dpml-trait .trait-item {
  width: 20%;
  padding: 10px;
}
.brand-dpml-trait .trait-info {
  border: 1px solid #6096f0;
  padding: 10px;
  padding-left: 50px;
  height: 100%;
  position: relative;
}
.brand-dpml-trait .trait-info .num {
  position: absolute;
  left: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  display: block;
  background-color: #5f95f0;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #0c59db;
  border-radius: 30px;
}
.brand-dpml-trait .trait-info .text {
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .brand-dpml-trait .trait-content {
    display: flex;
    flex-wrap: wrap;
  }
  .brand-dpml-trait .trait-item {
    width: 100%;
  }
}
.brand-dpml-type {
  padding: 80px 0;
}
.brand-dpml-type .co-coin {
  position: relative;
  height: 80px;
  width: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: #e3edff;
  color: #0c59db;
  font-size: 24px;
  margin: auto;
  margin-bottom: 20px;
}
.brand-dpml-type .co-coin::after {
  content: "";
  display: block;
  position: absolute;
  height: 100px;
  top: -10px;
  left: -10px;
  width: 100px;
  border-radius: 50%;
  border: 1px solid #0c59db;
}
.brand-dpml-type .type-content {
  margin-top: 50px;
}
.brand-dpml-type .type-wrap {
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.brand-dpml-type .type-item {
  padding: 60px 10px 10px;
  width: 25%;
  border: 1px solid #dfe1e6;
  max-height: 340px;
  align-items: center;
  text-align: center;
}
.brand-dpml-type .type-item p {
  display: none;
  max-width: 250px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 30px;
}
.brand-dpml-type .type-item span {
  color: #e3edff;
  font-size: 72px;
  margin: 0;
  font-weight: bold;
}
.brand-dpml-type .type-item .c-section-tit {
  margin: 20px 0 0;
}
.brand-dpml-type .type-item:not(:last-child) {
  border-right: none;
}
.brand-dpml-type .type-item.active {
  cursor: pointer;
  padding: 30px 0 0px;
  background: linear-gradient(#3578eb, #0c59db);
  transform: scaleY(1.12);
}
.brand-dpml-type .type-item.active > div {
  transform: scaleY(0.88);
}
.brand-dpml-type .type-item.active .c-section-tit {
  color: #fff;
}
.brand-dpml-type .type-item.active p {
  display: block;
  color: #fff;
}
.brand-dpml-type .type-item.active span {
  color: #2169e2;
}
.brand-dpml-type .type-item.active .co-coin {
  background-color: #115ddd;
  color: #fff;
}
.brand-dpml-type .type-item.active .co-coin::after {
  border: 1px solid #6d9be9;
}
@media screen and (max-width: 768px) {
  .brand-dpml-type {
    padding: 30px 0;
  }
  .brand-dpml-type .type-item,
  .brand-dpml-type .type-item {
    width: 100%;
    cursor: pointer;
    padding: 20px 0 0px;
    background: linear-gradient(#3578eb, #0c59db);
    transform: scaleY(1);
  }
  .brand-dpml-type .type-item > div,
  .brand-dpml-type .type-item > div {
    transform: scaleY(1);
  }
  .brand-dpml-type .type-item .c-section-tit,
  .brand-dpml-type .type-item .c-section-tit {
    color: #fff;
  }
  .brand-dpml-type .type-item p,
  .brand-dpml-type .type-item p {
    display: block;
    color: #fff;
  }
  .brand-dpml-type .type-item span,
  .brand-dpml-type .type-item span {
    color: #2169e2;
  }
  .brand-dpml-type .type-item .co-coin,
  .brand-dpml-type .type-item .co-coin {
    background-color: #115ddd;
    color: #fff;
  }
  .brand-dpml-type .type-item .co-coin::after,
  .brand-dpml-type .type-item .co-coin::after {
    border: 1px solid #6d9be9;
  }
}
.brand-qna .qna-list {
  margin-top: 30px;
}
.brand-qna .qna-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
}
.brand-qna .qna-list li::before {
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  background: url(/images/IP/qna.png) center no-repeat;
  left: 0;
  top: 0;
}
.brand-qna .qna-list li h4 {
  font-size: 16px;
  line-height: 26px;
  color: #002249;
}
.brand-qna .qna-list li p {
  background: #f2f5f9;
  font-size: 16px;
  padding: 15px 20px;
  color: #738ba5;
  margin: 5px 0 10px;
}
.brand-tort .bar-brand-tort {
  background: url(/img/page/v2020/brand/tort/banner.jpg) no-repeat center;
  height: 500px;
}
.brand-tort .bar-brand-tort .banner-txt {
  height: 100%;
  display: flex;
  align-items: center;
}
.brand-tort-range .range-info {
  padding-top: 80px;
}
.brand-tort-adv {
  padding: 90px 0 70px;
  background-color: #f4f8ff;
}
.brand-tort-adv .adv-content {
  margin-top: 60px;
}
.brand-tort-adv .adv-wrap {
  display: flex;
  justify-content: space-between;
}
.brand-tort-adv .adv-img {
  margin-bottom: -7px;
}
.brand-tort-adv p {
  max-width: 280px;
  margin: auto;
  line-height: 30px;
  margin-top: 20px;
}
.brand-tort-adv .adv-item {
  width: 33.3%;
  text-align: center;
}
.brand-tort-adv .adv-item img {
  transition: 0.5s;
}
.brand-tort-adv .adv-item:hover {
  cursor: pointer;
}
.brand-tort-adv .adv-item:hover img {
  transform: scale(1.1) translateY(-10px);
  transition: 0.5s;
}
.brand-tort-adv .adv-info {
  background: url(/img/page/v2020/brand/tort/adv-bg.jpg) top center no-repeat;
  padding: 40px 0 80px;
}
.brand-tort-hyadv {
  padding: 80px 0 40px;
}
.brand-tort-hyadv .hyadv-content {
  margin-top: 40px;
}
.brand-tort-hyadv .hyadv-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.brand-tort-hyadv .hyadv-item {
  width: calc(33.3% - 15px);
  margin-bottom: 30px;
}
.brand-tort-hyadv .hyadv-item:hover {
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
}
.brand-tort-hyadv .hyadv-item:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
.brand-tort-hyadv .hyadv-item img {
  width: 100%;
  transition: 0.5s;
}
.brand-tort-hyadv .hyadv-info {
  background-color: #f4f8ff;
  padding: 30px 20px;
}
.brand-tort-hyadv .hyadv-img {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .brand-tort-hyadv .hyadv-item {
    width: calc(50% - 10px);
  }
  .brand-tort-hyadv .hyadv-item .hyadv-info {
    padding: 20px 10px;
  }
}
.brand-tort .c-section-subtit {
  font-weight: bold;
  margin-bottom: 15px;
}
.brand-udrp-solution {
  padding: 90px 0 50px;
}
.brand-udrp-solution .solution-info {
  margin-top: 50px;
}
.brand-udrp-solution .row {
  display: flex;
  flex-wrap: wrap;
}
.brand-udrp-solution .solution-item {
  box-shadow: 0 0 25px rgba(0, 15, 41, 0.2);
  height: 100%;
  padding: 25px 30px;
  border-top: 10px solid #0c59db;
  text-align: center;
}
.brand-udrp-solution .adv {
  display: block;
}
.brand-udrp-solution .solution-tit {
  margin: 15px 0;
}
.brand-udrp-solution .solution-subtit {
  line-height: 30px;
  margin-bottom: 10px;
}
.brand-udrp .brand-process p {
  padding: 0 20px;
  font-size: 14px;
}
.brand-tmch .pt-2,
.brand-tmch .py-2 {
  padding-top: 0.5rem !important;
}
.brand-tmch-intro {
  padding: 80px 0;
}
.brand-tmch-intro .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
}
.brand-tmch-intro .intro-subtit {
  font-size: 16px;
  max-width: 680px;
  margin: 30px auto;
  color: #768ea7;
}
.brand-tmch-intro .intro-content {
  background-color: #f5f7fa;
  padding: 30px;
}
.brand-tmch-intro .intro-content-tit {
  display: flex;
  align-items: center;
  height: 100%;
}
.brand-tmch-intro .intro-content-tit .c-section-tit {
  font-size: 30px;
}
.brand-tmch-intro .intro-item {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  position: relative;
  padding: 0 20px 20px;
  height: 100%;
}
.brand-tmch-intro .intro-item h5 {
  position: relative;
  color: #fff;
  z-index: 1;
  line-height: 60px;
  font-size: 24px;
  font-weight: bold;
}
.brand-tmch-intro .intro-item p {
  padding-top: 20px;
}
.brand-tmch-intro .intro-item_1 {
  border-bottom: 10px solid #c9ddff;
}
.brand-tmch-intro .intro-item_1::before {
  content: url(/img/page/v2020/brand/tmch/bg1.png);
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 0;
}
.brand-tmch-intro .intro-item_2 {
  border-bottom: 10px solid #ffdfcf;
}
.brand-tmch-intro .intro-item_2::before {
  content: url(/img/page/v2020/brand/tmch/bg2.png);
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 0;
}
.brand-tmch-worth {
  padding: 90px 0 60px;
  background: url(/img/page/v2020/brand/tmch/bg3.jpg) no-repeat center;
  background-size: cover;
}
.brand-tmch-worth .worth-content {
  margin-top: 90px;
}
.brand-tmch-worth .worth-item {
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
}
.brand-tmch-worth .worth-tit {
  color: #fff;
  text-align: center;
  overflow: hidden;
  transform: translateY(-50%);
  width: 100%;
}
.brand-tmch-worth .worth-tit h3 {
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
  margin: auto;
  box-shadow: 0 0 25px rgba(161, 64, 16, 0.6);
  width: calc(100% - 80px);
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(#ff9d6d, #ff722c);
}
.brand-tmch-worth p {
  padding: 0 20px 30px;
}
.brand-tmch-worth b {
  color: #0c59db;
}
@media screen and (max-width: 768px) {
  .brand-tmch-worth .worth-content {
    margin-top: 10px;
  }
  .brand-tmch-worth .row > div {
    margin-top: 50px !important;
  }
}
.brand-tmch-apply .apply-content {
  background: linear-gradient(to right, #002249, #376395);
  padding: 40px;
  margin-top: 50px;
}
.brand-tmch-apply .apply-content .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
}
.brand-tmch-apply .apply-content h5,
.brand-tmch-apply .apply-content h6 {
  color: #bfd7ff;
}
.brand-tmch-apply .apply-content h5 {
  font-size: 24px;
  font-weight: bold;
}
.brand-tmch-apply .apply-content p {
  font-size: 18px;
  max-width: 550px;
  position: relative;
  z-index: 1;
}
.brand-tmch-apply .apply-content strong {
  position: absolute;
  right: 0;
  font-size: 90px;
  font-weight: bold;
  color: #dde7f6;
  z-index: 0;
}
.brand-tmch-apply .apply-content .apply-item {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  height: 100%;
}
.brand-tmch-flow {
  background-color: #f5f7fa;
}
@media screen and (max-width: 768px) {
  .brand-tmch section {
    padding: 45px 0 !important;
  }
  .brand-tmch .row > div {
    width: 100%;
    margin-top: 20px;
  }
}
.brand-risk .title h2 {
  text-align: left;
  margin-bottom: 20px;
}
.brand-risk .row {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .brand-risk .row {
    display: block;
  }
}
.brand-risk .bar-brand-risk {
  background: url(/img/page/v2020/brand/risk/banner.jpg) no-repeat center;
  background-size: cover;
  height: 500px;
}
.brand-risk .bar-brand-risk .banner-txt {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  max-width: 500px;
}
.brand-risk .bar-brand-risk .banner-txt h1 {
  font-size: 48px;
  font-weight: 600;
  margin-top: 0;
}
.brand-risk .bar-brand-risk .banner-txt p {
  font-size: 16px;
  line-height: 30px;
  margin-top: 30px;
  font-weight: 300;
}
.brand-risk-section {
  padding: 80px 0;
}
.brand-risk-section .se-icon {
  margin-left: -20px;
  margin-top: -20px;
}
.brand-risk-section .se-worth {
  margin-top: 30px;
}
.brand-risk-section .se-worth-tit {
  font-size: 30px;
  margin: 15px 0;
  color: #002249;
}
.brand-risk-section .se-worth-desc {
  margin-top: 30px;
}
.brand-risk-section .se-worth .worth-item {
  overflow: hidden;
  height: 100%;
}
.brand-risk-section .se-worth .worth-item .icon {
  margin-right: 5px;
}
.brand-risk-fake .worth-item {
  border: 1px solid #98d978;
  border-radius: 10px;
}
.brand-risk-fake .worth-item .tit {
  background: linear-gradient(to right, #52c41a, #98d978);
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  padding: 6px 0;
}
.brand-risk-fake .worth-item .info {
  padding: 15px;
}
.brand-risk-fake .worth-item .number {
  background-color: #c4e9b2;
  color: #fff;
  width: 33px;
  height: 33px;
  text-align: center;
  font-size: 16px;
  line-height: 33px;
  border-radius: 50%;
  margin: auto;
}
.brand-risk-ecommerce {
  background-color: #f0f4f9;
}
.brand-risk-ecommerce .worth-item,
.brand-risk-market .worth-item {
  border: 1px solid #c2cad3;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 15px 10px;
}
.brand-risk-ecommerce .worth-item .tit,
.brand-risk-market .worth-item .tit {
  margin-bottom: 10px;
}
.brand-risk-ecommerce .worth-item .tit span,
.brand-risk-market .worth-item .tit span {
  font-size: 20px;
  font-weight: bold;
  color: #002249;
  vertical-align: middle;
}
.brand-risk-market {
  background: url(/img/page/v2020/brand/risk/b1.jpg);
  background-size: cover;
}
.brand-risk-ad .worth-item,
.brand-risk-media .worth-item {
  background: linear-gradient(45deg, #fff1ec, #fff9f4);
  border-radius: 20px 20px 70px 20px;
  padding: 20px 20px 30px;
}
.brand-risk-ad .worth-item .tit,
.brand-risk-media .worth-item .tit {
  margin-bottom: 10px;
}
.brand-risk-ad .worth-item .tit p,
.brand-risk-media .worth-item .tit p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #002249;
}
.brand-risk-media .worth-item {
  background: linear-gradient(45deg, #f2f4ff, #fff9f4);
}
.brand-onsale-content {
  padding-bottom: 130px;
  background-color: #eaf0f9;
}
.brand-onsale-content h3 {
  text-align: center;
  color: #002249;
  font-size: 24px;
}
.brand-onsale-table {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(181, 189, 206, 0.3);
}
.brand-onsale-table table {
  width: 100%;
}
.brand-onsale-table table tr {
  border-bottom: 1px solid #d4d8dc;
}
.brand-onsale-table table tr:hover {
  cursor: pointer;
  background-color: #f4f6ff;
}
.brand-onsale-table table td {
  min-height: 50px;
  padding: 10px 20px;
  white-space: nowrap;
  line-height: 36px;
  color: #738ba5;
}
.brand-onsale-table table td span,
.brand-onsale-table table td b {
  color: #002249;
}
.brand-onsale-table table td label {
  font-weight: normal;
  color: #13a231;
}
.brand-onsale-table .onsale-btn {
  width: 180px;
  text-align: center;
}
.brand-onsale-table .onsale-btn .c-btn:hover {
  background-color: #0c59da;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .brand-onsale-table table td {
    padding: 10px;
    font-size: 12px;
  }
}
.brand-onsale-person {
  padding-bottom: 0;
  background-color: #eaf0f9;
}
.brand-onsale-person .person-content {
  width: 100%;
  border-top: 3px solid #0c59db;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: 0 0 30px rgba(36, 37, 41, 0.2);
}
.brand-onsale-person .card-box {
  background: url(/img/page/v2020/brand/onsale/person-bg.png) no-repeat;
  padding: 20px;
  background-size: 100% 100%;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.brand-onsale-person .card-box span {
  color: #0c59da;
  font-size: 24px;
}
.brand-onsale-person .contact span {
  color: #0c59da;
  font-size: 24px;
  font-weight: bold;
}
.brand-onsale-person .contact .contact-row {
  justify-content: space-between;
  align-items: center;
}
.brand-onsale-person .contact .phone {
  padding-right: 30px;
}
.brand-onsale-person .contact .phone p {
  font-size: 20px;
  line-height: 36px;
}
.brand-onsale-person .contact .code-wrap {
  background: url(/img/page/v2020/brand/onsale/code-border.png) no-repeat;
  padding: 10px;
  background-size: 100% 100%;
}
@media screen and (max-width: 1200px) {
  .brand-onsale-person {
    display: none;
  }
}
.section-title {
  font-size: 42px;
  font-weight: bold;
  color: #002249;
  text-align: center;
  margin-bottom: 63px;
}
.section-title-c-w {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 63px;
}
.bar-tm-monitor {
  background-image: url(/img/page/v2020/trade/monitor/banner/banner3.jpg) !important;
}
.bar-tm-monitor .banner-circle-box .banner-txt {
  text-align: left;
}
.banner-circle-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-circle {
  position: relative;
  margin-right: 113px;
}
.banner-c-1 {
  position: absolute;
  left: 13%;
  top: 13%;
  animation: spinPauseReverse 3s linear infinite;
}
.banner-c-2 {
  position: relative;
  z-index: 9;
  animation: spinPause 3s linear infinite;
}
.banner-c-3 {
  position: absolute;
  left: 17.5%;
  top: 17.5%;
  animation: spinPause 3s linear infinite;
}
.banner-c-4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-c-5 {
  position: absolute;
  left: -25%;
  top: 24%;
  z-index: 10;
}
.banner-c-6 {
  position: absolute;
  right: -30%;
  top: 24%;
  z-index: 10;
}
.banner-c-7 {
  position: absolute;
  left: -25%;
  bottom: 19%;
  z-index: 10;
}
.banner-c-8 {
  position: absolute;
  right: -27%;
  bottom: 19%;
  z-index: 10;
}
@keyframes spinPause {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinPauseReverse {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  75% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.brand-monitor-price .se-content-r {
  padding-left: 30px;
}
.brand-monitor-price .col-lg-3 {
  margin-bottom: 16px;
}
.for-price-box {
  border: 1px solid #c2cad3;
  border-radius: 10px;
  padding: 26px 15px 21px;
}
.for-price-box .tit {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "微软雅黑";
  color: #002249;
  margin-bottom: 12px;
}
.for-price-box .tit img {
  margin-right: 12px;
}
.brand-monitor-advantage {
  background-color: #f0f4f9;
}
.brand-monitor-advantage .col-lg-3 {
  margin-bottom: 16px;
}
.monitor-advantage-con {
  height: 100%;
  background: linear-gradient(to right top, #fff, #f4fcff);
  padding: 10px 19px 70px 35px;
  border-radius: 20px 20px 20px 70px;
}
.monitor-advantage-con h2 {
  margin: 10px 0 28px;
}
.monitor-advantage-con img {
  margin-left: -20px;
  margin-bottom: -20px;
}
.brand-monitor-setmeal {
  background-color: #2f77fa;
  background: linear-gradient(to top, #0c59db, #337bff);
}
.setmeal-box {
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0px 0px 38px rgba(0, 67, 168, 0.3);
  margin: 0 auto;
}
.setmeal-box-head {
  padding: 17px 39px 15px;
  color: #fff;
  font-size: 18px;
  background-color: #618aff;
  border-radius: 16px 16px 0 0;
}
.setmeal-box .setmeal-box-con:last-child .setmeal-con {
  border-radius: 0 0 16px 16px;
}
.setmeal-con {
  background-color: #fff;
  padding: 23px 39px;
  border-bottom: 1px solid #d2d7dd;
}
.setmeal-box-con:last-child .setmeal-con {
  border-bottom: none;
}
.setmeal-con .row {
  align-items: center;
}
.setmeal-con:hover {
  background-color: #f0f4f9;
  transition: all 0.5s;
}
.setmeal-con:hover h4 {
  color: #f8493b;
  transition: all 0.5s;
}
.setmeal-left h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  color: #0c59db;
}
.setmeal-left p {
  font-size: 14px;
  line-height: 24px;
  color: #002249;
}
.setmeal-right {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(to right, #f84839, #ff8e63);
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.monitor-flow-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.monitor-flow-con h4 {
  font-size: 24px;
  font-weight: bold;
  color: #0c59db;
  margin: 16px 0 21px;
}
.monitor-flow-con p {
  font-size: 14px;
  line-height: 24px;
  color: #002249;
  min-height: 72px;
}
.flow-con-right {
  width: calc(100% - 85px);
}
@media screen and (max-width: 1200px) {
  .brand-monitor .bar-tm-monitor {
    background-position: 0 0;
  }
  .flow-r-icon {
    display: none;
  }
  .col-lg-4.monitor-flow-con {
    padding: 0 12px !important;
  }
  .flow-con-right {
    width: 100%;
  }
  .bar-tm-monitor .c-wrapper {
    display: flex;
  }
  .banner-circle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .brand-monitor-part h2,
  .brand-monitor-poser h2,
  .brand-monitor-func h2 {
    font-size: 27px;
  }
  .brand-monitor-poser,
  .brand-monitor-part,
  .brand-monitor-func {
    padding: 30px 0 !important;
  }
  .brand-monitor .c-pro-tit {
    margin-bottom: 20px;
  }
  .brand-monitor-func .title {
    padding-right: 0;
  }
  .brand-monitor-func .title h5 {
    font-size: 18px;
    margin: 5px 0 10px;
  }
  .brand-monitor-func .title .c-text-16light,
  .brand-monitor-func .title .c-text-18 {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
  .brand-monitor-worth {
    padding: 40px 0;
  }
  .brand-monitor-worth .c-pro-tit {
    font-size: 28px;
  }
  .brand-monitor-adv {
    padding: 30px 0;
  }
  .brand-monitor-adv .card {
    padding: 45px 18px 15px;
  }
  .brand-monitor-adv .card img {
    top: -30px;
    width: 60px;
  }
  .brand-monitor-adv .c-pro-tit {
    font-size: 28px;
    margin-bottom: 56px;
  }
  .brand-monitor-adv .flex-row {
    justify-content: space-between;
  }
  .brand-monitor-adv .flex-row .item {
    margin-bottom: 40px;
    padding: 0;
    width: calc(50% - 7.5px);
  }
  .brand-tort .bar-brand-tort {
    height: 200px;
  }
  .brand-intro-card {
    padding: 60px 0 10px;
  }
  .brand-intro-card .service-info {
    padding: 40px 15px 30px;
  }
  .brand .title h2 {
    font-size: 26px;
  }
  .brand-tort-range .range-info {
    padding-top: 30px;
  }
  .brand-process {
    padding: 40px 0 30px;
  }
  .brand-process .process-info p {
    line-height: 22px;
    padding: 0 0 0 20px;
  }
  .brand-process .process-wrap {
    margin-top: 30px;
  }
  .brand-tort-adv {
    padding: 40px 0 20px;
  }
  .brand-tort-adv .adv-content {
    margin-top: 20px;
  }
  .brand-tort-adv .adv-info {
    padding: 20px 0 0;
  }
  .brand-tort-adv .adv-info p {
    line-height: 22px;
  }
  .brand-tort-hyadv {
    padding: 40px 0 0;
  }
}
