body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        .container {
            width: 375px; /* Fixed width for mobile */
            margin: 0 auto;
            background-color: white;
            border: 1px solid #ddd;
        }
        .header {
            position: relative;
            background-color: #f8f8f8;
            /* border-bottom: 1px solid #ddd;
            height: 200px; */
        }
        .content {
            padding: 10px;
        }
        .poster {
            position: relative;
        }
        .poster img {
            width: 100%;
            border-radius: 5px;
        }
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .play-button img {
            width: 24px;
            height: 24px;
        }
        .details {
            margin-top: 10px;
        }
        .details p {
            margin: 5px 0;
        }
        .details .expand {
            color: blue;
            font-size: 18px;
            cursor: pointer;
        }
        .episodes {
            margin-top: 20px;
        }
        .episodes .title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .episodes .grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 6px;
        }
        .episodes .grid button {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #F5F5F5;
            border: 1px solid #AAA;
            border-radius: 9px;
            padding: 11px 0;
            cursor: pointer;
        }
        .episodes .grid button.selected {
            background: url('./jump.png') no-repeat; 
            background-position: 7px 22px;
            background-color: transparent; /* 确保背景颜色不干扰图像 */
            color: red; 
        }
        .description{
            font-size: 18px; 
            margin-bottom: 10px;
            letter-spacing: 1.8px;
            height: 73px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
		.head{
			width: 100%;
		}
		.work{
			font-size: 24px;
			margin-right: 15px;
		}
		.num{
			font-size: 18px;
			color: #888;
			font-weight: normal;
		}
        .docTitle{
            font-size: 24px; 
            font-weight: bold; 
            margin-top: 20px; 
            margin-left: 10px;
        }
        .actor{
            font-size: 18px;
            margin-bottom: 10px; 
            margin-top: 7px; 
        }