@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC&display=swap");
body,
html {
  background-color: #F0E8E5;
  font-family: 思源黑體, 微軟正黑體, 蘋方黑體, 華康麗黑體, Helvetica, Arial, sans-serif, serif;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#lg-app {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}

@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}

@keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

#lg-app .lg-snowflakes .snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
          animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
          animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
          animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
          animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
          animation-play-state: running, running;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
          animation-delay: 0s, 0s;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(1) {
  left: 10%;
  -webkit-animation-delay: 1s, 1s;
          animation-delay: 1s, 1s;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(2) {
  left: 20%;
  -webkit-animation-delay: 6s, .5s;
          animation-delay: 6s, .5s;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
          animation-delay: 4s, 2s;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
          animation-delay: 2s, 2s;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
          animation-delay: 8s, 3s;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(6) {
  left: 60%;
  -webkit-animation-delay: 6s, 2s;
          animation-delay: 6s, 2s;
}

#lg-app .lg-snowflakes .snowflake:nth-of-type(7) {
  left: 70%;
}

#lg-app .lg-pop-up {
  width: 100%;
  max-width: 400px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  border-radius: 15px;
  position: fixed;
  top: 25vh;
  left: 50%;
  margin-left: -200px;
  z-index: 999;
  display: none;
}

@media (max-width: 400px) {
  #lg-app .lg-pop-up {
    max-width: 90%;
    margin-left: 0px;
    left: 5%;
  }
}

#lg-app .lg-pop-up .search {
  width: 320px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 375px) {
  #lg-app .lg-pop-up .search {
    width: 100%;
  }
}

#lg-app .lg-pop-up .search ::-webkit-input-placeholder {
  color: #CECECE;
}

#lg-app .lg-pop-up .search ::-moz-placeholder {
  color: #CECECE;
}

#lg-app .lg-pop-up .search :-ms-input-placeholder {
  color: #CECECE;
}

#lg-app .lg-pop-up .search ::-ms-input-placeholder {
  color: #CECECE;
}

#lg-app .lg-pop-up .search ::placeholder {
  color: #CECECE;
}

#lg-app .lg-pop-up .search .search-button {
  background-color: rgba(222, 222, 222, 0);
  border: none;
  width: 80px;
}

#lg-app .lg-pop-up .search .search-button img {
  width: 30%;
}

#lg-app .lg-pop-up .search .search-style {
  font-size: 16px;
  border: none;
  height: 40px;
  vertical-align: middle;
  padding-left: 15px;
  width: 100%;
}

#lg-app .lg-pop-up .girl-list {
  width: 320px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  padding: 15px;
}

@media (max-width: 375px) {
  #lg-app .lg-pop-up .girl-list {
    width: 100%;
  }
}

#lg-app .lg-pop-up .girl-list .i-am-girl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0;
}

#lg-app .lg-pop-up .girl-list .i-am-girl:hover {
  background-color: rgba(244, 100, 38, 0.5);
  border-radius: 25px;
}

#lg-app .lg-pop-up .girl-list .i-am-girl:active {
  background-color: #FD325D;
  color: #fff;
  border-radius: 25px;
}

#lg-app .lg-pop-up .girl-list .cr {
  width: 50px;
  height: 50px;
}

#lg-app .lg-pop-up .girl-list .cr img {
  width: 50px;
  border-radius: 50%;
}

#lg-app .lg-pop-up .girl-list .name {
  margin-left: 15px;
}

#lg-app .lg-pop-up .submit {
  cursor: pointer;
  width: 100px;
  height: 40px;
  background-color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  border: #fff 1px solid;
  color: #fff;
  -webkit-transition: border-radius .2s, background-color .2s, color .2s;
  -o-transition: border-radius .2s, background-color .2s, color .2s;
  transition: border-radius .2s, background-color .2s, color .2s;
}

#lg-app .lg-pop-up .submit:hover {
  border-radius: 10px;
  color: #fff;
  background-color: #FD325D;
}

#lg-app .lg-header {
  width: 100%;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  height: 0;
  padding-bottom: 36.22%;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  #lg-app .lg-header {
    background-image: url(../img/bg-m.jpg);
    padding-bottom: 76.22%;
    background-position: top center;
  }
}

@media (max-width: 320px) {
  #lg-app .lg-header {
    padding-bottom: 96.22%;
  }
}

