.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgb(199, 34, 27);
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224, 27%, 35%, .6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3); */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";
@charset "UTF-8";

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    font-family: PingFangSC-Regular, PingFang SC, "Microsoft YaHei", "Arial";
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
hr,
span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html,
body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none !important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}


.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    /* background: #000; */
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.head {

    position: fixed;

    width: 100%;

    left: 0;

    top: 0px;

    z-index: 99;

    background: #5c3f31;

    height: 119px;

    border-bottom: 1px solid #161616;
}

.head .logo {
    float: left;
    padding-left: calc(130/1920*100vw);
    padding-top: 34px;
}

.head .nav {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.head .nav ul {
    width: 837px;
    max-width: 100%;
    text-align: center;
}

.head .nav ul li {
    display: inline-block;
    padding: 0px 20px;
}

.head .nav ul li .h2tit {}

.head .nav ul li .h2tit a {
    font-size: 20px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #fff;
    display: block;
}

.head .nav ul li .h2tit a img.pc {
    display: inline-block;
}

.head .nav ul li .h2tit a span i {

    position: absolute;

    width: 40px;

    height: 27px;

    background: url(../images/hot.png) no-repeat center center;

    left: 0;

    top: -26px;
}

.head .nav ul li .h2tit a span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}

.head .right {
    float: right;
    padding-right: calc(160/1920*100vw);
    padding-top: 24px;
}

.head,
.head * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;

}

.head .right a {
    float: left;
    width: 70px;
    height: 70px;
    background: #000000;
    border: 1px solid #fff;
    border-radius: 20px;
    text-align: center;
    margin-left: 13px;
    font-size: 14px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #fff;
    padding-top: 41px;
    line-height: 1;
}

.head .right a:hover {
    background-color: #9b5f0d !important;
    background-color: #9b5f0d !important;
    color: #fff;
}

.head .right a.s1 {
    background: url(../images/supporthover.png) no-repeat center 10px;
}

.head .right a.s2 {
    background: url(../images/Iphonehover.png) no-repeat center 10px;
}


.head .right a.s1:hover {
    background: url(../images/supporthover.png) no-repeat center 10px;
}

.head .right a.s2:hover {
    background: url(../images/Iphonehover.png) no-repeat center 10px;
}

.index {

    background: url(../images/bg1.jpg) no-repeat center center;

    background-size: cover;

    padding-top: 778px;

    padding-bottom: 131px;
}

.index .center {

    width: 660px;

    margin: auto;

    max-width: 100%;
}

.index form {}

.index .words {

    height: 51px;

    background: #FFFFFF;

    border-radius: 20px;

    width: 100%;

    margin-bottom: 19px;

    border: none;

    padding: 0px 36px;

    background: #FFFFFF;

    box-shadow: 3px 8px 8px 0px rgba(110, 73, 0, 0.08), 0px 3px 3px 0px rgba(156, 132, 94, 0.27) inset;

    border-radius: 20px;

    text-align: center;

    padding: 0;
}

.index .btn {

    zoom: 1;

    overflow: hidden;

    font-size: 0;
}

.index .btn button {

    float: left;

    width: calc((100% - 18px)/2);

    height: 56px;

    font-size: 20px;

    font-family: Microsoft YaHei UI;

    font-weight: bold;

    color: #fff;

    padding-left: 7%;

    border: none;

    position: relative;

    background: #5A3D2F;

    border-radius: 20px;
}

.index .send1 {}

.index .send2 {

    float: right !important;

    color: #fff !important;

    background: linear-gradient(0deg, #C80000, #FF1414) !important;
}

.index .send1:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0px;
    background: url(../images/bn1.png) no-repeat center center;
    background-size: 69%;
    left: 32%;
    width: 38px;
}

.index .send2:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0px;
    background: url(../images/bn2.png) no-repeat center center;
    background-size: 69%;
    left: 32%;
    width: 38px;
}

.footer {
    text-align: center;
    font-size: 14px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #9F9F9F;
    padding: 25px 0px;
    background: #5c3f31;
}

.footer a {

    color: #fff;
}

.wapMenu {
    text-align: center;
    background: #1D1B13;
    /* border: 1px solid #393525; */
    zoom: 1;
    overflow: hidden;
    background: #FFF;
}

.wapMenu a {

    float: left;

    width: 33.333%;

    border-right: 1px solid #C7A26C;

    padding-top: calc(37/768*100vw);

    padding-bottom: calc(45/768*100vw);
}

.wapMenu a img {

    height: calc(30/768*100vw);
}

.wapMenu a span {

    font-size: calc(22/768*100vw);

    font-family: Microsoft YaHei UI;

    font-weight: 400;

    color: #866638;

    display: block;

    padding-top: calc(13/768*100vw);
}




.alertModel {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 999;
    right: 0px;
    display: none;
    bottom: 0px;
}

.alertModel .center {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 1000px;
    max-width: 100%;
    background-color: #f7f8fa;
    border: 1px solid #866638;
}

.alertModel .center .content {}

.alertModel .center .close {

    z-index: 4;

    width: 30px;

    position: absolute;

    height: 30px;

    background: url(../images/close.png) no-repeat center center;

    background-size: 100%;

    right: 20px;

    top: 20px;

    cursor: pointer;
}

.alertModel .center .title {
    text-align: center;
    font-size: 30px;
    color: #856e3a;
    margin-top: 13px;
    font-weight: bold;
    background: url(../images/title.png) no-repeat center center;
}

.alertModel .center .content {
    max-height: 80vh;
    border-radius: 20px;
    margin: auto;
    /* background: #fff; */
    /* overflow: hidden; */
    box-sizing: border-box;
    padding: 30px;
    position: relative;
    /* background-color: #212121; */
    margin-bottom: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: auto;
}

.titlearea {
    width: 100%;
    /* border-bottom: 1px solid #a08665; */
    margin: 10px 0px;
}

.detail {
    color: #000;
    font-size: 14px;
    line-height: 24px;
}

.detail p {
    margin-bottom: 15px;
    color: #000;
    font-size: 15px;
    line-height: 1.8;
}

table {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

table,
td,
th {
    border: 1px solid #9d9c9b;
    height: 30px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table,
td,
th {
    border: 1px solid #7f7f7d;
    height: 30px;
}

table th:nth-of-type(1) {
    height: 35px;
}

table,
td,
th {
    border: 1px solid #7f7f7d;
    height: 41px;
    font-size: 16px;
}

td {
    color: #000000;
}

.title1 {
    width: 200px;
    box-sizing: border-box;
    /* padding: 5px 30px; */
    display: block;
    min-width: 200px;
    height: 40px;
    color: #a08665;
    text-align: left;
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    display: none;
}

.vipLevel+th,
table th:nth-of-type(1),
.vipLevel,
table th {
    color: #fff;
    background: #5a3d2f;
    border-color: #fff;
}

tr:nth-child(2n) td {
    background: #fff;
}

tr td {
    background: #f5ede0;
}

/* current background color */
.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: transparent !important;
    left: 0px !important;
    top: 0px !important;
    padding: 0px !important;
}

/* current text color*/
.layui-laypage .layui-laypage-curr em {
    color: #000 !important;
    font-weight: 800;
}