@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  min-width: 1440px;
  font-size: 14px;
  font-family: "Microsoft YaHei", "PingFang SC", arial, helvetica, "Microsoft Sans Serif", sans-serif;
  cursor: url(../images/cursor_01.png), auto; }

ul li {
  list-style: none; }

a {
  outline: none;
  text-decoration: none;
  background-color: transparent;
  cursor: url(../images/cursor_02.png), auto; }

a:hover, a:active {
  outline: none; }

.hoverBright {
  transition: 0.25s ease-out all; }

.hoverBright:hover {
  filter: brightness(1.1); }

.cursor-pointer {
  cursor: pointer; }

.row {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: nowrap; */ }

.row-start-end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  align-items: flex-end; }

/* 水平两边 垂直靠后 */
.row-between-end {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-end; }

/* 水平两边 垂直靠上 */
.row-between-start {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-start; }

.row-center-start {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: flex-start; }

/* 水平靠后 垂直居中 */
.row-end-center {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  align-items: center; }

/* 水平靠前 垂直居中 */
.row-start-center {
  display: flex;
  display: -webkit-flex;
  justify-content: start;
  align-items: center; }

.row-start-start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap; }

/* 水平环绕 垂直居中 */
.row-around-center {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  align-items: center; }

/* 水平两边 垂直居中 */
.row-between-center {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }

.col {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* flex-wrap: nowrap; */ }

/* 垂直居中水平靠后  */
.col-center-end {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; }

/* 垂直靠上水平居中  */
.col-start-center {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; }

.col-center-start {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; }

.col-end-center {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center; }

img {
  outline: none;
  border: 0;
  vertical-align: middle; }

em {
  font-style: normal; }

