.components-FixedBar--fixedBar_content {
    position: fixed;
    right: 20px;
    bottom: 15vh;
    width: 68px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1000);
    border-radius: 40px;
    z-index: 100;
    padding-top: 24px;
    padding-bottom: 24px;
}
.components-FixedBar--fixedBar_content_shuang {
    position: absolute;
    top: -50px;
    left: 0;
    width: 70px;
    animation: components-FixedBar--jumpBoxHandler 1.8s infinite;
}
@keyframes components-FixedBar--jumpBoxHandler { 
    0% {
      transform: translate(0px, 0px);
    }
    50% {
      transform: translate(0px, 10px); /* 可配置跳动方向 */
    }
    100% {
      transform: translate(0px, 0px);
    }
}

.components-FixedBar--fixedBar_content_shuang img{
    display: block;
    width: 100%;
}
.components-FixedBar--fixedBar_Mobile {
    position: fixed;
    right: 15px;
    bottom: 15vh;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1000);
    border-radius: 50%;
    z-index: 10;
    text-align: center;
    padding-top: 8px;
}
.components-FixedBar--fixedBar_Mobile img {
    font-size: 0;
    width: 24px;
}
.components-FixedBar--fixedBar_Mobile p {
    font-size: 12px;
    color: #286EFA;
    white-space: nowrap;
    transform: scale(0.85);
}
.components-FixedBar--fixedBar_item {
    width: 100%;
    font-size: 0;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition:all 0.2s;
    position: relative;
}
.components-FixedBar--fixedBar_item:last-child {
    margin-bottom: 0;
}
.components-FixedBar--fixedBar_item_imgs {
    display: inline-block;
    font-size: 0;
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    transition:all 0.2s;
    position: relative;
}
.components-FixedBar--fixedBar_item_imgs img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.components-FixedBar--fixedBar_item_img1 {
    z-index: 1;
}
.components-FixedBar--fixedBar_item_img2 {
    z-index: 2;
    display: none;
}

.components-FixedBar--fixedBar_item:nth-child(1):hover .components-FixedBar--fixedBar_item_img1 {
    display: none;
}
.components-FixedBar--fixedBar_item:nth-child(2):hover .components-FixedBar--fixedBar_item_img1 {
    display: none;
}
.components-FixedBar--fixedBar_item:nth-child(3):hover .components-FixedBar--fixedBar_item_img1 {
    display: none;
}
.components-FixedBar--fixedBar_item:nth-child(4):hover .components-FixedBar--fixedBar_item_img1 {
    display: none;
}

.components-FixedBar--fixedBar_item:nth-child(1):hover .components-FixedBar--fixedBar_item_img2 {
    display: block;
}
.components-FixedBar--fixedBar_item:nth-child(2):hover .components-FixedBar--fixedBar_item_img2 {
    display: block;
}
.components-FixedBar--fixedBar_item:nth-child(3):hover .components-FixedBar--fixedBar_item_img2 {
    display: block;
}
.components-FixedBar--fixedBar_item:nth-child(4):hover .components-FixedBar--fixedBar_item_img2 {
    display: block;
}
.components-FixedBar--fixedBar_item_mark {
    height: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 16px;
    text-align: center;
    margin-top: 5px;
}

.components-FixedBar--fixedBar_item_hover {
    position: absolute;
    left: -174px;
    top: 50%;
    -ms-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    padding-right: 20px;
    display: none;
}
.components-FixedBar--fixedBar_item_hover_content {
    width: 164px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
}
.components-FixedBar--fixedBar_item_hover_content .components-FixedBar--p1 {
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 24px;
    text-align: left;
}
.components-FixedBar--fixedBar_item_hover_content .components-FixedBar--p2 {
    font-size: 12px;
    font-weight: 400;
    color: #909090;
    line-height: 16px;
    text-align: left;
    white-space: nowrap;
}
.components-FixedBar--fixedBar_item_hover_img {
    display: block;
    width: 164px;
    height: 164px;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2000);
}

.components-FixedBar--fixedBar_item:hover .components-FixedBar--fixedBar_item_mark {
    color: #286EFA;
}
.components-FixedBar--fixedBar_item:hover .components-FixedBar--fixedBar_item_hover {
    display: block;
}


.components-Button--button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  border-radius: 5px;
  user-select: none;
  white-space: nowrap;
}

.components-Button--default {
  background-color: #286efa;
  color: #fff;
  font-size: 14px;
}

.components-Button--default:hover {
  color: #fff;
  background-color: #0057ff;
}

.components-Button--outline {
  background-color: transparent;
  color: #286efa;
  border: #286efa 1px solid;
}
.components-Button--outline2 {
  background-color: transparent;
  color: #5f5f5f;
  border: #d8d8d8 1px solid;
}

.components-Button--outline:hover,
.components-Button--outline2:hover {
  background-color: #286efa;
  color: #fff;
}
.components-Button--redOutline {
  background-color: transparent;
  color: #f36264;
  border: #f36264 1px solid;
}
.components-Button--redOutline:hover {
  background-color: #f46465;
  color: #fff;
}
.components-Button--important {
  background-color: #f46465;
  color: #fff;
}

