@charset "utf-8";
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
			font-size: 2.8rem;
        }

        body {
            background: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: white;
            width: 100%;
            max-width: 600px;
            border-radius: 12px;
            padding:0 30px;
			padding-bottom: .2rem;
			/* padding-top: 0; */
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            /* margin-top: 40px; */
        }

        .success-icon {
            color: #07c160;
            font-size: 48px;
            text-align: center;
            /* margin-bottom: 20px; */
        }
		
		.success-icon img{
			margin: .2rem auto;
			width: .94rem;
		}

        .amount {
            font-size: .5rem;
            color: #333;
            text-align: center;
            font-weight: bold;
            margin: .2rem 0;
        }

        .detail-list {
            list-style: none;
            border-top: 1px solid #eee;
            /* padding-top: .2rem; */
        }
		.success{
			font-size: .34rem;
			color: #1C9663;
			text-align: center;
		}
        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: .2rem 0;
            /* border-bottom: 1px solid #f5f5f5; */
            color: #666;
			font-size: .28rem;
        }

        .detail-item span:first-child {
            color: #999;
			font-size: .28rem;
        }

       
        .back-btn {
            display: block;
            width: 100%;
			font-size: .32rem;
			line-height: .9rem;
			height: .9rem;
            /* padding: 15px; */
            background: #07c160;
            color: white;
            text-align: center;
            border-radius: .45rem;
            text-decoration: none;
            margin-top: 30px;
            transition: background 0.2s;
        }


        .back-btn:hover {
            background: #06ad54;
        }