#lg-app .lg-points-box {
  width: 100%;
  max-width: 250px;
  margin: auto;
  color: #FD325D;
  text-align: center;
  z-index: 998;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -80px);
      -ms-transform: translate(-50%, -80px);
          transform: translate(-50%, -80px);
  font-size: 12px;
  display: none;
}

#lg-app .lg-points-box .item {
  width: 146px;
  height: 157px;
  background: url(../img/point.svg) no-repeat center top;
  line-height: 167px;
  font-size: 60px;
  margin: auto;
}

#lg-app .lg-points-box p {
  color: #FD325D;
  font-size: 20px;
  font-family: 'Noto Serif TC', serif;
}

#lg-app .lg-points-box .txt {
  padding: 10px 5px;
  margin-top: 15px;
  text-align: left;
  color: #1A686A;
  border-top: 1px #1A686A solid;
  border-bottom: 1px #1A686A solid;
}

#lg-app .lg-gift-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  margin: auto;
  color: #1A686A;
  margin-top: 200px;
  display: none;
}

#lg-app .lg-gift-wrap::before {
  content: '';
  width: 100%;
  height: .5px;
  background-color: #707070;
}

#lg-app .lg-gift-wrap::after {
  content: '';
  width: 100%;
  height: .5px;
  background-color: #707070;
}

#lg-app .lg-gift-wrap .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 15px 30px 15px;
}

@media (max-width: 768px) {
  #lg-app .lg-gift-wrap .item {
    width: 33.33333%;
  }
}

#lg-app .lg-gift-wrap .item .txt {
  font-size: 16px;
  padding: 15px 0;
}

@media (max-width: 320px) {
  #lg-app .lg-gift-wrap .item .txt {
    font-size: 16px;
  }
}

#lg-app .lg-gift-wrap .item .select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#lg-app .lg-gift-wrap .item .select .add {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  background-color: #FD325D;
  border-radius: 50%;
}

#lg-app .lg-gift-wrap .item .select .add::before, #lg-app .lg-gift-wrap .item .select .add::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 60%;
  top: 50%;
  left: 20%;
  margin-top: -2.5px;
  background: #fff;
}

#lg-app .lg-gift-wrap .item .select .add:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

#lg-app .lg-gift-wrap .item .select .add:hover {
  background-image: url(https://img.jvid.com/rescale_avatar/1581337312834_61160/2020/02/10/7bdcf804ad3240a64af92643ae8a2b65bfb15abeeaacb837c9d00d7b2326b62b_large.jpg);
  background-size: contain;
}

#lg-app .lg-gift-wrap .item small {
  padding: 10px 0;
}

#lg-app .lg-gift-wrap .item span {
  padding: 10px 0;
  font-size: 14px;
}

@media (max-width: 320px) {
  #lg-app .lg-gift-wrap .item span {
    font-size: 12px;
  }
}

#lg-app .lg-gift-wrap .item .imgbox {
  padding: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: #46523C solid 1px;
}

#lg-app .lg-gift-wrap .item .imgbox img {
  width: 60px;
}

#lg-app .lg-gift-wrap .item .button {
  text-decoration: none;
  width: 100%;
  border: 2px solid #336769;
  text-align: center;
  height: 35px;
  border-radius: 0px;
  -webkit-transition: border-radius .3s, background-color .3s, color .3s;
  -o-transition: border-radius .3s, background-color .3s, color .3s;
  transition: border-radius .3s, background-color .3s, color .3s;
  color: #43533A;
  overflow: hidden;
  line-height: 35px;
  font-size: 14px;
}

#lg-app .lg-gift-wrap .item .button .hover-buy {
  margin-top: -70px;
}

#lg-app .lg-gift-wrap .item .button:hover {
  border-radius: 10px;
  background-color: #FD325D;
  color: #fff;
  border: 2px solid #FD325D;
}

#lg-app .lg-gift-wrap .item .button:hover .buy {
  padding-top: 35px;
}

#lg-app .lg-bonus-box {
  width: 100%;
  margin: auto;
  color: #fff;
  margin-top: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 15px;
  display: none;
}

@media (max-width: 1024px) {
  #lg-app .lg-bonus-box {
    padding: 0 15px;
  }
}

#lg-app .lg-bonus-box::after {
  content: '';
  width: 100%;
  height: .5px;
  background: #000;
}

#lg-app .lg-bonus-box h2 {
  font-size: 20px;
  text-align: center;
  color: #1A686A;
}