.components-Button--important:hover {
  background-color: #e14647;
}

.components-Button--black,
.components-Button--black:hover {
  background-color: #50565c;
  color: #fff;
}

.components-Button--yellow {
  background-color: #FA6400;
  color: #fff;
}

.components-Button--yellow:hover {
  background-color: #FF5100;
  color: #fff;
}

.components-Button--loading,
.components-Button--loading:hover {
  background-color: #d8d8d8;
  color: #fff;
  cursor: wait;
}

.components-Button--disabled,
.components-Button--disabled:hover {
  background-color: #d8d8d8;
  color: #fff;
  cursor: not-allowed;
  border: 1px solid #efefef;
}

.components-Button--outline.components-Button--disabled,
.components-Button--outline.components-Button--loading {
  border-color: #d8d8d8;
}

.components-Vip3DmodelPage-Packages--Column {
    width: 380px;
}

.components-Vip3DmodelPage-Packages--Root {
  position: relative;
  padding: 20px;
  height: 253px;
  line-height: 1.4286;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
}
.components-Vip3DmodelPage-Packages--Title {
  font-size: 20px;
  margin-bottom: 5px;
}
.components-Vip3DmodelPage-Packages--Price {
  font-size: 36px;
  text-align: center;
}
.components-Vip3DmodelPage-Packages--OrigPrice {
  text-decoration: line-through;
  text-align: center;
}
.components-Vip3DmodelPage-Packages--Btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  width: 340px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: default;
  color: #000;
  border-radius: 5px;
  text-shadow: none;
}
.components-Vip3DmodelPage-Packages--bottom_a {
  position: absolute;
  right: 20px;
  bottom: 14px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 18px;
}
.components-Vip3DmodelPage-Packages--bottom_a:hover {
  color: #fff;
}
.components-Vip3DmodelPage-Packages--BtnA {
    cursor: pointer;
}

.components-Vip3DmodelPage-Packages--Icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.components-Vip3DmodelPage-Packages--Icon2 {
    width: 43px;
    height: 53px;
    display: block;
    position: absolute;
    right: 16px;
    top: 0;
}

