@charset "utf-8";

/*通用樣式start*/
body, div, iframe, ul, ol, dl, dt, dd, li, dl,
h1, h2, h3, h4, table, th, td, input, button, select, textarea {
    margin: 0;
    padding: 0;
    font-style: normal;
}

button, input, select {
    outline: none;
}

ol, ul, li {
    list-style: none;
}

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

body, html {
    color: #333333;
    font-size: 16px;
}

a {
    color: #333333;
    text-decoration: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.red {
    color: red;
}

.grey {
    color: grey;
    font-size: 12px;
}

.clear {
    clear: both;
}

.animation:hover {
    animation: btnAnimate 0.3s;
}

@keyframes btnAnimate {
    0% {
        background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 24%, rgba(255, 255, 255, 1) 29%, rgba(255, 255, 255, 0) 100%);
        background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 24%, rgba(255, 255, 255, 1) 29%, rgba(255, 255, 255, 0) 100%);
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 24%, rgba(255, 255, 255, 1) 29%, rgba(255, 255, 255, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
    }

    50% {
        background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
        background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
    }

    100% {
        background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 96%, rgba(255, 255, 255, 1) 100%);
        background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 96%, rgba(255, 255, 255, 1) 100%);
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 96%, rgba(255, 255, 255, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
    }
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

.footerFix {
    /*position: fixed;*/
    bottom: 0;
    left: 0;
}

/*通用樣式end*/

/*頭部 start */
.header {
    width: 100%;
    height: 50px;
    background-color: #666666;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .headerContainer {
    display: flex;
}

.header .headerContainer .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.header .headerContainer .logo img {
    max-height: 50px;
}

.header .nav ul {
    display: flex;
}

.header .nav ul li {
    margin-right: 20px;
}

.header .nav ul li a {
    color: #ffffff;
}

.header .nav ul li a:hover {
    color: #ffffff !important;
}

.header .nav ul li a .icon {
    font-size: 18px;
    margin-right: 3px;
}

.headerMobile {
    height: 40px;
    background-color: #666666;
    position: relative;
}

.headerMobile .iconMenu {
    color: #ffffff;
    font-size: 24px;
    position: absolute;
    top: 4px;
    left: 10px;
}

.headerMobile .iconHome {
    color: #ffffff;
    font-size: 24px;
    position: absolute;
    top: 4px;
    right: 10px;
}

.headerMobile .title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    height: 40px;
    line-height: 40px;
}

.headerMobile .close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 25px;
    color: #ffffff;
}

.headerMobile .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    z-index: 9999;
    background-color: #666666;
    display: none;
}

.headerMobile .nav .logo {
    padding: 10px 0;
    text-align: center;
}

.headerMobile .nav .logo img {
    width: 50%;
}

.headerMobile .nav ul li:first-child {
    border-top: 1px solid #cccccc;
}

.headerMobile .nav ul li {
    border-bottom: 1px solid #cccccc;
}

.headerMobile .nav ul li a {
    width: 90%;
    height: 100%;
    display: inline-block;
    color: #ffffff;
    padding: 10px 5%;
}

.headerMobile .ellipsis {
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 999;
    display: none;
}

/*頭部 end */

/*底部 start */
.footer {
    background-color: #666666;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
}

.footer .copyRight {
    text-align: center;
    width: 500px;
    font-size: 14px;
    margin: 0 auto;
    max-width: 100%;
}

.footer .copyRightLogo {
    margin-bottom: 5px;
}

/*底部 end */

/*首頁 start */
.indexList {
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
}

.indexList .item {
    border-radius: 10px;
    width: calc(40% - 2px);
    padding: 2.5%;
    margin: 2.5%;
}

.indexList .item .title {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    padding: 0 5%;
    padding-bottom: 10px;
    width: 70%;
    margin: 0 auto;
}

.indexList .item .logo {
    width: 100%;
    margin: 10px 0;
    border-radius: 1px;
    overflow: hidden;
}

.indexList .item .logo img {
    width: 100%;
}

.indexList .item .desc {
    display: flex;
}

.indexList .item .desc span {
    width: calc(100% - 75px);
    line-height: 24px;
    font-size: 15px;
    color: #000000;
    padding: 0 9px;
    overflow: hidden;
    height: 75px;
}