#lg-app .lg-bonus-box h2 span {
  color: #FD325D;
  font-size: 24px;
}

#lg-app .lg-bonus-box .bonus-box-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: auto;
  width: 100%;
  max-width: 860px;
}

@media (max-width: 768px) {
  #lg-app .lg-bonus-box .bonus-box-item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#lg-app .lg-bonus-box .bonus-box-item .item {
  margin: 15px 15px;
  width: calc(100%/6);
  height: 120px;
  line-height: 120px;
  border: #F9E04F .5px solid;
  background-color: #FD325D;
  color: #FD325D;
}

@media (max-width: 768px) {
  #lg-app .lg-bonus-box .bonus-box-item .item {
    width: calc(100%/3);
    height: auto;
  }
}

#lg-app .lg-bonus-box .bonus-box-item .frist {
  margin-left: 0;
}

@media (max-width: 768px) {
  #lg-app .lg-bonus-box .bonus-box-item .frist {
    margin-left: 15px;
  }
}

#lg-app .lg-bonus-box .bonus-box-item .last {
  margin-right: 0;
}

@media (max-width: 768px) {
  #lg-app .lg-bonus-box .bonus-box-item .last {
    margin-right: 15px;
  }
}

#lg-app .lg-bonus-box .bonus-box-item .active {
  color: #FD325D;
  background-color: #F0E8E5;
  border: #FD325D 0.5px solid;
}

#lg-app .lg-bonus-box .photographer-bonus {
  max-width: 860px;
  margin: auto;
  width: 100%;
  background-color: #FD325D;
}

#lg-app .lg-bonus-box .photographer-bonus h2 {
  padding: 15px;
  border: #F9E04F .5px solid;
  color: #fff;
}

#lg-app .lg-bonus-box .txt-item {
  border: #727267 0.5px dotted;
  padding: 15px;
  font-weight: normal;
  max-width: 860px;
  margin: 30px auto 70px auto;
  color: #727267;
}

#lg-app .lg-bonus-box .txt-item h3 {
  font-size: 16px;
}

#lg-app .lg-bonus-box .txt-item p {
  font-size: 14px;
}

#lg-app .lg-Ranking {
  max-width: 860px;
  margin: auto;
  margin-top: 70px;
}

@media (max-width: 1024px) {
  #lg-app .lg-Ranking {
    padding: 0 15px;
  }
}

#lg-app .lg-Ranking .title {
  text-align: center;
  margin: auto;
}

#lg-app .lg-Ranking .title img {
  mix-blend-mode: multiply;
  width: 22%;
}

@media (max-width: 425px) {
  #lg-app .lg-Ranking .title img {
    width: 50%;
  }
}

#lg-app .lg-Ranking .top-fiveLady-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t {
  width: 20%;
  text-align: center;
  margin: 15px 0;
}

@media (max-width: 767px) {
  #lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t {
    width: 50%;
  }
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t p {
  font-size: 16px;
  margin: 0;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-circle-box {
  margin: 10px 5px;
  background-image: url(../img/crbg.png);
  mix-blend-mode: multiply;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 5px;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-circle-box img {
  display: block;
  border-radius: 50%;
  max-width: 100%;
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border: #F9E04F solid 1.5px;
  margin: auto;
  padding: 3px;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #43533A;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-name a {
  text-decoration: none;
  color: #43533A;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-name h3 {
  font-size: 15px;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-point {
  width: 70%;
  margin: auto;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-point p {
  font-size: 15px;
  padding: 10px;
  color: #43533A;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-point p::before {
  content: '';
  background-image: url(../img/icon.svg);
  padding: 5px 4px 0px 24px;
  background-repeat: no-repeat;
  background-size: contain;
}

#lg-app .lg-Ranking .top-fiveLady-list .lg-thumbnail-t .lg-fans p {
  color: #43533A;
  font-size: 15px;
  line-height: 24px;
}

#lg-app .lg-Ranking .lg-content {
  margin-bottom: 30px;
}

#lg-app .lg-Ranking .lg-content .rule {
  font-size: 16px;
  color: #727267;
  margin-bottom: 15px;
}

#lg-app .lg-Ranking .lg-content a {
  text-decoration: none;
}

#lg-app .lg-Ranking .lg-content .lg-news-item {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#lg-app .lg-Ranking .lg-content ul {
  padding: 10px 40px 40px 40px;
}

#lg-app .lg-Ranking .lg-content li {
  list-style-type: none;
}