.components-Vip3DmodelPage-Packages--Icon3 {
  width: 209px;
  height: 26px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.components-Vip3DmodelPage-Packages--Icon_chun {
  width: 182px;
  height: 26px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.components-Vip3DmodelPage-Packages--mark_red {
  width: 130px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(180deg, #D61212 0%, #BE0E0E 100%);
  border-radius: 5px;
  display: block;
  position: absolute;
  right: 9px;
  top: 10px;
}
.components-Vip3DmodelPage-components-SpaceIntroModal--PackItem {
    flex: 1;
    height: 100px;
    margin-left: 20px;
    border-radius: 5px;
    background-color: #f8f8f8;
    text-align: center;
    cursor: pointer;
    border: transparent 1px solid;
}

.components-Vip3DmodelPage-components-SpaceIntroModal--PackItem_active {
    border: #427AFB 1px solid;
}

.components-Vip3DmodelPage-components-SpaceIntroModal--Row {
    margin-bottom: 20px;
}
.components-Vip3DmodelPage-CompareTable--Row .components-Vip3DmodelPage-CompareTable--Link {
    margin-left: 20px;
    display: none;
}
  
.components-Vip3DmodelPage-CompareTable--Row .components-Vip3DmodelPage-CompareTable--Link2 {
    margin-left: 20px;
    display: inline-block;
    color: #286efa;
    cursor: pointer;
}
.components-Vip3DmodelPage-CompareTable--Row .components-Vip3DmodelPage-CompareTable--Col0 {
    flex: 0 0 320px;
}
  
.components-Vip3DmodelPage-CompareTable--Row .components-Vip3DmodelPage-CompareTable--Col {
    flex: 1;
    text-align: center;
}
  
.components-Vip3DmodelPage-CompareTable--Row {
    display: flex;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid #d8d8d8;
}
  
.components-Vip3DmodelPage-CompareTable--Row:hover {
    background-color: #fff;
}
  
.components-Vip3DmodelPage-CompareTable--Row .components-Vip3DmodelPage-CompareTable--Title {
    -webkit-flex: 0 0 320px;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
}
  
.components-Vip3DmodelPage-CompareTable--RowHeader {
    font-size: 16px;
    padding-left: 20px;
    background-color: #ebebeb;
    font-weight: 600;
    line-height: 50px;
    border-bottom: 1px solid #d8d8d8;
}
  
.components-Vip3DmodelPage-CompareTable--CompareTable .components-Vip3DmodelPage-CompareTable--CTCol0{
  flex: 0 0 320px;
}

.components-Vip3DmodelPage-CompareTable--CompareTable .components-Vip3DmodelPage-CompareTable--CTCol{
  flex: 1;
  text-align: center;
}


.components-Vip3DmodelPage-CompareTable--CompareTable {
  position: relative;
  padding-top: 90px;
}
.components-Vip3DmodelPage-CompareTable--CompareTable .components-Vip3DmodelPage-CompareTable--Header {
  position: absolute;
  top: 0;
  display: flex;
  width: 1200px;
  height: 90px;
  border-bottom: 1px solid #d8d8d8;
  background-color: #f8f8f8;
  padding-top: 20px;
}
.components-Vip3DmodelPage-CompareTable--CompareTable .components-Vip3DmodelPage-CompareTable--HeaderTop {
    position: fixed;
    top: 40px;
}
.components-Vip3DmodelPage-CompareTable--CompareTable .components-Vip3DmodelPage-CompareTable--HeaderTopAd {
    position: fixed;
    top: 100px;
}
.components-Vip3DmodelPage-CompareTable--CompareTable .components-Vip3DmodelPage-CompareTable--CTTitle {
  font-size: 20px;
  margin-bottom: 6px;
}

.components-Vip3DmodelPage-CompareTable--CompareTable .components-Vip3DmodelPage-CompareTable--Tooltip {
  max-width: 197px;
  line-height: 20px;
  padding: 10px;
  font-size: 12px;
  text-align: justify;
  text-justify: inter-word;
}

.components-Vip3DmodelPage-Faq--Root {
  padding: 0 20px;
  border-bottom: 1px solid #efefef;
}
.components-Vip3DmodelPage-Faq--Title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  font-size: 16px;
  cursor: pointer;
}
.components-Vip3DmodelPage-Faq--Icon {
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
}
.components-Vip3DmodelPage-Faq--Iconshow {
    transform: rotate(180deg);
}
.components-Vip3DmodelPage-Faq--Content {
  line-height: 20px;
  color: #868686;
  padding-bottom: 20px;
}

.components-Vip3DmodelPage-Faq--Faq {
  margin-top: 100px;
  padding: 0 20px;
  background-color: #fff;
}
.components-Vip3DmodelPage-Faq--Faq .components-Vip3DmodelPage-Faq--Header {
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  border-bottom: 1px #efefef solid;
}
.components-Vip3DmodelPage-Faq--Faq .components-Vip3DmodelPage-Faq--Footer {
  height: 50px;
  line-height: 50px;
  color: #868686;
}

.components-Vip3DmodelPage-player--lay {
  background-color: transparent;
}

.components-Vip3DmodelPage-player--video {
  height: 550px;
  width: 100%;
}

@media (max-width: 767px) {
  .components-Vip3DmodelPage-player--video {
    height: 190px;
  }
}
.components-Modal--overlay {
  background: rgba(51,51,51,0.70);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  overflow-y: auto;
}
.components-Modal--content {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  margin-right:-50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #FFFFFF;
  border-radius: 6px;
  min-height: 100px;
  width: 970px;
}
.components-Modal--scolltop {
  margin-top: 60px;
  margin-bottom: 40px;
}
.components-Modal--close,
.components-Modal--close2,
.components-Modal--close3 {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px 30px;
  background-image: url(https://ssl-static2.720static.com//_next/static/images/modal-close1-adfb8fdaec2455c5a5f90765115aa341.png);
  position: absolute;
  right: -15px;
  top: -15px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: -90px;
  cursor: pointer;
  z-index: 10100;
}

.components-Modal--close3 {
  right: 15px;
  top: 15px;
  background-image: url(https://ssl-static2.720static.com//_next/static/images/modal-close1-adfb8fdaec2455c5a5f90765115aa341.png);
}

.components-Modal--close2 {
  right: -5px;
  top: -45px;
}
.components-Modal--close:hover {
  background-image: url(https://ssl-static2.720static.com//_next/static/images/modal-close2-9e2c170d7f75158a726fd59657556f72.png);
}

@media (max-width: 767px) {
  .components-Modal--content {
    width: 90%;
    top: 40%;
  }
}

.components-Vip3DmodelPage-player--videoWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.components-Vip3DmodelPage-player--player {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: fill;
}

.components-Vip3DmodelPage-player--playerImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.components-Vip3DmodelPage--vip_container {
    background-color: #f8f8f8;
    padding-bottom: 70px;
}

.components-Vip3DmodelPage--vip_content {
    width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}
.components-Vip3DmodelPage--vip_content_p {
    font-size: 12px;
    font-weight: 500;
    color: #FA6400;
    line-height: 16px;
    margin-top: 40px;
}
.components-Vip3DmodelPage--vip_jiange {
    height: 100px;
}
.components-Vip3DmodelPage--vip_header {
    width: 100%;
    height: 500px;
    background-color: black;
    background-position: center;
    position: relative;
}
.components-Vip3DmodelPage--vip_header_content {
    position: absolute;
    width: 1200px;
    left: 50%;
    transform: translate(-50%,0);
    bottom: -50px;
    z-index: 100;
}
.components-Vip3DmodelPage--vip_header_video {
    width: 100%;
    height: 100%;
}