p {
  word-wrap: break-word; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

iframe {
  border: none; }

table {
  border-spacing: 0;
  border-collapse: collapse; }

table td,
table th {
  padding: 0; }

input {
  outline: none;
  line-height: normal; }

/* chrome记住密码后的默认填充样式解决 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  border: 1px solid #ccc !important; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #eee; }

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #eee; }

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #eee; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #eee; }

html::-webkit-scrollbar {
  width: 8px;
  height: 8px; }

html::-webkit-scrollbar-track {
  border-radius: 7px; }

html::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-image: linear-gradient(25deg, #b93029, #b93029, #b93029); }

.oscroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: transparent; }

/* 两头空块 */
.oscroll::-webkit-scrollbar-button {
  width: 8px;
  height: 8px;
  background-color: transparent; }

.oscroll::-webkit-scrollbar-thumb {
  background-color: #b93029;
  border-radius: 8px; }

.oscroll::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #f1f1ef; }

/* 火狐 滚动条*/
.container {
  width: 1354px;
  margin: 0 auto; }

.clearfix {
  zoom: 1;
  /*为IE6，7的兼容性设置*/ }

.clearfix:after {
  clear: both;
  /*清除浮动*/ }

.clearfix:after, .clearfix:before {
  content: "";
  /*加一段内容*/
  display: table;
  /*创建匿名的表格单元，触发bfc*/ }

.relative {
  position: relative; }

.text-left {
  text-align: left !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.fl {
  float: left !important; }

.fr {
  float: right !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.center-block {
  display: block;
  margin-right: auto; }

.line-height {
  line-height: 1; }

.no-margin {
  margin: 0; }

.no-padding {
  padding: 0; }

.tab-pane {
  display: none; }

.tab-pane.active {
  display: block; }

.headbar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 40px 0 50px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.54); }

.logo {
  width: 128px;
  height: 56px;
  position: absolute;
  top: 10px;
  left: 50px;
  z-index: 1; }
  .logo img {
    width: 100%; }

.links {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 9; }
  .links a {
    display: block;
    width: 99px;
    height: 22px;
    text-align: center;
    line-height: 21px;
    color: #bdbdbd;
    font-size: 16px; }
    .links a:hover {
      background-color: #9e2327;
      color: #0a0b0e; }

.fixedlt {
  position: fixed;
  width: 155px;
  height: 280px;
  left: 22px;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3); }
  .fixedlt .download {
    width: 146px;
    height: 48px;
    background-image: url(../images/down.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center; }
  .fixedlt .register {
    width: 146px;
    height: 48px;
    background-image: url(../images/regist.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center; }
  .fixedlt .gzh {
    width: 136px;
    height: 160px;
    background-image: url(../images/gzh.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    margin-top: 5px; }
  .fixedlt img {
    display: block; }

.userwrap {
  font-size: 18px;
  padding-left: 40px; }
  .userwrap .user_login {
    background: linear-gradient(to bottom, #f1ebe6, #f1ebe6);
    background: -webkit-linear-gradient(to bottom, #f1ebe6, #f1ebe6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #f1ebe6;
    position: relative; }
    .userwrap .user_login::after {
      content: "";
      width: 100%;
      height: 1px;
      background-color: #e2fffe;
      position: absolute;
      bottom: -3px;
      left: 50%;
      transform: translateX(-50%); }
  .userwrap .user_login_succeed b, .userwrap .user_login_succeed a, .userwrap .user_login_succeed span {
    display: inline-block;
    color: #f1ebe6; }
  .userwrap .user_login_succeed a {
    margin: 0 6px;
    padding: 5px 3px;
    line-height: 1em;
    display: inlin-block;
    position: relative; }
    .userwrap .user_login_succeed a::after {
      content: "";
      width: 100%;
      height: 1px;
      background-color: #e2fffe;
      position: absolute;
      bottom: -3px;
      left: 50%;
      transform: translateX(-50%); }
  .userwrap .u-gmarear {
    margin-right: 12px; }
  .userwrap .user_userinfo {
    float: left; }
  .userwrap .num {
    float: left;
    font-size: 16px;
    margin-left: 12px; }
    .userwrap .num span {
      font-size: 20px; }

.tit {
  position: absolute; }

.tit h2 {
  font: 0/0 a; }

.tit.tit-01 {
  top: 118px;
  right: -40px; }

.tit.tit-01 h2 {
  width: 137px;
  height: 454px;
  background: url(../images/tit_01.png) top center no-repeat; }

.tit.tit-02 {
  top: 288px;
  left: -70px; }

.tit.tit-02 h2 {
  width: 128px;
  height: 469px;
  background: url(../images/tit_02.png) top center no-repeat; }

.tit.tit-03 {
  top: 160px;
  left: -70px; }

.tit.tit-03 h2 {
  width: 128px;
  height: 332px;
  background: url(../images/tit_03.png) top center no-repeat; }

.sect {
  overflow: hidden; }

.sect .container {
  position: relative; }

.sect.sect-01 {
  height: 972px;
  background: url(../images/sect_01.jpg) center center no-repeat; }

.sect.sect-01 .sg {
  position: absolute;
  top: 75px;
  left: 20px;
  width: 546px;
  height: 690px;
  font: 0/0 a;
  background: url(../images/sg.png) top center no-repeat; }

.sect.sect-01 .sg .btn-togther {
  display: block;
  width: 356px;
  height: 123px;
  margin: 550px auto 0;
  background: url(../images/btn_01.png) center center no-repeat; }

.sect.sect-01 .sg .btn-togther:hover {
  filter: brightness(1.1); }

.sect.sect-02 {
  height: 849px;
  background: url(../images/sect_02.jpg) center center no-repeat; }

.sect.sect-02 .container {
  padding-top: 40px;
  background: url(../images/sect_02_c.jpg) center center no-repeat; }

.sect.sect-02 .cash-box {
  width: 1354px;
  height: 768px;
  padding: 350px 0 0 458px;
  margin-left: -150px;
  text-align: center;
  font-size: 18px;
  color: #c67426;
  background: url(../images/bg_01.png) center center no-repeat; }
  .sect.sect-02 .cash-box .tips {
    margin-top: 100px;
    color: #ffe4d7;
    font-size: 18px;
    text-align: center; }
    .sect.sect-02 .cash-box .tips span {
      color: #f05248; }

.sect.sect-02 .cash-box .curr {
  color: #67242f;
  font-weight: bold; }

.sect.sect-02 .cash-box .curr span {
  color: #f37229; }

.sect.sect-02 .cash-box .myself {
  color: #f6f8f0;
  font-size: 18px;
  margin-top: 110px; }

.sect.sect-02 .cash-box .myself span {
  color: #f6f8f0;
  font-size: 41px;
  vertical-align: baseline;
  display: inline-block; }

.sect.sect-03 {
  height: 1506px;
  background: url(../images/sect_03.jpg) center center no-repeat; }

.sect.sect-03 .row {
  padding: 140px 0 0 80px; }

.sect.sect-03 .row .left-cont {
  float: left;
  width: 909px;
  height: 721px;
  background: url(../images/bg_02.png) center center no-repeat; }

.sect.sect-03 .row .left-cont .cont-top {
  position: relative;
  color: #ffe4d7;
  font-size: 16px;
  padding-top: 118px;
  /* overflow: hidden; */
  display: flow-root; }

.sect.sect-03 .row .left-cont .num span {
  color: #ffe4d7;
  font-size: 20px;
  /* vertical-align: middle; */ }

.sect.sect-03 .row .left-cont .btn-record {
  position: absolute;
  top: 110px;
  right: 40px;
  display: block;
  width: 115px;
  height: 43px;
  font: 0/0 a;
  background: url(../images/btn_02.png) center center no-repeat; }

.sect.sect-03 .row .left-cont .btn-record:hover {
  filter: brightness(1.1); }

.sect.sect-03 .row .left-cont > p {
  color: #c53747;
  font-size: 16px;
  line-height: 26px;
  padding-left: 255px; }

.sect.sect-03 .row .left-cont .btn-get {
  display: block;
  text-align: center;
  padding-top: 60px;
  margin: 0 auto;
  margin-top: 8px;
  width: 325px;
  height: 114px;
  font-size: 16px;
  background: url(../images/btn_03.png) center center no-repeat;
  color: #43224e; }

.sect.sect-03 .row .left-cont .btn-get span {
  color: #43224e; }

.sect.sect-03 .row .left-cont .btn-get:hover {
  filter: brightness(1.1); }

.sect.sect-03 .row .right-cont {
  float: left;
  width: 272px;
  padding-top: 83px;
  margin-left: 26px; }

.sect.sect-03 .row .right-cont .text-01 {
  height: 57px;
  margin: 15px 0 20px;
  font: 0/0 a;
  background: url(../images/text_01.png) 25px center no-repeat; }

.sect.sect-03 .row .right-cont .win-list li {
  position: relative;
  padding: 14px;
  height: 96px;
  color: #ffdbb8;
  background: url(../images/bg_03.png) left center no-repeat; }

.sect.sect-03 .row .right-cont .win-list li + li {
  margin-top: 5px; }

.sect.sect-03 .row .right-cont .win-list li:nth-child(4) p, .sect.sect-03 .row .right-cont .win-list li:nth-child(5) p {
  margin: -6px 0 3px !important; }

.sect.sect-03 .row .right-cont .win-list li:before {
  position: absolute;
  right: 29.5px;
  top: 20px;
  display: block;
  content: '';
  width: 1px;
  height: 100px;
  background: #d58e66; }

.sect.sect-03 .row .right-cont .win-list li:last-child:before {
  height: 1px; }

.sect.sect-03 .row .right-cont .win-list li.can-get a {
  background: url(../images/btn_04.png) center center no-repeat;
  pointer-events: auto; }

.sect.sect-03 .row .right-cont .win-list li.get-end i {
  display: block; }

.sect.sect-03 .row .right-cont .win-list li.get-end a {
  pointer-events: none;
  background: url(../images/btn_04_ed.png) center center no-repeat; }

.sect.sect-03 .row .right-cont .win-list li i {
  position: absolute;
  top: 0;
  left: 55px;
  display: none;
  width: 120px;
  height: 92px;
  background: url(../images/icon_01.png) center center no-repeat; }

.sect.sect-03 .row .right-cont .win-list li .img-box {
  float: left;
  width: 67px;
  height: 67px;
  margin-right: 7px; }

.sect.sect-03 .row .right-cont .win-list li .img-box img {
  width: 65px;
  height: 65px;
  margin-top: 5px; }

.sect.sect-03 .row .right-cont .win-list li p {
  margin: 2px 0 8px; }

.sect.sect-03 .row .right-cont .win-list li a {
  display: block;
  width: 109px;
  height: 42px;
  margin-left: 72px;
  font: 0/0 a;
  background: url(../images/btn_04_no.png) center center no-repeat;
  pointer-events: none; }

.sect.sect-03 .row .right-cont .win-list li a:hover {
  filter: brightness(1.1); }

.sect.sect-03 .row .right-cont .win-list li span {
  position: absolute;
  top: 18px;
  right: 0;
  text-align: center;
  width: 59px;
  height: 59px;
  line-height: 59px;
  font-size: 18px;
  font-weight: 700;
  color: #ffe4d7;
  background: url(../images/bg_04.png) center center no-repeat; }

.sect.sect-03 .my-card {
  width: 1152px;
  height: 461px;
  margin: 80px 0 0 113px;
  padding: 45px 0 0 100px;
  background: url(../images/bg_05.png) center center no-repeat; }

.sect.sect-03 .my-card .card-list {
  float: left;
  position: relative;
  width: 600px;
  height: 373px;
  background: url(../images/all_02.png) center center no-repeat; }

.sect.sect-03 .my-card .card-list span {
  position: absolute;
  top: -26px;
  display: block;
  width: 50px;
  height: 52px;
  line-height: 52px;
  color: #912726;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: url(../images/bg_06.png) center center no-repeat; }

.sect.sect-03 .my-card .card-list span.cl-item-01 {
  left: 43px; }

.sect.sect-03 .my-card .card-list span.cl-item-02 {
  left: 200px; }

.sect.sect-03 .my-card .card-list span.cl-item-03 {
  left: 357px; }

.sect.sect-03 .my-card .card-list span.cl-item-04 {
  left: 505px; }

.sect.sect-03 .my-card .card-list span.cl-item-05 {
  top: 178px;
  left: 135px; }

.sect.sect-03 .my-card .card-list span.cl-item-06 {
  top: 178px;
  left: 280px; }

.sect.sect-03 .my-card .card-list span.cl-item-07 {
  top: 178px;
  left: 437px; }

.sect.sect-03 .my-card .cash-part {
  float: left;
  position: relative;
  width: 281px;
  height: 371px;
  margin-left: 60px;
  font-size: 16px;
  color: #ad4118;
  text-align: center;
  background: url(../images/bg_08.png) center center no-repeat; }

.sect.sect-03 .my-card .cash-part p {
  /* margin: 190px 0 10px;
  line-height: 24px; */ }

.sect.sect-03 .my-card .cash-part .cover {
  position: absolute;
  width: 205px;
  height: 163px;
  left: 42px;
  top: 127px;
  z-index: 2;
  background: url(../images/icon_02.png) center center no-repeat; }

.sect.sect-03 .my-card .cash-part span {
  position: absolute;
  top: -20px;
  left: -20px;
  display: block;
  color: #912726;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  width: 81px;
  height: 80px;
  line-height: 80px;
  background: url(../images/bg_07.png) center center no-repeat; }

.sect.sect-03 .my-card .cash-part a {
  display: block;
  font: 0/0 a;
  width: 212px;
  height: 76px;
  margin: 268px auto;
  background: url(../images/btn_05.png) center center no-repeat; }

.sect.sect-03 .my-card .cash-part a:hover {
  filter: brightness(1.1); }

.sect.sect-03 .l-title {
  margin: 45px 0 10px;
  height: 24px;
  font: 0/0 a; }

.sect.sect-03 .l-title.l-title-01 {
  background: url(../images/title_01.png) top center no-repeat; }

.sect.sect-03 .l-title.l-title-02 {
  background: url(../images/title_02.png) top center no-repeat; }

.sect.sect-04 {
  height: 1111px;
  background: url(../images/sect_04.jpg) center center no-repeat; }

.sect.sect-04 .container {
  background: url(../images/sect_04_c.jpg) center center no-repeat; }

.gift-list {
  width: 838px;
  margin: 0 auto;
  /* overflow: hidden; */ }

.gift-list li {
  position: relative;
  float: left;
  width: 103px;
  height: 238px;
  background: url(../images/bg_11.png) center center no-repeat; }

.gift-list li:not(:first-child) {
  background: url(../images/bg_12.png) center center no-repeat; }

.gift-list li:first-child > img {
  margin-left: -15px;
  margin-top: -13px; }

.gift-list li img {
  margin-left: -3px;
  margin-top: -1px; }

.gift-list li {
  margin-left: 15px; }

.gift-list li:nth-child(4) p, .gift-list li:nth-child(6) p {
  margin-top: 2px !important; }

.gift-list li .img-box {
  position: absolute;
  top: 136px;
  left: -3px;
  width: 110px;
  height: 102px;
  padding-top: 12px;
  background: url(../images/bg_10.png) center center no-repeat;
  text-align: center; }

.gift-list li .img-box.supercard {
  background: url(../images/bg_09.png) center center no-repeat; }

.gift-list li .img-box.supercard p {
  color: #982601; }

.gift-list li .img-box img {
  width: 49px;
  height: 49px;
  border: 2px solid #f1ebe6;
  background: #a63723; }

.gift-list li .img-box p {
  margin-top: 8px;
  color: #ffecd9; }

.float-cont {
  display: none;
  position: fixed;
  bottom: 80px;
  margin-top: -142px;
  right: 75px;
  width: 208px;
  height: 321px;
  background: url(../images/float_bg.png) center center no-repeat;
  text-align: center;
  z-index: 10; }

.float-cont img {
  width: 92px;
  margin: 161px 0 0px -32px; }

.float-cont p {
  color: #fcd375;
  font-size: 15px;
  line-height: 1.2; }

.float-btn {
  position: absolute;
  top: 400px;
  right: 0;
  display: block;
  width: 100px;
  height: 100px;
  background: url(../images/float_btn.png) no-repeat;
  background-size: contain;
  animation: floatbtn 1s infinite alternate linear;
  -ms-animation: floatbtn 1s infinite alternate linear;
  -moz-animation: floatbtn 1s infinite alternate linear;
  -webkit-animation: floatbtn 1s infinite alternate linear;
  -o-animation: floatbtn 1s infinite alternate linear;
  z-index: 100; }

.float-btn:hover {
  filter: brightness(110%); }

@keyframes floatbtn {
  0% {
    top: 395px; }
  100% {
    top: 405px; } }

@-webkit-keyframes floatbtn {
  0% {
    top: 395px; }
  100% {
    top: 405px; } }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none; }

.modal .cont-none {
  color: #b9504f;
  font-size: 27px;
  font-weight: 600;
  text-align: center;
  font-family: 'STSong','Serif','宋体','Sans-serif'; }

.modal .btn-primary {
  display: block;
  font: 0/0 a;
  width: 188px;
  height: 67px;
  line-height: 97px;
  background: url(../images/btn_06.png) center center no-repeat; }

.modal .btn-primary:hover {
  filter: brightness(1.1); }

.modal.modal-public .cont-none {
  margin-top: 100px;
  line-height: 1.4; }

.modal.modal-public .btn-primary {
  margin: 60px auto 0; }

.modal.modal-get {
  /* display: block; */ }
  .modal.modal-get .lucky-card {
    text-align: center; }
    .modal.modal-get .lucky-card .img-box {
      display: inline-block;
      width: 112px;
      height: 104px;
      margin-left: 30px;
      /* background: url(../images/bg_04.png) center center no-repeat; */
      text-align: center;
      overflow: hidden;
      vertical-align: middle; }
      .modal.modal-get .lucky-card .img-box img {
        margin-top: 10px;
        width: 70px;
        height: 70px;
        border: 2px solid #facb9a;
        background: #a63723; }
      .modal.modal-get .lucky-card .img-box p {
        margin-top: 8px;
        color: #ffd9b2; }
  .modal.modal-get .btn-primary {
    margin: 20px auto 0; }

.modal.modal-get .lucky-card .img-box.unknown p {
  color: #a63723; }

.modal.modal-record .modal-body {
  width: 658px;
  height: 530px;
  margin-left: -351.5px;
  margin-top: -241px;
  background: url(../images/modal_02.png) center center no-repeat; }

.modal.modal-record .table-box {
  width: 530px;
  margin: 0 auto 30px; }

.modal.modal-record .record-tit {
  height: 26px;
  margin: 50px 0 20px;
  font: 0/0 a;
  background: url(../images/title_03.png) center center no-repeat; }

.modal.modal-record .table-height {
  height: 320px;
  padding-right: 10px;
  overflow-x: hidden; }

.modal.modal-record table {
  font-size: 16px;
  width: 100%;
  display: table;
  color: #b9504f;
  text-align: left; }

.modal.modal-record table thead {
  border-bottom: 1px solid #b9504f; }

.modal.modal-record table th {
  height: 40px;
  line-height: 40px;
  color: #b9504f;
  text-align: center;
  width: 50%; }

.modal.modal-record table td {
  height: 40px;
  line-height: 1.4em;
  border-bottom: 1px dashed #b9504f;
  color: #b9504f;
  width: 50%;
  text-align: center; }

.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -331.5px;
  margin-top: -206px;
  width: 658px;
  height: 410px;
  background: url(../images/modal_01.png) center center no-repeat;
  background-size: contain;
  animation: tc 0.5s; }

.modal-body .close {
  position: absolute;
  top: 35px;
  right: -35px;
  width: 69px;
  height: 69px;
  display: block;
  background: url(../images/close.png) center center no-repeat;
  background-size: contain;
  -webkit-transition: transform 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out;
  -ms-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out; }

.modal-body .close img {
  margin: 15px 0 0 15px;
  transition: all 0.3s; }

.modal-body .close:hover {
  filter: brightness(115%);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

@keyframes tc {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

.rule {
  padding: 133px 360px 0 120px;
  font-size: 16px;
  color: #ffdbb8; }

.rule .r-tit {
  font-weight: 700;
  margin: 30px 0 5px;
  padding-left: 35px;
  background: url(../images/icon_dot.png) left center no-repeat; }

.rule p {
  padding-left: 35px;
  line-height: 26px; }

.rule p em {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-right: 10px;
  background: url(../images/bg_01.png) center center no-repeat;
  color: #f9f8f4;
  font-size: 22px;
  font-style: normal;
  text-align: center; }

@media (max-width: 1440px) {
  .tit-02,
  .tit-03 {
    left: -30px !important; }
  .rule {
    padding-left: 150px; }
  .float-cont {
    right: 10px; } }