#lg-app .lg-Ranking .lg-content p {
  color: #6F6F63;
  font-size: 12px;
}

#lg-app .lg-Ranking .lg-content table {
  text-align: center;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 15px;
  color: #43533A;
}

#lg-app .lg-Ranking .lg-content table thead th {
  font-size: 14px;
  font-weight: 100;
  padding: 20px 0;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 320px) {
  #lg-app .lg-Ranking .lg-content table thead .w1 {
    width: 35%;
  }
}

#lg-app .lg-Ranking .lg-content table tbody {
  font-weight: 400;
  word-break: break-all;
}

#lg-app .lg-Ranking .lg-content table tbody tr {
  border: #6F6F63 1px solid;
  font-size: 14px;
}

#lg-app .lg-Ranking .lg-content table tbody tr td {
  width: 25%;
  padding: 10px 5px;
  border: #727267 1px solid;
  font-size: 14px;
}

#lg-app .lg-Ranking .lg-content table tbody tr td a {
  color: #43533A;
}

#lg-app .lg-Ranking .lg-content table tbody tr td p {
  padding: 10px 0px;
  font-size: 14px;
}

#lg-app .lg-Ranking .lg-content table tbody tr td p::before {
  content: '';
  background-image: url(../img/icon.png);
  padding: 0px 0px 0px 22px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}

#lg-app .lg-Ranking .content2 table tbody tr td p::before {
  content: '';
  background-image: url(../img/icon2.png);
  padding: 0px 0px 0px 22px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}

#lg-app .gift-rank-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 860px;
  width: 100%;
  margin: auto;
}

@media (max-width: 768px) {
  #lg-app .gift-rank-wrap {
    padding: 0 15px;
  }
}

#lg-app .gift-rank-wrap .txt-item {
  padding: 30px 0;
}

#lg-app .gift-rank-wrap .topsix-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  max-width: 860px;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap {
  width: 33.33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  #lg-app .gift-rank-wrap .topsix-list .card-wrap {
    width: 50%;
  }
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .name-item {
  font-size: 20px;
  padding: 15px 0;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .six-girl-pic img {
  width: 200px;
  border-radius: 50%;
  max-width: 100%;
  margin: auto;
}

@media (max-width: 425px) {
  #lg-app .gift-rank-wrap .topsix-list .card-wrap .content .six-girl-pic img {
    width: 100%;
    padding: 5px;
  }
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item {
  width: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 425px) {
  #lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item {
    width: 100%;
    padding: 5px;
  }
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item img {
  width: 50px;
  height: 51px;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item .l-item {
  margin-right: 5px;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item .r-item {
  margin-left: 5px;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item .r-item .f::before {
  content: '';
  background-image: url(../img/love.svg);
  display: inline-block;
  background-size: 100%;
  width: 50px;
  height: 50px;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item hr {
  width: 100%;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item .l-tg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  border: #fff solid 1px;
  text-align: center;
  border-radius: 15px;
  padding: 10px 0;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .count-item .l-tg .t {
  font-size: 20px;
  padding: 0 0 10px 0;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .pic2-item img {
  width: 25px;
}

#lg-app .gift-rank-wrap .topsix-list .card-wrap .content .fans-item::before {
  content: '';
  background-image: url(../img/k-icon.svg);
  display: block;
  background-size: 100%;
  width: 25px;
  height: 25px;
  margin: auto;
  margin-bottom: 5px;
}

#lg-app .lg-news {
  font-size: 14px;
  line-height: 30px;
  color: #727267;
  width: 100%;
  max-width: 860px;
  margin: auto;
}

#lg-app .lg-news a {
  color: #FD325D;
  text-decoration: none;
}

#lg-app .lg-news .content {
  margin-bottom: 70px;
}

#lg-app .lg-news .lg-news-item {
  padding: 15px 15px;
  border-top: #727267 0.5px solid;
  border-bottom: #727267 0.5px solid;
}

@media (max-width: 1024px) {
  #lg-app .lg-news {
    padding: 0 15px;
  }
}

#lg-app .lg-news .lg-title {
  text-align: center;
}

#lg-app .lg-news .lg-title img {
  mix-blend-mode: multiply;
  width: 22%;
}

@media (max-width: 425px) {
  #lg-app .lg-news .lg-title img {
    width: 50%;
  }
}

#lg-app .lg-news h2 {
  font-size: 20px;
}
/*# sourceMappingURL=style.css.map */