.indexList .item .desc span p {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.indexList .item .desc .button {
    width: 75px;
    height: 75px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.indexList .item .start {
    border-top: 1px solid #cccccc;
    margin-top: 10px;
}

.indexList .item .start .timeAndPrice {
    display: flex;
    justify-content: space-between;
}

.indexList .item .start .timeAndPrice span {
    padding: 5px 3px;
}

.indexList .item .start .timeAndPrice span:last-child {
    font-weight: bold;
    font-size: 18px;
}

.indexList .item .start .price {
    margin: 5px 0;
    position: relative;
}

.indexList .item .start .price canvas {
    margin-left: 15px;
}

.indexList .item .start .price .value {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 170px;
}

.indexList .item .start .price .total_price {
    position: absolute;
    top: 60px;
    left: 170px;
}

/*首頁 end */

/*捐款流程 start */
.process {
    padding: 30px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.process .description {
    width: 450px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    box-shadow: 1px 1px 5px #cccccc;
}

.process .description .title {
    text-align: center;
    font-size: 23px;
    width: 70%;
    margin: 20px auto;
    padding-bottom: 10px;
}

.process .description .img img {
    width: 100%;
}

.process .description .itemList {
    padding: 20px;
}

.process .description .itemList .item {
    margin-bottom: 10px;
}

.process .description .itemList .item .itemTitle {
    padding: 7px 10px;
    color: #ffffff;
    font-size: 15px;
    position: relative;
    border-radius: 3px;
}

.process .description .itemList .item .itemTitle .icon {
    font-size: 25px;
    position: absolute;
    right: 10px;
    top: 3px;
    cursor: pointer;
}

.process .description .itemList .active .itemTitle .icon {
    transform: rotate(180deg);
}

.process .description .itemList .item .itemContent {
    font-size: 14px;
    padding: 5px;
    line-height: 23px;
    display: none;
}

.process .description .itemList .item .itemContent p {
    margin: 2px;
}

.process .step {
    width: 390px;
    /* height: 540px; */
    border-radius: 5px;
    border: 1px solid #cccccc;
    position: relative;
    box-shadow: 1px 1px 5px #cccccc;
}

.process .step .prevNext {
    /* position: absolute;
    bottom: 30px; */
    margin: 20px 0;
    display: flex;
    width: 90%;
    padding: 0 5%;
}

.lineButton {
    bottom: 30px;
    display: flex;
    width: 90%;
    padding: 0 5%;
}

.lineButton .next {
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    background-color: #c9caca;
    color: #ffffff;
    flex: 1;
	
}

.process .step .prevNext .next {
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    background-color: #c9caca;
    color: #ffffff;
    flex: 1;
}

.process .step .prevNext .next:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.process .step .prevNext .next:last-child {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

#step2, #step3, #step4 {
    display: none;
}

.process .step .fixed_or_one_status {
    display: flex;
    align-items: center;
    width: 80%;
    padding: 30px 10%;
}

.process .step .fixed_or_one_status .item {
    flex: 1;
    height: 50px;
    line-height: 50px;
    display: block;
    text-align: center;
    background-color: #c9caca;
    color: #ffffff;
}

.process .step .fixed_or_one_status .item:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.process .step .fixed_or_one_status .item:last-child {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.process .step .price {
    width: 90%;
    padding: 0 5%;
    position: relative;
}

.process .step .price .priceTitle {
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.process .step .price .quickPrice {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 10px;
}

.process .step .price .quickPrice .item {
    height: 30px;
    line-height: 30px;
    display: block;
    text-align: center;
    background-color: #c9caca;
    color: #ffffff;
    border-radius: 4px;
    flex: 1;
    margin: 0 2px;
}

.process .step .price .quickPrice .autoPriceInput {
    height: 28px;
    line-height: 28px;
    width: calc(100% - 10px);
    padding: 0 5px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #c9caca;
    background: #c9caca;
    color: #ffffff;
}

.process .step .price .quickPrice .autoPriceInput::-webkit-input-placeholder {
    color: #ffffff;
    font-size: 12px;
}

.process .step .price .quickPrice .autoPriceInput::-moz-placeholder {
    color: #ffffff;
    font-size: 12px;
}

.process .step .price .quickPrice .autoPriceInput:-ms-input-placeholder {
    color: #ffffff;
    font-size: 12px;
}

.process .step .price .quickPrice .autoPriceInput:-moz-placeholder {
    color: #ffffff;
    font-size: 12px;
}

.process .step .price .priceInput {
    height: 35px;
    line-height: 35px;
    border-radius: 3px;
    padding: 0 10px;
    border: 1px solid #cccccc;
    width: calc(100% - 80px);
}

.process .step .price .priceTips {
    font-size: 14px;
    color: grey;
    position: absolute;
    top: 82px;
    right: 30px;
}

.process .step .payStatus {
    width: 90%;
    padding: 0 5%;
    margin-top: 30px;
}

.process .step .payStatus .payStatusTitle {
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.process .step .payStatus .payStatusItem {
    margin-bottom: 10px;
}

.process .step .payStatus .payStatusItem input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    top: 5px;
    cursor: pointer;
    display: none;
}

.process .step .radio {
    width: 20px;
    height: 20px;
    margin-right: 7px;
    cursor: pointer;
    border: 1px solid #cccccc;
    border-radius: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process .step .radio .circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.process .step .userInfo {
    padding: 5%;
}

.process .step .userInfo .tips {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.process .step .userInfo .item .label {
    font-weight: bold;
}

.process .step .userInfo .item .value {
    margin: 5px 0 15px 0;
}

.process .step .userInfo .item .value input {
    width: calc(100% - 25px);
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    border: 1px solid #cccccc;
}

.process .step .userInfo .item .value textarea {
    width: calc(100% - 25px);
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    resize:none;
}

.process .step .receipt {
    padding: 3% 5%;
}

.process .step .receipt .receiptTitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.process .step .receipt .receiptStatus .item {
    margin-bottom: 10px;
    font-size: 14px;
}

.process .step .receipt .receiptStatus .item input {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    position: relative;
    top: 5px;
    cursor: pointer;
    display: none;
}

.process .step .receipt .receiptData {
    margin-top: 10px;
    display: none;
}

.process .step .receipt .receiptData .item .label {
    font-weight: bold;
}

.process .step .receipt .receiptData .item .value input {
    width: calc(100% - 25px);
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    margin: 5px 0 10px 0;
    border-radius: 4px;
    border: 1px solid #cccccc;
}

.process .step .receipt .receiptData .receiptName {
    margin-bottom: 10px;
}

.process .step .receipt .receiptData .receiptName input {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    position: relative;
    top: 5px;
    cursor: pointer;
    display: none;
}

.process .step .receipt .receiptData .receiptName input:last-child {
    margin-left: 30px;
}

.process .step .receipt .receiptData .cityArea select {
    width: 100px;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    cursor: pointer;
}

.process .step .confirm {
    padding: 5%;
}

.process .step .confirm .confirmTitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.process .step .confirm .confirmContent {
    padding-top: 15px;
}

.process .step .confirm .confirmItem {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.process .step .confirm .confirmItem .label {
    font-weight: bold;
    width: 78px;
}

.process .step .confirm .confirmItem .value {
    color: #999999;
    flex: 1;
    font-size: 15px;
}

.process .step .zip_code {
    width: 73px;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    position: relative;
    top: -1px;
}

.process .step .confirmCallback {
    padding-top: 15px;
    margin-top: 15px;
    display: none;
}

.process .step .confirmCallback .confirmItem .label {
    width: 110px;
}

.process .step .confirmCallback .tipsCallback {
    padding: 10px;
    margin-top: 20px;
}

/* .process .confirmStep {
    height: 690px;
    height: 745px;	
} */

.process .start {
    border-top: 1px solid #cccccc;
    margin-top: 10px;
    padding: 5px 20px 15px 20px;
}

.process .start .timeAndPrice {
    display: flex;
    justify-content: space-between;
}

.process .start .timeAndPrice span {
    padding: 5px 3px;
}

.process .start .timeAndPrice span:last-child {
    font-weight: bold;
    font-size: 18px;
}

.process .start .price {
    margin: 5px 0;
    position: relative;
}

.process .start .price canvas {
    margin-left: 15px;
}

.process .start .price .value {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 170px;
}

.process .start .price .total_price {
    position: absolute;
    top: 60px;
    left: 170px;
}

/*捐款流程 end */

/*捐款查询頁面 start */
.search {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search .form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.search .form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search .form .input {
    height: 32px;
    width: 360px;
    border-radius: 3px;
    padding: 3px 10px;
    border: 1px solid #cccccc;
    margin-bottom: 10px;
}

.search .form .btn {
    height: 38px;
    border-radius: 3px;
    border: none;
    width: 100px;
    cursor: pointer;
}

.search .content {
    margin: 0 50px 50px 50px;
    display: flex;
    flex-direction: column;
    width: 600px;
    max-width: calc(100% - 20px);
}

.search .content .listItem {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 20px;
}

.search .content .listItem .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.search .content .listItem .line {
    padding-bottom: 15px;
    margin-top: 10px;
}

.search .content .listItem .item .label {
    width: 120px;
    font-weight: bold;
}

.search .content .listItem .item .value {
    flex: 1;
}

/*捐款查询頁面 end */

/*登入界面 start */
.login {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login .title {
    text-align: center;
    margin: 20px;
    padding: 8px 30px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: bold;
}

.login .form {
    border-radius: 5px;
    padding: 50px;
    max-width: 100%;
    margin: 10px;
}

.login .form .item {
    display: flex;
    padding: 10px 50px 10px 0;
    align-items: center;
}

.login .form .item .label {
    width: 90px;
    text-align: right;
    padding-right: 10px;
}

.login .form .item .value input {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    width: 300px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.login .form .item .verify input {
    width: 150px;
}

.login .form .item .verifyImg img {
    cursor: pointer;
    margin: 0 5px;
}

.login .form .item .verifyImg a {
    font-size: 14px;
}

.login .form .submits {
    display: flex;
    align-items: center;
    margin: 20px;
    justify-content: center;
}

.login .form .submits .button {
    margin-right: 20px;
    color: #ffffff;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/*登入界面 end */

/*忘記密碼頁面 start */
.forgetpwd {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.forgetpwd .title {
    text-align: center;
    margin: 20px;
    padding: 8px 30px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: bold;
}

.forgetpwd .form {
    border-radius: 5px;
    padding: 50px;
    max-width: 100%;
    margin: 10px;
}

.forgetpwd .form .item {
    display: flex;
    padding: 10px 50px 10px 0;
    align-items: center;
}

.forgetpwd .form .item .label {
    width: 90px;
    text-align: right;
    padding-right: 10px;
}

.forgetpwd .form .item .value input {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    width: 300px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.forgetpwd .form .item .verify input {
    width: 150px;
}

.forgetpwd .form .item .verifyImg img {
    cursor: pointer;
    margin: 0 5px;
}

.forgetpwd .form .item .verifyImg a {
    font-size: 14px;
}

.forgetpwd .form .submits {
    display: flex;
    align-items: center;
    margin: 20px;
    justify-content: center;
}

.forgetpwd .form .submits .button {
    margin-right: 20px;
    color: #ffffff;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/*忘記密碼頁面 end */

/*註冊頁面 start */
.register {
    margin: 50px;
    padding: 20px;
}

.register .conform {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.register .conform .content {
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
}

.register .conform .content .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.register .conform .content .desc {
    padding: 0 30px;
}

.register .conform .next {
    margin: 40px auto 10px auto;
    border-radius: 5px;
    padding: 8px 80px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.register .form {
    display: none;
}

.register .form .content {
    padding: 20px;
    border-radius: 5px;
}

.register .form .content .tips {
    padding: 8px 20px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    width: 100px;
    font-weight: bold;
    margin: 10px 0;
}

.register .form .content .item {
    display: flex;
    margin: 15px 0;
    align-items: center;
}

.register .form .content .item .labelTips {
    font-size: 14px;
    margin-left: 10px;
    color: grey;
}

.register .form .content .item .label {
    width: 90px;
    text-align: right;
    padding-right: 10px;
}

.register .form .content .item .value input {
    border-radius: 3px;
    border: 1px solid #cccccc;
    padding: 10px;
    width: 300px;
}

.register .form .content .item .value .radioInput {
    display: none;
}

.register .form .content .item .value .radio {
    width: 20px;
    height: 20px;
    margin-right: 7px;
    cursor: pointer;
    border: 1px solid #cccccc;
    border-radius: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register .form .content .item .value .radio .circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.register .form .content .item .value .text {
    float: left;
    margin-right: 15px;
}

.register .form .content .item .value select {
    height: 35px;
    line-height: 35px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    cursor: pointer;
}

.register .form .content .item .verify input {
    width: 150px;
}

.register .form .content .item .verifyImg img {
    cursor: pointer;
    margin: 0 5px;
}

.register .form .content .item .verifyImg a {
    font-size: 14px;
}

.register .form .content .agree_advert {
    text-align: center;
    margin-top: 20px;
}

.register .form .content .agree_advert input {
    width: 17px;
    height: 17px;
    margin-right: 8px;
    position: relative;
    top: -2px;
    cursor: pointer;
}

.register .form .content .agree_advert input[type="checkbox"] {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.register .form .content .agree_advert input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: 1px solid #cccccc;
    background: #ffffff;
}

.register .form .content .agree_advert input[type="checkbox"]:checked::before {
    content: "\2713";
    position: absolute;
    border-radius: 4px;
    top: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.register .form .submits {
    display: flex;
    align-items: center;
    margin: 20px;
    justify-content: center;
}

.register .form .submits .button {
    margin-right: 20px;
    color: #ffffff;
    padding: 10px 80px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

/*註冊頁面 end */

/*會員資料 start */
.users .form .item .value .resetPassword {
    cursor: pointer;
    padding: 5px 10px;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
}
.getAuthEmail {
    cursor: pointer;
    padding: 5px 10px;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
}

.resetpwd .form .content .item .label {
    width: 92px;
}

/*會員資料 end */

/* 響應式佈局，兼容手機端 start */
@media screen and (max-width: 640px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .container {
        width: 100%;
    }

    .indexList {
        padding: 5px;
    }

    .indexList .item {
        width: calc(90% - 2px);
    }

    .indexList .item .title {
        font-size: 20px;
    }

    .search .form {
        padding: 10px;
    }

    .search .form .input {
        width: 188px;
    }

    .login {
        padding: 10px;
    }

    .login .form {
        padding: 0;
        width: 100%;
    }

    .login .form .item {
        padding: 10px;
        flex-direction: column;
    }

    .login .form .item .label {
        width: 100%;
        text-align: left;
        padding-left: 10px;
        margin-bottom: 5px;
    }

    .login .form .item .value {
        width: 100%;
    }

    .login .form .item .value input {
        width: calc(100% - 20px);
    }

    .login .form .item .verify input {
        width: calc(100% - 20px);
    }

    .login .form .item .verifyImg {
        margin-top: 10px;
        width: 100%;
    }

    .register {
        margin: 0;
        padding: 10px;
    }

    .register .conform .content,
    .register .form .content {
        padding: 10px;
    }

    .register .conform .content .desc {
        padding: 0 10px;
    }

    .register .form .content .item {
        flex-direction: column;
    }

    .register .form .content .item .label {
        text-align: left;
        width: 100%;
        padding-left: 20px;
        margin-bottom: 5px;
    }

    .register .form .content .item .labelTips {
        margin-top: 3px;
        width: 100%;
    }

    .register .form .content .item .value {
        width: 100%;
    }

    .register .form .content .item .value select {
        width: 100%;
        margin-bottom: 5px;
    }

    .register .form .content .item .value input {
        width: calc(100% - 20px);
    }

    .register .form .content .item .verifyImg {
        width: 100%;
        margin-top: 10px;
    }

    .register .form .content .item .value .radio {
        clear: both;
        margin-bottom: 10px;
        margin-left: 5px;
    }

    .process {
        flex-direction: column;
        padding: 0;
    }

    .process .description,
    .process .form {
        width: calc(100% - 20px);
        margin: 10px;
    }

    .process .step {
        max-width: 100%;
    }

    .process .step .prevNext {
        bottom: 20px;
    }

    .users .form .submits .button {
        padding: 5px 30px;
    }

    .users .form .content .item {
        flex-direction: row;
    }

    .users .form .content .itemNone {
        flex-direction: column;
    }

    .users .form .content .item .label {
        text-align: right;
        width: 110px;
        padding-left: 0;
        margin-bottom: 0;
    }

    .users .form .content .itemNone .label {
        text-align: left;
        width: 100%;
        padding-left: 20px;
        margin-bottom: 5px;
    }

    .resetpwd .form .content .item .label {
        width: 100%;
    }

    .indexList .item .start .price .value {
        font-size: 24px;
        left: 130px;
    }

    .indexList .item .start .price .total_price {
        left: 130px;
        font-size: 14px;
    }

    .process .start .price .value {
        font-size: 24px;
        left: 130px;
    }

    .process .start .price .total_price {
        left: 130px;
        font-size: 14px;
    }

    .login .form .submits {
        flex-direction: column;
    }

    .login .form .submits .button {
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0;
    }

    .forgetpwd {
        padding: 10px;
    }

    .forgetpwd .form {
        padding: 0;
        width: 100%;
    }

    .forgetpwd .form .item {
        padding: 10px;
        flex-direction: column;
    }

    .forgetpwd .form .item .label {
        width: 100%;
        text-align: left;
        padding-left: 10px;
        margin-bottom: 5px;
    }

    .forgetpwd .form .item .value {
        width: 100%;
    }

    .forgetpwd .form .item .value input {
        width: calc(100% - 20px);
    }

    .forgetpwd .form .item .verify input {
        width: calc(100% - 20px);
    }

    .forgetpwd .form .item .verifyImg {
        margin-top: 10px;
        width: 100%;
    }
}

/* 響應式佈局，兼容手機端 end */
