@ -0,0 +1,47 @@
|
||||
package com.tamguo.config.redis;
|
||||
|
||||
public class PoolConfigBean {
|
||||
private int max_active;
|
||||
private int max_idle;
|
||||
private long max_wait;
|
||||
|
||||
public PoolConfigBean() {
|
||||
}
|
||||
|
||||
public PoolConfigBean(int max_active, int max_idle, long max_wait) {
|
||||
super();
|
||||
this.max_active = max_active;
|
||||
this.max_idle = max_idle;
|
||||
this.max_wait = max_wait;
|
||||
}
|
||||
|
||||
public int getMax_active() {
|
||||
return max_active;
|
||||
}
|
||||
|
||||
public void setMax_active(int max_active) {
|
||||
this.max_active = max_active;
|
||||
}
|
||||
|
||||
public int getMax_idle() {
|
||||
return max_idle;
|
||||
}
|
||||
|
||||
public void setMax_idle(int max_idle) {
|
||||
this.max_idle = max_idle;
|
||||
}
|
||||
|
||||
public long getMax_wait() {
|
||||
return max_wait;
|
||||
}
|
||||
|
||||
public void setMax_wait(long max_wait) {
|
||||
this.max_wait = max_wait;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "PoolConfig [max_active=" + max_active + ", max_idle=" + max_idle + ", max_wait=" + max_wait + "]";
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
package com.tamguo.config.redis;
|
||||
|
||||
public class RedisServerNodeBean {
|
||||
private String ip;
|
||||
private int port;
|
||||
private boolean needAuth;
|
||||
private String auth;
|
||||
|
||||
public RedisServerNodeBean(String ip, int port, boolean needAuth, String auth) {
|
||||
this.ip = ip;
|
||||
this.port = port;
|
||||
this.needAuth = needAuth;
|
||||
this.auth = auth;
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
public int getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(int port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
public boolean isNeedAuth() {
|
||||
return needAuth;
|
||||
}
|
||||
|
||||
public void setNeedAuth(boolean needAuth) {
|
||||
this.needAuth = needAuth;
|
||||
}
|
||||
|
||||
public String getAuth() {
|
||||
return auth;
|
||||
}
|
||||
|
||||
public void setAuth(String auth) {
|
||||
this.auth = auth;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "RedisServer [ip=" + ip + ", port=" + port + ", needAuth=" + needAuth + ", auth=" + auth + "]";
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,175 @@
|
||||
package com.tamguo.config.redis;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
import org.springframework.beans.factory.InitializingBean;
|
||||
import org.springframework.stereotype.Component;
|
||||
import org.w3c.dom.Document;
|
||||
import org.w3c.dom.Element;
|
||||
import org.w3c.dom.NodeList;
|
||||
|
||||
import com.tamguo.common.utils.XMLConfiguration;
|
||||
|
||||
import redis.clients.jedis.JedisPoolConfig;
|
||||
import redis.clients.jedis.JedisShardInfo;
|
||||
import redis.clients.jedis.ShardedJedis;
|
||||
import redis.clients.jedis.ShardedJedisPool;
|
||||
|
||||
@Component("redisConfigure")
|
||||
public class RedisXMLConfigure implements InitializingBean {
|
||||
private static final Logger logger = Logger.getLogger(RedisXMLConfigure.class);
|
||||
private static String preKey;
|
||||
private static Document document = null;
|
||||
private ShardedJedisPool shardedJedisPool;
|
||||
|
||||
@Override
|
||||
public void afterPropertiesSet() throws Exception {
|
||||
XMLConfiguration xmlConfiguration = new XMLConfiguration();
|
||||
String REDIS_PATH = "redis.xml";
|
||||
InputStream stream = null;
|
||||
try {
|
||||
stream = this.getClass().getClassLoader().getResourceAsStream(REDIS_PATH);
|
||||
if (stream == null) {
|
||||
logger.error("load redis.xml failed!!!" + REDIS_PATH);
|
||||
throw new RuntimeException("load redis.xml failed");
|
||||
}
|
||||
logger.info("Redis XML config path:" + REDIS_PATH);
|
||||
if (xmlConfiguration.readConfigFile(stream)) {
|
||||
document = xmlConfiguration.getDocument();
|
||||
} else {
|
||||
logger.error("load redis.xml failed!!!");
|
||||
}
|
||||
} finally {
|
||||
if (null != stream)
|
||||
stream.close();
|
||||
}
|
||||
//初始化参数
|
||||
initPreKey();
|
||||
PoolConfigBean pcb = initPoolConfigBean();
|
||||
List<RedisServerNodeBean> rsnbs = initRedisServerNodeBeans();
|
||||
//实现shardedJedisPool
|
||||
JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();
|
||||
//no maxActive config
|
||||
jedisPoolConfig.setMaxIdle(pcb.getMax_idle());
|
||||
jedisPoolConfig.setMaxWaitMillis(pcb.getMax_wait());
|
||||
shardedJedisPool = new ShardedJedisPool(jedisPoolConfig,getJedisShardInfo(rsnbs));
|
||||
if(shardedJedisPool == null){
|
||||
throw new RuntimeException("config redis.xml error");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化jedis参数
|
||||
*/
|
||||
private PoolConfigBean initPoolConfigBean() {
|
||||
PoolConfigBean poolConfigBean = new PoolConfigBean();
|
||||
Element poolElement = (Element) document.getElementsByTagName("pool").item(0);
|
||||
int max_active = poolElement.hasAttribute("maxActive") ? Integer.parseInt(poolElement.getAttribute("maxActive")) : -1;
|
||||
int max_idle = poolElement.hasAttribute("maxIdle") ? Integer.parseInt(poolElement.getAttribute("maxIdle")) : -1;
|
||||
long max_wait = poolElement.hasAttribute("maxWait") ? Long.parseLong(poolElement.getAttribute("maxWait")) : -1;
|
||||
poolConfigBean.setMax_active(max_active);
|
||||
poolConfigBean.setMax_idle(max_idle);
|
||||
poolConfigBean.setMax_wait(max_wait);
|
||||
return poolConfigBean;
|
||||
}
|
||||
|
||||
/**
|
||||
* 解析配置redis的server列表
|
||||
*/
|
||||
private List<RedisServerNodeBean> initRedisServerNodeBeans() {
|
||||
List<RedisServerNodeBean> redisServers = new ArrayList<RedisServerNodeBean>();
|
||||
NodeList serverElements = document.getElementsByTagName("server");
|
||||
int serverLen = serverElements.getLength();
|
||||
if (serverLen < 1) {
|
||||
logger.error("redis.servers.server must have one !");
|
||||
return null;
|
||||
}
|
||||
for (int i = 0; i < serverLen; i++) {
|
||||
Element serverElement = (Element) serverElements.item(i);
|
||||
String temp_ip = serverElement.hasAttribute("ip") ? serverElement.getAttribute("ip") : null;
|
||||
if (temp_ip == null) {
|
||||
logger.error("redis.servers.server.ip must be supplied!");
|
||||
return null;
|
||||
}
|
||||
|
||||
String temp_port = serverElement.hasAttribute("port") ? serverElement.getAttribute("port") : "6379";
|
||||
String temp_needAuth = serverElement.hasAttribute("needAuth") ? serverElement.getAttribute("needAuth") : "false";
|
||||
String temp_auth = null;
|
||||
// need auth
|
||||
if ("true".equals(temp_needAuth)) {
|
||||
temp_auth = serverElement.hasAttribute("auth") ? serverElement.getAttribute("auth") : null;
|
||||
if (null == temp_auth) {
|
||||
logger.error("since needAuth is true,auth must be supplied!");
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
RedisServerNodeBean rs = null;
|
||||
try {
|
||||
rs = new RedisServerNodeBean(temp_ip, Integer.parseInt(temp_port), Boolean.parseBoolean(temp_needAuth), temp_auth);
|
||||
} catch (NumberFormatException e) {
|
||||
logger.error("port must be a number!\n" + e.getMessage());
|
||||
return null;
|
||||
}
|
||||
redisServers.add(rs);
|
||||
}
|
||||
return redisServers;
|
||||
}
|
||||
|
||||
/**
|
||||
* 转换自定义配置为JedisShardInfo对象
|
||||
* @param redisServers
|
||||
* @return
|
||||
*/
|
||||
private List<JedisShardInfo> getJedisShardInfo(List<RedisServerNodeBean> redisServers) {
|
||||
if(redisServers == null){
|
||||
logger.error("redisServers must not be empty null");
|
||||
return null;
|
||||
}
|
||||
int serverLen = redisServers.size();
|
||||
if (serverLen < 1) {
|
||||
logger.error("redisServers must not be empty ");
|
||||
return null;
|
||||
}
|
||||
List<JedisShardInfo> servers = new ArrayList<JedisShardInfo>(serverLen);
|
||||
for (int i = 0; i < serverLen; i++) {
|
||||
RedisServerNodeBean redisServer = redisServers.get(i);
|
||||
JedisShardInfo jedisShardInfo = new JedisShardInfo(redisServer.getIp(), redisServer.getPort());
|
||||
if (redisServer.isNeedAuth()) {
|
||||
jedisShardInfo.setPassword(redisServer.getAuth());
|
||||
}
|
||||
servers.add(jedisShardInfo);
|
||||
}
|
||||
return servers;
|
||||
}
|
||||
|
||||
/*
|
||||
* 初始化redis的key前缀
|
||||
*/
|
||||
private void initPreKey() {
|
||||
Element preKeyElement = (Element) document.getElementsByTagName("preKey").item(0);
|
||||
preKey = preKeyElement.hasAttribute("value") ? preKeyElement.getAttribute("value") : "";
|
||||
}
|
||||
|
||||
public String getPreKey() {
|
||||
return preKey;
|
||||
}
|
||||
/**
|
||||
* 从jedis连接池获得一个连接
|
||||
* @return
|
||||
*/
|
||||
public ShardedJedis getConnection() {
|
||||
return shardedJedisPool.getResource();
|
||||
}
|
||||
/**
|
||||
* 把连接放回jedis连接池
|
||||
* @param resource
|
||||
*/
|
||||
public void closeConnection(ShardedJedis resource) {
|
||||
resource.close();
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.tamguo.modules.tiku.dao;
|
||||
|
||||
import com.tamguo.config.dao.SuperMapper;
|
||||
import com.tamguo.modules.tiku.model.AdEntity;
|
||||
|
||||
public interface AdMapper extends SuperMapper<AdEntity>{
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.tamguo.modules.tiku.dao;
|
||||
|
||||
import com.tamguo.config.dao.SuperMapper;
|
||||
import com.tamguo.modules.tiku.model.MenuEntity;
|
||||
|
||||
public interface MenuMapper extends SuperMapper<MenuEntity>{
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.tamguo.modules.tiku.dao;
|
||||
|
||||
import com.tamguo.config.dao.SuperMapper;
|
||||
import com.tamguo.modules.tiku.model.PaperEntity;
|
||||
|
||||
public interface PaperMapper extends SuperMapper<PaperEntity>{
|
||||
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.tamguo.modules.tiku.dao;
|
||||
|
||||
import com.tamguo.config.dao.SuperMapper;
|
||||
import com.tamguo.modules.tiku.model.SchoolEntity;
|
||||
|
||||
public interface SchoolMapper extends SuperMapper<SchoolEntity>{
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
package com.tamguo.modules.tiku.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import com.alibaba.fastjson.JSONArray;
|
||||
import com.baomidou.mybatisplus.annotations.TableName;
|
||||
import com.tamguo.config.dao.SuperEntity;
|
||||
|
||||
/**
|
||||
* The persistent class for the tiku_ad database table.
|
||||
*
|
||||
*/
|
||||
@TableName(value="tiku_ad")
|
||||
public class AdEntity extends SuperEntity<AdEntity> implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String businessKey;
|
||||
|
||||
private String name;
|
||||
|
||||
private String adInfo;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return serialVersionUID;
|
||||
}
|
||||
|
||||
public String getAdInfo() {
|
||||
return adInfo;
|
||||
}
|
||||
|
||||
public void setAdInfo(String adInfo) {
|
||||
this.adInfo = adInfo;
|
||||
}
|
||||
|
||||
public JSONArray getAds(){
|
||||
if(StringUtils.isEmpty(getAdInfo())){
|
||||
return null;
|
||||
}
|
||||
return JSONArray.parseArray(getAdInfo());
|
||||
}
|
||||
|
||||
public String getBusinessKey() {
|
||||
return businessKey;
|
||||
}
|
||||
|
||||
public void setBusinessKey(String businessKey) {
|
||||
this.businessKey = businessKey;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,99 @@
|
||||
package com.tamguo.modules.tiku.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import com.baomidou.mybatisplus.annotations.TableField;
|
||||
import com.baomidou.mybatisplus.annotations.TableName;
|
||||
import com.tamguo.config.dao.SuperEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tiku_subject database table.
|
||||
*
|
||||
*/
|
||||
@TableName(value="tiku_menu")
|
||||
public class MenuEntity extends SuperEntity<MenuEntity> implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String name;
|
||||
private String pinyin;
|
||||
private String parentId;
|
||||
private String isShow;
|
||||
private Integer orders;
|
||||
private String url;
|
||||
@TableField(value="reserve_1")
|
||||
private String reserve1;
|
||||
|
||||
// 子类型
|
||||
@TableField(exist=false)
|
||||
private List<MenuEntity> childSubjects;
|
||||
|
||||
public MenuEntity() {
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public List<MenuEntity> getChildSubjects() {
|
||||
return childSubjects;
|
||||
}
|
||||
|
||||
public void setChildSubjects(List<MenuEntity> childSubjects) {
|
||||
this.childSubjects = childSubjects;
|
||||
}
|
||||
|
||||
public String getPinyin() {
|
||||
return pinyin;
|
||||
}
|
||||
|
||||
public void setPinyin(String pinyin) {
|
||||
this.pinyin = pinyin;
|
||||
}
|
||||
|
||||
public String getIsShow() {
|
||||
return isShow;
|
||||
}
|
||||
|
||||
public void setIsShow(String isShow) {
|
||||
this.isShow = isShow;
|
||||
}
|
||||
|
||||
public Integer getOrders() {
|
||||
return orders;
|
||||
}
|
||||
|
||||
public void setOrders(Integer orders) {
|
||||
this.orders = orders;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getReserve1() {
|
||||
return reserve1;
|
||||
}
|
||||
|
||||
public void setReserve1(String reserve1) {
|
||||
this.reserve1 = reserve1;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,246 @@
|
||||
package com.tamguo.modules.tiku.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import com.alibaba.fastjson.JSONArray;
|
||||
import com.baomidou.mybatisplus.annotations.TableField;
|
||||
import com.baomidou.mybatisplus.annotations.TableName;
|
||||
import com.tamguo.config.dao.SuperEntity;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tiku_chapter database table.
|
||||
*
|
||||
*/
|
||||
@TableName(value="tiku_paper")
|
||||
public class PaperEntity extends SuperEntity<PaperEntity> implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String subjectId;
|
||||
|
||||
private String courseId;
|
||||
|
||||
private String schoolId;
|
||||
|
||||
private String areaId;
|
||||
|
||||
private String createrId;
|
||||
|
||||
private String name;
|
||||
|
||||
private String questionInfo;
|
||||
|
||||
private String type;
|
||||
|
||||
private String year;
|
||||
|
||||
private Integer downHits;
|
||||
|
||||
private Integer openHits;
|
||||
|
||||
private String seoTitle;
|
||||
|
||||
private String seoKeywords;
|
||||
|
||||
private String seoDescription;
|
||||
|
||||
@TableField(value="free")
|
||||
private String free;
|
||||
|
||||
private String point;
|
||||
|
||||
private String money;
|
||||
|
||||
@TableField(exist=false)
|
||||
private String subjectName;
|
||||
|
||||
@TableField(exist=false)
|
||||
private String courseName;
|
||||
|
||||
@TableField(exist=false)
|
||||
private String areaName;
|
||||
|
||||
@TableField(exist=false)
|
||||
private String schoolName;
|
||||
|
||||
public JSONArray getQueInfo(){
|
||||
if(StringUtils.isEmpty(getQuestionInfo())){
|
||||
return null;
|
||||
}
|
||||
return JSONArray.parseArray(getQuestionInfo());
|
||||
}
|
||||
|
||||
public String getCourseId() {
|
||||
return courseId;
|
||||
}
|
||||
|
||||
public void setCourseId(String courseId) {
|
||||
this.courseId = courseId;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getYear() {
|
||||
return year;
|
||||
}
|
||||
|
||||
public void setYear(String year) {
|
||||
this.year = year;
|
||||
}
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return serialVersionUID;
|
||||
}
|
||||
|
||||
public String getSchoolId() {
|
||||
return schoolId;
|
||||
}
|
||||
|
||||
public void setSchoolId(String schoolId) {
|
||||
this.schoolId = schoolId;
|
||||
}
|
||||
|
||||
public Integer getDownHits() {
|
||||
return downHits;
|
||||
}
|
||||
|
||||
public void setDownHits(Integer downHits) {
|
||||
this.downHits = downHits;
|
||||
}
|
||||
|
||||
public Integer getOpenHits() {
|
||||
return openHits;
|
||||
}
|
||||
|
||||
public void setOpenHits(Integer openHits) {
|
||||
this.openHits = openHits;
|
||||
}
|
||||
|
||||
public String getQuestionInfo() {
|
||||
return questionInfo;
|
||||
}
|
||||
|
||||
public void setQuestionInfo(String questionInfo) {
|
||||
this.questionInfo = questionInfo;
|
||||
}
|
||||
|
||||
public String getCreaterId() {
|
||||
return createrId;
|
||||
}
|
||||
|
||||
public void setCreaterId(String createrId) {
|
||||
this.createrId = createrId;
|
||||
}
|
||||
|
||||
public String getSeoTitle() {
|
||||
return seoTitle;
|
||||
}
|
||||
|
||||
public void setSeoTitle(String seoTitle) {
|
||||
this.seoTitle = seoTitle;
|
||||
}
|
||||
|
||||
public String getSeoKeywords() {
|
||||
return seoKeywords;
|
||||
}
|
||||
|
||||
public void setSeoKeywords(String seoKeywords) {
|
||||
this.seoKeywords = seoKeywords;
|
||||
}
|
||||
|
||||
public String getSeoDescription() {
|
||||
return seoDescription;
|
||||
}
|
||||
|
||||
public void setSeoDescription(String seoDescription) {
|
||||
this.seoDescription = seoDescription;
|
||||
}
|
||||
|
||||
public String getCourseName() {
|
||||
return courseName;
|
||||
}
|
||||
|
||||
public void setCourseName(String courseName) {
|
||||
this.courseName = courseName;
|
||||
}
|
||||
|
||||
public String getAreaName() {
|
||||
return areaName;
|
||||
}
|
||||
|
||||
public void setAreaName(String areaName) {
|
||||
this.areaName = areaName;
|
||||
}
|
||||
|
||||
public String getSchoolName() {
|
||||
return schoolName;
|
||||
}
|
||||
|
||||
public void setSchoolName(String schoolName) {
|
||||
this.schoolName = schoolName;
|
||||
}
|
||||
|
||||
public String getSubjectId() {
|
||||
return subjectId;
|
||||
}
|
||||
|
||||
public void setSubjectId(String subjectId) {
|
||||
this.subjectId = subjectId;
|
||||
}
|
||||
|
||||
public String getSubjectName() {
|
||||
return subjectName;
|
||||
}
|
||||
|
||||
public void setSubjectName(String subjectName) {
|
||||
this.subjectName = subjectName;
|
||||
}
|
||||
|
||||
public String getPoint() {
|
||||
return point;
|
||||
}
|
||||
|
||||
public void setPoint(String point) {
|
||||
this.point = point;
|
||||
}
|
||||
|
||||
public String getMoney() {
|
||||
return money;
|
||||
}
|
||||
|
||||
public void setMoney(String money) {
|
||||
this.money = money;
|
||||
}
|
||||
|
||||
public String getFree() {
|
||||
return free;
|
||||
}
|
||||
|
||||
public void setFree(String free) {
|
||||
this.free = free;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,68 @@
|
||||
package com.tamguo.modules.tiku.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.mybatisplus.annotations.TableField;
|
||||
import com.baomidou.mybatisplus.annotations.TableName;
|
||||
import com.tamguo.config.dao.SuperEntity;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the tiku_chapter database table.
|
||||
*
|
||||
*/
|
||||
@TableName(value="tiku_school")
|
||||
public class SchoolEntity extends SuperEntity<SchoolEntity> implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String areaId;
|
||||
|
||||
private String name;
|
||||
|
||||
private String image;
|
||||
|
||||
// 试卷
|
||||
@TableField(exist=false)
|
||||
private List<PaperEntity> paperList;
|
||||
|
||||
public SchoolEntity() {
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
public void setImage(String image) {
|
||||
this.image = image;
|
||||
}
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return serialVersionUID;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public List<PaperEntity> getPaperList() {
|
||||
return paperList;
|
||||
}
|
||||
|
||||
public void setPaperList(List<PaperEntity> paperList) {
|
||||
this.paperList = paperList;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.tamguo.modules.tiku.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.tamguo.modules.tiku.model.AdEntity;
|
||||
|
||||
public interface IAdService {
|
||||
|
||||
List<AdEntity> findAll();
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
package com.tamguo.modules.tiku.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.tamguo.modules.tiku.model.MenuEntity;
|
||||
|
||||
/**
|
||||
* Service - 类型
|
||||
*
|
||||
* @author candy.tam
|
||||
*
|
||||
*/
|
||||
public interface IMenuService {
|
||||
|
||||
/** 获取类型数结构 */
|
||||
public List<MenuEntity> findMenus();
|
||||
|
||||
/** 获取所有头部菜单 */
|
||||
public List<MenuEntity> findAllMenus();
|
||||
|
||||
/** 获取左侧菜单*/
|
||||
public List<MenuEntity> findLeftMenus();
|
||||
|
||||
/** 资格考试专区*/
|
||||
public List<MenuEntity> findFooterMenus();
|
||||
|
||||
/** 首页章节学习*/
|
||||
public List<MenuEntity> findChapterMenus();
|
||||
|
||||
/** 获取菜单树*/
|
||||
public List<MenuEntity> getMenuTree();
|
||||
|
||||
/** 获取菜单*/
|
||||
public MenuEntity findById(String uid);
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package com.tamguo.modules.tiku.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.tamguo.modules.tiku.model.PaperEntity;
|
||||
|
||||
public interface IPaperService {
|
||||
|
||||
List<PaperEntity> findHistoryPaper();
|
||||
|
||||
List<PaperEntity> findSimulationPaper();
|
||||
|
||||
List<PaperEntity> findHotPaper(String areaId);
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.tamguo.modules.tiku.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.tamguo.modules.tiku.model.SchoolEntity;
|
||||
|
||||
public interface ISchoolService {
|
||||
|
||||
public List<SchoolEntity> findEliteSchoolPaper(String shcoolId);
|
||||
|
||||
public List<SchoolEntity> findEliteSchool();
|
||||
|
||||
public List<SchoolEntity> findSchoolByAreaId(String areaId);
|
||||
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package com.tamguo.modules.tiku.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baomidou.mybatisplus.mapper.Condition;
|
||||
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
||||
import com.tamguo.common.utils.SystemConstant;
|
||||
import com.tamguo.config.redis.CacheService;
|
||||
import com.tamguo.modules.tiku.dao.AdMapper;
|
||||
import com.tamguo.modules.tiku.model.AdEntity;
|
||||
import com.tamguo.modules.tiku.service.IAdService;
|
||||
|
||||
@Service
|
||||
public class AdServiceService extends ServiceImpl<AdMapper, AdEntity> implements IAdService{
|
||||
|
||||
@Autowired
|
||||
AdMapper adMapper;
|
||||
@Autowired
|
||||
CacheService cacheService;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<AdEntity> findAll() {
|
||||
List<AdEntity> adList = (List<AdEntity>) cacheService.getObject(SystemConstant.ALL_AD);
|
||||
adList = null;
|
||||
if(adList == null || adList.isEmpty()){
|
||||
adList = adMapper.selectList(Condition.EMPTY);
|
||||
cacheService.setObject(SystemConstant.ALL_AD, adList , 2 * 60 * 60);
|
||||
}
|
||||
return adList;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,113 @@
|
||||
package com.tamguo.modules.tiku.service.impl;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baomidou.mybatisplus.mapper.Condition;
|
||||
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
||||
import com.tamguo.common.utils.SystemConstant;
|
||||
import com.tamguo.config.redis.CacheService;
|
||||
import com.tamguo.modules.tiku.dao.MenuMapper;
|
||||
import com.tamguo.modules.tiku.model.MenuEntity;
|
||||
import com.tamguo.modules.tiku.service.IMenuService;
|
||||
|
||||
@Service
|
||||
public class MenuServiceImpl extends ServiceImpl<MenuMapper, MenuEntity> implements IMenuService{
|
||||
|
||||
@Autowired
|
||||
private MenuMapper menuMapper;
|
||||
@Autowired
|
||||
private CacheService cacheService;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<MenuEntity> findMenus() {
|
||||
List<MenuEntity> menuList = ((List<MenuEntity>) cacheService.getObject(SystemConstant.INDEX_MENU));
|
||||
if (menuList == null || menuList.isEmpty()) {
|
||||
menuList = menuMapper.selectList(Condition.create().eq("parent_id", 1).eq("is_show", 1).orderDesc(Arrays.asList("orders")));
|
||||
for(MenuEntity menu : menuList){
|
||||
List<MenuEntity> childSubjects = menuMapper.selectList(Condition.create().eq("parent_id", menu.getId()).orderDesc(Arrays.asList("orders")));
|
||||
menu.setChildSubjects(childSubjects);
|
||||
}
|
||||
cacheService.setObject(SystemConstant.INDEX_MENU, menuList , 2 * 60 * 60);
|
||||
}
|
||||
return menuList;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<MenuEntity> findAllMenus() {
|
||||
List<MenuEntity> allMenuList = ((List<MenuEntity>) cacheService.getObject(SystemConstant.ALL_INDEX_MENU));
|
||||
if(allMenuList == null || allMenuList.isEmpty()){
|
||||
allMenuList = menuMapper.selectList(Condition.create().eq("parent_id", 1).orderDesc(Arrays.asList("orders")));
|
||||
for(MenuEntity menu : allMenuList){
|
||||
List<MenuEntity> childSubjects = menuMapper.selectList(Condition.create().eq("parent_id", menu.getId()).orderDesc(Arrays.asList("orders")));
|
||||
menu.setChildSubjects(childSubjects);
|
||||
}
|
||||
cacheService.setObject(SystemConstant.ALL_INDEX_MENU, allMenuList , 2 * 60 * 60);
|
||||
}
|
||||
return allMenuList;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<MenuEntity> findLeftMenus() {
|
||||
List<MenuEntity> leftMenuList = ((List<MenuEntity>) cacheService.getObject(SystemConstant.LEFT_INDEX_MENU));
|
||||
if(leftMenuList == null || leftMenuList.isEmpty()){
|
||||
leftMenuList = menuMapper.selectList(Condition.create().eq("parent_id", 2).orderDesc(Arrays.asList("orders")));
|
||||
for(MenuEntity menu : leftMenuList){
|
||||
List<MenuEntity> childSubjects = menuMapper.selectList(Condition.create().eq("parent_id", menu.getId()).orderDesc(Arrays.asList("orders")));
|
||||
menu.setChildSubjects(childSubjects);
|
||||
}
|
||||
cacheService.setObject(SystemConstant.LEFT_INDEX_MENU, leftMenuList , 2 * 60 * 60);
|
||||
}
|
||||
return leftMenuList;
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<MenuEntity> findChapterMenus() {
|
||||
List<MenuEntity> chapterMenuList = ((List<MenuEntity>) cacheService.getObject(SystemConstant.CHAPTER_INDEX_MENU));
|
||||
if(chapterMenuList == null || chapterMenuList.isEmpty()){
|
||||
chapterMenuList = menuMapper.selectList(Condition.create().eq("parent_id", 4).orderDesc(Arrays.asList("orders")));
|
||||
for(MenuEntity menu : chapterMenuList){
|
||||
List<MenuEntity> childSubjects = menuMapper.selectList(Condition.create().eq("parent_id", menu.getId()).orderDesc(Arrays.asList("orders")));
|
||||
menu.setChildSubjects(childSubjects);
|
||||
}
|
||||
cacheService.setObject(SystemConstant.CHAPTER_INDEX_MENU, chapterMenuList , 2 * 60 * 60);
|
||||
}
|
||||
return chapterMenuList;
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<MenuEntity> findFooterMenus() {
|
||||
List<MenuEntity> footerMenuList = ((List<MenuEntity>) cacheService.getObject(SystemConstant.FOOTER_INDEX_MENU));
|
||||
footerMenuList = null;
|
||||
if(footerMenuList == null || footerMenuList.isEmpty()){
|
||||
footerMenuList = menuMapper.selectList(Condition.create().eq("parent_id", 3).orderDesc(Arrays.asList("orders")));
|
||||
for(MenuEntity menu : footerMenuList){
|
||||
List<MenuEntity> childSubjects = menuMapper.selectList(Condition.create().eq("parent_id", menu.getId()).orderDesc(Arrays.asList("orders")));
|
||||
menu.setChildSubjects(childSubjects);
|
||||
}
|
||||
cacheService.setObject(SystemConstant.FOOTER_INDEX_MENU, footerMenuList , 2 * 60 * 60);
|
||||
}
|
||||
return footerMenuList;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<MenuEntity> getMenuTree() {
|
||||
return menuMapper.selectList(Condition.EMPTY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MenuEntity findById(String uid) {
|
||||
return menuMapper.selectById(uid);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
package com.tamguo.modules.tiku.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baomidou.mybatisplus.mapper.Condition;
|
||||
import com.baomidou.mybatisplus.plugins.Page;
|
||||
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
||||
import com.tamguo.common.utils.SystemConstant;
|
||||
import com.tamguo.config.redis.CacheService;
|
||||
import com.tamguo.modules.tiku.dao.PaperMapper;
|
||||
import com.tamguo.modules.tiku.model.PaperEntity;
|
||||
import com.tamguo.modules.tiku.service.IPaperService;
|
||||
|
||||
@Service
|
||||
public class PaperServiceImpl extends ServiceImpl<PaperMapper, PaperEntity> implements IPaperService{
|
||||
|
||||
@Autowired
|
||||
private PaperMapper paperMapper;
|
||||
@Autowired
|
||||
private CacheService cacheService;
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<PaperEntity> findHistoryPaper() {
|
||||
List<PaperEntity> paperList = (List<PaperEntity>) cacheService.getObject(SystemConstant.HISTORY_PAPER);
|
||||
if(paperList == null || paperList.isEmpty()){
|
||||
Page<PaperEntity> page = new Page<>(1 , 6);
|
||||
paperList = paperMapper.selectPage(page, Condition.create().eq("type", SystemConstant.ZHENGTI_PAPER_ID).eq("area_id", SystemConstant.BEIJING_AREA_ID));
|
||||
cacheService.setObject(SystemConstant.ZHENGTI_PAPER_ID, paperList , 2 * 60 * 60);
|
||||
}
|
||||
return paperList;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<PaperEntity> findSimulationPaper() {
|
||||
List<PaperEntity> paperList = (List<PaperEntity>) cacheService.getObject(SystemConstant.SIMULATION_PAPER);
|
||||
if(paperList == null || paperList.isEmpty()){
|
||||
Page<PaperEntity> page = new Page<>(1 , 6);
|
||||
paperList = paperMapper.selectPage(page, Condition.create().eq("type", SystemConstant.MONI_PAPER_ID).eq("area_id", SystemConstant.BEIJING_AREA_ID));
|
||||
cacheService.setObject(SystemConstant.SIMULATION_PAPER, paperList , 2 * 60 * 60);
|
||||
}
|
||||
return paperList;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<PaperEntity> findHotPaper(String areaId) {
|
||||
List<PaperEntity> paperList = (List<PaperEntity>) cacheService.getObject(SystemConstant.HOT_PAPER);
|
||||
paperList = null;
|
||||
if(paperList == null || paperList.isEmpty()){
|
||||
Page<PaperEntity> page = new Page<>(1 , 10);
|
||||
paperList = paperMapper.selectPage(page, Condition.create().eq("area_id", areaId));
|
||||
cacheService.setObject(SystemConstant.HOT_PAPER, paperList , 2 * 60 * 60);
|
||||
}
|
||||
return paperList;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,69 @@
|
||||
package com.tamguo.modules.tiku.service.impl;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.ibatis.session.RowBounds;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.mapper.Condition;
|
||||
import com.baomidou.mybatisplus.plugins.Page;
|
||||
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
||||
import com.tamguo.common.utils.SystemConstant;
|
||||
import com.tamguo.config.redis.CacheService;
|
||||
import com.tamguo.modules.tiku.dao.PaperMapper;
|
||||
import com.tamguo.modules.tiku.dao.SchoolMapper;
|
||||
import com.tamguo.modules.tiku.model.PaperEntity;
|
||||
import com.tamguo.modules.tiku.model.SchoolEntity;
|
||||
import com.tamguo.modules.tiku.service.ISchoolService;
|
||||
|
||||
@Service
|
||||
public class SchoolService extends ServiceImpl<SchoolMapper, SchoolEntity> implements ISchoolService {
|
||||
|
||||
@Autowired
|
||||
private SchoolMapper schoolMapper;
|
||||
@Autowired
|
||||
private PaperMapper paperMapper;
|
||||
@Autowired
|
||||
private CacheService cacheService;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<SchoolEntity> findEliteSchoolPaper(String shcoolId) {
|
||||
List<SchoolEntity> schoolList = (List<SchoolEntity>) cacheService.getObject(SystemConstant.ELITE_SCHOOL_PAPER);
|
||||
// 获取名校试卷
|
||||
if(schoolList == null || schoolList.isEmpty()){
|
||||
Page<SchoolEntity> page = new Page<>(1 , 3);
|
||||
schoolList = schoolMapper.selectPage(page, Condition.create().eq("id", shcoolId));
|
||||
for(SchoolEntity school : schoolList){
|
||||
Page<PaperEntity> p = new Page<>(1 , 3);
|
||||
List<PaperEntity> paperList = paperMapper.selectPage(p, Condition.create().eq("school_id", school.getId()));
|
||||
school.setPaperList(paperList);
|
||||
}
|
||||
cacheService.setObject(SystemConstant.ELITE_SCHOOL_PAPER, schoolList , 2 * 60 * 60);
|
||||
}
|
||||
return schoolList;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<SchoolEntity> findEliteSchool() {
|
||||
List<SchoolEntity> schoolList = (List<SchoolEntity>) cacheService.getObject(SystemConstant.ELITE_PAPER);
|
||||
if(schoolList == null || schoolList.isEmpty()){
|
||||
RowBounds row = new RowBounds(1 , 6);
|
||||
schoolList = schoolMapper.selectPage(row, Condition.EMPTY);
|
||||
cacheService.setObject(SystemConstant.ELITE_PAPER, schoolList , 2 * 60 * 60);
|
||||
}
|
||||
return schoolList;
|
||||
}
|
||||
|
||||
@Transactional(readOnly=true)
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<SchoolEntity> findSchoolByAreaId(String areaId) {
|
||||
return schoolMapper.selectList(Condition.create().in("area_id", Arrays.asList(areaId.split(","))));
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" output="target/classes" path="src/main/java">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="output" path="target/classes"/>
|
||||
</classpath>
|
@ -0,0 +1 @@
|
||||
/target/
|
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>tamguo-tms</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.m2e.core.maven2Builder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.m2e.core.maven2Nature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
@ -0,0 +1,6 @@
|
||||
eclipse.preferences.version=1
|
||||
encoding//src/main/java=UTF-8
|
||||
encoding//src/main/resources=UTF-8
|
||||
encoding//src/test/java=UTF-8
|
||||
encoding//src/test/resources=UTF-8
|
||||
encoding/<project>=UTF-8
|
@ -0,0 +1,5 @@
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
|
||||
org.eclipse.jdt.core.compiler.compliance=1.8
|
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.8
|
@ -0,0 +1,4 @@
|
||||
activeProfiles=
|
||||
eclipse.preferences.version=1
|
||||
resolveWorkspaceProjects=true
|
||||
version=1
|
@ -0,0 +1,167 @@
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.tamguo</groupId>
|
||||
<artifactId>tamguo-tms</artifactId>
|
||||
<version>1.0.0</version>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.0.3.RELEASE</version>
|
||||
<relativePath /> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<java.version>1.8</java.version>
|
||||
<mybatis-plus-boot-starter.version>2.1.9</mybatis-plus-boot-starter.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-jdbc</artifactId>
|
||||
</dependency>
|
||||
<!-- mybatis-plus begin -->
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||||
<version>${mybatis-plus-boot-starter.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>tomcat-jdbc</artifactId>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- mybatis-plus end -->
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.nekohtml</groupId>
|
||||
<artifactId>nekohtml</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-redis</artifactId>
|
||||
<version>1.3.8.RELEASE</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.session</groupId>
|
||||
<artifactId>spring-session-data-redis</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>fastjson</artifactId>
|
||||
<version>1.2.32</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.shiro</groupId>
|
||||
<artifactId>shiro-spring</artifactId>
|
||||
<version>1.2.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.shiro</groupId>
|
||||
<artifactId>shiro-ehcache</artifactId>
|
||||
<version>1.2.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.songxinqiang</groupId>
|
||||
<artifactId>com.baidu.ueditor</artifactId>
|
||||
<version>1.1.2-edit-1.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-fileupload</groupId>
|
||||
<artifactId>commons-fileupload</artifactId>
|
||||
<version>1.3.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>druid</artifactId>
|
||||
<version>1.0.18</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.aliyun</groupId>
|
||||
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
||||
<version>1.0.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.aliyun</groupId>
|
||||
<artifactId>aliyun-java-sdk-core</artifactId>
|
||||
<version>3.2.8</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-email</artifactId>
|
||||
<version>1.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.theborakompanioni</groupId>
|
||||
<artifactId>thymeleaf-extras-shiro</artifactId>
|
||||
<version>1.2.1</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.bladejava</groupId>
|
||||
<artifactId>blade-patchca</artifactId>
|
||||
<version>1.0.5</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.tamguo</groupId>
|
||||
<artifactId>tamguo-modules-core</artifactId>
|
||||
<version>1.0.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-dependencies</artifactId>
|
||||
<version>Camden.SR6</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<finalName>tamguo-tms</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
@ -0,0 +1,36 @@
|
||||
package com.tamguo;
|
||||
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
|
||||
import org.springframework.boot.builder.SpringApplicationBuilder;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.ComponentScan;
|
||||
|
||||
import com.alibaba.fastjson.serializer.SerializerFeature;
|
||||
import com.alibaba.fastjson.support.config.FastJsonConfig;
|
||||
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
|
||||
|
||||
@SpringBootApplication
|
||||
@ComponentScan("com.tamguo")
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) {
|
||||
new SpringApplicationBuilder(Application.class).run(args);
|
||||
}
|
||||
|
||||
/**
|
||||
* FastJson替代Jackson
|
||||
* @return
|
||||
*/
|
||||
@Bean
|
||||
public HttpMessageConverters fastJsonHttpMessageConverters() {
|
||||
FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
|
||||
FastJsonConfig fastJsonConfig = new FastJsonConfig();
|
||||
fastJsonConfig.setDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||
fastJsonConfig.setSerializerFeatures(SerializerFeature.DisableCircularReferenceDetect);
|
||||
fastConverter.setFastJsonConfig(fastJsonConfig);
|
||||
FastJsonHttpMessageConverter converter = fastConverter;
|
||||
return new HttpMessageConverters(converter);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.tamguo.config.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.mapper.MetaObjectHandler;
|
||||
import org.apache.ibatis.reflection.MetaObject;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* 注入公共字段自动填充,任选注入方式即可
|
||||
*/
|
||||
//@Component
|
||||
public class MyMetaObjectHandler extends MetaObjectHandler {
|
||||
|
||||
protected final static Logger logger = LoggerFactory.getLogger(MyMetaObjectHandler.class);
|
||||
|
||||
@Override
|
||||
public void insertFill(MetaObject metaObject) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateFill(MetaObject metaObject) {
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.tamguo.config.web;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import javax.annotation.Resource;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.thymeleaf.spring5.view.ThymeleafViewResolver;
|
||||
|
||||
@Configuration
|
||||
public class ThymeleafConfig {
|
||||
|
||||
@Resource
|
||||
private void configureThymeleafStaticVars(ThymeleafViewResolver viewResolver) {
|
||||
if(viewResolver != null) {
|
||||
Map<String, Object> vars = new HashMap<>();
|
||||
vars.put("domainName", "http://localhost:8081/");
|
||||
viewResolver.setStaticVariables(vars);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package com.tamguo.config.web;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||||
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
||||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||||
|
||||
import com.tamguo.web.interceptor.MemberInterceptor;
|
||||
import com.tamguo.web.interceptor.MenuInterceptor;
|
||||
|
||||
|
||||
@Configuration
|
||||
public class WebConfig implements WebMvcConfigurer {
|
||||
|
||||
@Value("${file.storage.path}")
|
||||
private String fileStoragePath;
|
||||
@Autowired
|
||||
private MemberInterceptor memberInterceptor;
|
||||
@Autowired
|
||||
private MenuInterceptor menuInterceptor;
|
||||
|
||||
@Override
|
||||
public void addInterceptors(InterceptorRegistry registry) {
|
||||
registry.addInterceptor(menuInterceptor).addPathPatterns("/**");
|
||||
registry.addInterceptor(memberInterceptor).addPathPatterns("/member/**");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
||||
registry.addResourceHandler("/files/**").addResourceLocations("file:"+fileStoragePath);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,55 @@
|
||||
package com.tamguo.web.interceptor;
|
||||
|
||||
import java.net.URLEncoder;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.stereotype.Component;
|
||||
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
|
||||
|
||||
@Component
|
||||
public class MemberInterceptor extends HandlerInterceptorAdapter{
|
||||
|
||||
/** "重定向URL"参数名称 */
|
||||
private static final String REDIRECT_URL_PARAMETER_NAME = "redirectUrl";
|
||||
|
||||
/** 默认登录URL */
|
||||
private static final String DEFAULT_LOGIN_URL = "/login.html";
|
||||
|
||||
/** 登录URL */
|
||||
private String loginUrl = DEFAULT_LOGIN_URL;
|
||||
|
||||
/**
|
||||
* 请求前处理
|
||||
*
|
||||
* @param request
|
||||
* HttpServletRequest
|
||||
* @param response
|
||||
* HttpServletResponse
|
||||
* @param handler
|
||||
* 处理器
|
||||
* @return 是否继续执行
|
||||
*/
|
||||
@Override
|
||||
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
|
||||
Object currMember = request.getSession().getAttribute("currMember");
|
||||
if (currMember != null) {
|
||||
return true;
|
||||
} else {
|
||||
String requestType = request.getHeader("X-Requested-With");
|
||||
if (requestType != null && requestType.equalsIgnoreCase("XMLHttpRequest")) {
|
||||
response.addHeader("loginStatus", "accessDenied");
|
||||
response.sendError(HttpServletResponse.SC_FORBIDDEN);
|
||||
return false;
|
||||
} else {
|
||||
if (request.getMethod().equalsIgnoreCase("GET")) {
|
||||
String redirectUrl = request.getQueryString() != null ? request.getRequestURI() + "?" + request.getQueryString() : request.getRequestURI();
|
||||
response.sendRedirect(request.getContextPath() + loginUrl + "?" + REDIRECT_URL_PARAMETER_NAME + "=" + URLEncoder.encode(redirectUrl, "UTF-8"));
|
||||
} else {
|
||||
response.sendRedirect(request.getContextPath() + loginUrl);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
package com.tamguo.web.tiku;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.servlet.ModelAndView;
|
||||
|
||||
@Controller
|
||||
public class IndexController {
|
||||
|
||||
@RequestMapping(value = "/", method = RequestMethod.GET)
|
||||
public ModelAndView indexAction(ModelAndView model) {
|
||||
model.setViewName("index");
|
||||
return model;
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/index", method = RequestMethod.GET)
|
||||
public ModelAndView mainAction(ModelAndView model) {
|
||||
model.setViewName("index");
|
||||
return model;
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/baidu_verify_5agfTbCO3Q", method = RequestMethod.GET)
|
||||
public ModelAndView baidu_verify_5agfTbCO3Q(ModelAndView model) {
|
||||
model.setViewName("thirdparty/baidu_verify_5agfTbCO3Q");
|
||||
return model;
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/baidu_verify_iAm7387J0l", method = RequestMethod.GET)
|
||||
public ModelAndView baidu_verify_iAm7387J0l(ModelAndView model) {
|
||||
model.setViewName("thirdparty/baidu_verify_iAm7387J0l");
|
||||
return model;
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/sogousiteverification", method = RequestMethod.GET)
|
||||
public ModelAndView sogousiteverification(ModelAndView model) {
|
||||
model.setViewName("thirdparty/sogousiteverification");
|
||||
return model;
|
||||
}
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
domain.name=http://localhost:8081/
|
||||
admin.domain.name=http://admin.tanguoguo.com
|
||||
server.port=8081
|
||||
jasypt.encryptor.password=tamguo
|
||||
|
||||
spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
|
||||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
||||
spring.datasource.filters=stat,wall,log4j
|
||||
spring.datasource.initialSize=5
|
||||
spring.datasource.maxActive=20
|
||||
spring.datasource.maxPoolPreparedStatementPerConnectionSize=20
|
||||
spring.datasource.maxWait=60000
|
||||
spring.datasource.minEvictableIdleTimeMillis=300000
|
||||
spring.datasource.minIdle=5
|
||||
spring.datasource.password=Tanguo
|
||||
spring.datasource.poolPreparedStatements=true
|
||||
spring.datasource.testOnBorrow=false
|
||||
spring.datasource.testOnReturn=false
|
||||
spring.datasource.testWhileIdle=true
|
||||
spring.datasource.timeBetweenEvictionRunsMillis=60000
|
||||
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
|
||||
spring.datasource.url=jdbc:mysql://47.100.175.14:3306/tamguo?useUnicode=true&characterEncoding=UTF-8&useSSL=false
|
||||
spring.datasource.username=root
|
||||
spring.datasource.validationQuery=SELECT 1 FROM DUAL
|
||||
|
||||
mybatis-plus.mapper-locations=classpath:/mappers/*Mapper.xml
|
||||
mybatis-plus.typeAliasesPackage=com.tamguo.modules.*.model
|
||||
mybatis-plus.typeEnumsPackage=com.tamguo.modules.*.model.enums
|
||||
mybatis-plus.global-config.id-type=5
|
||||
mybatis-plus.global-config.field-strategy=2
|
||||
mybatis-plus.global-config.db-column-underline=true
|
||||
mybatis-plus.global-config.refresh-mapper=true
|
||||
mybatis-plus.global-config.key-generator=com.baomidou.mybatisplus.incrementer.H2KeyGenerator
|
||||
mybatis-plus.global-config.logic-delete-value=0
|
||||
mybatis-plus.global-config.logic-not-delete-value=1
|
||||
mybatis-plus.global-config.sql-injector=com.baomidou.mybatisplus.mapper.LogicSqlInjector
|
||||
mybatis-plus.global-config.meta-object-handler=com.tamguo.config.dao.MyMetaObjectHandler
|
||||
mybatis-plus.global-config.sql-parser-cache=true
|
||||
mybatis-plus.configuration.map-underscore-to-camel-case=true
|
||||
mybatis-plus.configuration.cache-enabled=false
|
||||
|
||||
spring.thymeleaf.prefix=classpath:/templates/
|
||||
spring.thymeleaf.suffix=.html
|
||||
spring.thymeleaf.mode=LEGACYHTML5
|
||||
spring.thymeleaf.encoding=UTF-8
|
||||
spring.thymeleaf.content-type=text/html
|
||||
spring.thymeleaf.cache=false
|
||||
|
||||
redis.hostname=127.0.0.1
|
||||
redis.port=6379
|
||||
redis.password=
|
||||
|
||||
logging.level.root=INFO
|
||||
logging.level.org.springframework.web=INFO
|
||||
logging.file=/home/webdata/log/tamguo.log
|
||||
logging.pattern.console=%d{yyyy/MM/dd-HH:mm:ss} [%thread] %-5level %logger- %msg%n
|
||||
logging.pattern.file=%d{yyyy/MM/dd-HH:mm} [%thread] %-5level %logger- %msg%n
|
||||
|
||||
server.compression.enabled=true
|
||||
server.compression.mime-types=application/json,application/xml,text/html,text/xml,text/plain
|
||||
|
||||
file.storage.path=/home/webdata/files/
|
@ -0,0 +1,11 @@
|
||||
<ehcache updateCheck="false" name="shiroCache">
|
||||
<defaultCache
|
||||
maxElementsInMemory="10000"
|
||||
eternal="false"
|
||||
timeToIdleSeconds="120"
|
||||
timeToLiveSeconds="120"
|
||||
overflowToDisk="false"
|
||||
diskPersistent="false"
|
||||
diskExpiryThreadIntervalSeconds="120"
|
||||
/>
|
||||
</ehcache>
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<redis>
|
||||
<preKey value="TAMGUO:" />
|
||||
<pool maxActive="50" maxIdle="20" maxWait="1000" />
|
||||
<servers>
|
||||
<!-- test -->
|
||||
<server ip="127.0.0.1" port="6379"/>
|
||||
</servers>
|
||||
</redis>
|
@ -0,0 +1,301 @@
|
||||
.content-wp {
|
||||
min-height: 500px;
|
||||
}
|
||||
.main {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
.main {
|
||||
display: table-cell;
|
||||
width: auto;
|
||||
_position: relative;
|
||||
_right: -3px;
|
||||
_margin-left: -3px;
|
||||
}
|
||||
.main-submenu {
|
||||
background-color: #fff;
|
||||
}
|
||||
.main-submenu .submenu-contain {
|
||||
width: 1180px;
|
||||
margin: auto;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-title {
|
||||
font-size: 20px;
|
||||
line-height: 70px;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-title a {
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul {
|
||||
float: right;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li {
|
||||
font-size: 14px;
|
||||
float: left;
|
||||
width: 56px;
|
||||
height: 67px;
|
||||
line-height: 70px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
margin-left: 44px;
|
||||
border-bottom: 3px solid #fff;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li a {
|
||||
display: inline-block;
|
||||
border-bottom: 3px solid #fff;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #333;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li a.curr {
|
||||
color: #11a68d;
|
||||
border-bottom: 3px solid #11a68d;
|
||||
}
|
||||
.main .main-inner {
|
||||
width: 1180px;
|
||||
min-height: 726px;
|
||||
margin: auto;
|
||||
}
|
||||
.backtotop {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 30px;
|
||||
right: 30px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background-color: #149987;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
z-index: 9999999;
|
||||
}
|
||||
.screening {
|
||||
width: 1180px;
|
||||
margin: 15px 0;
|
||||
}
|
||||
.screening .sc-subject {
|
||||
line-height: 42px;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.screening .sc-subject li:first-child {
|
||||
padding-left: 0;
|
||||
}
|
||||
.screening .sc-subject .selected {
|
||||
background-color: #11a68d;
|
||||
}
|
||||
.screening .sc-subject li {
|
||||
font-size: 14px;
|
||||
margin: 9px 6px 9px 0;
|
||||
padding: 6px 12px;
|
||||
float: left;
|
||||
line-height: 1;
|
||||
}
|
||||
.screening .sc-subject .selected a {
|
||||
color: #fff;
|
||||
}
|
||||
.main .main-inner .list-left {
|
||||
float: left;
|
||||
}
|
||||
#outline {
|
||||
width: 329px;
|
||||
background-color: #f5f5f5;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
border-left: 1px solid #e5e5e5;
|
||||
}
|
||||
#outline .out-chapter {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
border-right: 1px solid #e5e5e5;
|
||||
}
|
||||
#outline .out-chapter h3 {
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
height: 70px;
|
||||
line-height: 70px;
|
||||
padding-left: 25px;
|
||||
border-left: 5px solid #f5f5f5;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
#outline .out-chapter h3:hover {
|
||||
background-color: #fafafa;
|
||||
border-left: 5px solid #ccc;
|
||||
}
|
||||
#outline .show .k1 {
|
||||
border-left: 5px solid #fff;
|
||||
}
|
||||
#outline .out-chapter h3 i.iconfont {
|
||||
font-size: 14px;
|
||||
color: #999;
|
||||
}
|
||||
#outline .out-chapter .out-list {
|
||||
display: none;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
#outline .out-chapter .out-list li {
|
||||
cursor: pointer;
|
||||
padding-left: 45px;
|
||||
line-height: 35px;
|
||||
border-left: 5px solid #f5f5f5;
|
||||
font-size: 14px;
|
||||
}
|
||||
.main .main-inner .list-right {
|
||||
float: right;
|
||||
}
|
||||
.detail {
|
||||
width: 849px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ebebeb;
|
||||
border-left: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
.detail .detail-chapter {
|
||||
margin: 0 30px;
|
||||
}
|
||||
.detail .detail-chapter .detail-chapter-title {
|
||||
height: 69px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.detail .detail-chapter .detail-chapter-title h3 {
|
||||
line-height: 70px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
float: left;
|
||||
}
|
||||
.detail .detail-chapter .detail-chapter-title a {
|
||||
width: 118px;
|
||||
height: 38px;
|
||||
line-height: 40px;
|
||||
display: block;
|
||||
float: right;
|
||||
text-align: center;
|
||||
border: 1px solid #ccc;
|
||||
margin-top: 14px;
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
}
|
||||
.detail .detail-chapter .detail-chapter-title ul {
|
||||
float: right;
|
||||
margin-top: 27px;
|
||||
}
|
||||
.detail .detail-chapter .detail-chapter-title ul li:first-child {
|
||||
border-right: 1px solid #ccc;
|
||||
}
|
||||
.detail .detail-chapter .detail-chapter-title ul li {
|
||||
float: left;
|
||||
display: block;
|
||||
padding: 0 19px;
|
||||
}
|
||||
.detail .detail-chapter .detail-chapter-title ul li span {
|
||||
color: #d95757;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 {
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-title {
|
||||
height: 70px;
|
||||
line-height: 70px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-title h4 {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
float: left;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-title span {
|
||||
float: left;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
margin-left: 30px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-title a {
|
||||
color: #333;
|
||||
float: right;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content {
|
||||
width: 810px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 {
|
||||
float: left;
|
||||
width: 248px;
|
||||
height: 123px;
|
||||
border: 1px solid #ebebeb;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 20px;
|
||||
background-color: #f5f5f5;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 h5 {
|
||||
font-size: 16px;
|
||||
margin-top: 40px;
|
||||
height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 h5, .detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 p {
|
||||
padding: 0 30px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 p {
|
||||
margin-top: 13px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 h5, .detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 p {
|
||||
padding: 0 30px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 p {
|
||||
margin-top: 13px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 .mask {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 248px;
|
||||
height: 123px;
|
||||
background-color: #464f54;
|
||||
opacity: .9;
|
||||
z-index: 300;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 .mask a {
|
||||
display: block;
|
||||
width: 81px;
|
||||
height: 36px;
|
||||
border: 2px solid #11a68d;
|
||||
padding-left: 35px;
|
||||
line-height: 40px;
|
||||
color: #fff;
|
||||
margin-left: 60px;
|
||||
margin-top: 45px;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/chapterlist/detail/images/do_a4a4763.png) no-repeat;
|
||||
background-position: 15px 12px;
|
||||
}
|
||||
.detail .detail-chapter .detail-kpoint-1 .kpoint-1-content .detail-kpoint-2 .count {
|
||||
color: #d95757;
|
||||
}
|
||||
.foot {
|
||||
background-color: #f0f0f0!important;
|
||||
height: 70px;
|
||||
}
|
||||
.foot .crumbs {
|
||||
width: 1180px;
|
||||
margin: auto;
|
||||
line-height: 70px;
|
||||
}
|
||||
.foot .crumbs span {
|
||||
color: #999;
|
||||
}
|
||||
#outline .show {
|
||||
background-color: #fff;
|
||||
border-right: 0;
|
||||
}
|
||||
.body:after, .main:after {
|
||||
clear: both;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
height: 0!important;
|
||||
line-height: 0;
|
||||
font-size: xx-large;
|
||||
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
|
||||
}
|
@ -0,0 +1,117 @@
|
||||
.footer {
|
||||
width: 100%;
|
||||
background-color: #343f45;
|
||||
}
|
||||
.footer .footer-contain {
|
||||
width: 1180px;
|
||||
padding: 40px 0;
|
||||
margin: auto;
|
||||
background-color: #343f45;
|
||||
font-size: 14px;
|
||||
}
|
||||
.footer .footer-contain .intro {
|
||||
float: left;
|
||||
width: 360px;
|
||||
height: 125px;
|
||||
border-right: 1px solid #39464d;
|
||||
}
|
||||
.footer .footer-contain .title {
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
color: #149987;
|
||||
}
|
||||
.footer .footer-contain .intro p {
|
||||
padding-right: 30px;
|
||||
}
|
||||
.footer .footer-contain p {
|
||||
color: #ccc;
|
||||
line-height: 24px;
|
||||
}
|
||||
.footer .footer-contain .connect, .footer .footer-contain .suggest {
|
||||
box-sizing: border-box;
|
||||
width: 210px;
|
||||
height: 125px;
|
||||
padding-left: 25px;
|
||||
float: left;
|
||||
border-right: 1px solid #39464d;
|
||||
}
|
||||
.footer .footer-contain .iconfont {
|
||||
font-size: 14px;
|
||||
}
|
||||
.footer .footer-contain .connect, .footer .footer-contain .suggest {
|
||||
box-sizing: border-box;
|
||||
width: 210px;
|
||||
height: 125px;
|
||||
padding-left: 25px;
|
||||
float: left;
|
||||
border-right: 1px solid #39464d;
|
||||
}
|
||||
.footer .footer-contain .suggest {
|
||||
width: 190px;
|
||||
}
|
||||
.footer .footer-contain .cooperation {
|
||||
float: left;
|
||||
padding-left: 50px;
|
||||
position: relative;
|
||||
width: 410px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.footer .footer-contain .cooperation .left, .footer .footer-contain .cooperation .right {
|
||||
position: absolute;
|
||||
top: 13px;
|
||||
left: 140px;
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
color: #39464c;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.footer .footer-contain .cooperation .right {
|
||||
left: 155px;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view .contain-ul {
|
||||
width: 366px;
|
||||
position: absolute;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view .contain-ul .contain-li:nth-child(1) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view .contain-ul .contain-li {
|
||||
float: left;
|
||||
width: 75px;
|
||||
height: 30px;
|
||||
margin-right: 22px;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view .contain-ul .contain-li .contain-link {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: .8;
|
||||
}
|
||||
.footer .bottom {
|
||||
min-width: 1180px;
|
||||
color: #999;
|
||||
height: 46px;
|
||||
line-height: 46px;
|
||||
text-align: center;
|
||||
background-color: #39464d;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view {
|
||||
width: 366px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view .contain-ul .contain-li:nth-child(2) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view .contain-ul .contain-li:nth-child(3) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.footer .footer-contain .cooperation .coo-view .contain-ul .contain-li:first-child+li+li+li, .footer .footer-contain .cooperation .coo-view .contain-ul .contain-li:first-child+li+li+li+li+li+li+li {
|
||||
margin-right: 0;
|
||||
}
|
||||
.footer .bottom a {
|
||||
color: #999;
|
||||
}
|
@ -0,0 +1,678 @@
|
||||
.content-wp {
|
||||
min-height: 500px;
|
||||
}
|
||||
.main {
|
||||
width: auto;
|
||||
_position: relative;
|
||||
_right: -3px;
|
||||
_margin-left: -3px;
|
||||
}
|
||||
.banner {
|
||||
height: 350px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
background: #FFF;
|
||||
position: relative;
|
||||
}
|
||||
.banner .banner-list {
|
||||
width: 100%;
|
||||
}
|
||||
.banner .play-nav {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
bottom: 15px;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 10;
|
||||
}
|
||||
.banner .banner-list li:first-child {
|
||||
z-index: 2;
|
||||
}
|
||||
.banner .banner-list li {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
.banner .banner-link {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.banner .banner-pic {
|
||||
border: 0;
|
||||
width: 100%;
|
||||
height: 350px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
}
|
||||
.banner .play-nav {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
bottom: 15px;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 10;
|
||||
}
|
||||
.banner .play-nav li {
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
}
|
||||
.banner .play-nav li a {
|
||||
background: #fff;
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
height: 5px;
|
||||
text-indent: -9999px;
|
||||
opacity: .4;
|
||||
filter: alpha(opacity=40);
|
||||
border-radius: none;
|
||||
}
|
||||
.banner .play-nav li.cur a {
|
||||
opacity: .8;
|
||||
filter: alpha(opacity=80);
|
||||
}
|
||||
.navbar-container {
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
top: -350px;
|
||||
}
|
||||
.navbar-container .navbar-list {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 350px;
|
||||
z-index: 999;
|
||||
width: 230px;
|
||||
}
|
||||
.navbar-container .navbar-list .navbar-list-item {
|
||||
height: 49px;
|
||||
line-height: 49px;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
padding-left: 20px;
|
||||
background-color: #000;
|
||||
opacity: .65;
|
||||
filter: alpha(opacity=65);
|
||||
border-bottom: 1px solid #1e1e1e;
|
||||
position: relative;
|
||||
}
|
||||
.navbar-container .navbar-list .navbar-list-item .navbar-list-item-icon {
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
}
|
||||
.navbar-container .navbar-list .navbar-list-item-hover {
|
||||
cursor: pointer;
|
||||
color: #11a68d;
|
||||
background-color: #fff;
|
||||
opacity: .95;
|
||||
filter: alpha(opacity=95);
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
.navbar-container .navbar-list-item-section {
|
||||
display: none;
|
||||
top: 0;
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
left: 229px;
|
||||
background-color: #fff;
|
||||
opacity: .95;
|
||||
filter: alpha(opacity=95);
|
||||
padding: 0 20px;
|
||||
min-height: 350px;
|
||||
max-width: 950px;
|
||||
box-shadow: 2px 0 5px rgba(0,0,0,.3);
|
||||
}
|
||||
.navbar-container .navbar-list-item-section .navbar-list-ul .navbar-list-li {
|
||||
float: left;
|
||||
}
|
||||
.navbar-container .navbar-list-item-section .navbar-list-item-section-name {
|
||||
display: block;
|
||||
width: 130px;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
}
|
||||
.navbar-container .navbar-list-item-section .navbar-list-item-section-name:hover {
|
||||
color: #11a68d;
|
||||
cursor: pointer;
|
||||
}
|
||||
.gaokao-class-container .container-title {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 15px;
|
||||
font-size: 30px;
|
||||
text-align: center;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
}
|
||||
.gaokao-class-container .title-underline {
|
||||
width: 40px;
|
||||
height: 4px;
|
||||
background-color: #11a68d;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.gaokao-class-container .gaokao-class-main {
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
padding-top: 30px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-class-main .gaokao-class-area .title {
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
color: #333;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-class-main .gaokao-class-area .title .detail {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.class-box-container {
|
||||
width: 796px;
|
||||
padding-top: 20px;
|
||||
float: left;
|
||||
}
|
||||
.class-box {
|
||||
float: left;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
width: 198px;
|
||||
height: 198px;
|
||||
margin-top: -1px;
|
||||
margin-left: -1px;
|
||||
border: 1px #f0f0f0 solid;
|
||||
}
|
||||
.class-box .class-link {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.class-box .box-content {
|
||||
margin-top: 45px;
|
||||
}
|
||||
.class-box .box-icon {
|
||||
width: 59px;
|
||||
height: 59px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.class-box .box-classname {
|
||||
line-height: 36px;
|
||||
font-size: 18px;
|
||||
color: #333;
|
||||
}
|
||||
.class-box .box-classnum {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.class-box .box-classnum {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.feed-box-wrap {
|
||||
width: 310px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-alllearn-area {
|
||||
padding-left: 75px;
|
||||
float: left;
|
||||
padding-top: 35px;
|
||||
}
|
||||
.feed-box-wrap .feed-title {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.feed-box-wrap .feed-more-link {
|
||||
font-size: 12px;
|
||||
float: right;
|
||||
}
|
||||
.feed-box-wrap .feed-list-content {
|
||||
width: 310px;
|
||||
height: 364px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.feed-box-wrap .feed-list {
|
||||
position: relative;
|
||||
}
|
||||
.feed-box-wrap .feed-list .feed-list-item {
|
||||
padding: 15px 0;
|
||||
}
|
||||
.feed-box-wrap .feed-list .list-border {
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.feed-box-wrap .feed-list .feed-list-item .feed-list-detail {
|
||||
margin-left: 55px;
|
||||
}
|
||||
.feed-box-wrap .feed-list .feed-list-item .detail-item {
|
||||
width: 250px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
}
|
||||
.feed-box-wrap .feed-list .feed-list-item .detail-item .item-name {
|
||||
margin-right: 4px;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
}
|
||||
.feed-box-wrap .feed-list .feed-list-item .detail-item .item-link {
|
||||
marign-left: 4px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.feed-box-wrap .feed-list .feed-list-item .item-img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.gaokao-class-container .gaokao-test-main {
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
clear: both;
|
||||
padding-top: 40px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .title {
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
color: #333;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .title .detail {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
margin-right: 30px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .title .area-content {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .title .area-content {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .title .more-area-link {
|
||||
margin-left: 10px;
|
||||
font-size: 12px;
|
||||
color: #11a68d;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .paper-main {
|
||||
padding-top: 30px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .paper-box {
|
||||
float: left;
|
||||
padding-right: 70px;
|
||||
border-right: 1px solid #f0f0f0;
|
||||
}
|
||||
.paper-list-wrap {
|
||||
width: 289px;
|
||||
}
|
||||
.paper-list-wrap .paper-title {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
line-height: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.paper-list-wrap .list-more-link {
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-name {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
padding-bottom: 10px;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
height: 14px;
|
||||
line-height: 14px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-name-link {
|
||||
cursor: pointer;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-detail {
|
||||
padding-left: 20px;
|
||||
color: #ccc;
|
||||
font-size: 12px;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-detail .list-item-link {
|
||||
color: #11a68d;
|
||||
font-size: 12px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-detail .item-separate {
|
||||
margin: 0 10px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .shiti-box {
|
||||
float: left;
|
||||
padding-left: 70px;
|
||||
}
|
||||
.hotpaper-list-wrap {
|
||||
width: 289px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-title {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
line-height: 20px;
|
||||
height: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.hotpaper-list-wrap .list-more-link {
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-list-item {
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-1 {
|
||||
background-position: 729px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .hotpaper-rank {
|
||||
margin-right: 10px;
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-image: url(../images/icon_849ac18.png);
|
||||
position: relative;
|
||||
top: 2px;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .school-paper-main {
|
||||
clear: both;
|
||||
}
|
||||
.school-paper-container {
|
||||
padding-top: 20px;
|
||||
}
|
||||
.school-paper-container .school-container-title {
|
||||
padding-bottom: 15px;
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.school-paper-container .school-paper-more-link {
|
||||
font-size: 12px;
|
||||
float: right;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item {
|
||||
width: 370px;
|
||||
height: 226px;
|
||||
border: 1px solid #f0f0f0;
|
||||
float: left;
|
||||
margin-right: 30px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap-bg1 {
|
||||
background: url(../images/school-wrap-bg1_22603c9.png);
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap-bg2 {
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikucommon/widget/tpl/pc/schoolpaper/images/school-wrap-bg2_c1220a1.png);
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap-bg3 {
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikucommon/widget/tpl/pc/schoolpaper/images/school-wrap-bg3_9b3e217.png);
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap {
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
position: relative;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .famous-school-link {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .school-info {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
-ms-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
margin-left: 30px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .school-info .name {
|
||||
font-size: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .school-info .info {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .school-info .info {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap .paper-item .paper-item-name {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap .paper-item {
|
||||
padding: 0 30px;
|
||||
line-height: 14px;
|
||||
height: 14px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap {
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.more-school-list {
|
||||
margin-left: -8px;
|
||||
max-height: 114px;
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
}
|
||||
.more-school-list .more-school-name {
|
||||
margin-top: 20px;
|
||||
display: inline-block;
|
||||
padding: 0 10px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
font-size: 14px;
|
||||
border: 1px solid #e6e6e6;
|
||||
margin-left: 8px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-name:before {
|
||||
content: "";
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: url(../images/paper-preicon_ed298be.png) no-repeat center center;
|
||||
background-size: cover;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap .paper-item .paper-item-name:before {
|
||||
content: "";
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: url(../images/paper-preicon_ed298be.png) no-repeat center center;
|
||||
background-size: cover;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.gaokao-class-container .gaokao-test-main .moni-box {
|
||||
padding-left: 70px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-2 {
|
||||
background-position: 693px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-3 {
|
||||
background-position: 657px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-4 {
|
||||
background-position: 621px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-5 {
|
||||
background-position: 585px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-6 {
|
||||
background-position: 549px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-7 {
|
||||
background-position: 513px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-8 {
|
||||
background-position: 477px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-9 {
|
||||
background-position: 441px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-10 {
|
||||
background-position: 405px 811px;
|
||||
}
|
||||
|
||||
.zige-class-container {
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.zige-class-container .container-title {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 15px;
|
||||
font-size: 30px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
}
|
||||
.zige-class-container .title-underline {
|
||||
width: 40px;
|
||||
height: 4px;
|
||||
background-color: #11a68d;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.zigetest-list {
|
||||
margin-bottom: 31px;
|
||||
}
|
||||
.zigetest-list .kuaiji-test {
|
||||
margin-right: 150px;
|
||||
}
|
||||
.zigetest-list-detail {
|
||||
position: relative;
|
||||
width: 515px;
|
||||
float: left;
|
||||
padding-top: 30px;
|
||||
}
|
||||
.zigetest-list-detail .list-title {
|
||||
height: 59px;
|
||||
line-height: 30px;
|
||||
}
|
||||
.zigetest-list-detail .list-title .testbg {
|
||||
width: 59px;
|
||||
height: 59px;
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.zigetest-list-detail .list-title .title-box {
|
||||
padding-top: 11px;
|
||||
}
|
||||
.zigetest-list-detail .list-title .title-name {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
line-height: 20px;
|
||||
height: 20px;
|
||||
margin-bottom: 9px;
|
||||
}
|
||||
.zigetest-list-detail .list-title .title-num {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
line-height: 14px;
|
||||
height: 14px;
|
||||
}
|
||||
.zigetest-list .kuaiji-test .testbg {
|
||||
background: url(../images/kuaiji_e2f3a5a.png);
|
||||
}
|
||||
.zigetest-list .kuaiji-test .test-list {
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.zigetest-list-detail .test-list {
|
||||
height: 104px;
|
||||
}
|
||||
.zigetest-list-detail .test-list .item-link {
|
||||
height: 14px;
|
||||
line-height: 14px;
|
||||
margin-top: 21px;
|
||||
width: 126px;
|
||||
display: block;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.zigetest-list .jianzhu-test .testbg {
|
||||
background: url(../images/jianzhu_1c45ff4.png);
|
||||
}
|
||||
.zigetest-list .zhiye-test .testbg {
|
||||
background: url(../images/zhiye_b90e264.png);
|
||||
}
|
||||
.zigetest-list .yiwei-test .testbg {
|
||||
background: url(../images/gongwuyuan_a828372.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
}
|
||||
.zigetest-list .jianzhu-test .test-list {
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.zigetest-list .zhiye-test {
|
||||
margin-right: 150px;
|
||||
}
|
||||
.body:after, .main:after {
|
||||
clear: both;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
height: 0!important;
|
||||
line-height: 0;
|
||||
font-size: xx-large;
|
||||
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
|
||||
}
|
@ -0,0 +1,199 @@
|
||||
.header {
|
||||
width : 100%;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
}
|
||||
.header .menu {
|
||||
width: 100%;
|
||||
background-color: #2F4056;
|
||||
color: #fff;
|
||||
}
|
||||
.header .menu .menu-contain {
|
||||
width: 1180px;
|
||||
height: 46px;
|
||||
line-height: 46px;
|
||||
background-color: #2F4056;
|
||||
margin: auto;
|
||||
}
|
||||
.header .menu .menu-contain .container-logo {
|
||||
float: left;
|
||||
width: 100px;
|
||||
height: 31px;
|
||||
margin-top: 7.5px;
|
||||
background-image: url(../images/logo_731bc32.png);
|
||||
}
|
||||
.header .menu .menu-contain .contain-login {
|
||||
position: relative;
|
||||
float: right;
|
||||
height: 46px;
|
||||
text-align: center;
|
||||
}
|
||||
.header .menu .menu-contain .contain-ul {
|
||||
float: right;
|
||||
}
|
||||
.header .menu .menu-contain .contain-ul .contain-li {
|
||||
float: left;
|
||||
width: 100px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-container {
|
||||
height: 46px;
|
||||
cursor: pointer;
|
||||
padding: 0 10px;
|
||||
height: 100%;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-option {
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
background-color: #313e45;
|
||||
width: 70px;
|
||||
top: 46px;
|
||||
left: 0px;
|
||||
z-index: 9999;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-option li {
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-option li a {
|
||||
color: #ccc;
|
||||
}
|
||||
.header .menu .menu-contain .contain-ul li .li-icon {
|
||||
font-size: 12px;
|
||||
margin-left: 4px;
|
||||
display: inline-block;
|
||||
-webkit-transform: rotate(0deg);
|
||||
-ms-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
-webkit-transform-origin: 50% 50% 0;
|
||||
-ms-transform-origin: 50% 50% 0;
|
||||
transform-origin: 50% 50% 0;
|
||||
-webkit-transition: -webkit-transform .2s ease-in 0s;
|
||||
transition: transform .2s ease-in 0s;
|
||||
}
|
||||
.header .menu .menu-contain .contain-ul .li-hover {
|
||||
background-color: #fff;
|
||||
color: #11a68d;
|
||||
}
|
||||
.header .menu .menu-contain .contain-ul .li-hover {
|
||||
background-color: #fff;
|
||||
color: #11a68d;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-container {
|
||||
height: 46px;
|
||||
cursor: pointer;
|
||||
padding: 0 10px;
|
||||
height: 100%;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-icon {
|
||||
margin-right: 8px;
|
||||
}
|
||||
.header .submenu-container {
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
filter: alpha(opacity=95);
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
z-index: 6666;
|
||||
box-shadow: 2px 3px 5px rgba(0,0,0,.3);
|
||||
}
|
||||
.header .submenu {
|
||||
width: 1182px!important;
|
||||
margin: 0 auto!important;
|
||||
background-color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
.header .subm-ul {
|
||||
float: left;
|
||||
margin: 3px 0;
|
||||
}
|
||||
.header .submenu .subm-ul .subm-li {
|
||||
float: left;
|
||||
width: 118px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
.header .submenu .subm-ul .subm-li a {
|
||||
color: #333;
|
||||
}
|
||||
.dis-none {
|
||||
display: none;
|
||||
}
|
||||
.header .submenu .all-exm {
|
||||
margin: 3px 0;
|
||||
}
|
||||
.header .submenu .all-exm .all-ul .all-ul-title {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 118px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-indent: 22px;
|
||||
color: #999;
|
||||
}
|
||||
.header .submenu .all-exm .all-ul .all-list {
|
||||
margin-left: 118px;
|
||||
}
|
||||
.header .submenu .all-exm .all-ul .title-icon {
|
||||
color: #149987;
|
||||
font-size: 12px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.header .submenu .all-exm .all-ul .all-list .all-list-li {
|
||||
float: left;
|
||||
width: 118px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
.header .submenu .all-exm .all-ul .all-list .all-list-li a:hover {
|
||||
text-decoration: none;
|
||||
color: #149987;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .user-photo {
|
||||
margin-top: 8px;
|
||||
margin-right: 20px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .photo-icon {
|
||||
font-size: 22px;
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 5px;
|
||||
-webkit-transform: rotate(0deg);
|
||||
-ms-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
-webkit-transform-origin: 50% 50% 0;
|
||||
-ms-transform-origin: 50% 50% 0;
|
||||
transform-origin: 50% 50% 0;
|
||||
-webkit-transition: -webkit-transform .2s ease-in 0s;
|
||||
transition: transform .2s ease-in 0s;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-container:hover {
|
||||
opacity: .8
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .black {
|
||||
background-color: #313e45;
|
||||
}
|
||||
.header .menu .menu-contain .contain-login .login-option li a:hover {
|
||||
color: #11a68d
|
||||
}
|
||||
.header .menu .menu-contain .jiaoshirukou:hover {
|
||||
color: #ccc
|
||||
}
|
||||
.header .menu .menu-contain .jiaoshirukou a {
|
||||
color: #fff
|
||||
}
|
||||
.header .menu .menu-contain .jiaoshirukou a:hover {
|
||||
color: #ccc
|
||||
}
|
@ -0,0 +1,287 @@
|
||||
body {
|
||||
font-family: "Microsoft Yahei";
|
||||
color: #333;
|
||||
background: #f5f5f6;
|
||||
}
|
||||
body {
|
||||
position: relative;
|
||||
height: auto;
|
||||
min-height: 100%;
|
||||
}
|
||||
.cnav {
|
||||
height: 98px;
|
||||
width: 100%;
|
||||
background-color: #826a6a;
|
||||
background-size: cover;
|
||||
}
|
||||
.cnav_b {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
left: 50px;
|
||||
height: 98px;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.cnav_left {
|
||||
float: left;
|
||||
width: 162px;
|
||||
height: 54px;
|
||||
margin: 22px 0 0 46px;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
line-height: 54px;
|
||||
background: url(../../images/member/index/top-kaos.png) no-repeat;
|
||||
padding-left: 55px;
|
||||
}
|
||||
.cnav_right {
|
||||
float: left;
|
||||
width: 720px;
|
||||
height: 5px;
|
||||
background: url(../../images/member/index/project-cnav.png) repeat-x;
|
||||
margin: 47px 0 0 0;
|
||||
}
|
||||
.cnav_right ul {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: 230px;
|
||||
}
|
||||
.cnav_right ul li {
|
||||
width: 120px;
|
||||
height: 50px;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 12px;
|
||||
margin-left: 32px;
|
||||
}
|
||||
.cnav_right ul li .Cnav_t {
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -54px 0;
|
||||
width: 37px;
|
||||
height: 37px;
|
||||
line-height: 37px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.cnav_right ul li span {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
color: #29bdb9;
|
||||
display: block;
|
||||
margin: 5px auto 5px auto;
|
||||
text-align: center;
|
||||
line-height: 27px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -26px 0;
|
||||
}
|
||||
.acm-container {
|
||||
padding-bottom: 200px;
|
||||
}
|
||||
.contentBox {
|
||||
margin-top: 20px;
|
||||
font-size: 14px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.info-cnt {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.contentBox .navLeft {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
width: 16.4%;
|
||||
background: rgb(41,186,185);
|
||||
}
|
||||
.contentBox .navLeft dl dt {
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
background: rgb(37,172,169);
|
||||
padding-left: 10px;
|
||||
font-size: 14px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
||||
.contentBox .newsRight {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
width: 83%;
|
||||
background: white;
|
||||
min-height: 279px;
|
||||
}
|
||||
.info-rBox {
|
||||
padding-left: 76px;
|
||||
}
|
||||
.info-rBox {
|
||||
padding-bottom: 40px!important;
|
||||
}
|
||||
.info-rBox {
|
||||
padding-left: 80px;
|
||||
position: relative;
|
||||
}
|
||||
.user_list {
|
||||
padding: 0px;
|
||||
}
|
||||
.user_list {
|
||||
padding: 20px 0px;
|
||||
vertical-align: top;
|
||||
width: 550px;
|
||||
}
|
||||
.info-table {
|
||||
width: 100%;
|
||||
margin-top: 28px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.info-label {
|
||||
position: relative;
|
||||
}
|
||||
.info-label span {
|
||||
position: absolute;
|
||||
left: -15px;
|
||||
top: 0px;
|
||||
color: #ff5a00;
|
||||
}
|
||||
a.btn_ok {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
padding: 0 2em;
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
background: #29bdb9;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
line-height: 28px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.acphoto {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
/* padding: 0 2em; */
|
||||
border: none;
|
||||
border-radius: 80px;
|
||||
height: 80px;
|
||||
width: 80px;
|
||||
background: #eee;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
line-height: 28px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
}
|
||||
.mybtn {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
.up_photo {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
padding: 0 2em;
|
||||
/* border: none; */
|
||||
border: 1px solid #29bdb9;
|
||||
border-radius: 0px;
|
||||
background: #29bdb9;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
line-height: 28px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.up_photo {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
padding: 0 2em;
|
||||
/* border: none; */
|
||||
border: 1px solid #29bdb9;
|
||||
border-radius: 0px;
|
||||
background: #29bdb9;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
line-height: 28px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
margin-top: 15px;
|
||||
}
|
||||
input, textarea {
|
||||
font-size: 12px;
|
||||
border: 0;
|
||||
font: 12px/1.5 Microsoft Yahei, verdana;
|
||||
}
|
||||
.cvcadd-text {
|
||||
height: 40px;
|
||||
border: 1px solid #d4d7db;
|
||||
font-size: 14px;
|
||||
padding: 0px 12px;
|
||||
width: 311px;
|
||||
}
|
||||
.cvcadd-text {
|
||||
position: relative;
|
||||
top: 10px;
|
||||
}
|
||||
.contentBox .navLeft dl dd {
|
||||
text-align: center;
|
||||
color: white;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.activeDd {
|
||||
background: #52cdc8;
|
||||
}
|
||||
.navLeft dl dd i {
|
||||
width: 17px;
|
||||
height: 14px;
|
||||
display: inline-block;
|
||||
background: url(../../images/member/account/icon-erro.png) no-repeat;
|
||||
margin: 0px 4px;
|
||||
position: relative;
|
||||
top: 1px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
body .footer {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
z-index: 0;
|
||||
}
|
||||
.footer {
|
||||
height: 173px;
|
||||
background: #838485;
|
||||
margin-top: 37px;
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.footer-left {
|
||||
width: 794px;
|
||||
float: left;
|
||||
padding-left: ;
|
||||
padding-top: 35px;
|
||||
}
|
||||
.footer-logo {
|
||||
float: left;
|
||||
padding: 0px 0px 0px 0px;
|
||||
width: 208px;
|
||||
}
|
||||
.footer-txt {
|
||||
overflow: hidden;
|
||||
font-size: 14px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.footer-txt a {
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.footer-right table {
|
||||
width: 100%;
|
||||
line-height: 26px;
|
||||
text-align: center;
|
||||
}
|
@ -0,0 +1,615 @@
|
||||
.banner_list {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.cnav {
|
||||
height: 98px;
|
||||
width: 100%;
|
||||
background-color: #5a4040;
|
||||
background-size: cover;
|
||||
}
|
||||
.public.cnav_b {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
position: relative;
|
||||
}
|
||||
.cnav_b {
|
||||
position: relative;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.cnav_b {
|
||||
width: 930px!important;
|
||||
}
|
||||
.cnav_left {
|
||||
float: left;
|
||||
width: 162px;
|
||||
height: 54px;
|
||||
margin: 22px 0 0 46px;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
line-height: 54px;
|
||||
background: url(../../images/member/index/top-kaos.png) no-repeat;
|
||||
padding-left: 55px;
|
||||
}
|
||||
.banner_list .cnav_right {
|
||||
width: 660px;
|
||||
}
|
||||
.cnav_right {
|
||||
float: left;
|
||||
width: 583px;
|
||||
height: 5px;
|
||||
background: url(../../images/member/index/project-cnav.png) repeat-x;
|
||||
margin: 47px 0 0 0;
|
||||
}
|
||||
.cnav_right ul {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: 230px;
|
||||
}
|
||||
.banner_list .cnav_right ul li {
|
||||
width: 105px;
|
||||
}
|
||||
.cnav_right ul li {
|
||||
width: 120px;
|
||||
height: 50px;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 12px;
|
||||
margin-left: 32px;
|
||||
}
|
||||
.cnav_right ul li span {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
color: #29bdb9;
|
||||
display: block;
|
||||
margin: 5px auto 5px auto;
|
||||
text-align: center;
|
||||
line-height: 27px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -26px 0;
|
||||
}
|
||||
.container {
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
.container {
|
||||
width: 100%;
|
||||
}
|
||||
.container {
|
||||
min-height: 560px;
|
||||
background-color: #f8f9fb;
|
||||
}
|
||||
.test_public {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
.test_public {
|
||||
width: 1100px;
|
||||
min-height: 233px;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px;
|
||||
}
|
||||
.test_public .topbt {
|
||||
height: 47px;
|
||||
}
|
||||
.topbt-2 {
|
||||
margin-top: 0px;
|
||||
}
|
||||
.topbt-2 {
|
||||
margin-top: 7px;
|
||||
margin-bottom: 7px;
|
||||
border-bottom: 1px solid #dadada;
|
||||
text-align: left;
|
||||
}
|
||||
.topbt {
|
||||
width: 1066px;
|
||||
height: 47px;
|
||||
line-height: 47px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -126px 0;
|
||||
margin: 0 auto 1px;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
}
|
||||
.topbt h3 {
|
||||
display: inline;
|
||||
font-size: 18px;
|
||||
margin-left: 15px;
|
||||
}
|
||||
.topbt h3 {
|
||||
font-weight: bolder!important;
|
||||
}
|
||||
.pronext {
|
||||
float: right;
|
||||
width: 54px;
|
||||
height: 26px;
|
||||
margin-top: 14px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat 0 -33px;
|
||||
}
|
||||
.pronext a {
|
||||
display: block;
|
||||
width: 49px;
|
||||
margin-left: 5px;
|
||||
font-size: 12px;
|
||||
line-height: 25px;
|
||||
color: #000;
|
||||
text-align: center;
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
.sp_Tcen {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
.sp_Tcen {
|
||||
width: 85%;
|
||||
min-height: : 478px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.sp_Tcb1 {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
overflow: hidden;
|
||||
line-height: 40px;
|
||||
font-size: 16px;
|
||||
padding-left: 79px;
|
||||
margin-top: 17px;
|
||||
}
|
||||
.sp_Tcb1 {
|
||||
font-size: 14px;
|
||||
overflow: visible;
|
||||
}
|
||||
.sp_Tcb1::before {
|
||||
content: "*";
|
||||
color: #ff8a00;
|
||||
position: relative;
|
||||
top: 0px;
|
||||
left: -4px;
|
||||
float: left;
|
||||
}
|
||||
.sp_Tcb1 span {
|
||||
position: relative;
|
||||
top: -5px;
|
||||
float: left;
|
||||
}
|
||||
.container .sp_Tcb1 ul {
|
||||
width: 800px;
|
||||
}
|
||||
.sp_Tcb1 ul {
|
||||
display: inline-block;
|
||||
width: 730px;
|
||||
}
|
||||
html body .prof_t .A_N_P_Ali {
|
||||
border: 1px solid #29bdb9;
|
||||
color: #29bdb9;
|
||||
}
|
||||
.sp_Tcb1 ul li, .sp_Tc2 ul li {
|
||||
float: left;
|
||||
height: 30px;
|
||||
padding: 0 13px;
|
||||
border: 1px solid #e4e6e9;
|
||||
background: #f8f9fb;
|
||||
font-size: 14px;
|
||||
color: #999;
|
||||
line-height: 27px;
|
||||
margin-left: 9px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
}
|
||||
.A_N_P_Ali em {
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -105px -19px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
position: absolute;
|
||||
left: calc(100% - 17px);
|
||||
top: -1px;
|
||||
display: block;
|
||||
}
|
||||
.sp_Tc21 {
|
||||
height: 35px;
|
||||
width: 100%;
|
||||
margin-top: 14px;
|
||||
padding-left: 63px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.fl {
|
||||
float: left;
|
||||
display: inline;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.sp_Tc21.sp_Tc6 i {
|
||||
color: #666;
|
||||
}
|
||||
.fa {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
margin: 0px 0px 0px 2px;
|
||||
}
|
||||
.apa_ri-t1, .apa_ri-t2, .apa_ri-t3 {
|
||||
height: 32px;
|
||||
width: 100%;
|
||||
margin-top: 14px;
|
||||
line-height: 30px;
|
||||
padding-left: 18px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.apa_ri-t3 ul {
|
||||
margin-left: 10px;
|
||||
}
|
||||
.apa_ri-t3 ul li {
|
||||
width: 213px;
|
||||
}
|
||||
.apa_ri-t3 ul li {
|
||||
float: left;
|
||||
width: 500px;
|
||||
height: 30px;
|
||||
}
|
||||
.apa_ri-t3 ul li input {
|
||||
width: 380px;
|
||||
height: 100%;
|
||||
border: 1px solid #dcdfe3;
|
||||
padding-left: 5px;
|
||||
color: #999;
|
||||
}
|
||||
.sp_Tc21 .dropdown {
|
||||
width: 150px;
|
||||
min-width: 150px;
|
||||
height:32px;
|
||||
}
|
||||
.dropdown .selected, .dropdown li {
|
||||
background: white;
|
||||
}
|
||||
.dropdown .carat {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.container .sp_Tcb-ti {
|
||||
height: initial;
|
||||
}
|
||||
.sp_Tcb-ti {
|
||||
height: 134px;
|
||||
}
|
||||
.sp_Tcb-ti {
|
||||
width: 100%;
|
||||
margin: 21px 0;
|
||||
font-size: 16px;
|
||||
padding-left: 83px;
|
||||
height: 200px;
|
||||
}
|
||||
.sp_Tcb-ti span {
|
||||
line-height: 22px;
|
||||
float: left;
|
||||
display: block;
|
||||
margin-right: 8px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.ueditor {
|
||||
float: left;
|
||||
width: 80%;
|
||||
}
|
||||
.danxuan {
|
||||
padding-left: 75px;
|
||||
font-size: 16px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.danxuan>span {
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
.start {
|
||||
color: #ff8a00;
|
||||
position: relative;
|
||||
top: 4px;
|
||||
}
|
||||
.container .danxuan .answer {
|
||||
overflow: initial;
|
||||
}
|
||||
.danxuan .answer {
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
position: relative;
|
||||
padding-left: 4px;
|
||||
}
|
||||
.danxuan .answer .an {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.danxuan .answer .an input, .danxuan .answer .an .forEditor {
|
||||
float: left;
|
||||
}
|
||||
.editorBox .content {
|
||||
position: relative;
|
||||
}
|
||||
.content {
|
||||
float: left;
|
||||
margin-left: 20px;
|
||||
width: 600px;
|
||||
min-height: 50px;
|
||||
background: #e7e7e7;
|
||||
}
|
||||
div[contenteditable="true"] {
|
||||
min-height: 30px;
|
||||
}
|
||||
.addQues-optextarea-div {
|
||||
font-family: 'microsoft yahei';
|
||||
font-size: 12px;
|
||||
}
|
||||
.addQues-optextarea-div {
|
||||
padding: 10px;
|
||||
}
|
||||
.addQues-optextarea-div {
|
||||
font-family: 'microsoft yahei';
|
||||
font-size: 12px;
|
||||
}
|
||||
.editorBox .editTip {
|
||||
position: absolute;
|
||||
bottom: -30px;
|
||||
background: rgb(102, 102, 102);
|
||||
z-index: 999;
|
||||
padding: 0px 10px;
|
||||
color: #2abcb8;
|
||||
height: 30px;
|
||||
line-height: 28px;
|
||||
padding-left: 8px;
|
||||
right: 0px;
|
||||
}
|
||||
.editTip a {
|
||||
font-size: 12px;
|
||||
color: white;
|
||||
}
|
||||
.fa {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
margin: 0px 0px 0px 2px;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
height: 10px;
|
||||
}
|
||||
.danxuan .add-answer {
|
||||
height: 37px;
|
||||
width: 285px;
|
||||
display: block;
|
||||
line-height: 35px;
|
||||
border: 1px dashed #29bdb9;
|
||||
color: #29bdb9;
|
||||
text-align: center;
|
||||
margin: 10px 0px;
|
||||
background: #f8f9fb;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
left: 225px;
|
||||
top: 0px;
|
||||
}
|
||||
.tiankongNum .dropdown {
|
||||
width: 80px;
|
||||
min-width: 80px;
|
||||
}
|
||||
.tiankong {
|
||||
padding: 0 136px;
|
||||
padding-right: 60px;
|
||||
}
|
||||
|
||||
.tiankong .content-model div.tkDiv {
|
||||
display: inline-block;
|
||||
width: 49%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.tiankong>div span.text-list {
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
color: white;
|
||||
background: #2abcb8;
|
||||
float: left;
|
||||
}
|
||||
.tiankong .content-model div.tkDiv div.tkAns {
|
||||
border: 1px solid #ccc;
|
||||
float: left;
|
||||
width: 240px;
|
||||
padding: 3px 10px;
|
||||
line-height: 22px;
|
||||
}
|
||||
textarea {
|
||||
font-size: 12px!important;
|
||||
}
|
||||
.container .des-bank>div {
|
||||
width: initial;
|
||||
}
|
||||
.des-bank>div {
|
||||
float: left;
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
left: -3px;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
.sp_Tcb-ti textarea {
|
||||
height: inherit;
|
||||
}
|
||||
.sp_Tcb-ti textarea {
|
||||
height: 200px;
|
||||
border: 1px solid #dfe1e4;
|
||||
padding: 5px;
|
||||
font-size: 14px;
|
||||
width: 721px;
|
||||
float: left;
|
||||
}
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
.container .sp_Tcb-ti {
|
||||
height: initial;
|
||||
}
|
||||
.des-bank-2 {
|
||||
margin-left: -24px;
|
||||
height: 100px;
|
||||
padding-top: 5px;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.diffcult {
|
||||
width: 100%;
|
||||
margin: 21px 0;
|
||||
font-size: 16px;
|
||||
padding-left: 78px;
|
||||
margin-top: -22px;
|
||||
}
|
||||
.diffcult>span {
|
||||
margin-right: 83px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.diffcult .time-a {
|
||||
width: 50px;
|
||||
}
|
||||
.diffcult .time-a {
|
||||
width: 60px;
|
||||
height: 30px;
|
||||
border: 1px solid #dadada;
|
||||
padding-left: 4px;
|
||||
margin: 0 0px;
|
||||
}
|
||||
.diffcult .xing-kong {
|
||||
cursor: pointer;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
display: inline-block;
|
||||
background: url(../../images/member/index/icon.png) no-repeat -59px -109px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
.submitBtns {
|
||||
padding-top: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.submitBtns a {
|
||||
padding: 6px 40px;
|
||||
background: #2abcb8;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
border: 1px solid #2abcb8;
|
||||
}
|
||||
.duoxuan {
|
||||
padding-left: 75px;
|
||||
font-size: 16px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.duoxuan>span {
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
.container .duoxuan .answer {
|
||||
overflow: initial;
|
||||
}
|
||||
.duoxuan .answer {
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
position: relative;
|
||||
padding-left: 4px;
|
||||
}
|
||||
.danxuan .add-answer:hover{background: #2abcb8;color: white}
|
||||
.addpro-ts {
|
||||
position: relative;
|
||||
margin-left: 12px;
|
||||
margin-top: 2px;
|
||||
left: -50px;
|
||||
top: -24px;
|
||||
}
|
||||
.duoxuan .add-answer:hover{background: #2abcb8;color: white}
|
||||
.addpro-ts {
|
||||
position: relative;
|
||||
margin-left: 12px;
|
||||
margin-top: 2px;
|
||||
left: -50px;
|
||||
top: -24px;
|
||||
}
|
||||
.duoxuan .add-answer {
|
||||
height: 37px;
|
||||
width: 285px;
|
||||
display: block;
|
||||
line-height: 35px;
|
||||
border: 1px dashed #29bdb9;
|
||||
color: #29bdb9;
|
||||
text-align: center;
|
||||
margin: 10px 0px;
|
||||
background: #f8f9fb;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
left: 225px;
|
||||
top: 0px;
|
||||
}
|
||||
.duoxuan .add-answer:hover{background: #2abcb8;color: white}
|
||||
.addpro-ts {
|
||||
position: relative;
|
||||
margin-left: 12px;
|
||||
margin-top: 2px;
|
||||
left: -50px;
|
||||
top: -24px;
|
||||
|
||||
}
|
||||
.addQues-close i {
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: url(../../images/member/index/icon.png) -53px -200px no-repeat;
|
||||
}
|
||||
.addQues-close {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.parse {
|
||||
padding-left: 45px;
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
body .footer {
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
z-index: 0;
|
||||
}
|
||||
.footer {
|
||||
height: 173px;
|
||||
background: #838485;
|
||||
margin-top: 37px;
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.footer-left {
|
||||
width: 794px;
|
||||
float: left;
|
||||
padding-left: ;
|
||||
padding-top: 35px;
|
||||
}
|
||||
.footer-logo {
|
||||
float: left;
|
||||
padding: 0px 0px 0px 0px;
|
||||
width: 208px;
|
||||
}
|
||||
.footer-txt {
|
||||
overflow: hidden;
|
||||
font-size: 14px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.footer-txt a {
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.footer-right table {
|
||||
width: 100%;
|
||||
line-height: 26px;
|
||||
text-align: center;
|
||||
}
|
@ -0,0 +1,393 @@
|
||||
body {
|
||||
font-family: "Microsoft Yahei";
|
||||
color: #333;
|
||||
background: #f5f5f6;
|
||||
}
|
||||
body {
|
||||
position: relative;
|
||||
height: auto;
|
||||
min-height: 100%;
|
||||
}
|
||||
.cnav {
|
||||
height: 98px;
|
||||
width: 100%;
|
||||
background-size: cover;
|
||||
background-color: #826a6a;
|
||||
}
|
||||
.cnav_b {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
left: 50px;
|
||||
height: 98px;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.cnav_left {
|
||||
float: left;
|
||||
width: 162px;
|
||||
height: 54px;
|
||||
margin: 22px 0 0 46px;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
line-height: 54px;
|
||||
background: url(../../images/member/index/top-kaos.png) no-repeat;
|
||||
padding-left: 55px;
|
||||
}
|
||||
.cnav_right {
|
||||
float: left;
|
||||
width: 720px;
|
||||
height: 5px;
|
||||
background: url(../../images/member/index/project-cnav.png) repeat-x;
|
||||
margin: 47px 0 0 0;
|
||||
}
|
||||
.cnav_right ul {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: 230px;
|
||||
}
|
||||
.cnav_right ul li {
|
||||
width: 120px;
|
||||
height: 50px;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 12px;
|
||||
margin-left: 32px;
|
||||
}
|
||||
.cnav_right ul li .Cnav_t {
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -54px 0;
|
||||
width: 37px;
|
||||
height: 37px;
|
||||
line-height: 37px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.cnav_right ul li span {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
color: #29bdb9;
|
||||
display: block;
|
||||
margin: 5px auto 5px auto;
|
||||
text-align: center;
|
||||
line-height: 27px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -26px 0;
|
||||
}
|
||||
.examContent {
|
||||
background: #f5f5f6;
|
||||
padding-top: 10px;
|
||||
overflow: hidden;
|
||||
padding-bottom: 200px;
|
||||
}
|
||||
.examContent>h2 {
|
||||
background: white;
|
||||
text-align: center;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
font-weight: normal;
|
||||
font-size: 20px;
|
||||
}
|
||||
.examContent .newsLeft, .examContent .newsR {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
background: white;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.examContent .newsLeft {
|
||||
width: 31%;
|
||||
}
|
||||
.examContent .newsLeft .baseNews {
|
||||
font-size: 14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.examContent .newsLeft h3 {
|
||||
font-size: 16px;
|
||||
color: #555;
|
||||
font-weight: normal;
|
||||
}
|
||||
.examContent .newsLeft h3 i {
|
||||
width: 7px;
|
||||
height: 10px;
|
||||
display: inline-block;
|
||||
background: url(../../images/member/index/icon.png) no-repeat -87px -85px;
|
||||
margin: 0px 4px;
|
||||
position: relative;
|
||||
top: -2px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.examContent .newsLeft .baseNews>div {
|
||||
border: 1px solid white;
|
||||
width: 320px;
|
||||
height: 100px;
|
||||
background: #f5f5f5;
|
||||
text-align: center;
|
||||
line-height: 100px;
|
||||
margin-top: 10px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
.examContent .newsLeft .baseNews>div span {
|
||||
width: 117px;
|
||||
height: 60px;
|
||||
line-height: 56px;
|
||||
background: whitesmoke;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
.examContent .newsLeft .baseNews>div .logoV img {
|
||||
max-height: 100%;
|
||||
max-width: 100%;
|
||||
border-radius: 55px;
|
||||
}
|
||||
.examContent .newsLeft .baseNews>div a {
|
||||
display: none;
|
||||
display: inline-block;
|
||||
float: right;
|
||||
position: relative;
|
||||
top: 30px;
|
||||
left: -10px;
|
||||
color: #2abcb8;
|
||||
}
|
||||
.fa {
|
||||
display: inline-block;
|
||||
font: normal normal normal 14px/1 FontAwesome;
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
.fa-pencil:before {
|
||||
content: "\f040";
|
||||
}
|
||||
.examContent .newsLeft .baseNews ul {
|
||||
overflow: hidden;
|
||||
padding: 25px 0px;
|
||||
padding-left: 14px;
|
||||
padding-bottom: 14px;
|
||||
}
|
||||
.examContent .newsLeft .baseNews ul li {
|
||||
float: left;
|
||||
width: 25%;
|
||||
}
|
||||
.examContent .newsLeft .baseNews ul li>div.li-p {
|
||||
background: rgb(253, 199, 125);
|
||||
border: 1px solid rgb(253, 199, 125);
|
||||
}
|
||||
.examContent .newsLeft .baseNews ul li>div {
|
||||
width: 65px;
|
||||
height: 65px;
|
||||
border-radius: 50%;
|
||||
border: 1px solid #52cdc8;
|
||||
text-align: center;
|
||||
background: #52cdc8;
|
||||
cursor: pointer;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.examContent .newsLeft .baseNews ul li>span {
|
||||
margin-left: 2px;
|
||||
}
|
||||
img, input, fieldset {
|
||||
border: 0 none;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.well {
|
||||
height: 10px;
|
||||
background: #f5f5f6;
|
||||
width: 340px;
|
||||
position: relative;
|
||||
left: -10px;
|
||||
}
|
||||
.examContent .newsLeft .userNews {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.examContent .newsLeft h3 {
|
||||
font-size: 16px;
|
||||
color: #555;
|
||||
font-weight: normal;
|
||||
}
|
||||
.examContent .newsLeft h3 i {
|
||||
width: 7px;
|
||||
height: 10px;
|
||||
display: inline-block;
|
||||
background: url(../../images/member/index/icon.png) no-repeat -87px -85px;
|
||||
margin: 0px 4px;
|
||||
position: relative;
|
||||
top: -2px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.examContent .newsLeft .userNews ul {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.examContent .newsLeft .userNews ul li {
|
||||
height: 60px;
|
||||
margin-bottom: 10px;
|
||||
background: #f5f5f6;
|
||||
line-height: 60px;
|
||||
font-size: 14px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
.examContent .newsLeft .userNews>a {
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
background: #2abcb8;
|
||||
color: white;
|
||||
}
|
||||
.examContent .newsLeft>span {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
color: #2abcb8;
|
||||
}
|
||||
.examContent .newsR {
|
||||
width: 66.2%;
|
||||
margin-left: 10px;
|
||||
padding: 0px;
|
||||
}
|
||||
.examContent .newsR .topNews {
|
||||
background: #f5f5f5;
|
||||
overflow: hidden;
|
||||
}
|
||||
.examContent .newsR .topNews ul, .examContent .newsR .topNews .newExam {
|
||||
float: left;
|
||||
width: 50%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.examContent .newsR .topNews ul li:nth-child(1) {
|
||||
background: rgb(114, 214, 212);
|
||||
}
|
||||
.examContent .newsR .topNews ul li {
|
||||
float: left;
|
||||
width: 47%;
|
||||
margin-bottom: 10px;
|
||||
margin-right: 10px;
|
||||
text-align: center;
|
||||
color: white;
|
||||
font-size: 14px;
|
||||
height: 140px;
|
||||
}
|
||||
.examContent .newsR .topNews ul li>span>b {
|
||||
font-size: 22px;
|
||||
margin-top: 4px;
|
||||
display: inline-block;
|
||||
}
|
||||
.examContent .newsR .topNews ul li:nth-child(2) {
|
||||
background: rgb(81, 194, 238);
|
||||
}
|
||||
.examContent .newsR .topNews ul li:nth-child(3) {
|
||||
background: rgb(253, 199, 125);
|
||||
}
|
||||
.examContent .newsR .topNews ul li:nth-child(4) {
|
||||
background: rgb(132, 219, 174);
|
||||
}
|
||||
.examContent .newsR .topNews .newExam {
|
||||
background: rgb(235, 255, 254);
|
||||
border: 2px dashed #2abcb8;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
height: 288px;
|
||||
}
|
||||
.examContent .newsR .topNews ul, .examContent .newsR .topNews .newExam {
|
||||
float: left;
|
||||
width: 50%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.examContent .newsR .topNews .newExam div.add-p {
|
||||
width: 145px;
|
||||
height: 145px;
|
||||
background: #ebfffe;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
top: 62px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.examContent .newsR .topNews .newExam>a {
|
||||
color: #2abcb8;
|
||||
font-size: 15px;
|
||||
position: relative;
|
||||
top: 80px;
|
||||
}
|
||||
.examContent .newsR .examTable {
|
||||
padding: 10px;
|
||||
min-height: 456px;
|
||||
}
|
||||
.examContent .newsR .examTable>h4 {
|
||||
font-size: 16px;
|
||||
}
|
||||
.examTable h4 {
|
||||
font-weight: normal;
|
||||
color: #555;
|
||||
}
|
||||
.examContent .newsR .examTable>h4 i {
|
||||
width: 7px;
|
||||
height: 10px;
|
||||
display: inline-block;
|
||||
background: url(../../images/member/index/icon.png) no-repeat -87px -85px;
|
||||
margin: 0px 4px;
|
||||
position: relative;
|
||||
top: -2px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.examContent .newsR .examTable table {
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
.examContent .newsR .examTable table thead {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
.examTable table tr th {
|
||||
font-weight: normal;
|
||||
color: #555;
|
||||
}
|
||||
.examContent .newsR .examTable .textNone {
|
||||
text-align: center;
|
||||
height: 289px;
|
||||
padding-top: 80px;
|
||||
}
|
||||
|
||||
body .footer {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
z-index: 0;
|
||||
}
|
||||
.footer {
|
||||
height: 173px;
|
||||
background: #838485;
|
||||
margin-top: 37px;
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.footer-left {
|
||||
width: 794px;
|
||||
float: left;
|
||||
padding-left: ;
|
||||
padding-top: 35px;
|
||||
}
|
||||
.footer-logo {
|
||||
float: left;
|
||||
padding: 0px 0px 0px 0px;
|
||||
width: 208px;
|
||||
}
|
||||
.footer-txt {
|
||||
overflow: hidden;
|
||||
font-size: 14px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.footer-txt a {
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.footer-right table {
|
||||
width: 100%;
|
||||
line-height: 26px;
|
||||
text-align: center;
|
||||
}
|
@ -0,0 +1,560 @@
|
||||
#wrapper {
|
||||
background: #fff;
|
||||
height: auto;
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
_height: 100%;
|
||||
width: 920px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
#wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
#head {
|
||||
padding-top: 40px;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#head {
|
||||
height: 75px;
|
||||
z-index: 100;
|
||||
}
|
||||
.mod-header {
|
||||
display: inline;
|
||||
font-size: 66px;
|
||||
}
|
||||
a {
|
||||
text-decoration: underline;
|
||||
color: #00c;
|
||||
}
|
||||
#nav {
|
||||
width: 100%;
|
||||
background: #fafafa;
|
||||
z-index: 1;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
#content {
|
||||
margin-top: 30px;
|
||||
width: 920px;
|
||||
background: url(../../images/member/login-bg.png) no-repeat 0 center;
|
||||
padding-bottom: 40px;
|
||||
display: none;
|
||||
}
|
||||
.login-container {
|
||||
_height: 475px;
|
||||
min-height: 475px;
|
||||
}
|
||||
.login-form {
|
||||
float: right;
|
||||
width: 354px;
|
||||
font-family: "Microsoft Yahei", 微软雅黑, Arial, STHeiti;
|
||||
box-shadow: rgb(239, 239, 239) 1px 1px 1px;
|
||||
padding-top: 25px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: rgb(239, 239, 239);
|
||||
border-image: initial;
|
||||
}
|
||||
.tang-pass-login {
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-login .pass-form {
|
||||
padding: 0 28px;
|
||||
}
|
||||
p.pass-form-logo {
|
||||
background: url(../../images/logo_731bc32.png) no-repeat left;
|
||||
background: url(../../images/logo_731bc32.png) no-repeat left;
|
||||
font-size: 16px;
|
||||
height: 32px;
|
||||
line-height: 46px;
|
||||
padding-left: 118px;
|
||||
color: #000;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.tang-pass-login a, .tang-pass-login label, .tang-pass-login p, .tang-pass-login li, .tang-pass-login input {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-login .pass-generalErrorWrapper {
|
||||
height: auto;
|
||||
_height: 28px;
|
||||
min-height: 28px;
|
||||
color: #fc4343;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tang-pass-login .pass-generalError {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
padding-top: 8px;
|
||||
}
|
||||
.tang-pass-login .pass-form-item.pass-form-item-userName {
|
||||
z-index: 21;
|
||||
}
|
||||
.tang-pass-login .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
z-index: 18;
|
||||
}
|
||||
.tang-pass-login .pass-form-item {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.tang-pass-login a, .tang-pass-login label, .tang-pass-login p, .tang-pass-login li, .tang-pass-login input {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-login .pass-form-item input.pass-text-input-userName, .tang-pass-login .pass-form-item input.pass-text-input-password {
|
||||
padding-left: 8px;
|
||||
width: 284px;
|
||||
}
|
||||
.tang-pass-login .pass-form-item .pass-text-input {
|
||||
position: relative;
|
||||
z-index: 17;
|
||||
display: block;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
width: 300px;
|
||||
font-size: 12px;
|
||||
color: rgb(102, 102, 102);
|
||||
font-family: Tahoma, Helvetica, "Microsoft Yahei", 微软雅黑, Arial, STHeiti;
|
||||
padding: 10px 8px;
|
||||
margin: 0px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: rgb(222, 222, 222);
|
||||
border-image: initial;
|
||||
transition: 0.3s;
|
||||
}
|
||||
.tang-pass-login a, .tang-pass-login label, .tang-pass-login p, .tang-pass-login li, .tang-pass-login input {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-login .pass-form-item .pass-clearbtn {
|
||||
position: absolute;
|
||||
z-index: 20;
|
||||
top: 14px;
|
||||
right: 6px;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
background: url(../../images/member/pass_login_icons.png) no-repeat 0 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-login .pass-suggestion-list {
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
z-index: 21;
|
||||
top: 42px;
|
||||
_top: 43px;
|
||||
left: 0;
|
||||
border: 1px solid #dedede;
|
||||
border-top: 0;
|
||||
background: #fff;
|
||||
width: 300px;
|
||||
}
|
||||
.tang-pass-login li.pass-item-suggsetion {
|
||||
position: relative;
|
||||
z-index: 2001;
|
||||
line-height: 14px;
|
||||
font-family: 宋体;
|
||||
font-size: 12px;
|
||||
color: rgb(51, 51, 51);
|
||||
cursor: pointer;
|
||||
word-break: break-all;
|
||||
padding: 5px 0px 5px 6px;
|
||||
}
|
||||
.tang-pass-login a, .tang-pass-login label, .tang-pass-login p, .tang-pass-login li, .tang-pass-login input {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-login li.pass-item-suggsetion a {
|
||||
position: absolute;
|
||||
display: none;
|
||||
top: 4px;
|
||||
right: 4px;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
background: url(../../images/member/pass_login_icons.png) no-repeat 0 0;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
text-decoration: none;
|
||||
color: #2e82ff;
|
||||
}
|
||||
.tang-pass-login a, .tang-pass-login label, .tang-pass-login p, .tang-pass-login li, .tang-pass-login input {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-login .pass-form-item .pass-item-selectbtn-userName {
|
||||
position: absolute;
|
||||
display: block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
background: url(../../images/member/pass_login_icons.png) no-repeat 0 -30px;
|
||||
top: 6px;
|
||||
right: 31px;
|
||||
_right: 50px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-login {
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-qrcode p.pass-form-logo {
|
||||
margin-left: 28px;
|
||||
}
|
||||
p.pass-form-logo {
|
||||
background: url(../../images/logo_731bc32.png) no-repeat left;
|
||||
background: url(../../images/logo_731bc32.png) no-repeat left;
|
||||
font-size: 16px;
|
||||
height: 32px;
|
||||
line-height: 46px;
|
||||
padding-left: 118px;
|
||||
color: #000;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.tang-pass-qrcode .tang-pass-qrcode-content {
|
||||
padding-top: 24px;
|
||||
height: 180px;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
}
|
||||
.tang-pass-qrcode .tang-pass-qrcode-imgWrapper {
|
||||
display: block;
|
||||
}
|
||||
.Qrcode-animationRight {
|
||||
-webkit-animation: marginRight .3s linear;
|
||||
-moz-animation: marginRight .3s linear;
|
||||
animation: marginRight .3s linear;
|
||||
-webkit-transition: all .3s liner;
|
||||
-moz-transition: all .3s liner;
|
||||
transition: .3s liner;
|
||||
-webkit-transform: translateX(0);
|
||||
-moz-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
.Qrcode-status-con {
|
||||
width: 138px;
|
||||
height: 138px;
|
||||
border: 1px solid #ecedee;
|
||||
padding: 9px;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
font-size: 14px;
|
||||
display: none;
|
||||
line-height: 20px;
|
||||
margin: 0 auto;
|
||||
-webkit-transition: all .3s liner;
|
||||
-moz-transition: all .3s liner;
|
||||
transition: .3s liner;
|
||||
-webkit-transform: translateX(0);
|
||||
-moz-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
.tang-pass-qrcode .tang-pass-qrcode-content img {
|
||||
width: 138px;
|
||||
height: 138px;
|
||||
}
|
||||
.tang-pass-login a, .tang-pass-login label, .tang-pass-login p, .tang-pass-login li, .tang-pass-login input {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.Qrcode-status-success .Qrcode-status-icon {
|
||||
background: url(../../images/member/qrcode-success.png) no-repeat center;
|
||||
}
|
||||
.Qrcode-status-con .Qrcode-status-icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin: 25px auto 15px;
|
||||
}
|
||||
.Qrcode-status-msg {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
}
|
||||
.Qrcode-status-con {
|
||||
width: 138px;
|
||||
height: 138px;
|
||||
border: 1px solid #ecedee;
|
||||
padding: 9px;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
font-size: 14px;
|
||||
display: none;
|
||||
line-height: 20px;
|
||||
margin: 0 auto;
|
||||
-webkit-transition: all .3s liner;
|
||||
-moz-transition: all .3s liner;
|
||||
transition: .3s liner;
|
||||
-webkit-transform: translateX(0);
|
||||
-moz-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
.Qrcode-status-error .Qrcode-status-icon {
|
||||
background: url(../../images/member/qrcode-error.png) no-repeat center;
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAIAAABuYg/PAAAAGXRFW…/D4I4xl3xkwAY7jblOLLskcyH7N0XjiBnHLHsac/8IMAC4AzcrBhyRBQAAAABJRU5ErkJggg==);
|
||||
}
|
||||
.Qrcode-status-con .Qrcode-status-icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin: 25px auto 15px;
|
||||
}
|
||||
.tang-pass-login p.Qrcode-refresh-btn {
|
||||
color: #38f;
|
||||
text-align: center;
|
||||
padding: 8px 10px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
margin-top: 3px;
|
||||
}
|
||||
.tang-pass-qrcode .tang-pass-qrcode-title {
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
line-height: 16px;
|
||||
padding-left: 0;
|
||||
}
|
||||
.tang-pass-qrcode .tang-pass-qrcode-title a {
|
||||
font-size: 16px;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
text-decoration: none;
|
||||
color: #2e82ff;
|
||||
}
|
||||
.tang-pass-footerBar {
|
||||
color: #2e82ff;
|
||||
margin-top: 40px;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
background: #f0f6ff;
|
||||
padding: 0 28px;
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-footerBarQrcode, .tang-pass-footerBarULogin {
|
||||
display: inline-block;
|
||||
width: 80px;
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-footerBarPhoenix {
|
||||
color: #2e82ff;
|
||||
display: inline-block;
|
||||
}
|
||||
.tang-pass-footerBarPhoenixSplit {
|
||||
width: 1px;
|
||||
background: #3582f8;
|
||||
height: 8px;
|
||||
margin-right: 16px;
|
||||
display: inline-block;
|
||||
}
|
||||
.tang-pass-login-phoenix {
|
||||
padding: 0 0 10px 16px;
|
||||
position: absolute;
|
||||
margin-top: -36px;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list {
|
||||
clear: both;
|
||||
line-height: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
font-size: 0;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .pass-phoenix-btn {
|
||||
float: left;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-list, .tang-pass-login-phoenix .pass-phoenix-list .bd-acc-list li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-list li {
|
||||
width: 26px;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-list, .tang-pass-login-phoenix .pass-phoenix-list .bd-acc-list li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tang-pass-footerBar a, .tang-pass-footerBar a:hover {
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
width: 80px;
|
||||
text-align: center;
|
||||
}
|
||||
a.pass-reglink {
|
||||
position: absolute;
|
||||
right: 26px;
|
||||
color: #2e82ff;
|
||||
top: 0;
|
||||
}
|
||||
.tang-pass-login .pass-form-item-submit {
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-login .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
z-index: 18;
|
||||
}
|
||||
.tang-pass-login .pass-form-item {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.tang-pass-login .pass-form-item-submit .pass-button-submit {
|
||||
font-size: 14px;
|
||||
font-weight: 800;
|
||||
border: 0;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-login .pass-form-item-submit input {
|
||||
width: 302px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
background: #2e82ff;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.tang-pass-login input[type=submit] {
|
||||
-webkit-appearance: none;
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.tang-pass-login .pass-form-item-submit .pass-fgtpwd {
|
||||
display: inline-block;
|
||||
margin-top: 12px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
text-decoration: none;
|
||||
color: #2e82ff;
|
||||
}
|
||||
p.pass-form-logo {
|
||||
background: url(../../images/logo_731bc32.png) no-repeat left;
|
||||
background: url(../../images/logo_731bc32.png) no-repeat left;
|
||||
font-size: 16px;
|
||||
height: 32px;
|
||||
line-height: 46px;
|
||||
padding-left: 118px;
|
||||
color: #000;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .phoenix-btn-item {
|
||||
display: block;
|
||||
margin-right: 15px;
|
||||
color: #00C;
|
||||
text-decoration: underline;
|
||||
padding-left: 20px;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
list-style: none;
|
||||
background: url(../../images/member/loginv4.png) no-repeat;
|
||||
_background: url(../../images/member/loginv4.gif) no-repeat;
|
||||
width: 0;
|
||||
height: 18px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-qzone .phoenix-btn-item {
|
||||
background-position: -6px -55px;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-tsina .phoenix-btn-item {
|
||||
background-position: -55px -33px;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-weixin .phoenix-btn-item {
|
||||
background-position: -30px -30px;
|
||||
}
|
||||
#foot {
|
||||
text-align: center;
|
||||
color: #7a77c8;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.tang-pass-login .pass-form-item .pass-text-input-focus {
|
||||
border-color: #488ee7
|
||||
}
|
||||
.tang-pass-login .pass-form-item .pass-clearbtn:hover {
|
||||
background-position: 0 -16px
|
||||
}
|
||||
.tang-pass-login .pass-form-item .pass-text-input-verifyCode {
|
||||
width: 130px;
|
||||
float: left;
|
||||
}
|
||||
.tang-pass-sms p.pass-form-item-smsVerifyCode, .tang-pass-login p.pass-form-item-verifyCode {
|
||||
position: relative;
|
||||
margin-bottom: 15px;
|
||||
width: 302px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-login .pass-form-item span.pass-clearbtn-verifyCode {
|
||||
left: 125px;
|
||||
z-index: 1999;
|
||||
}
|
||||
.tang-pass-login .pass-verifyCode {
|
||||
width: 90px;
|
||||
height: 40px;
|
||||
background: url(../../images/member/loading_16.gif) no-repeat center center;
|
||||
border: 1px solid #DDD;
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.tang-pass-login .pass-change-verifyCode {
|
||||
padding-left: 12px;
|
||||
font-size: 12px;
|
||||
text-decoration: none;
|
||||
line-height: 40px;
|
||||
float: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
text-decoration: none;
|
||||
color: #2e82ff;
|
||||
}
|
||||
.tang-pass-login .pass-form-item-memberPass {
|
||||
margin-bottom: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
.tang-pass-sms p.pass-form-item-smsVerifyCode:after, .tang-pass-login p.pass-form-item-verifyCode:after {
|
||||
line-height: 20px;
|
||||
content: "\20";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
}
|
@ -0,0 +1,133 @@
|
||||
.head {
|
||||
height: 59px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.head .head-bar {
|
||||
height: 59px;
|
||||
}
|
||||
.head .logo {
|
||||
padding-top: 0px;
|
||||
float: left;
|
||||
display: -webkit-box;
|
||||
line-height: 59px;
|
||||
}
|
||||
.head .logo a {
|
||||
max-width: 120px;
|
||||
height: 55px;
|
||||
line-height: 55px;
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
.head .logo img {
|
||||
float: none;
|
||||
max-height: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
.head .logo p {
|
||||
float: none;
|
||||
line-height: 59px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
.head .logo p span {
|
||||
color: #666666;
|
||||
font-size: 14px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
display: inline-block;
|
||||
padding-left: 10px;
|
||||
border-left: 1px solid #ececec;
|
||||
}
|
||||
.head .nav {
|
||||
margin-left: 50px;
|
||||
float: left;
|
||||
padding-top: 16px;
|
||||
}
|
||||
.head .nav li.active {
|
||||
border-bottom: 2px solid #29bdb9;
|
||||
font-weight: bold;
|
||||
}
|
||||
.head .nav li {
|
||||
padding: 0px 3px 6px;
|
||||
float: left;
|
||||
margin-right: 40px!important;
|
||||
}
|
||||
.head .nav li.active a {
|
||||
color: #333333;
|
||||
}
|
||||
.mguser {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
position: relative;
|
||||
}
|
||||
.mguser-box {
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
position: relative;
|
||||
}
|
||||
.mguser-cnt {
|
||||
position: absolute;
|
||||
width: 110px;
|
||||
top: 59px;
|
||||
background: rgb(161, 163, 162);
|
||||
padding-bottom: 2px;
|
||||
display: none;
|
||||
z-index: 100;
|
||||
right: 0px;
|
||||
}
|
||||
.mguser-cnt li a {
|
||||
height: 32px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
line-height: 32px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.head .nav li a {
|
||||
display: block;
|
||||
color: #666666;
|
||||
font-size: 18px;
|
||||
}
|
||||
.mguser-box a {
|
||||
border-bottom: 1px solid white;
|
||||
height: 48px;
|
||||
padding-left: 11px;
|
||||
padding-right: 27px;
|
||||
border-left: 1px solid #FFFFFF;
|
||||
border-right: 1px solid #FFFFFF;
|
||||
position: relative;
|
||||
left: 7px;
|
||||
}
|
||||
.mguser-box p {
|
||||
min-width: inherit;
|
||||
margin-right: 2px;
|
||||
line-height: 60px;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
color: #999;
|
||||
padding-left: 5px;
|
||||
max-width: 60px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.headlogotable {
|
||||
float: left;
|
||||
}
|
||||
.hgimg {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
float: left;
|
||||
margin-top: 13px;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
left: 5px;
|
||||
}
|
||||
.mguser-box i {
|
||||
border: none;
|
||||
font-size: 25px;
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,494 @@
|
||||
.tang-pass-pop-login {
|
||||
position: absolute;
|
||||
font-size: 14px;
|
||||
}
|
||||
.tang-pass-pop-login div.tang-title-dragable {
|
||||
cursor: move;
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-pop-login div.tang-title {
|
||||
background-color: #fff;
|
||||
border: 0;
|
||||
height: 24px;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
.tang-pass-pop-login div.tang-title .buttons {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
position: absolute;
|
||||
right: 16px;
|
||||
top: 12px;
|
||||
z-index: 100;
|
||||
}
|
||||
.tang-pass-pop-login div.tang-title span {
|
||||
display: none;
|
||||
}
|
||||
.tang-pass-pop-login div.tang-title .buttons a {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
outline: 0;
|
||||
display: block;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tang-pass-pop-login div.tang-title a.close-btn {
|
||||
background-image: url(https://passport.baidu.com/passApi/img/pass_login_icons.png);
|
||||
background-image: -webkit-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -moz-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -o-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -ms-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-position: -56px -48px;
|
||||
}
|
||||
.tang-pass-pop-login div.tang-body {
|
||||
background-color: #fff;
|
||||
}
|
||||
.tang-pass-pop-login .tang-body {
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
}
|
||||
.tang-pass-pop-login .pass-login-pop-content {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tang-pass-footerBarQrcode, .tang-pass-footerBarULogin {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 80px;
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
color: #2e82ff;
|
||||
}
|
||||
.tang-pass-pop-login .clearfix:after, .tang-pass-pop-login .pass-form-item:after {
|
||||
visibility: hidden;
|
||||
display: block;
|
||||
font-size: 0;
|
||||
content: " ";
|
||||
clear: both;
|
||||
height: 0;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
.tang-pass-pop-login .pass-login-pop-form {
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-pop-login .tang-pass-login {
|
||||
position: relative;
|
||||
z-index: 18;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form {
|
||||
padding: 0 28px;
|
||||
}
|
||||
p.pass-form-logo {
|
||||
background: url(../../images/logo_731bc32.png) no-repeat left;
|
||||
_background: url(https://passport.baidu.com/passApi/img/loginlogo.gif) no-repeat left;
|
||||
font-size: 16px;
|
||||
height: 32px;
|
||||
line-height: 46px;
|
||||
padding-left: 118px;
|
||||
color: #000;
|
||||
margin-top: 1px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.tang-pass-pop-login .pass-generalErrorWrapper {
|
||||
margin: 0;
|
||||
padding: 0 0 2px;
|
||||
}
|
||||
.tang-pass-pop-login span.pass-generalError {
|
||||
display: block;
|
||||
min-height: 14px;
|
||||
height: auto;
|
||||
_height: 14px;
|
||||
padding: 8px 0 2px;
|
||||
line-height: 14px;
|
||||
font-size: 12px;
|
||||
color: #fc4343;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item.pass-form-item-userName {
|
||||
z-index: 19;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
margin-bottom: 16px;
|
||||
z-index: 18;
|
||||
}
|
||||
.tang-pass-pop-login input, .tang-pass-pop-login textarea, .tang-pass-pop-login select {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
transition: none;
|
||||
outline: 0;
|
||||
}
|
||||
.tang-pass-pop-login .pass-text-input {
|
||||
display: block;
|
||||
position: relative;
|
||||
height: 20px;
|
||||
padding: 10px 8px;
|
||||
border: 1px solid #ddd;
|
||||
transition: .3s;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
width: 284px;
|
||||
}
|
||||
.pass-clearbtn {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: 6px;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
background: url(https://passport.baidu.com/passApi/img/pass_login_icons.png) no-repeat -88px -48px;
|
||||
background-image: -webkit-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -moz-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -o-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -ms-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-pop-login li.pass-item-suggsetion {
|
||||
position: relative;
|
||||
line-height: 14px;
|
||||
font-family: ËÎÌå;
|
||||
font-size: 12px;
|
||||
color: rgb(51, 51, 51);
|
||||
cursor: pointer;
|
||||
word-break: break-all;
|
||||
padding: 10px 0px 10px 6px;
|
||||
}
|
||||
.tang-pass-pop-login li {
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-pop-login li.pass-item-suggsetion a {
|
||||
position: absolute;
|
||||
display: none;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
background-image: url(https://passport.baidu.com/passApi/img/pass_login_icons.png);
|
||||
background-image: -webkit-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -moz-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -o-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-image: -ms-image-set(url(https://passport.baidu.com/passApi/img/pass_login_icons.png) 1x,url(https://passport.baidu.com/passApi/img/pass_login_icons_retina.png) 2x);
|
||||
background-repeat: no-repeat;
|
||||
background-position: -88px -48px;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
font-size: 12px;
|
||||
color: rgb(46, 130, 255);
|
||||
font-family: Tahoma, Helvetica, "Microsoft Yahei", ΢ÈíÑźÚ, Arial, STHeiti;
|
||||
text-decoration: none;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item-memberPass input {
|
||||
vertical-align: middle;
|
||||
}
|
||||
input[type=checkbox], input[type=radio] {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item-memberPass label {
|
||||
display: inline;
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
margin-bottom: 16px;
|
||||
z-index: 18;
|
||||
}
|
||||
.tang-pass-pop-login .clearfix, .tang-pass-pop-login .pass-form-item {
|
||||
zoom: 1;
|
||||
}
|
||||
#passport-login-pop input.pass-button-submit, #passport-login-pop .tang-pass-login input.pass-button-submit {
|
||||
background-image: none;
|
||||
}
|
||||
#passport-login-pop .pass-button-submit {
|
||||
background: #2fad85;
|
||||
}
|
||||
.tang-pass-login input[type=submit] {
|
||||
-webkit-appearance: none;
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.tang-pass-pop-login-color-blue .pass-button {
|
||||
background-color: #3f89ec;
|
||||
}
|
||||
.tang-pass-pop-login .pass-button {
|
||||
display: block;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
width: 300px;
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background: #3f89ec;
|
||||
border: 0;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-webkit-transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
transition: .3s;
|
||||
}
|
||||
.pass-form-item-submit a.pass-fgtpwd {
|
||||
display: inline-block;
|
||||
margin-top: 12px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
font-size: 12px;
|
||||
color: rgb(46, 130, 255);
|
||||
font-family: Tahoma, Helvetica, "Microsoft Yahei", ΢ÈíÑźÚ, Arial, STHeiti;
|
||||
text-decoration: none;
|
||||
}
|
||||
.tang-pass-pop-login a.pass-sms-btn {
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50px;
|
||||
}
|
||||
.tang-pass-footerBar {
|
||||
color: #2e82ff;
|
||||
margin-top: 40px;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
background: #f0f6ff;
|
||||
padding: 0 28px;
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-footerBarPhoenix {
|
||||
color: #2e82ff;
|
||||
display: inline-block;
|
||||
}
|
||||
.tang-pass-footerBar a, .tang-pass-footerBar a:hover {
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
width: 80px;
|
||||
text-align: right;
|
||||
}
|
||||
a.pass-reglink {
|
||||
position: absolute;
|
||||
right: 26px;
|
||||
color: #2e82ff;
|
||||
top: 0;
|
||||
}
|
||||
.tang-pass-footerBarPhoenixSplit {
|
||||
width: 1px;
|
||||
background: #3582f8;
|
||||
height: 8px;
|
||||
margin-right: 16px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
left: 78px;
|
||||
_top: 20px;
|
||||
}
|
||||
.tang-pass-footerBarPhoenixItem {
|
||||
position: absolute;
|
||||
margin-top: -52px;
|
||||
left: 98px;
|
||||
}
|
||||
.tang-pass-footerBar a, .tang-pass-footerBar a:hover {
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
width: 80px;
|
||||
text-align: right;
|
||||
}
|
||||
.tang-pass-pop-login .tang-pass-login-phoenix {
|
||||
padding-top: 15px;
|
||||
padding-left: 20px;
|
||||
z-index: 16;
|
||||
padding-bottom: 15px;
|
||||
_margin-top: -10px;
|
||||
}
|
||||
.tang-pass-pop-login .tang-pass-login-phoenix .pass-phoenix-list {
|
||||
position: relative;
|
||||
height: 40px;
|
||||
overflow: hidden;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .pass-phoenix-btn {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-login-phoenix .bd-acc-list, .tang-pass-login-phoenix .bd-acc-list li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-login-phoenix .bd-acc-list li {
|
||||
width: 26px;
|
||||
}
|
||||
.tang-pass-login-phoenix .bd-acc-list, .tang-pass-login-phoenix .bd-acc-list li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-tsina .phoenix-btn-item {
|
||||
background-position: -55px -33px;
|
||||
}
|
||||
.tang-pass-pop-login .tang-pass-login-phoenix .phoenix-btn-item {
|
||||
display: block;
|
||||
margin-right: 15px;
|
||||
color: #00C;
|
||||
text-decoration: underline;
|
||||
padding-left: 20px;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
list-style: none;
|
||||
background: url(https://passport.baidu.com/passApi/img/loginv4.png) no-repeat;
|
||||
_background: url(https://passport.baidu.com/passApi/img/loginv4.gif) no-repeat;
|
||||
width: 0;
|
||||
height: 18px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-weixin .phoenix-btn-item {
|
||||
background-position: -30px -30px;
|
||||
}
|
||||
.tang-pass-pop-login .tang-pass-login-phoenix .phoenix-btn-item {
|
||||
display: block;
|
||||
margin-right: 15px;
|
||||
color: #00C;
|
||||
text-decoration: underline;
|
||||
padding-left: 20px;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
list-style: none;
|
||||
background: url(https://passport.baidu.com/passApi/img/loginv4.png) no-repeat;
|
||||
_background: url(https://passport.baidu.com/passApi/img/loginv4.gif) no-repeat;
|
||||
width: 0;
|
||||
height: 18px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tang-pass-login-phoenix .pass-phoenix-list .bd-acc-qzone .phoenix-btn-item {
|
||||
background-position: -6px -55px;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item-smsVerifyCode .pass-item-timer, .tang-pass-pop-login .pass-form-item-smsVerifyCode .pass-item-time-timing {
|
||||
margin-right: 0;
|
||||
}
|
||||
.tang-pass-pop-login .pass-item-timer, .tang-pass-pop-login .pass-item-time-timing {
|
||||
display: block;
|
||||
padding: 0;
|
||||
float: right;
|
||||
height: 40px;
|
||||
width: 105px;
|
||||
font-size: 12px;
|
||||
transition: .3s;
|
||||
color: #2e82ff;
|
||||
border: 1px solid #dedede;
|
||||
background-color: #fff;
|
||||
cursor: default;
|
||||
border-radius: 0;
|
||||
}
|
||||
.tang-pass-pop-login .tang-pass-sms-tip {
|
||||
color: #999;
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
}
|
||||
.tang-pass-pop-login .pass-text-input {
|
||||
display: block;
|
||||
position: relative;
|
||||
height: 20px;
|
||||
padding: 10px 8px;
|
||||
border: 1px solid #ddd;
|
||||
transition: .3s;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
width: 284px;
|
||||
}
|
||||
.tang-pass-pop-login .pass-text-input-smsVerifyCode {
|
||||
width: 168px;
|
||||
float: left;
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item span.pass-clearbtn-smsVerifyCode {
|
||||
left: 165px;
|
||||
}
|
||||
.tang-pass-sms-agreement {
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
font-size: 12px;
|
||||
color: #969696;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
font-size: 12px;
|
||||
text-decoration: none;
|
||||
color: #2e82ff;
|
||||
font-family: Tahoma,Helvetica,"Microsoft Yahei","΢ÈíÑźÚ",Arial,STHeiti;
|
||||
}
|
||||
.tang-pass-sms .pass-form-item .pass-sms-link-back {
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
text-align: right;
|
||||
float: right;
|
||||
margin-right: -3px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
.tang-pass-login a {
|
||||
font-size: 12px;
|
||||
text-decoration: none;
|
||||
color: #2e82ff;
|
||||
font-family: Tahoma,Helvetica,"Microsoft Yahei","΢ÈíÑźÚ",Arial,STHeiti;
|
||||
}
|
||||
.tang-pass-pop-login .tang-pass-sms {
|
||||
display: none;
|
||||
padding: 0 28px;
|
||||
}
|
||||
.tang-pass-pop-login-color-blue .pass-text-input-error {
|
||||
border-color: #fc4343;
|
||||
}
|
||||
.tang-pass-pop-login-color-blue .pass-text-input-focus {
|
||||
border-color: #488ee7
|
||||
}
|
||||
.tang-pass-pop-login div.tang-title a.close-btn:hover {
|
||||
background-position: -72px -48px
|
||||
}
|
||||
.tang-pass-pop-login .pass-form-item .pass-clearbtn:hover {
|
||||
background-position: -104px -48px
|
||||
}
|
||||
.pass-login-pop-content .pass-text-input-hover {
|
||||
border-color:#488ee7;
|
||||
}
|
||||
.tang-pass-pop-login .pass-text-input-verifyCode {
|
||||
width: 130px;
|
||||
float: left;
|
||||
}
|
||||
.tang-pass-pop-login .pass-verifyCodeImgParent {
|
||||
display: block;
|
||||
float: left;
|
||||
height: 42px;
|
||||
}
|
||||
.tang-pass-pop-login img.pass-verifyCode {
|
||||
width: 90px;
|
||||
height: 40px;
|
||||
border: 1px solid #ddd;
|
||||
margin-left: 10px;
|
||||
background: url(https://passport.baidu.com/passApi/img/loading.gif) center center no-repeat;
|
||||
}
|
||||
.tang-pass-pop-login .pass-change-verifyCode {
|
||||
position: relative;
|
||||
top: 12px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.mask {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 10000;
|
||||
background-color: #000;
|
||||
opacity: .7;
|
||||
filter: alpha(opacity=70);
|
||||
display: none;
|
||||
}
|
@ -0,0 +1,366 @@
|
||||
body {
|
||||
font-family: "Microsoft Yahei";
|
||||
color: #333;
|
||||
background: #f5f5f6;
|
||||
}
|
||||
body .footer {
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
z-index: 0;
|
||||
}
|
||||
.cnav {
|
||||
height: 98px;
|
||||
width: 100%;
|
||||
background-color: #826a6a;
|
||||
background-size: cover;
|
||||
}
|
||||
.cnav_b {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
left: 50px;
|
||||
height: 98px;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.cnav_left {
|
||||
float: left;
|
||||
width: 162px;
|
||||
height: 54px;
|
||||
margin: 22px 0 0 46px;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
line-height: 54px;
|
||||
background: url(../../images/member/index/top-kaos.png) no-repeat;
|
||||
padding-left: 55px;
|
||||
}
|
||||
.cnav_right {
|
||||
float: left;
|
||||
width: 720px;
|
||||
height: 5px;
|
||||
background: url(../../images/member/index/project-cnav.png) repeat-x;
|
||||
margin: 47px 0 0 0;
|
||||
}
|
||||
.cnav_right ul {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: 230px;
|
||||
}
|
||||
.cnav_right ul li {
|
||||
width: 120px;
|
||||
height: 50px;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 12px;
|
||||
margin-left: 32px;
|
||||
}
|
||||
.cnav_right ul li .Cnav_t {
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -54px 0;
|
||||
width: 37px;
|
||||
height: 37px;
|
||||
line-height: 37px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.cnav_right ul li span {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
color: #29bdb9;
|
||||
display: block;
|
||||
margin: 5px auto 5px auto;
|
||||
text-align: center;
|
||||
line-height: 27px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -26px 0;
|
||||
}
|
||||
.test_public {
|
||||
width: 1100px;
|
||||
min-height: 233px;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.test_public .topbt {
|
||||
height: 47px;
|
||||
}
|
||||
.topbt-2 {
|
||||
margin-top: 7px;
|
||||
margin-bottom: 7px;
|
||||
border-bottom: 1px solid #dadada;
|
||||
text-align: left;
|
||||
}
|
||||
.topbt {
|
||||
width: 1066px;
|
||||
height: 47px;
|
||||
line-height: 47px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -126px 0;
|
||||
margin: 0 auto 1px;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
}
|
||||
.topbt h3 {
|
||||
display: inline;
|
||||
font-size: 18px;
|
||||
margin-left: 15px;
|
||||
}
|
||||
.topbt h3 {
|
||||
font-weight: bolder!important;
|
||||
}
|
||||
.test_public .con_top {
|
||||
height: 53px;
|
||||
margin: 0 17px;
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
.fl {
|
||||
float: left;
|
||||
display: inline;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.select-n {
|
||||
width: 140px;
|
||||
height: 26px;
|
||||
border: 1px solid #dadada;
|
||||
margin-right: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
.select-t {
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
background: #29bdb9 url(../../images/member/index/icon.png) no-repeat 0px -59px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
right: -13px;
|
||||
top: 0px;
|
||||
}
|
||||
.test_public .con_top>span {
|
||||
width: 130px;
|
||||
height: 34px;
|
||||
line-height: 34px;
|
||||
cursor: pointer;
|
||||
background: #ff8a00;
|
||||
float: right;
|
||||
margin-top: 7px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
.test_public .con_top>span a {
|
||||
color: #fff;
|
||||
}
|
||||
.test_public .con_top p {
|
||||
width: 158px;
|
||||
}
|
||||
.test_public .con_top p {
|
||||
width: 106px;
|
||||
height: 34px;
|
||||
float: right;
|
||||
border: none;
|
||||
margin: 7px 18px 0 0;
|
||||
}
|
||||
.test_public .con_top p span:first-child {
|
||||
border-right: none;
|
||||
background: initial;
|
||||
}
|
||||
.test_public .con_top p span {
|
||||
float: left;
|
||||
width: 52px;
|
||||
height: 34px;
|
||||
}
|
||||
.Id-img {
|
||||
display: none;
|
||||
position: absolute;
|
||||
left: -160px;
|
||||
top: 40px;
|
||||
z-index: 99;
|
||||
}
|
||||
.public-tab {
|
||||
width: 1066px;
|
||||
height: 44px;
|
||||
margin: 2px auto 0;
|
||||
background: #ddf9f9;
|
||||
}
|
||||
.public-tab tr td:nth-of-type(1) {
|
||||
text-align: left;
|
||||
padding-left: 45px;
|
||||
}
|
||||
.plist-table {
|
||||
width: 1066px;
|
||||
margin: 5px auto 0;
|
||||
border: 1px solid #eee;
|
||||
}
|
||||
.plist-ctab {
|
||||
width: 1064px;
|
||||
background: #F5F5F6;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.plist-ctab tr {
|
||||
height: 95px;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
background: #F5F5F6;
|
||||
}
|
||||
.plist-ctab tr td {
|
||||
position: relative;
|
||||
}
|
||||
.plist-bt {
|
||||
text-align: left;
|
||||
font-size: 14px;
|
||||
}
|
||||
.plist-bt span {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 19px;
|
||||
height: 17px;
|
||||
background: #ff8a00;
|
||||
border-radius: 2px;
|
||||
line-height: 13px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-size: 22px;
|
||||
cursor: pointer;
|
||||
margin: 12px 12px 10px 10px;
|
||||
}
|
||||
.plist-bt .M {
|
||||
word-break: break-all;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 260px;
|
||||
}
|
||||
.plist-bt em {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
margin-left: 41px;
|
||||
}
|
||||
.plist-ctab tr td {
|
||||
position: relative;
|
||||
}
|
||||
.plist-x span {
|
||||
margin: 3px 0 0 39px;
|
||||
display: block;
|
||||
}
|
||||
.plist-x a {
|
||||
color: #29bdb9;
|
||||
margin: 0 4px;
|
||||
}
|
||||
.plist-ctab a {
|
||||
cursor: pointer;
|
||||
}
|
||||
.plist-x ul {
|
||||
width: 160px;
|
||||
margin-left: 42px;
|
||||
}
|
||||
.plist-x ul li:nth-of-type(odd) {
|
||||
background: #29bdb9;
|
||||
margin-right: 6px;
|
||||
}
|
||||
.plist-x ul li {
|
||||
width: 74px;
|
||||
height: 27px;
|
||||
margin-top: 6px;
|
||||
border: 1px solid #29bdb9;
|
||||
color: #29bdb9;
|
||||
line-height: 25px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.plist-x ul li:nth-of-type(odd) a {
|
||||
color: #fff;
|
||||
}
|
||||
.plist-x ul li a {
|
||||
display: block;
|
||||
}
|
||||
.plist-ctab2 {
|
||||
width: 980px;
|
||||
margin: 4px auto;
|
||||
border: 1px solid #eee;
|
||||
}
|
||||
.plist-ctab2 tr.tr_header {
|
||||
height: 44px;
|
||||
background: #eaedf1;
|
||||
padding: 0;
|
||||
}
|
||||
.plist-ctab2 tr {
|
||||
height: 60px;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.plist-ctab2 tr.tr_header td:nth-of-type(1) {
|
||||
position: relative;
|
||||
}
|
||||
.plist-ctab2 tr.tr_header td:nth-of-type(1) span {
|
||||
position: absolute;
|
||||
left: -1px;
|
||||
top: 0;
|
||||
width: 3px;
|
||||
height: 44px;
|
||||
background: #6d7781;
|
||||
}
|
||||
.plist-ctab2 tr td:nth-of-type(2) {
|
||||
text-align: left;
|
||||
padding-left: 10px;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
}
|
||||
.plist-ctab2 tr td:nth-of-type(2) span {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 160px;
|
||||
}
|
||||
.plist-ctab2 tr td:nth-of-type(2) span {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
}
|
||||
.pagination {
|
||||
display: -webkit-inline-box;
|
||||
}
|
||||
.footer {
|
||||
height: 173px;
|
||||
background: #838485;
|
||||
margin-top: 37px;
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.footer-left {
|
||||
width: 794px;
|
||||
float: left;
|
||||
padding-left: ;
|
||||
padding-top: 35px;
|
||||
}
|
||||
.footer-logo {
|
||||
float: left;
|
||||
padding: 0px 0px 0px 0px;
|
||||
width: 208px;
|
||||
}
|
||||
.footer-txt {
|
||||
overflow: hidden;
|
||||
font-size: 14px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.footer-txt a {
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.footer-right table {
|
||||
width: 100%;
|
||||
line-height: 26px;
|
||||
text-align: center;
|
||||
}
|
@ -0,0 +1,536 @@
|
||||
.banner_list {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.cnav {
|
||||
height: 98px;
|
||||
width: 100%;
|
||||
background-color: #826a6a;
|
||||
background-size: cover;
|
||||
}
|
||||
.public.cnav_b {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
position: relative;
|
||||
}
|
||||
.cnav_b {
|
||||
position: relative;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.cnav_b {
|
||||
width: 930px!important;
|
||||
}
|
||||
.cnav_left {
|
||||
float: left;
|
||||
width: 162px;
|
||||
height: 54px;
|
||||
margin: 22px 0 0 46px;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
line-height: 54px;
|
||||
background: url(../../images/member/index/top-kaos6.png) no-repeat;
|
||||
padding-left: 55px;
|
||||
}
|
||||
.banner_list .cnav_right {
|
||||
width: 660px;
|
||||
}
|
||||
.cnav_right {
|
||||
float: left;
|
||||
width: 583px;
|
||||
height: 5px;
|
||||
background: url(../../images/member/index/project-cnav.png) repeat-x;
|
||||
margin: 47px 0 0 0;
|
||||
}
|
||||
.cnav_right ul {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: 230px;
|
||||
}
|
||||
.banner_list .cnav_right ul li {
|
||||
width: 105px;
|
||||
}
|
||||
.cnav_right ul li {
|
||||
width: 120px;
|
||||
height: 50px;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 12px;
|
||||
margin-left: 32px;
|
||||
}
|
||||
.cnav_right ul li span {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
color: #29bdb9;
|
||||
display: block;
|
||||
margin: 5px auto 5px auto;
|
||||
text-align: center;
|
||||
line-height: 27px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -26px 0;
|
||||
}
|
||||
|
||||
.test_public {
|
||||
position: relative;
|
||||
}
|
||||
.test_public {
|
||||
width: 1100px;
|
||||
min-height: 233px;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
}
|
||||
.pronext {
|
||||
float: right;
|
||||
width: initial;
|
||||
height: 26px;
|
||||
margin-top: 14px;
|
||||
border: 1px solid #2abcb8;
|
||||
background: inherit;
|
||||
color: #2abcb8;
|
||||
}
|
||||
.pronext {
|
||||
border: none;
|
||||
}
|
||||
.pronext a {
|
||||
display: block;
|
||||
width: initial;
|
||||
margin-left: 2px;
|
||||
font-size: 12px;
|
||||
line-height: 25px;
|
||||
color: #2abcb8;
|
||||
text-align: center;
|
||||
font-weight: 100;
|
||||
padding: 0 4px;
|
||||
}
|
||||
.pronext a {
|
||||
background: #2abcb8;
|
||||
color: white;
|
||||
}
|
||||
.test_public .topbt {
|
||||
height: 47px;
|
||||
}
|
||||
.topbt-2 {
|
||||
margin-top: 7px;
|
||||
margin-bottom: 7px;
|
||||
border-bottom: 1px solid #dadada;
|
||||
text-align: left;
|
||||
}
|
||||
.topbt {
|
||||
width: 1066px;
|
||||
height: 47px;
|
||||
line-height: 47px;
|
||||
background: url(../../images/member/index/project-candidate.png) no-repeat -126px 0;
|
||||
margin: 0 auto 1px;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
}
|
||||
.topbt h3 {
|
||||
display: inline;
|
||||
font-size: 18px;
|
||||
margin-left: 15px;
|
||||
}
|
||||
.topbt h3 {
|
||||
font-weight: bolder!important;
|
||||
}
|
||||
.test {
|
||||
font-size: 14px;
|
||||
position: absolute;
|
||||
left: 101px;
|
||||
color: #333;
|
||||
top: 76px;
|
||||
}
|
||||
.addQues_btn {
|
||||
height: 20px;
|
||||
}
|
||||
.addQues_btn span {
|
||||
left: 879px;
|
||||
}
|
||||
.addQues_btn span {
|
||||
display: block;
|
||||
width: 130px;
|
||||
height: 34px;
|
||||
line-height: 34px;
|
||||
cursor: pointer;
|
||||
background: #ff8a00;
|
||||
position: relative;
|
||||
left: 866px;
|
||||
top: 7px;
|
||||
text-align: center;
|
||||
}
|
||||
.addQues_btn span a {
|
||||
color: #fff;
|
||||
}
|
||||
.addQues_btn span a {
|
||||
font-size: 14px!important;
|
||||
}
|
||||
.addQues_btn span a {
|
||||
display: block;
|
||||
}
|
||||
.apa_ri {
|
||||
margin: 23px auto 10px;
|
||||
width: 920px;
|
||||
}
|
||||
.apa_ri-tab {
|
||||
background: #fff;
|
||||
height: 271px;
|
||||
width: 100%;
|
||||
padding-top: 22px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.apa_ri-tab {
|
||||
height: inherit;
|
||||
min-height: inherit;
|
||||
}
|
||||
.apa_ri .apa_ri-t {
|
||||
width: initial;
|
||||
}
|
||||
.apa_ri-t {
|
||||
border: 1px solid #eceef4;
|
||||
background: #fafbfc;
|
||||
width: 900px;
|
||||
min-height: 233px;
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
.apa_ri-t {
|
||||
min-height: inherit;
|
||||
}
|
||||
.quesQueryBox {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.quesQueryBox tr {
|
||||
line-height: 35px;
|
||||
}
|
||||
.quesQueryBox tr td:nth-child(1) {
|
||||
width: 85px;
|
||||
text-align: right;
|
||||
}
|
||||
.quesQueryBox tr td {
|
||||
padding: 2px 2px;
|
||||
line-height: 35px;
|
||||
}
|
||||
.quesQueryBox tr td:nth-child(3) {
|
||||
width: 85px;
|
||||
text-align: right;
|
||||
}
|
||||
.quesQueryBox tr td:nth-child(5) {
|
||||
width: 85px;
|
||||
text-align: right;
|
||||
}
|
||||
.quesQueryBox input {
|
||||
width: 145px;
|
||||
height: 100%;
|
||||
border: 1px solid #dcdfe3;
|
||||
padding-left: 5px;
|
||||
margin-right: 10px;
|
||||
height: 32px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.apa_ri-two {
|
||||
margin-top: 0px;
|
||||
}
|
||||
.apa_ri-two {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
background: #fff;
|
||||
margin-top: 10px;
|
||||
font-size: 14px;
|
||||
padding: 10px 0;
|
||||
}
|
||||
.apa_ri-two .apa_ri-qx {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
.apa_ri-qx {
|
||||
width: 100%;
|
||||
padding: 0 5px 0 10px;
|
||||
clear: both;
|
||||
height: 20px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.apa_ri-two input {
|
||||
margin: 0 5px;
|
||||
}
|
||||
.apa_ri-qx span {
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.mOperation-btn a.btn {
|
||||
height: 32px;
|
||||
margin: 0 auto;
|
||||
line-height: 32px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
background: #29bdb9;
|
||||
margin-top: 14px;
|
||||
cursor: pointer;
|
||||
padding: 4px 20px;
|
||||
}
|
||||
.mOperation-btn {
|
||||
float: left;
|
||||
margin-top: -7px;
|
||||
}
|
||||
.chouTiBoxNo {
|
||||
margin-left: 10px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.apa_ri .quesManBox .apa_ri-cen {
|
||||
margin: 0px;
|
||||
}
|
||||
.apa_ri .apa_ri-cen {
|
||||
margin: 0px 0 10px 10px;
|
||||
}
|
||||
.apa_ri .apa_ri-cen {
|
||||
width: initial;
|
||||
}
|
||||
.apa_ri-cen {
|
||||
width: 900px;
|
||||
height: auto;
|
||||
border: 1px solid #eceef4;
|
||||
position: relative;
|
||||
margin: 10px 0 0 10px;
|
||||
}
|
||||
.quesesBox em {
|
||||
font-style: italic;
|
||||
}
|
||||
.quesesBox .apa_ri-cenbt {
|
||||
padding-left: 0px;
|
||||
}
|
||||
.apa_ri-cenbt {
|
||||
height: auto;
|
||||
width: 100%;
|
||||
background: #f2f2f2;
|
||||
display: inline-block;
|
||||
padding-left: 37px;
|
||||
}
|
||||
.quesesBox .apa_ri-cenbt input {
|
||||
margin: 8px 5px 8px 10px;
|
||||
}
|
||||
.apa_ri-cenbt input {
|
||||
margin-left: 5px;
|
||||
float: left;
|
||||
margin: 8px 10px;
|
||||
}
|
||||
.quesesBox .apa_ri-cenbt span {
|
||||
width: initial;
|
||||
position: initial;
|
||||
margin: 5px 5px;
|
||||
}
|
||||
.apa_ri-cenbt span {
|
||||
float: left;
|
||||
line-height: 20px;
|
||||
display: block;
|
||||
width: 750px;
|
||||
margin: 5px 0;
|
||||
}
|
||||
.apa_ri-cenbt span {
|
||||
float: left;
|
||||
line-height: 20px;
|
||||
display: block;
|
||||
width: 750px;
|
||||
margin: 5px 0;
|
||||
position: relative;
|
||||
left: 6px;
|
||||
}
|
||||
.quesNo {
|
||||
padding-right: 2px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.apa_ri-cenbt pre.titlePre {
|
||||
font-family: " ΢ÈíÑźÚ"important;
|
||||
padding: 6px;
|
||||
}
|
||||
.titlePre {
|
||||
float: right;
|
||||
max-width: 750px;
|
||||
}
|
||||
.titlePre {
|
||||
float: none;
|
||||
max-width: inherit;
|
||||
}
|
||||
.quesManBox .apa_ri-cenbt .quesTitle {
|
||||
padding: 0px;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
height: 10px;
|
||||
}
|
||||
.clear:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
.quesesBox .apa_ri-cenul {
|
||||
height: initial;
|
||||
}
|
||||
.apa_ri-cenul {
|
||||
width: 730px;
|
||||
}
|
||||
.apa_ri-cenul {
|
||||
margin-left: 139px;
|
||||
}
|
||||
.apa_ri-cenul {
|
||||
width: 800px;
|
||||
height: 110px;
|
||||
margin-left: 32px;
|
||||
position: relative;
|
||||
float: none;
|
||||
line-height: normal;
|
||||
}
|
||||
.apa_ri-cenul .answerBox {
|
||||
display: -webkit-box;
|
||||
}
|
||||
.quesesBox .apa_ri-cenzb {
|
||||
padding: 5px 12px 10px 30px;
|
||||
height: 45px;
|
||||
margin: 0px;
|
||||
width: initial;
|
||||
}
|
||||
.quesesBox .apa_ri-cenzb {
|
||||
margin: 5px 0 10px 48px;
|
||||
}
|
||||
.apa_ri-cenzb {
|
||||
height: 26px;
|
||||
width: 845px;
|
||||
color: #999;
|
||||
font-size: 12px;
|
||||
margin: 5px 0 10px 37px;
|
||||
}
|
||||
.quesesBox .apa_ri-cenzb em {
|
||||
font-style: inherit;
|
||||
}
|
||||
.apa_ri-cenzb span em {
|
||||
margin: 0 8px;
|
||||
color: #e4e4e4;
|
||||
}
|
||||
.quesesBox .apa_ri-cenzb em {
|
||||
font-style: inherit;
|
||||
}
|
||||
.apa_ri-cenzb span em {
|
||||
margin: 0 8px;
|
||||
color: #e4e4e4;
|
||||
}
|
||||
.apa_ri-cenzb span.fl {
|
||||
float: left;
|
||||
}
|
||||
.fl {
|
||||
float: left;
|
||||
display: inline;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.apa_ri-cenzb span {
|
||||
float: right;
|
||||
line-height: 30px;
|
||||
display: block;
|
||||
height: 32px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.apa_ri-cenzb span a {
|
||||
float: left;
|
||||
padding: 0 5px;
|
||||
min-width: 60px;
|
||||
height: 30px;
|
||||
font-size: 12px;
|
||||
color: #29bdb9;
|
||||
line-height: 28px;
|
||||
text-align: center;
|
||||
border: 1px solid #29bdb9;
|
||||
margin-left: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.apa_ri-cenzb span a {
|
||||
margin-left: 5px;
|
||||
}
|
||||
.apa_ri-cenzb span a {
|
||||
border-radius: 4px;
|
||||
}
|
||||
.apa_ri-t5 {
|
||||
margin: 10px auto 10px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.apa_ri-t5 {
|
||||
width: 98px;
|
||||
height: 32px;
|
||||
margin: 30px auto 10px;
|
||||
line-height: 32px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
background: #29bdb9;
|
||||
cursor: pointer;
|
||||
}
|
||||
.apa_ri-qx span em {
|
||||
color: #29bdb9;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.A_N_P_select span, ul, li {
|
||||
line-height: 30px;
|
||||
}
|
||||
.A_N_P_select span, ul, li {
|
||||
line-height: 28px;
|
||||
}
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.quesesBox .apa_ri-cenbt .quesTitle span {
|
||||
margin: 0px;
|
||||
float: none;
|
||||
display: initial;
|
||||
}
|
||||
.quesesBox .apa_ri-cenbt span {
|
||||
width: initial;
|
||||
position: initial;
|
||||
margin: 5px 5px;
|
||||
}
|
||||
.quesesBox img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.footer {
|
||||
height: 173px;
|
||||
background: #838485;
|
||||
margin-top: 37px;
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.public {
|
||||
width: 1098px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
.footer-left {
|
||||
width: 794px;
|
||||
float: left;
|
||||
padding-left: ;
|
||||
padding-top: 35px;
|
||||
}
|
||||
.footer-logo {
|
||||
float: left;
|
||||
padding: 0px 0px 0px 0px;
|
||||
width: 208px;
|
||||
}
|
||||
.footer-txt {
|
||||
overflow: hidden;
|
||||
font-size: 14px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.footer-txt a {
|
||||
color: #f3f3f5;
|
||||
}
|
||||
.footer-right table {
|
||||
width: 100%;
|
||||
line-height: 26px;
|
||||
text-align: center;
|
||||
}
|
@ -0,0 +1,452 @@
|
||||
#wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#head {
|
||||
height: 75px;
|
||||
z-index: 100;
|
||||
}
|
||||
#head .mod-header {
|
||||
display: block;
|
||||
width: 330px;
|
||||
}
|
||||
.mod-header {
|
||||
display: inline;
|
||||
font-size: 66px;
|
||||
}
|
||||
#head .mod-header a {
|
||||
display: none;
|
||||
width: 330px;
|
||||
height: 76px;
|
||||
}
|
||||
#head .mod-header a img {
|
||||
margin-top: 15px;
|
||||
}
|
||||
#nav {
|
||||
background: 0 0;
|
||||
}
|
||||
#nav .nav-2 {
|
||||
height: 20px;
|
||||
background: url(../../images/reg_hr.png) no-repeat center top;
|
||||
}
|
||||
.clearfix {
|
||||
zoom: 1;
|
||||
}
|
||||
.mod-reg {
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-reg {
|
||||
position: relative;
|
||||
width: 720px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.reg-content {
|
||||
float: left;
|
||||
}
|
||||
.tang-pass-reg .pass-generalErrorWrapper {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-generalError {
|
||||
color: #fc4343;
|
||||
display: block;
|
||||
height: 40px;
|
||||
font-size: 12px;
|
||||
line-height: 40px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg .pass-label {
|
||||
display: block;
|
||||
float: left;
|
||||
height: 42px;
|
||||
width: 65px;
|
||||
margin-right: 10px;
|
||||
line-height: 42px;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
font-weight: 700;
|
||||
text-align: right;
|
||||
}
|
||||
.tang-pass-reg .pass-text-input {
|
||||
display: block;
|
||||
position: relative;
|
||||
float: left;
|
||||
height: 16px;
|
||||
width: 328px;
|
||||
padding: 11px 10px;
|
||||
margin-right: 10px;
|
||||
border: 1px solid #ddd;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
transition: .3s;
|
||||
}
|
||||
.tang-pass-reg .pass-clearbtn {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background: url(../../images/reg_icons.png) -32px -24px no-repeat;
|
||||
top: 12px;
|
||||
left: 398px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password {
|
||||
position: absolute;
|
||||
float: left;
|
||||
background: 0 0;
|
||||
padding: 0;
|
||||
top: 0;
|
||||
left: 434px;
|
||||
height: 40px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error {
|
||||
display: none;
|
||||
float: left;
|
||||
position: relative;
|
||||
width: 250px;
|
||||
top: 12px;
|
||||
color: #fc4343;
|
||||
height: 16px;
|
||||
line-height: 14px;
|
||||
padding-left: 20px;
|
||||
background: url(../../images/err_small.png) 0 0 no-repeat;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .nopwd .pwd-strength-sum {
|
||||
display: none;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .nopwd .pwd-strength-detail {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .pwd-strength-detail {
|
||||
background: url(../../images/reg_icons.png) -80px -24px no-repeat;
|
||||
padding-left: 20px;
|
||||
line-height: 16px;
|
||||
display: block;
|
||||
width: 220px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .pwd-strength-bg {
|
||||
background-color: #eee;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .pwd-strength-sco, .tang-pass-reg .pass-item-error-password .pwd-strength-bg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 130px;
|
||||
height: 10px;
|
||||
line-height: 10px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist .pwd-checklist-item-error {
|
||||
background-position: -86px -144px;
|
||||
color: #fc4343;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist .pwd-checklist-item-success {
|
||||
background-position: -86px -128px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist .pwd-checklist-item-success {
|
||||
background-position: -86px -128px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist {
|
||||
margin-left: 10px;
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #ddd;
|
||||
box-shadow: 1px 1px 1px #efefef;
|
||||
background: #f9f9f9;
|
||||
width: 200px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 0;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow em.arrowa {
|
||||
color: #ddd;
|
||||
left: 0;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow em {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
font-size: 20px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow em.arrowb {
|
||||
color: #f9f9f9;
|
||||
left: 1px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext-password {
|
||||
padding-top: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext {
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item:after {
|
||||
visibility: hidden;
|
||||
display: block;
|
||||
font-size: 0;
|
||||
content: " ";
|
||||
clear: both;
|
||||
height: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-placeholder {
|
||||
top: 12px;
|
||||
line-height: 16px;
|
||||
_line-height: 18px;
|
||||
font-size: 14px;
|
||||
color: #ccc;
|
||||
left: 87px;
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
left: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext-password {
|
||||
padding-top: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip-password {
|
||||
position: absolute;
|
||||
left: 430px;
|
||||
top: 0;
|
||||
zoom: 1;
|
||||
z-index: 20;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip {
|
||||
width: 270px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg .pass-label {
|
||||
display: block;
|
||||
float: left;
|
||||
height: 42px;
|
||||
width: 65px;
|
||||
margin-right: 10px;
|
||||
line-height: 42px;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
font-weight: 700;
|
||||
text-align: right;
|
||||
}
|
||||
.tang-pass-reg .pass-text-input-verifyCode {
|
||||
width: 156px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span, .tang-pass-reg .pass-form-item-verifyCodeSend span {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-clearbtn-verifyCode {
|
||||
left: 228px;
|
||||
}
|
||||
.tang-pass-reg .pass-clearbtn {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background: url(../../images/reg_icons.png) -32px -24px no-repeat;
|
||||
top: 12px;
|
||||
left: 398px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-reg input.pass-button-verifyCodeSend {
|
||||
border-radius: 0;
|
||||
border: 1px solid #ddd;
|
||||
height: 40px;
|
||||
background: #f7f7f7;
|
||||
color: #666;
|
||||
font-weight: 400;
|
||||
width: 160px;
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.tang-pass-reg .pass-button {
|
||||
display: block;
|
||||
height: 50px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background-image: none;
|
||||
border-radius: 3px;
|
||||
border: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
-webkit-transition: .3s;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span.pass-item-error, .tang-pass-reg .pass-form-item-verifyCodeSend span.pass-item-error {
|
||||
display: none;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span, .tang-pass-reg .pass-form-item-verifyCodeSend span {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span, .tang-pass-reg .pass-form-item-verifyCodeSend span {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip-verifyCodeSend {
|
||||
padding-top: 2px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip {
|
||||
width: 270px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-isAgree {
|
||||
margin-left: 75px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-isAgree .pass-checkbox-isAgree {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-isAgree label {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.tang-pass-reg a {
|
||||
text-decoration: none;
|
||||
color: #1b66c7;
|
||||
}
|
||||
.tang-pass-reg a {
|
||||
text-decoration: none;
|
||||
color: #1b66c7;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-submit {
|
||||
position: relative;
|
||||
left: 75px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg a {
|
||||
text-decoration: none;
|
||||
color: #1b66c7;
|
||||
}
|
||||
.mod-reg .tang-pass-reg .pass-button-submit {
|
||||
background-color: #3f89ec;
|
||||
}
|
||||
.tang-pass-reg .pass-button-submit {
|
||||
float: left;
|
||||
width: 350px;
|
||||
}
|
||||
.tang-pass-reg .pass-button {
|
||||
display: block;
|
||||
height: 50px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background-image: none;
|
||||
border-radius: 3px;
|
||||
border: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
-webkit-transition: .3s;
|
||||
}
|
||||
#foot {
|
||||
text-align: center;
|
||||
color: #7a77c8;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
#foot {
|
||||
margin-top: 80px;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.reg-sms {
|
||||
width: 258px;
|
||||
border: 1px solid #d1eeff;
|
||||
background-color: #f5fbff;
|
||||
margin-top: 40px;
|
||||
}
|
||||
.reg-sms {
|
||||
float: right;
|
||||
}
|
||||
.mod-reg .login-link, .mod-regnotify .login-link {
|
||||
position: absolute;
|
||||
top: -70px;
|
||||
right: 0;
|
||||
color: #666;
|
||||
}
|
||||
.mod-reg .login-link span, .mod-regnotify .login-link span {
|
||||
float: left;
|
||||
display: block;
|
||||
margin-right: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.mod-reg .login-link, .mod-regnotify .login-link {
|
||||
position: absolute;
|
||||
top: -70px;
|
||||
right: 0;
|
||||
color: #666;
|
||||
}
|
||||
.mod-reg .login-btn, .mod-regnotify .login-btn {
|
||||
font-weight: 700;
|
||||
color: #666;
|
||||
height: 32px;
|
||||
width: 64px;
|
||||
border: 0;
|
||||
background: url(../../images/reg_icons.png) no-repeat 0 -48px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext-userName {
|
||||
padding-top: 6px;
|
||||
}
|
||||
.mod-reg .tang-pass-reg .pass-text-input-error {
|
||||
border-color: #fc4343;
|
||||
}
|
||||
.mod-reg .tang-pass-reg .pass-text-input-focus {
|
||||
border-color: #488ee7
|
||||
}
|
||||
.tang-pass-reg input.pass-text-input-disabled {
|
||||
background: #f6f6f6;
|
||||
border-color: #ebebeb;
|
||||
color: #c5c5c5
|
||||
}
|
||||
.tang-pass-reg span.pass-item-error-isAgree {
|
||||
top: 0;
|
||||
float: none;
|
||||
}
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
}
|
@ -0,0 +1,682 @@
|
||||
.content-wp {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.content-wp {
|
||||
min-height: 500px;
|
||||
}
|
||||
.main {
|
||||
width: auto;
|
||||
_position: relative;
|
||||
_right: -3px;
|
||||
_margin-left: -3px;
|
||||
}
|
||||
.title-bar {
|
||||
height: 96px;
|
||||
padding-bottom: 20px;
|
||||
background-color: #364044;
|
||||
}
|
||||
.title-bar .title-inner {
|
||||
height: 100%;
|
||||
position: relative;
|
||||
width: 1180px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.menu-contain, .footer-contain, .submenu, .title-bar .title-inner {
|
||||
width: 1200px!important;
|
||||
}
|
||||
.title-bar .title-inner .paper-title {
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
padding: 30px 0 20px;
|
||||
}
|
||||
.title-bar .title-inner .paper-title .title {
|
||||
font-size: 20px;
|
||||
color: #FFF;
|
||||
font-weight: 700;
|
||||
}
|
||||
.title-bar .title-inner .paper-title li {
|
||||
float: left;
|
||||
}
|
||||
.title-bar .title-inner .paper-title .learnnum {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAICAYAAAAiJnXPAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAArElEQVQY04XQMWoCcRDF4f8ibEDQG4iBgLWXCIK3SWGTU2QLjV/KYJEqXU6wNtaxtBHs0geUlbWZBVkEp3nMj/eGmUnpqvCMb/zhjD0+ME7tQj/MNdaYYBC6jgEFHppAD5sIbNHFFIvQbvAaP8gTvgLUmOEJVfQVhsEbzyph3go93gkVCRneA/wib62XB6/xiU5zV4YX/KNsPaLEEa/Ibn1xiDfscMIBS4yufRcqk9A/rWo3ZwAAAABJRU5ErkJggg==);
|
||||
}
|
||||
.title-bar .title-inner .paper-title .down-num {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAKCAYAAABi8KSDAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAkElEQVQY02NgQAMzZ860B+J/QOzAQAgAFXkD8X8QjUsBOxC3AbEEsmIgFoeKsyMrtgHiP0B8HYhToYpToHyQuB266dFQiR9Qxd+g/GhczgkD4l9QxSA6DF3BeSAuReIHAPEtEI0kVgzEFxigpswgEEIzQOoYoNa9BuJuIO7Agruh8r9AiuuB+DvUBlwYJF8LACZFqWQkNkkgAAAAAElFTkSuQmCC);
|
||||
}
|
||||
.title-bar .title-inner .paper-title .learnnum, .title-bar .title-inner .paper-title .down-num, .title-bar .title-inner .paper-title .from-org {
|
||||
margin-left: 20px;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
background-position: 0 10px;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 14px;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li.first {
|
||||
padding-left: 0;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li {
|
||||
float: left;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li a {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
color: #FFF;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 4px solid #364044;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li.last {
|
||||
border-right: 0;
|
||||
}
|
||||
.title-bar .title-inner .download-btn-wrap {
|
||||
position: absolute;
|
||||
right: 1px;
|
||||
top: 35.5px;
|
||||
}
|
||||
.title-bar .title-inner .download-btn-wrap .download-btn {
|
||||
display: inline-block;
|
||||
width: 137px;
|
||||
height: 45px;
|
||||
font-size: 14px;
|
||||
color: #FFF;
|
||||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAfklEQVQoz2NgwAH+QwEDqYA+GoHqmHBpRJZD12QDxBeAWAFdI5BSAuLLQGyOTeMeqNqnQKz9HwH0gPgZlL0Lm0ZeIN4HVfAWSeM7KA0ymAeXc9mBeP1/TLAGiNkIBRAzEM9D0jQbJEZs6DICcTcQd4DYVIlouHqKNZIKyNYIANg0W+Clp6yhAAAAAElFTkSuQmCC) 20px center no-repeat;
|
||||
background-color: #11a68d;
|
||||
line-height: 45px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.title-bar .title-inner .download-btn-wrap .donwload-text {
|
||||
margin-left: 20px;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li a {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
color: #FFF;
|
||||
padding-bottom: 13px;
|
||||
border-bottom: 4px solid #364044;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li a:hover {
|
||||
color: #11a68d;
|
||||
text-decoration: none;
|
||||
border-bottom: 4px solid #11a68d
|
||||
}
|
||||
.quic-nav-wrap {
|
||||
display: none;
|
||||
width: 100%;
|
||||
height: 16px;
|
||||
padding: 25px 0;
|
||||
z-index: 9999;
|
||||
background-color: #364044;
|
||||
}
|
||||
.quic-nav-wrap .quic-nav-inner {
|
||||
height: 100%;
|
||||
position: relative;
|
||||
width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.quic-nav-wrap .quic-nav-inner .quic-nav li.first {
|
||||
padding-left: 0;
|
||||
}
|
||||
.quic-nav-wrap .quic-nav-inner .quic-nav li a {
|
||||
display: inline-block;
|
||||
color: #FFF;
|
||||
padding-bottom: 18px;
|
||||
border-bottom: 4px solid #364044;
|
||||
}
|
||||
.quic-nav-wrap .quic-nav-inner .quic-nav li.last {
|
||||
border-right: 0;
|
||||
}
|
||||
.quic-nav-wrap .quic-nav-inner .download-btn-wrap {
|
||||
position: absolute;
|
||||
right: 1px;
|
||||
top: -14px;
|
||||
}
|
||||
.quic-nav-wrap .quic-nav-inner .download-btn-wrap .download-btn {
|
||||
display: inline-block;
|
||||
width: 137px;
|
||||
height: 45px;
|
||||
font-size: 14px;
|
||||
color: #FFF;
|
||||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABGdBT…kIBRAzEM9D0jQbJEZs6DICcTcQd4DYVIlouHqKNZIKyNYIANg0W+Clp6yhAAAAAElFTkSuQmCC) 14px center no-repeat;
|
||||
background-color: #11a68d;
|
||||
line-height: 45px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.quic-nav-wrap .quic-nav-inner .download-btn-wrap .donwload-text {
|
||||
margin-left: 25px;
|
||||
}
|
||||
.downleader {
|
||||
position: fixed;
|
||||
z-index: 10001;
|
||||
width: 618px;
|
||||
height: 333px;
|
||||
background-color: #fff;
|
||||
top: 30%;
|
||||
left: 50%;
|
||||
margin-left: -309px;
|
||||
display: none;
|
||||
}
|
||||
.downleader .d-ok {
|
||||
display: none;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/paperdetail/download_leader/imgs/download-ok_ae96401.png) no-repeat;
|
||||
width: 88px;
|
||||
height: 117px;
|
||||
}
|
||||
.downleader .download-icon {
|
||||
display: inline-block;
|
||||
width: 95px;
|
||||
height: 142px;
|
||||
float: left;
|
||||
margin-left: 63px;
|
||||
margin-top: 100px;
|
||||
}
|
||||
.downleader .d-no-word {
|
||||
display: none;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/paperdetail/download_leader/imgs/download-no-word_3589537.png) no-repeat;
|
||||
}
|
||||
.downleader .d-no-count {
|
||||
display: none;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/paperdetail/download_leader/imgs/download-no-count_86b9e70.png) no-repeat;
|
||||
}
|
||||
.downleader .downleader-hotpaper {
|
||||
width: 350px;
|
||||
height: 200px;
|
||||
margin-top: 40px;
|
||||
margin-left: 195px;
|
||||
padding-left: 30px;
|
||||
border-left: 1px solid #e6e6e6;
|
||||
}
|
||||
.downleader .downleader-hotpaper .paper-title {
|
||||
height: 40px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
line-height: 40px;
|
||||
}
|
||||
.downleader .downleader-hotpaper .paper-li {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.downleader .downleader-hotpaper .paper-li .paper-1 {
|
||||
background-image: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/paperdetail/download_leader/imgs/paper-zhen_ed68669.png);
|
||||
}
|
||||
.downleader .downleader-hotpaper .paper-li .paper-icon {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-image: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/paperdetail/download_leader/imgs/paper-default_4279412.png);
|
||||
}
|
||||
.downleader .downleader-hotpaper .paper-li .paper-contain {
|
||||
line-height: 2;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
padding-left: 25px;
|
||||
}
|
||||
.downleader .downleader-close {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 30px;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.downleader .downleader-more {
|
||||
left: 270px;
|
||||
}
|
||||
.downleader .downleader-ok, .downleader .downleader-more {
|
||||
display: inline-block;
|
||||
width: 105px;
|
||||
height: 35px;
|
||||
border: 1px solid #11a68d;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
line-height: 35px;
|
||||
font-size: 12px;
|
||||
color: #11a68d;
|
||||
top: 260px;
|
||||
}
|
||||
.bd-content .ques-container .ques-info-wrap {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.bd-content .ques-container .ques-info-wrap .que-type {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.bd-content {
|
||||
visibility: hidden;
|
||||
width: 1200px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
.quelist-wrap {
|
||||
width: 780px;
|
||||
position: relative;
|
||||
left: 217px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
.quelist-wrap {
|
||||
width: 780px;
|
||||
position: relative;
|
||||
left: 217px;
|
||||
}
|
||||
.quelist-wrap {
|
||||
width: 780px;
|
||||
position: relative;
|
||||
left: 217px;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner {
|
||||
position: relative;
|
||||
padding: 45px 30px 30px;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .queindex-wrap {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: -8px;
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-color: #4c5d66;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: #FFF;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .que-stem {
|
||||
font-size: 16px;
|
||||
color: #333;
|
||||
}
|
||||
.selected-quescontainer .queindex-wrap {
|
||||
background-color: #11a68d!important;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .queindex-wrap {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: -8px;
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-color: #4c5d66;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: #FFF;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .pieces {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 30px;
|
||||
line-height: 35px;
|
||||
color: #999;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .pieces {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 30px;
|
||||
line-height: 35px;
|
||||
color: #999;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.bdjson span, .bdjson img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .view-analyse {
|
||||
padding-top: 30px;
|
||||
text-align: right;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .view-analyse a {
|
||||
color: #aaacb0;
|
||||
padding-left: 27px;
|
||||
}
|
||||
.nexttolearn .next-inner a.nextpoint, .nexttolearn .next-inner a.next-done {
|
||||
margin-left: 20px;
|
||||
}
|
||||
.quelist-wrap .last {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.quelist-wrap .last {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.nexttolearn {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 26px;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #ccc;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.nexttolearn .next-inner {
|
||||
height: 50px;
|
||||
width: 420px;
|
||||
margin: auto;
|
||||
}
|
||||
.nexttolearn .done {
|
||||
position: absolute;
|
||||
bottom: -7px;
|
||||
left: 290px;
|
||||
background-color: #f5f5f5;
|
||||
color: #999;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.nexttolearn .next-inner a {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
background-color: #11a68d;
|
||||
color: #fff;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
.nexttolearn .next-inner a.next-done, .nexttolearn .next-inner a.tolearn-done {
|
||||
background-color: #ccc;
|
||||
}
|
||||
.nexttolearn .done {
|
||||
position: absolute;
|
||||
bottom: -7px;
|
||||
left: 290px;
|
||||
background-color: #f5f5f5;
|
||||
color: #999;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.crumbs {
|
||||
margin-top: 34px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.crumbs a {
|
||||
color: #333;
|
||||
}
|
||||
.queanalyse-wrap {
|
||||
display: none;
|
||||
width: 354px;
|
||||
height: 565px;
|
||||
border-left: 1px solid #e3e3e3;
|
||||
border-right: 1px solid #e3e3e3;
|
||||
border-top: 1px solid #e3e3e3;
|
||||
padding: 30px 15px 0 30px;
|
||||
background-color: #FFF;
|
||||
z-index: 5555;
|
||||
}
|
||||
.queanalyse-wrap .close-btn {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: 10px;
|
||||
top: 8px;
|
||||
cursor: pointer;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/chapterdetail/queanalyse/images/icon-close_ea002a8.png) center center no-repeat;
|
||||
}
|
||||
.queanalyse-wrap .content-wrap {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.queanalyse-wrap .analyse-content {
|
||||
padding: 0 7px 50px 0;
|
||||
}
|
||||
.que-title-wrap {
|
||||
position: relative;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
}
|
||||
.que-title-wrap .title {
|
||||
z-index: 19;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap {
|
||||
background-color: #FFF;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap .dt-index {
|
||||
display: inline-block;
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
text-align: center;
|
||||
line-height: 16px;
|
||||
color: #333;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap {
|
||||
background-color: #FFF;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap {
|
||||
background-color: #FFF;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.exam-answer {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.exam-answer .exam-answer-title {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 15px;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/chapterdetail/queanalyse/images/answer-ic_e2a51c3.png) left center no-repeat;
|
||||
background-size: 14px 18px;
|
||||
padding-left: 25px;
|
||||
}
|
||||
.exam-answer .exam-answer-content {
|
||||
font-size: 14px;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.bdjson span, .bdjson img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.exam-info {
|
||||
border-top: 1px solid #f2f2f2;
|
||||
padding: 20px 0;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
}
|
||||
.exam-info h3 {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.exam-info .analysis-ic {
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/chapterdetail/queanalyse/images/analyse-ic_9ed7fd8.png) left center no-repeat;
|
||||
background-size: 18px 18px;
|
||||
}
|
||||
.exam-info .ic {
|
||||
display: inline-block;
|
||||
padding-left: 25px;
|
||||
}
|
||||
.queanalyse-wrap .toolbar {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
background-color: #11a68d;
|
||||
z-index: 99999;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul {
|
||||
height: 100%;
|
||||
line-height: 50px;
|
||||
font-size: 16px;
|
||||
color: #FFF;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .disable {
|
||||
cursor: default;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .pre-li {
|
||||
cursor: pointer;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .disable {
|
||||
opacity: .4;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul li {
|
||||
width: 33%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .disable {
|
||||
cursor: default;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .center-li {
|
||||
text-align: center;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .center-li .current {
|
||||
color: #fff;
|
||||
margin-right: 3px;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .next-li:not(.disable) {
|
||||
cursor: pointer;
|
||||
}
|
||||
.quelist-wrap .question-box {
|
||||
margin-bottom: 20px;
|
||||
border: 1px solid #e3e3e3;
|
||||
}
|
||||
.hover-quescontainer {
|
||||
cursor: pointer;
|
||||
box-shadow: 5px 5px 8px #e3e3e3;
|
||||
}
|
||||
.hover-quescontainer .view-analyse a {
|
||||
color: #11a68d!important;
|
||||
}
|
||||
.selected-quescontainer {
|
||||
cursor: pointer;
|
||||
border-color: #11a68d!important;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.recpaper {
|
||||
width: 720px;
|
||||
background-color: #fafafa;
|
||||
padding: 0 30px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.recpaper {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.recpaper .recp-title {
|
||||
padding: 10px 0 20px;
|
||||
}
|
||||
.recpaper .recp-title .repc-curr {
|
||||
color: #19a693;
|
||||
font-weight: 700;
|
||||
border-bottom: 3px solid #19a693;
|
||||
}
|
||||
.recpaper .recp-title .repc-curr, .recpaper .recp-title .recp-li {
|
||||
float: left;
|
||||
font-size: 16px;
|
||||
padding-bottom: 13px;
|
||||
margin: 13px 30px 0 0;
|
||||
border-bottom: 3px solid #fafafa;
|
||||
cursor: pointer;
|
||||
}
|
||||
.recpaper .recp-title .recp-border {
|
||||
margin: 13px 30px 0 0;
|
||||
float: left;
|
||||
border-left: 1px solid #d3d3d3;
|
||||
height: 16px;
|
||||
border-bottom: 0;
|
||||
padding: 0;
|
||||
cursor: default;
|
||||
}
|
||||
.recpaper .recp-contain .recp-contain-li {
|
||||
float: left;
|
||||
width: 280px;
|
||||
margin-right: 75px;
|
||||
padding-bottom: 25px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.recpaper .recp-contain .recp-contain-li .repc-zhen {
|
||||
background-image: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikucommon/widget/tpl/pc/recpaper/images/paper-zhen_ed68669.png);
|
||||
}
|
||||
.recpaper .recp-contain .recp-contain-li .repc-mo {
|
||||
background-image: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikucommon/widget/tpl/pc/recpaper/images/paper-mo_a7d7888.png);
|
||||
}
|
||||
.recpaper .recp-contain .recp-contain-li .repc-ya {
|
||||
background-image: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikucommon/widget/tpl/pc/recpaper/images/paper-ya_57183a9.png);
|
||||
}
|
||||
.recpaper .recp-contain .recp-contain-li .recp-icon {
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.downleader .downleader-hotpaper .paper-li .paper-contain:hover {
|
||||
text-decoration: none;
|
||||
color: #11a68d
|
||||
}
|
||||
.downleader .downleader-ok:hover,.downleader .downleader-more:hover {
|
||||
color: #fff;
|
||||
background-color: #11a68d
|
||||
}
|
||||
.downleader .downleader-close:hover {
|
||||
background-color: #11a68d
|
||||
}
|
||||
.recpaper .recp-title .repc-curr:hover,.recpaper .recp-title .recp-li:hover {
|
||||
color: #19a693;
|
||||
font-weight: 700;
|
||||
border-bottom: 3px solid #19a693
|
||||
}
|
||||
.recpaper .recp-contain .recp-contain-li .recp-link {
|
||||
padding-left: 20px;
|
||||
line-height: 18px;
|
||||
color: #333;
|
||||
}
|
||||
.recpaper .recp-contain .recp-contain-li .recp-link:hover {
|
||||
text-decoration: none;
|
||||
color: #19a693
|
||||
}
|
||||
.recpaper .recp-more {
|
||||
font-size: 12px;
|
||||
display: inline-block;
|
||||
margin-bottom: 30px;
|
||||
color: #333;
|
||||
}
|
||||
.mask {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 10000;
|
||||
background-color: #000;
|
||||
opacity: .7;
|
||||
filter: alpha(opacity=70);
|
||||
display: none;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
.body:after, .main:after {
|
||||
clear: both;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
height: 0!important;
|
||||
line-height: 0;
|
||||
font-size: xx-large;
|
||||
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
|
||||
}
|
@ -0,0 +1,270 @@
|
||||
.content-wp {
|
||||
min-height: 500px;
|
||||
}
|
||||
.main {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
.main {
|
||||
display: table-cell;
|
||||
width: auto;
|
||||
_position: relative;
|
||||
_right: -3px;
|
||||
_margin-left: -3px;
|
||||
}
|
||||
.main-submenu {
|
||||
background-color: #fff;
|
||||
}
|
||||
.main-submenu .submenu-contain {
|
||||
width: 1180px;
|
||||
margin: auto;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-title {
|
||||
font-size: 20px;
|
||||
line-height: 70px;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-title a {
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul {
|
||||
float: right;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li {
|
||||
font-size: 14px;
|
||||
float: left;
|
||||
width: 56px;
|
||||
height: 67px;
|
||||
line-height: 70px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
margin-left: 44px;
|
||||
border-bottom: 3px solid #fff;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li a {
|
||||
display: inline-block;
|
||||
border-bottom: 3px solid #fff;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #333;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li a.curr {
|
||||
color: #11a68d;
|
||||
border-bottom: 3px solid #11a68d;
|
||||
}
|
||||
.main .main-inner {
|
||||
width: 1180px;
|
||||
min-height: 726px;
|
||||
margin: auto;
|
||||
}
|
||||
.backtotop {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 30px;
|
||||
right: 30px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background-color: #149987;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
z-index: 9999999;
|
||||
}
|
||||
.screening {
|
||||
background-color: #fff;
|
||||
padding: 30px 30px 15px;
|
||||
margin: 20px 0;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
}
|
||||
.screening .sc-title {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.screening .sc-title .sc-ti {
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
float: left;
|
||||
}
|
||||
.screening .sc-title p {
|
||||
float: right;
|
||||
padding-left: 20px;
|
||||
}
|
||||
.screening .sc-title p .num {
|
||||
font-weight: 700;
|
||||
color: #e57373;
|
||||
}
|
||||
.screening .sc-list-content {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
.screening .sc-list-content .sub {
|
||||
float: left;
|
||||
line-height: 45px;
|
||||
}
|
||||
.screening .sc-list-content .sc-list {
|
||||
padding-left: 64px;
|
||||
}
|
||||
.screening .sc-list-content .sc-list li {
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
padding: 0 8px;
|
||||
margin: 8px 24px 8px 0;
|
||||
}
|
||||
.screening .sc-list-content .sc-list li a {
|
||||
display: block;
|
||||
}
|
||||
.screening .sc-list-content .sc-list .selected {
|
||||
background-color: #11a68d;
|
||||
}
|
||||
.main .main-inner .list-left {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.mainlist {
|
||||
background-color: #fff;
|
||||
width: 720px;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
padding: 0 30px;
|
||||
}
|
||||
.mainlist .title {
|
||||
height: 49px;
|
||||
line-height: 50px;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.mainlist .title {
|
||||
height: 49px;
|
||||
line-height: 50px;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.mainlist .title .sort {
|
||||
float: right;
|
||||
}
|
||||
.mainlist .title .sort .sort-down {
|
||||
margin-right: 7px;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist {
|
||||
height: 40px;
|
||||
padding: 30px 0;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist .zhenti {
|
||||
background: url(../images/list-zhenti_ae69a34.png) no-repeat;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist .paper-title-content {
|
||||
float: left;
|
||||
height: 100%;
|
||||
padding-left: 50px;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist .paper-link {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 94px;
|
||||
height: 30px;
|
||||
border: 1px solid #e0e0e0;
|
||||
text-align: center;
|
||||
line-height: 32px;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist .paper-title-content .paper-title {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
max-width: 540px;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist .paper-title-content .read {
|
||||
background: url(../images/read_96d8ed6.png) no-repeat;
|
||||
background-position-y: 4px;
|
||||
margin-right: 24px;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist .paper-title-content .read, .mainlist .paperlist-content .paperlist .paper-title-content .down {
|
||||
display: block;
|
||||
float: left;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
margin-top: 9px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
.mainlist .paperlist-content .paperlist .paper-title-content .down {
|
||||
background: url(../images/download_92a804b.png) no-repeat;
|
||||
background-position-y: 3px;
|
||||
}
|
||||
.main .main-inner .list-right {
|
||||
float: right;
|
||||
}
|
||||
.paging {
|
||||
position: relative;
|
||||
height: 56px;
|
||||
}
|
||||
.paging .page-content {
|
||||
position: absolute;
|
||||
}
|
||||
.paging .page-content .page-list {
|
||||
float: left;
|
||||
}
|
||||
.paging .page-content .page-list .page-num:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
.paging .page-content .page-list .selected {
|
||||
background-color: #11a68d;
|
||||
font-weight: 700;
|
||||
}
|
||||
.paging .page-content .page-list .page-num {
|
||||
height: 26px;
|
||||
padding: 0 7px;
|
||||
float: left;
|
||||
margin-left: 12px;
|
||||
text-align: center;
|
||||
line-height: 26px;
|
||||
font-size: 16px;
|
||||
}
|
||||
.paging .page-content .page-list .selected a {
|
||||
color: #fff;
|
||||
}
|
||||
.paging .page-content .page-list .page-num a {
|
||||
display: block;
|
||||
}
|
||||
.paging .page-content .page-sum {
|
||||
float: left;
|
||||
height: 26px;
|
||||
line-height: 26px;
|
||||
margin-left: 26px;
|
||||
}
|
||||
.foot {
|
||||
background-color: #f0f0f0;
|
||||
height: 70px;
|
||||
}
|
||||
.foot .crumbs {
|
||||
width: 1180px;
|
||||
margin: auto;
|
||||
line-height: 70px;
|
||||
}
|
||||
.foot .crumbs span {
|
||||
color: #999;
|
||||
}
|
||||
.foot .crumbs {
|
||||
width: 1180px;
|
||||
margin: auto;
|
||||
line-height: 70px;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
.body:after, .main:after {
|
||||
clear: both;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
height: 0!important;
|
||||
line-height: 0;
|
||||
font-size: xx-large;
|
||||
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
|
||||
}
|
@ -0,0 +1,270 @@
|
||||
#wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#head {
|
||||
height: 75px;
|
||||
z-index: 100;
|
||||
}
|
||||
.mod-header {
|
||||
display: inline;
|
||||
font-size: 66px;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #2b78e4;
|
||||
}
|
||||
.mod-userbar {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 20px;
|
||||
z-index: 300;
|
||||
font-family: "Microsoft yahei",Arial,Helvetica,STHeiti,"宋体";
|
||||
}
|
||||
.mod-userbar li {
|
||||
float: left;
|
||||
margin: 0 5px;
|
||||
color: #ccc;
|
||||
height: 24px;
|
||||
}
|
||||
.mod-userbar li a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
#nav {
|
||||
height: 42px;
|
||||
}
|
||||
#nav {
|
||||
width: 100%;
|
||||
background: #fafafa;
|
||||
z-index: 1;
|
||||
}
|
||||
.nav-2 {
|
||||
height: 46px;
|
||||
background: url(../../images/password/hdbg.png) repeat-x 0 0;
|
||||
width: 100%;
|
||||
}
|
||||
.mod-nav {
|
||||
position: relative;
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.page-type-notab {
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
float: left;
|
||||
margin-left: 70px;
|
||||
line-height: 46px;
|
||||
display: inline;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
#content {
|
||||
height: auto;
|
||||
}
|
||||
#content .mod-forgot {
|
||||
min-height: 500px;
|
||||
height: auto;
|
||||
}
|
||||
.mod-forgot {
|
||||
height: 450px;
|
||||
margin-left: 70px;
|
||||
width: 910px;
|
||||
}
|
||||
.mod-sub-nav {
|
||||
height: 34px;
|
||||
background: url(../../images/password/mod_sub_nav.png) no-repeat 0 0;
|
||||
margin: 30px 0;
|
||||
line-height: 34px;
|
||||
color: #666;
|
||||
font-size: 16px;
|
||||
font-family: "Microsoft Yahei",\5fae\8f6f\96c5\9ed1,\9ed1\4f53;
|
||||
}
|
||||
.mod-sub-nav li {
|
||||
float: left;
|
||||
padding-left: 66px;
|
||||
}
|
||||
.mod-sub-list1 {
|
||||
width: 175px;
|
||||
}
|
||||
.mod-sub-list2 {
|
||||
width: 163px;
|
||||
}
|
||||
.mod-sub-nav li.list3-active {
|
||||
background: url(../../images/password/sub_nav_3.png) no-repeat 0 0;
|
||||
color: #2e82ff;
|
||||
margin-left: -12px;
|
||||
padding-left: 78px;
|
||||
width: 163px;
|
||||
}
|
||||
.mod-step-detail .step-form-tip {
|
||||
color: #999;
|
||||
font-size: 12px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.m_l80 {
|
||||
margin-left: 80px;
|
||||
}
|
||||
form {
|
||||
position: relative;
|
||||
}
|
||||
.pass-input-container {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.pass-input-container {
|
||||
position: relative;
|
||||
}
|
||||
.l-h40 {
|
||||
line-height: 40px;
|
||||
}
|
||||
.pass-input-title {
|
||||
font-size: 14px;
|
||||
width: 70px;
|
||||
padding-right: 10px;
|
||||
line-height: 32px;
|
||||
float: left;
|
||||
text-align: right;
|
||||
}
|
||||
.pass-input {
|
||||
border: 1px solid #CCC;
|
||||
border-bottom: 1px solid #ddd;
|
||||
border-right: 1px solid #ddd;
|
||||
background-color: #fff;
|
||||
vertical-align: middle;
|
||||
font-size: 12px;
|
||||
_margin-top: 1px;
|
||||
padding: 7px 0 7px 8px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
overflow: hidden;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
background: url(../../images/password/form_input_261.png) no-repeat left top;
|
||||
-webkit-transition-property: all;
|
||||
-webkit-transition-duration: .3s;
|
||||
-moz-transition-property: all;
|
||||
-moz-transition-duration: .3s;
|
||||
-o-transition-property: all;
|
||||
-o-transition-duration: .3s;
|
||||
transition-property: all;
|
||||
transition-duration: .3s;
|
||||
outline: 0;
|
||||
resize: none;
|
||||
width: 253px;
|
||||
float: left;
|
||||
}
|
||||
.pass-input-forgot {
|
||||
display: block;
|
||||
position: relative;
|
||||
float: left;
|
||||
height: 16px;
|
||||
width: 328px;
|
||||
padding: 11px 10px;
|
||||
margin-right: 10px;
|
||||
border: 1px solid #ddd;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
-webkit-transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
transition: .3s;
|
||||
background: #fff;
|
||||
}
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.pass-input-pwdmsg {
|
||||
float: left;
|
||||
width: 226px;
|
||||
}
|
||||
.pass-streng-wrapper {
|
||||
visibility: hidden;
|
||||
}
|
||||
.pass-tips-streng {
|
||||
float: left;
|
||||
background: #f1f1f1;
|
||||
width: 165px;
|
||||
height: 10px;
|
||||
overflow: hidden;
|
||||
margin-left: 10px;
|
||||
margin-right: 6px;
|
||||
position: relative;
|
||||
}
|
||||
.pass-tips-streng span {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 10px;
|
||||
}
|
||||
.pass-input-pwdmsg .pass-input-msg {
|
||||
line-height: 1.3em;
|
||||
margin-top: 2px;
|
||||
display: inline-block;
|
||||
width: 350px;
|
||||
}
|
||||
.l-h40 {
|
||||
line-height: 40px;
|
||||
}
|
||||
.pass-input-msg {
|
||||
line-height: 32px;
|
||||
float: left;
|
||||
color: #da1111;
|
||||
margin-left: 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.m_l80 {
|
||||
margin-left: 80px;
|
||||
}
|
||||
.mod-step-detail .pass-button-submit {
|
||||
display: block;
|
||||
height: 40px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background-image: none;
|
||||
border-radius: 3px;
|
||||
border: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
-webkit-transition: .3s;
|
||||
background-color: #3f89ec;
|
||||
width: 350px;
|
||||
}
|
||||
.pass-button-submit, .pass-button-timer2, .mod-btn1 {
|
||||
height: 34px;
|
||||
width: 109px;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
border: 0;
|
||||
background: url(../../images/password/button_icon.png) no-repeat 0 0;
|
||||
line-height: 32px;
|
||||
}
|
||||
#foot {
|
||||
text-align: center;
|
||||
color: #7a77c8;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.pass-input-error {
|
||||
border: 1px solid #da1111
|
||||
}
|
||||
.pass-input-focus {
|
||||
border-color: #377bcb
|
||||
}
|
@ -0,0 +1,211 @@
|
||||
#wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#head {
|
||||
height: 75px;
|
||||
z-index: 100;
|
||||
}
|
||||
.mod-header {
|
||||
display: inline;
|
||||
font-size: 66px;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #2b78e4;
|
||||
}
|
||||
.mod-userbar {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 20px;
|
||||
z-index: 300;
|
||||
font-family: "Microsoft yahei", Arial, Helvetica, STHeiti, 宋体;
|
||||
}
|
||||
.mod-userbar li {
|
||||
float: left;
|
||||
margin: 0 5px;
|
||||
color: #ccc;
|
||||
height: 24px;
|
||||
}
|
||||
.mod-userbar li a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.mod-userbar {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 20px;
|
||||
z-index: 300;
|
||||
font-family: "Microsoft yahei", Arial, Helvetica, STHeiti, 宋体;
|
||||
}
|
||||
.mod-userbar li {
|
||||
float: left;
|
||||
margin: 0 5px;
|
||||
color: #ccc;
|
||||
height: 24px;
|
||||
}
|
||||
.mod-userbar li a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
#nav {
|
||||
height: 42px;
|
||||
}
|
||||
.nav-2 {
|
||||
height: 46px;
|
||||
background: url(../../images/password/hdbg.png) repeat-x 0 0;
|
||||
width: 100%;
|
||||
}
|
||||
.mod-nav {
|
||||
position: relative;
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.page-type-notab {
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
float: left;
|
||||
margin-left: 70px;
|
||||
line-height: 46px;
|
||||
display: inline;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
#content {
|
||||
height: auto;
|
||||
}
|
||||
#content .mod-forgot {
|
||||
min-height: 500px;
|
||||
height: auto;
|
||||
}
|
||||
.mod-forgot {
|
||||
height: 450px;
|
||||
margin-left: 70px;
|
||||
width: 910px;
|
||||
}
|
||||
.mod-sub-nav {
|
||||
height: 34px;
|
||||
background: url(../../images/password/mod_sub_nav.png) no-repeat 0 0;
|
||||
margin: 30px 0;
|
||||
line-height: 34px;
|
||||
color: #666;
|
||||
font-size: 16px;
|
||||
font-family: "Microsoft Yahei",\5fae\8f6f\96c5\9ed1,\9ed1\4f53;
|
||||
}
|
||||
.mod-sub-nav li {
|
||||
float: left;
|
||||
padding-left: 66px;
|
||||
}
|
||||
.mod-sub-list1 {
|
||||
width: 175px;
|
||||
}
|
||||
.mod-sub-list2 {
|
||||
width: 163px;
|
||||
}
|
||||
.mod-sub-nav li.list3-active {
|
||||
background: url(../../images/password/sub_nav_3.png) no-repeat 0 0;
|
||||
color: #2e82ff;
|
||||
margin-left: -12px;
|
||||
padding-left: 78px;
|
||||
width: 163px;
|
||||
}
|
||||
.mod-step-detail .result-info {
|
||||
text-align: center;
|
||||
padding-top: 60px;
|
||||
width: 695px;
|
||||
}
|
||||
.mod-step-detail .result-info .result-message {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.result-message span, .result-message2 span {
|
||||
position: relative;
|
||||
top: -8px;
|
||||
left: 8px;
|
||||
}
|
||||
.mod-setinfo .button, .mod-layer-body .button, .mod-step-detail .button {
|
||||
display: block;
|
||||
float: left;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-weight: 400;
|
||||
line-height: 30px;
|
||||
width: 77px;
|
||||
height: 30px;
|
||||
background: #3f89ec;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.mod-setinfo .result-title-btn, .mod-step-detail .result-title-btn {
|
||||
float: none;
|
||||
height: 40px;
|
||||
width: 140px;
|
||||
line-height: 40px;
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
margin: 0 auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.result-content-msg {
|
||||
font-size: 12px;
|
||||
margin: 10px 0;
|
||||
color: #999;
|
||||
text-align: left;
|
||||
display: block;
|
||||
}
|
||||
.result-content-table {
|
||||
width: 700px;
|
||||
}
|
||||
.result-content-link {
|
||||
display: block;
|
||||
text-align: right;
|
||||
margin-top: 5px;
|
||||
}
|
||||
tbody {
|
||||
display: table-row-group;
|
||||
vertical-align: middle;
|
||||
border-color: inherit;
|
||||
}
|
||||
.result-content-title {
|
||||
width: 700px;
|
||||
height: 30px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
}
|
||||
tr {
|
||||
display: table-row;
|
||||
vertical-align: inherit;
|
||||
border-color: inherit;
|
||||
}
|
||||
.result-content-title th {
|
||||
color: #666;
|
||||
border-top: 1px solid #dfdfdf;
|
||||
background: #f3f3f3;
|
||||
text-align: center;
|
||||
}
|
||||
.result-content-list td {
|
||||
border-bottom: 1px dotted #dcdcdc;
|
||||
word-wrap: break-word;
|
||||
word-break: break-all;
|
||||
padding: 5px 0;
|
||||
text-align: center;
|
||||
}
|
||||
#foot {
|
||||
text-align: center;
|
||||
color: #7a77c8;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
@ -0,0 +1,393 @@
|
||||
#wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#head {
|
||||
height: 75px;
|
||||
z-index: 100;
|
||||
}
|
||||
.mod-header {
|
||||
display: inline;
|
||||
font-size: 66px;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #2b78e4;
|
||||
}
|
||||
.mod-userbar {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 20px;
|
||||
z-index: 300;
|
||||
font-family: "Microsoft yahei", Arial, Helvetica, STHeiti, ËÎÌå;
|
||||
}
|
||||
.mod-userbar li {
|
||||
float: left;
|
||||
margin: 0 5px;
|
||||
color: #ccc;
|
||||
height: 24px;
|
||||
}
|
||||
.mod-userbar li a {
|
||||
color: #000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
#nav {
|
||||
height: 42px;
|
||||
}
|
||||
#nav {
|
||||
width: 100%;
|
||||
background: #fafafa;
|
||||
z-index: 1;
|
||||
}
|
||||
.nav-2 {
|
||||
height: 46px;
|
||||
background: url(../../images/password/hdbg.png) repeat-x 0 0;
|
||||
width: 100%;
|
||||
}
|
||||
.mod-nav {
|
||||
position: relative;
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.page-type-notab {
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
float: left;
|
||||
margin-left: 70px;
|
||||
line-height: 46px;
|
||||
display: inline;
|
||||
}
|
||||
#content {
|
||||
height: auto;
|
||||
}
|
||||
#content .mod-forgot {
|
||||
min-height: 500px;
|
||||
height: auto;
|
||||
}
|
||||
.mod-forgot {
|
||||
height: 450px;
|
||||
margin-left: 70px;
|
||||
width: 910px;
|
||||
}
|
||||
.mod-sub-nav {
|
||||
height: 34px;
|
||||
background: url(../../images/password/mod_sub_nav.png) no-repeat 0 0;
|
||||
margin: 30px 0;
|
||||
line-height: 34px;
|
||||
color: #666;
|
||||
font-size: 16px;
|
||||
font-family: "Microsoft Yahei",\5fae\8f6f\96c5\9ed1,\9ed1\4f53;
|
||||
}
|
||||
.mod-sub-nav li {
|
||||
float: left;
|
||||
padding-left: 66px;
|
||||
}
|
||||
.mod-sub-list1 {
|
||||
width: 175px;
|
||||
}
|
||||
.mod-sub-nav li.list2-active {
|
||||
background: url(../../images/password/sub_nav_2.png) no-repeat 0 0;
|
||||
color: #2e82ff;
|
||||
margin-left: -12px;
|
||||
padding-left: 78px;
|
||||
}
|
||||
.forgot-auth-container {
|
||||
width: 520px;
|
||||
}
|
||||
.mod-step-detail .step-email-info, .mod-step-detail .step-form-info {
|
||||
font-size: 12px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.mod-step-detail .step-email-info, .mod-step-detail .step-form-info {
|
||||
font-size: 12px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.forgot-auth-type {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.m-t10 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
form {
|
||||
position: relative;
|
||||
}
|
||||
.forgot-auth-title {
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.pass-input-container, .m-b15 {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.pass-input-container {
|
||||
position: relative;
|
||||
}
|
||||
.form-2-label {
|
||||
width: 70px;
|
||||
font-size: 14px;
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
text-align: right;
|
||||
line-height: 32px;
|
||||
}
|
||||
label {
|
||||
cursor: default;
|
||||
}
|
||||
.line-32 {
|
||||
line-height: 32px;
|
||||
}
|
||||
.form-2-content {
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
float: left;
|
||||
}
|
||||
.verify-method {
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
line-height: 30px;
|
||||
}
|
||||
.mod-step-detail .m-b-mobile {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.mod-step-detail .vcode-container {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.form-2-content {
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
float: left;
|
||||
}
|
||||
.mod-step-detail .vcode-container .vcode-input {
|
||||
float: left;
|
||||
width: 97px;
|
||||
}
|
||||
.mod-step-detail .vcode-container .pass-input-new {
|
||||
width: 220px;
|
||||
height: 22px;
|
||||
background: #fff;
|
||||
}
|
||||
.pass-input {
|
||||
border: 1px solid #CCC;
|
||||
border-bottom: 1px solid #ddd;
|
||||
border-right: 1px solid #ddd;
|
||||
background-color: #fff;
|
||||
vertical-align: middle;
|
||||
font-size: 12px;
|
||||
_margin-top: 1px;
|
||||
padding: 7px 0 7px 8px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
overflow: hidden;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
background: url(../../images/password/form_input_261.png) no-repeat left top;
|
||||
-webkit-transition-property: all;
|
||||
-webkit-transition-duration: .3s;
|
||||
-moz-transition-property: all;
|
||||
-moz-transition-duration: .3s;
|
||||
-o-transition-property: all;
|
||||
-o-transition-duration: .3s;
|
||||
transition-property: all;
|
||||
transition-duration: .3s;
|
||||
outline: 0;
|
||||
resize: none;
|
||||
width: 253px;
|
||||
float: left;
|
||||
}
|
||||
.input-label-new1 {
|
||||
top: 6px;
|
||||
left: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.pass-input-label {
|
||||
position: absolute;
|
||||
left: 13px;
|
||||
top: 3px;
|
||||
_top: 5px;
|
||||
color: #ccc;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
cursor: text;
|
||||
-webkit-transition-property: color;
|
||||
-webkit-transition-duration: .3s;
|
||||
-moz-transition-property: all;
|
||||
-moz-transition-duration: .3s;
|
||||
-o-transition-property: all;
|
||||
-o-transition-duration: .3s;
|
||||
transition-property: all;
|
||||
transition-duration: .3s;
|
||||
}
|
||||
#pass-button-new1 {
|
||||
width: 120px;
|
||||
height: 36px;
|
||||
border: 1px solid #ccc;
|
||||
background: #f7f7f7;
|
||||
color: #666;
|
||||
line-height: 36px;
|
||||
}
|
||||
.form-2-content .pass-button-timer {
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
.pass-button-timer, .mod-btn2 {
|
||||
height: 29px;
|
||||
width: 107px;
|
||||
color: #333;
|
||||
cursor: pointer;
|
||||
border: 0;
|
||||
line-height: 29px;
|
||||
text-align: center;
|
||||
background: url(../../images/password/button_icon.png) no-repeat 0 -138px;
|
||||
float: left;
|
||||
}
|
||||
.pass-input-stip {
|
||||
line-height: 40px;
|
||||
float: left;
|
||||
font-size: 12px;
|
||||
margin-left: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
.pass-input-stip {
|
||||
line-height: 40px;
|
||||
float: left;
|
||||
font-size: 12px;
|
||||
margin-left: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
.form-2-content .pass-input-msg {
|
||||
clear: both;
|
||||
margin-left: 0;
|
||||
height: 32px;
|
||||
width: 420px;
|
||||
}
|
||||
.pass-input-msg {
|
||||
line-height: 32px;
|
||||
float: left;
|
||||
color: #da1111;
|
||||
margin-left: 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.m-b30 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.m-b30 .pass-button-new1 {
|
||||
width: 360px;
|
||||
height: 40px;
|
||||
background: #2e82ff;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
}
|
||||
.mod-step-detail .pass-button-submit {
|
||||
display: block;
|
||||
height: 40px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background-image: none;
|
||||
border-radius: 3px;
|
||||
border: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
-webkit-transition: .3s;
|
||||
background-color: #3f89ec;
|
||||
width: 350px;
|
||||
}
|
||||
.pass-button-submit, .pass-button-timer2, .mod-btn1 {
|
||||
height: 34px;
|
||||
width: 109px;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
border: 0;
|
||||
background: url(../../images/password/button_icon.png) no-repeat 0 0;
|
||||
line-height: 32px;
|
||||
}
|
||||
.forgot-auth-title {
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.mod-step-detail .step-email-info, .mod-step-detail .step-form-info {
|
||||
font-size: 12px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.mod-step-detail .step-email-info, .mod-step-detail .step-form-info {
|
||||
font-size: 12px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.upsms-auth-content {
|
||||
width: 400px;
|
||||
height: 130px;
|
||||
border: 1px solid #ccc;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.upsms-auth-left {
|
||||
background: #f9f9f9;
|
||||
width: 209px;
|
||||
height: 100px;
|
||||
float: left;
|
||||
padding: 20px 20px 10px;
|
||||
border-right: 1px solid #ccc;
|
||||
}
|
||||
.upsms-auth-left p {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.upsms-auth-left p {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.mod-step-detail .step-tip {
|
||||
border-top: 1px dotted #e5e5e5;
|
||||
margin: 70px 0 140px;
|
||||
width: 910px;
|
||||
}
|
||||
.mod-step-detail .m-t0 {
|
||||
margin-top: 0;
|
||||
}
|
||||
.mod-step-detail .step-tip li {
|
||||
font-family: ËÎÌå, Arial, Helvetica, STHeiti;
|
||||
}
|
||||
.mod-step-detail .step-tip li {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.img-info {
|
||||
padding-right: 5px;
|
||||
}
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
#foot {
|
||||
text-align: center;
|
||||
color: #7a77c8;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.mod-sub-list2 {
|
||||
width: 163px;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
.pass-input-focus {
|
||||
border-color: #377bcb
|
||||
}
|
||||
.pass-input-error {
|
||||
border: 1px solid #da1111
|
||||
}
|
@ -0,0 +1,199 @@
|
||||
.content-wp {
|
||||
min-height: 500px;
|
||||
}
|
||||
.main {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.main {
|
||||
display: table-cell;
|
||||
width: auto;
|
||||
_position: relative;
|
||||
_right: -3px;
|
||||
_margin-left: -3px;
|
||||
}
|
||||
.main .main-inner {
|
||||
width: 1180px;
|
||||
margin: auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.body:after, .main:after {
|
||||
clear: both;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
height: 0!important;
|
||||
line-height: 0;
|
||||
font-size: xx-large;
|
||||
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
|
||||
}
|
||||
.backtotop {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 30px;
|
||||
right: 30px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background-color: #149987;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
z-index: 9999999;
|
||||
}
|
||||
.main .main-inner .main-contain {
|
||||
float: left;
|
||||
width: 780px;
|
||||
}
|
||||
.single {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.single .question {
|
||||
background-color: #fff;
|
||||
padding: 0 30px;
|
||||
}
|
||||
.single .question .que-title {
|
||||
padding: 28px 0;
|
||||
color: #666;
|
||||
}
|
||||
.single .question .que-title .op {
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
}
|
||||
.single .question .que-title span {
|
||||
padding: 0 15px;
|
||||
border-left: 1px solid #d3d3d3;
|
||||
float: left;
|
||||
}
|
||||
.single .question .question-box {
|
||||
font-size: 16px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.single .recommend-que {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
.single .recommend-que .kpoint-contain {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.single .recommend-que .point-title {
|
||||
padding: 0 30px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
padding-top: 30px;
|
||||
}
|
||||
.single .recommend-que .point {
|
||||
padding: 0 30px;
|
||||
}
|
||||
.single .recommend-que .point .point-item {
|
||||
margin-top: 20px;
|
||||
margin-right: 20px;
|
||||
display: inline-block;
|
||||
padding: 12px 24px;
|
||||
border: 1px solid #ccc;
|
||||
color: #666;
|
||||
font-size: 14px;
|
||||
}
|
||||
.single .recommend-que .kpoint-contain .recq-contain {
|
||||
padding: 0 15px;
|
||||
}
|
||||
.single .recommend-que .kpoint-contain .recq-contain .recq {
|
||||
font-size: 14px;
|
||||
}
|
||||
.single .recommend-que .kpoint-contain .recq-contain .recq .recq-link {
|
||||
margin: 0 15px;
|
||||
padding-left: 20px;
|
||||
padding-top: 12px;
|
||||
padding-bottom: 12px;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url(../images/paper-default_4279412.png);
|
||||
background-position-y: 50%;
|
||||
display: block;
|
||||
color: #333;
|
||||
}
|
||||
.single .recommend-que .kpoint-contain .recq-contain .recq .recq-link p {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
width: 100%;
|
||||
}
|
||||
.single .answer {
|
||||
background-color: #fff;
|
||||
margin-top: 20px;
|
||||
padding: 0 30px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.single .answer .exam-answer-title {
|
||||
background-size: inherit;
|
||||
background-image: url(../images/answer-ic_e2a51c3.png);
|
||||
padding-top: 24px;
|
||||
padding-bottom: 15px;
|
||||
background-position-y: 22px;
|
||||
margin: auto;
|
||||
}
|
||||
.single .answer .content {
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.single .answer .analysis-ic {
|
||||
background-image: url(../images/analysis-ic_9ed7fd8.png);
|
||||
}
|
||||
.single .answer .ic {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
padding-left: 24px;
|
||||
background-size: 16px 16px;
|
||||
background-repeat: no-repeat;
|
||||
margin-top: 24px;
|
||||
margin-bottom: 15px;
|
||||
display: inline-block;
|
||||
}
|
||||
.single .answer .content {
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.bdjson span, .bdjson img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.main .main-inner .sidebar {
|
||||
float: right;
|
||||
width: 380px;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
.main .main-inner .sidebar .sidebar-main, .main .main-inner .sidebar .sidebar-simplemain {
|
||||
width: 380px;
|
||||
}
|
||||
.hotexam {
|
||||
padding: 0 30px;
|
||||
font-size: 14px;
|
||||
background-color: #fff;
|
||||
}
|
||||
.hotexam .hotexam-title {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
padding: 30px 0;
|
||||
color: #333;
|
||||
}
|
||||
.hotexam .hotexam-content .hotexam-item {
|
||||
padding-right: 20px;
|
||||
padding-bottom: 15px;
|
||||
line-height: 1.5;
|
||||
float: left;
|
||||
}
|
||||
.hotexam .hotexam-content .hotexam-item a {
|
||||
color: #666;
|
||||
text-decoration: none;
|
||||
}
|
@ -0,0 +1,384 @@
|
||||
.content-wp {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.content-wp {
|
||||
min-height: 500px;
|
||||
}
|
||||
.main {
|
||||
width: auto;
|
||||
_position: relative;
|
||||
_right: -3px;
|
||||
_margin-left: -3px;
|
||||
}
|
||||
.title-bar {
|
||||
height: 96px;
|
||||
padding-bottom: 20px;
|
||||
background-color: #364044;
|
||||
}
|
||||
.title-bar .title-inner {
|
||||
height: 100%;
|
||||
position: relative;
|
||||
width: 1180px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.title-bar .title-inner .paper-crumbs {
|
||||
padding-top: 33px;
|
||||
}
|
||||
.title-bar .title-inner .paper-crumbs li {
|
||||
float: left;
|
||||
color: #ccc;
|
||||
}
|
||||
.title-bar .title-inner .paper-crumbs li.last {
|
||||
color: #999;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav {
|
||||
margin-top: 11px;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li.title {
|
||||
margin-top: 0;
|
||||
font-size: 20px;
|
||||
padding-left: 0;
|
||||
border-right: 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li {
|
||||
float: left;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
margin-top: 4px;
|
||||
padding: 0 20px;
|
||||
border-right: 1px solid #4c5d66;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li {
|
||||
float: left;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.title-bar .title-inner .quic-nav li:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
.bd-content {
|
||||
visibility: hidden;
|
||||
width: 1200px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
.quelist-wrap {
|
||||
width: 780px;
|
||||
position: relative;
|
||||
left: 217px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
.quelist-wrap {
|
||||
width: 780px;
|
||||
position: relative;
|
||||
left: 217px;
|
||||
}
|
||||
.quelist-wrap {
|
||||
width: 780px;
|
||||
position: relative;
|
||||
left: 217px;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner {
|
||||
position: relative;
|
||||
padding: 45px 30px 30px;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .queindex-wrap {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: -8px;
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-color: #4c5d66;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: #FFF;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .que-stem {
|
||||
font-size: 16px;
|
||||
color: #333;
|
||||
}
|
||||
.selected-quescontainer .queindex-wrap {
|
||||
background-color: #11a68d!important;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .queindex-wrap {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: -8px;
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background-color: #4c5d66;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: #FFF;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .pieces {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 30px;
|
||||
line-height: 35px;
|
||||
color: #999;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .pieces {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 30px;
|
||||
line-height: 35px;
|
||||
color: #999;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.bdjson span, .bdjson img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .view-analyse {
|
||||
padding-top: 30px;
|
||||
text-align: right;
|
||||
}
|
||||
.quelist-wrap .question-box .question-box-inner .view-analyse a {
|
||||
color: #aaacb0;
|
||||
padding-left: 27px;
|
||||
}
|
||||
.nexttolearn .next-inner a.nextpoint, .nexttolearn .next-inner a.next-done {
|
||||
margin-left: 20px;
|
||||
}
|
||||
.quelist-wrap .last {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.quelist-wrap .last {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.nexttolearn {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 26px;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #ccc;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.nexttolearn .next-inner {
|
||||
height: 50px;
|
||||
width: 420px;
|
||||
margin: auto;
|
||||
}
|
||||
.nexttolearn .done {
|
||||
position: absolute;
|
||||
bottom: -7px;
|
||||
left: 290px;
|
||||
background-color: #f5f5f5;
|
||||
color: #999;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.nexttolearn .next-inner a {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
background-color: #11a68d;
|
||||
color: #fff;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
.nexttolearn .next-inner a.next-done, .nexttolearn .next-inner a.tolearn-done {
|
||||
background-color: #ccc;
|
||||
}
|
||||
.nexttolearn .done {
|
||||
position: absolute;
|
||||
bottom: -7px;
|
||||
left: 290px;
|
||||
background-color: #f5f5f5;
|
||||
color: #999;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.crumbs {
|
||||
margin-top: 34px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.crumbs a {
|
||||
color: #333;
|
||||
}
|
||||
.queanalyse-wrap {
|
||||
display: none;
|
||||
width: 354px;
|
||||
height: 565px;
|
||||
border-left: 1px solid #e3e3e3;
|
||||
border-right: 1px solid #e3e3e3;
|
||||
border-top: 1px solid #e3e3e3;
|
||||
padding: 30px 15px 0 30px;
|
||||
background-color: #FFF;
|
||||
z-index: 5555;
|
||||
}
|
||||
.queanalyse-wrap .close-btn {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: 10px;
|
||||
top: 8px;
|
||||
cursor: pointer;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/chapterdetail/queanalyse/images/icon-close_ea002a8.png) center center no-repeat;
|
||||
}
|
||||
.queanalyse-wrap .content-wrap {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.queanalyse-wrap .analyse-content {
|
||||
padding: 0 7px 50px 0;
|
||||
}
|
||||
.que-title-wrap {
|
||||
position: relative;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
}
|
||||
.que-title-wrap .title {
|
||||
z-index: 19;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap {
|
||||
background-color: #FFF;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap .dt-index {
|
||||
display: inline-block;
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
text-align: center;
|
||||
line-height: 16px;
|
||||
color: #333;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap {
|
||||
background-color: #FFF;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.que-title-wrap .title .content-wrap {
|
||||
background-color: #FFF;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.exam-answer {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.exam-answer .exam-answer-title {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 15px;
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/chapterdetail/queanalyse/images/answer-ic_e2a51c3.png) left center no-repeat;
|
||||
background-size: 14px 18px;
|
||||
padding-left: 25px;
|
||||
}
|
||||
.exam-answer .exam-answer-content {
|
||||
font-size: 14px;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.bdjson span, .bdjson img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.exam-info {
|
||||
border-top: 1px solid #f2f2f2;
|
||||
padding: 20px 0;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
}
|
||||
.exam-info h3 {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.exam-info .analysis-ic {
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikupc/widget/chapterdetail/queanalyse/images/analyse-ic_9ed7fd8.png) left center no-repeat;
|
||||
background-size: 18px 18px;
|
||||
}
|
||||
.exam-info .ic {
|
||||
display: inline-block;
|
||||
padding-left: 25px;
|
||||
}
|
||||
.queanalyse-wrap .toolbar {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
background-color: #11a68d;
|
||||
z-index: 99999;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul {
|
||||
height: 100%;
|
||||
line-height: 50px;
|
||||
font-size: 16px;
|
||||
color: #FFF;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .disable {
|
||||
cursor: default;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .pre-li {
|
||||
cursor: pointer;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .disable {
|
||||
opacity: .4;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul li {
|
||||
width: 33%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .disable {
|
||||
cursor: default;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .center-li {
|
||||
text-align: center;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .center-li .current {
|
||||
color: #fff;
|
||||
margin-right: 3px;
|
||||
}
|
||||
.queanalyse-wrap .toolbar .toolbar-ul .next-li:not(.disable) {
|
||||
cursor: pointer;
|
||||
}
|
||||
.quelist-wrap .question-box {
|
||||
margin-bottom: 20px;
|
||||
border: 1px solid #e3e3e3;
|
||||
}
|
||||
.hover-quescontainer {
|
||||
cursor: pointer;
|
||||
box-shadow: 5px 5px 8px #e3e3e3;
|
||||
}
|
||||
.hover-quescontainer .view-analyse a {
|
||||
color: #11a68d!important;
|
||||
}
|
||||
.selected-quescontainer {
|
||||
cursor: pointer;
|
||||
border-color: #11a68d!important;
|
||||
}
|
||||
.bdjson p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
.body:after, .main:after {
|
||||
clear: both;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
height: 0!important;
|
||||
line-height: 0;
|
||||
font-size: xx-large;
|
||||
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
/* reset */
|
||||
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;padding:0;}
|
||||
header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display:block;}
|
||||
table{border-collapse:collapse;border-spacing:0;}
|
||||
caption,th{text-align:left;font-weight:normal;}
|
||||
html,body,fieldset,img,iframe,abbr{border:0;}
|
||||
i,cite,em,var,address,dfn{font-style:normal;}
|
||||
[hidefocus],summary{outline:0;}
|
||||
li{list-style:none;}
|
||||
h1,h2,h3,h4,h5,h6,small{font-size:100%;}
|
||||
sup,sub{font-size:83%;}
|
||||
pre,code,kbd,samp{font-family:inherit;}
|
||||
q:before,q:after{content:none;}
|
||||
textarea{overflow:auto;resize:none;}
|
||||
label,summary{cursor:default;}
|
||||
a,button{cursor:pointer;}
|
||||
h1,h2,h3,h4,h5,h6,em,strong,b{font-weight:bold;}
|
||||
del,ins,u,s,a,a:hover{text-decoration:none;}
|
||||
body,textarea,input,button,select,keygen,legend{font:12px/1.14 arial,\5b8b\4f53;color:#333;outline:0;}
|
||||
body{background:#fff;}
|
||||
a{color:#333;}
|
||||
a:hover{color: #11a68d;}
|
||||
body {height: 100%;font: 12px/1.333 "\5FAE\8F6F\96C5\9ED1","Hiragino Sans GB",arial,helvetica,clean;}
|
@ -0,0 +1,715 @@
|
||||
.content-wp {
|
||||
min-height: 500px;
|
||||
}
|
||||
.main {
|
||||
display: table-cell;
|
||||
width: auto;
|
||||
_position: relative;
|
||||
_right: -3px;
|
||||
_margin-left: -3px;
|
||||
}
|
||||
.main {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
.main-submenu {
|
||||
background-color: #fff;
|
||||
}
|
||||
.main-submenu .submenu-contain {
|
||||
width: 1180px;
|
||||
margin: auto;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-title {
|
||||
font-size: 20px;
|
||||
line-height: 70px;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-title a {
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul {
|
||||
float: right;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li {
|
||||
font-size: 14px;
|
||||
float: left;
|
||||
width: 56px;
|
||||
height: 67px;
|
||||
line-height: 70px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
margin-left: 44px;
|
||||
border-bottom: 3px solid #fff;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li a {
|
||||
display: inline-block;
|
||||
border-bottom: 3px solid #fff;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #333;
|
||||
}
|
||||
.banner {
|
||||
height: 350px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
background: #FFF;
|
||||
position: relative;
|
||||
}
|
||||
.banner .banner-list {
|
||||
width: 100%;
|
||||
}
|
||||
.banner .banner-list li {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
.banner .play-nav li.cur a {
|
||||
opacity: .8;
|
||||
filter: alpha(opacity=80)
|
||||
}
|
||||
.banner .banner-list li:first-child {
|
||||
z-index: 2;
|
||||
}
|
||||
.banner .banner-link {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.banner .banner-pic {
|
||||
border: 0;
|
||||
width: 100%;
|
||||
height: 350px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
}
|
||||
.banner .play-nav {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
bottom: 15px;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 10;
|
||||
}
|
||||
.banner .play-nav li {
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
}
|
||||
.banner .play-nav li a {
|
||||
background: #fff;
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
height: 5px;
|
||||
text-indent: -9999px;
|
||||
opacity: .4;
|
||||
filter: alpha(opacity=40);
|
||||
border-radius: none;
|
||||
}
|
||||
.main-submenu .submenu-contain .contain-ul .contain-li a.curr {
|
||||
color: #11a68d;
|
||||
border-bottom: 3px solid #11a68d;
|
||||
}
|
||||
.withyou-container-box {
|
||||
background: #fff;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.withyou-container {
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
.withyou-container .container-title {
|
||||
font-size: 30px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
color: #000;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
padding-top: 40px;
|
||||
}
|
||||
.withyou-container .title-detail {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
text-align: center;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 15px;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.withyou-container .title-underline {
|
||||
width: 60px;
|
||||
height: 4px;
|
||||
background-color: #11a68d;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.withyou-container .withyou-main {
|
||||
padding-top: 20px;
|
||||
height: 170px;
|
||||
padding-bottom: 25px;
|
||||
border-bottom: 1px solid #e6e6e6;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box-learn {
|
||||
background-position: 0 0;
|
||||
margin-right: 35px;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box .box-title {
|
||||
margin: 0 30px;
|
||||
padding: 30px 0 25px;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box .box-title .box-title-name {
|
||||
font-size: 30px;
|
||||
padding-bottom: 11px;
|
||||
line-height: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box .box-title .box-title-detail {
|
||||
font-size: 14px;
|
||||
line-height: 14px;
|
||||
height: 14px;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box .box-content {
|
||||
font-size: 16px;
|
||||
margin: 0 30px;
|
||||
height: 49px;
|
||||
line-height: 49px;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box .box-content .box-content-icon {
|
||||
float: right;
|
||||
display: inline-block;
|
||||
height: 46px;
|
||||
line-height: 46px;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box {
|
||||
background: url(../images/withyou-bg_8635139.png) no-repeat;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 370px;
|
||||
height: 172px;
|
||||
color: #fff;
|
||||
position: relative;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box-paper {
|
||||
background-position: 0 -270px;
|
||||
margin-right: 35px;
|
||||
}
|
||||
.withyou-container .withyou-main .withyou-box-score {
|
||||
cursor: default;
|
||||
background-position: 0 -540px;
|
||||
}
|
||||
.course-container {
|
||||
background-color: #f0f0f0;
|
||||
overflow: hidden;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.course-container .course-container-main {
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.course-container .container-title {
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
font-size: 30px;
|
||||
color: #000;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
padding-top: 40px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.course-container .course-container-main .course-list-container {
|
||||
max-width: 1182px;
|
||||
text-align: center;
|
||||
}
|
||||
.course-container .course-container-main .chapter-list {
|
||||
width: 778px;
|
||||
border: 1px solid #e6e6e6;
|
||||
background: #fff;
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.course-container .course-container-main .alllearn-list {
|
||||
float: left;
|
||||
border: 1px solid #e6e6e6;
|
||||
background: #fff;
|
||||
margin-top: 20px;
|
||||
padding: 30px 30px 0;
|
||||
}
|
||||
.course-container .course-container-main .course-list {
|
||||
font-size: 14px;
|
||||
width: 1182px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.course-container .course-container-main .course-list .course-item {
|
||||
color: #666;
|
||||
padding-bottom: 10px;
|
||||
margin-right: 30px;
|
||||
border-bottom: 4px solid transparent;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
.course-container .course-container-main .course-list .course-item-select {
|
||||
color: #11a68d;
|
||||
border-bottom: 4px solid #11a68d;
|
||||
}
|
||||
.chapterlist-container {
|
||||
margin: 0 20px;
|
||||
height: 504px;
|
||||
}
|
||||
.chapterlist-container .chapterlist-item {
|
||||
position: relative;
|
||||
padding: 29px 0;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
color: #333;
|
||||
}
|
||||
.chapterlist-container .chapterlist-item .chapterlist-item-name {
|
||||
font-size: 16px;
|
||||
line-height: 16px;
|
||||
height: 16px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.chapterlist-container .chapterlist-item .chapterlist-item-btn {
|
||||
display: inline-block;
|
||||
width: 118px;
|
||||
height: 38px;
|
||||
border: 1px solid #f0f0f0;
|
||||
line-height: 38px;
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
right: 0;
|
||||
text-align: center;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
}
|
||||
.more-chapterlist-item {
|
||||
height: 12px;
|
||||
font-size: 12px;
|
||||
line-height: 12px;
|
||||
margin-bottom: 29px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
.more-chapterlist-item .more-item {
|
||||
cursor: pointer;
|
||||
color: #666;
|
||||
}
|
||||
.chapterlist-container .chapterlist-item:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
.course-container .course-container-main .alllearn-list {
|
||||
float: left;
|
||||
border: 1px solid #e6e6e6;
|
||||
background: #fff;
|
||||
margin-top: 20px;
|
||||
padding: 30px 30px 0;
|
||||
}
|
||||
.class-feed-box-wrap {
|
||||
width: 310px;
|
||||
}
|
||||
.class-feed-box-wrap .feed-title {
|
||||
margin-bottom: 14px;
|
||||
font-size: 16px;
|
||||
color: #333;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.class-feed-box-wrap .feed-list-content {
|
||||
width: 310px;
|
||||
height: 420px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.class-feed-box-wrap .feed-list {
|
||||
position: relative;
|
||||
}
|
||||
.class-feed-box-wrap .feed-list .feed-list-item {
|
||||
padding: 15px 0;
|
||||
}
|
||||
.class-feed-box-wrap .feed-list .list-border {
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.class-feed-box-wrap .feed-list .feed-list-item .item-img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
}
|
||||
.class-feed-box-wrap .feed-more-link-item {
|
||||
padding: 20px 0 30px;
|
||||
}
|
||||
.class-feed-box-wrap .feed-more-link {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
}
|
||||
.gaokaopaper-container {
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.gaokaopaper-container .container-title {
|
||||
font-size: 30px;
|
||||
color: #000;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
padding-top: 40px;
|
||||
line-height: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.gaokaopaper-container .title-detail {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
text-align: center;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.gaokaopaper-container .title-underline {
|
||||
width: 60px;
|
||||
height: 4px;
|
||||
background-color: #11a68d;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.gaokaopaper-container .cityArea {
|
||||
width: 950px;
|
||||
margin: 0 auto;
|
||||
overflow: hidden;
|
||||
padding-top: 19px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
.gaokaopaper-container .cityArea .cityname {
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
line-height: 14px;
|
||||
height: 14px;
|
||||
margin-bottom: 15px;
|
||||
margin-right: 30px;
|
||||
display: block;
|
||||
float: left;
|
||||
}
|
||||
.gaokaopaper-container .paper-main .paper-box {
|
||||
float: left;
|
||||
padding: 29px;
|
||||
border: 1px solid #e6e6e6;
|
||||
background-color: #fafafa;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.gaokaopaper-container .paper-main .paper-box .paper-list-wrap {
|
||||
width: 320px;
|
||||
}
|
||||
.gaokaopaper-container .paper-main .homepage-zhenti-box .paper-list-wrap .paper-title, .gaokaopaper-container .paper-main .homepage-moni-box .paper-list-wrap .paper-title {
|
||||
font-size: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.gaokaopaper-container .paper-main .homepage-zhenti-box .paper-list-wrap .paper-title .list-more-link, .gaokaopaper-container .paper-main .homepage-moni-box .paper-list-wrap .paper-title .list-more-link {
|
||||
font-weight: 400;
|
||||
}
|
||||
.paper-list-wrap .list-more-link {
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-name {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
padding-bottom: 10px;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
height: 14px;
|
||||
line-height: 14px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-name-link {
|
||||
cursor: pointer;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-detail {
|
||||
padding-left: 20px;
|
||||
color: #ccc;
|
||||
font-size: 12px;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-detail .list-item-link {
|
||||
color: #11a68d;
|
||||
font-size: 12px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-detail .item-separate {
|
||||
margin: 0 10px;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-detail .list-item-link {
|
||||
color: #11a68d;
|
||||
font-size: 12px;
|
||||
}
|
||||
.gaokaopaper-container .paper-main .homepage-paper-box {
|
||||
float: left;
|
||||
padding: 29px;
|
||||
border: 1px solid #e6e6e6;
|
||||
background-color: #fafafa;
|
||||
padding-bottom: 24px;
|
||||
padding-bottom: 29px\0;
|
||||
}
|
||||
.gaokaopaper-container .paper-main .homepage-paper-box .hotpaper-list-wrap {
|
||||
width: 320px;
|
||||
}
|
||||
.gaokaopaper-container .paper-main .homepage-paper-box .hotpaper-list-wrap .hotpaper-title {
|
||||
font-size: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-title {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
line-height: 20px;
|
||||
height: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.course-container .course-container-main .course-list .course-item:hover {
|
||||
cursor: pointer;
|
||||
color: #ccc;
|
||||
border-bottom: 4px solid #ccc
|
||||
}
|
||||
|
||||
.course-container .course-container-main .course-list .course-item:active {
|
||||
color: #11a68d;
|
||||
border-bottom: 4px solid #11a68d
|
||||
}
|
||||
.gaokaopaper-container .paper-main .homepage-paper-box .hotpaper-list-wrap .hotpaper-title .list-more-link {
|
||||
font-weight: 400;
|
||||
}
|
||||
.hotpaper-list-wrap .list-more-link {
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
}
|
||||
.gaokaopaper-container .cityArea .selected {
|
||||
color: #11a68d;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-list-item {
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-1 {
|
||||
background-position: 729px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .hotpaper-rank {
|
||||
margin-right: 10px;
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-image: url(../images/icon_849ac18.png);
|
||||
position: relative;
|
||||
top: 2px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-2 {
|
||||
background-position: 693px 811px;
|
||||
}
|
||||
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-3 {
|
||||
background-position: 657px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-4 {
|
||||
background-position: 621px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-5 {
|
||||
background-position: 585px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-6 {
|
||||
background-position: 549px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-7 {
|
||||
background-position: 513px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-name .rank-8 {
|
||||
background-position: 477px 811px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-list-item:last-child {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.hotpaper-list-wrap .hotpaper-list .hotpaper-list-item {
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
|
||||
.gaokaopaper-container .school-paper-main {
|
||||
clear: both;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.gaokaopaper-container .school-paper-main .school-paper-container {
|
||||
border-top: 0;
|
||||
}
|
||||
.school-paper-container {
|
||||
padding-top: 20px;
|
||||
}
|
||||
.gaokaopaper-container .homepage-school-container .school-container-title {
|
||||
font-size: 22px;
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.school-paper-container .school-container-title {
|
||||
padding-bottom: 15px;
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.gaokaopaper-container .homepage-school-container .school-container-title .school-paper-more-link {
|
||||
font-weight: 400;
|
||||
}
|
||||
.school-paper-container .school-paper-more-link {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
float: right;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item {
|
||||
width: 370px;
|
||||
height: 226px;
|
||||
border: 1px solid #f0f0f0;
|
||||
float: left;
|
||||
margin-right: 30px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap-bg1 {
|
||||
background: url(../images/school-wrap-bg1_22603c9.png);
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap {
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
position: relative;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap {
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
padding: 20px 0;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .famous-school-link {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .school-info {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
-ms-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
margin-left: 30px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .school-info .name {
|
||||
font-size: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap .school-info .info {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
height: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap .paper-item {
|
||||
padding: 0 30px;
|
||||
line-height: 14px;
|
||||
height: 14px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap .paper-item .paper-item-name {
|
||||
color: #333;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item-lastchild {
|
||||
margin-right: 0;
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap-bg2 {
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikucommon/widget/tpl/pc/schoolpaper/images/school-wrap-bg2_c1220a1.png);
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .school-wrap-bg3 {
|
||||
background: url(//wkstatic.bdimg.com/static/gaokao/static/miti/tikucommon/widget/tpl/pc/schoolpaper/images/school-wrap-bg3_9b3e217.png);
|
||||
}
|
||||
.school-paper-container .school-list .school-list-item .paper-wrap .paper-item .paper-item-name:before {
|
||||
content: "";
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: url(../images/paper-preicon_ed298be.png) no-repeat center center;
|
||||
background-size: cover;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.paper-list-wrap .paper-list .list-item .list-item-name:before {
|
||||
content: "";
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: url(../images/paper-preicon_ed298be.png) no-repeat center center;
|
||||
background-size: cover;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.more-school-list {
|
||||
margin-left: -8px;
|
||||
max-height: 114px;
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
}
|
||||
.more-school-list .more-school-name {
|
||||
margin-top: 20px;
|
||||
display: inline-block;
|
||||
padding: 0 10px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
font-size: 14px;
|
||||
border: 1px solid #e6e6e6;
|
||||
color: #666;
|
||||
margin-left: 8px;
|
||||
}
|
||||
.homepage-crumbs {
|
||||
height: 15px;
|
||||
line-height: 15px;
|
||||
clear: both;
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.homepage-crumbs {
|
||||
clear: both;
|
||||
width: 1182px;
|
||||
margin: 0 auto;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.homepage-crumbs .cur-crumbs {
|
||||
color: #999;
|
||||
}
|
||||
.chapterlist-container .chapterlist-item .chapterlist-item-btn:hover {
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background: #11a68d;
|
||||
border: 1px solid transparant
|
||||
}
|
||||
.body:after, .main:after {
|
||||
clear: both;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
height: 0!important;
|
||||
line-height: 0;
|
||||
font-size: xx-large;
|
||||
content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
|
||||
}
|
@ -0,0 +1,452 @@
|
||||
#wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#head {
|
||||
height: 75px;
|
||||
z-index: 100;
|
||||
}
|
||||
#head .mod-header {
|
||||
display: block;
|
||||
width: 330px;
|
||||
}
|
||||
.mod-header {
|
||||
display: inline;
|
||||
font-size: 66px;
|
||||
}
|
||||
#head .mod-header a {
|
||||
display: none;
|
||||
width: 330px;
|
||||
height: 76px;
|
||||
}
|
||||
#head .mod-header a img {
|
||||
margin-top: 15px;
|
||||
}
|
||||
#nav {
|
||||
background: 0 0;
|
||||
}
|
||||
#nav .nav-2 {
|
||||
height: 20px;
|
||||
background: url(../../images/reg_hr.png) no-repeat center top;
|
||||
}
|
||||
.clearfix {
|
||||
zoom: 1;
|
||||
}
|
||||
.mod-reg {
|
||||
position: relative;
|
||||
}
|
||||
.tang-pass-reg {
|
||||
position: relative;
|
||||
width: 720px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.reg-content {
|
||||
float: left;
|
||||
}
|
||||
.tang-pass-reg .pass-generalErrorWrapper {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-generalError {
|
||||
color: #fc4343;
|
||||
display: block;
|
||||
height: 40px;
|
||||
font-size: 12px;
|
||||
line-height: 40px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg .pass-label {
|
||||
display: block;
|
||||
float: left;
|
||||
height: 42px;
|
||||
width: 65px;
|
||||
margin-right: 10px;
|
||||
line-height: 42px;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
font-weight: 700;
|
||||
text-align: right;
|
||||
}
|
||||
.tang-pass-reg .pass-text-input {
|
||||
display: block;
|
||||
position: relative;
|
||||
float: left;
|
||||
height: 16px;
|
||||
width: 328px;
|
||||
padding: 11px 10px;
|
||||
margin-right: 10px;
|
||||
border: 1px solid #ddd;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
transition: .3s;
|
||||
}
|
||||
.tang-pass-reg .pass-clearbtn {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background: url(../../images/reg_icons.png) -32px -24px no-repeat;
|
||||
top: 12px;
|
||||
left: 398px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password {
|
||||
position: absolute;
|
||||
float: left;
|
||||
background: 0 0;
|
||||
padding: 0;
|
||||
top: 0;
|
||||
left: 434px;
|
||||
height: 40px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error {
|
||||
display: none;
|
||||
float: left;
|
||||
position: relative;
|
||||
width: 250px;
|
||||
top: 12px;
|
||||
color: #fc4343;
|
||||
height: 16px;
|
||||
line-height: 14px;
|
||||
padding-left: 20px;
|
||||
background: url(../../images/err_small.png) 0 0 no-repeat;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .nopwd .pwd-strength-sum {
|
||||
display: none;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .nopwd .pwd-strength-detail {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .pwd-strength-detail {
|
||||
background: url(../../images/reg_icons.png) -80px -24px no-repeat;
|
||||
padding-left: 20px;
|
||||
line-height: 16px;
|
||||
display: block;
|
||||
width: 220px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .pwd-strength-bg {
|
||||
background-color: #eee;
|
||||
}
|
||||
.tang-pass-reg .pass-item-error-password .pwd-strength-sco, .tang-pass-reg .pass-item-error-password .pwd-strength-bg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 130px;
|
||||
height: 10px;
|
||||
line-height: 10px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist .pwd-checklist-item-error {
|
||||
background-position: -86px -144px;
|
||||
color: #fc4343;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist .pwd-checklist-item-success {
|
||||
background-position: -86px -128px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist .pwd-checklist-item-success {
|
||||
background-position: -86px -128px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist {
|
||||
margin-left: 10px;
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #ddd;
|
||||
box-shadow: 1px 1px 1px #efefef;
|
||||
background: #f9f9f9;
|
||||
width: 200px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 0;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow em.arrowa {
|
||||
color: #ddd;
|
||||
left: 0;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow em {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
font-size: 20px;
|
||||
}
|
||||
.tang-pass-reg .pwd-checklist-wrapper .pwd-checklist-arrow em.arrowb {
|
||||
color: #f9f9f9;
|
||||
left: 1px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext-password {
|
||||
padding-top: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext {
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item:after {
|
||||
visibility: hidden;
|
||||
display: block;
|
||||
font-size: 0;
|
||||
content: " ";
|
||||
clear: both;
|
||||
height: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-placeholder {
|
||||
top: 12px;
|
||||
line-height: 16px;
|
||||
_line-height: 18px;
|
||||
font-size: 14px;
|
||||
color: #ccc;
|
||||
left: 87px;
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
left: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext-password {
|
||||
padding-top: 0;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip-password {
|
||||
position: absolute;
|
||||
left: 430px;
|
||||
top: 0;
|
||||
zoom: 1;
|
||||
z-index: 20;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip {
|
||||
width: 270px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg .pass-label {
|
||||
display: block;
|
||||
float: left;
|
||||
height: 42px;
|
||||
width: 65px;
|
||||
margin-right: 10px;
|
||||
line-height: 42px;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
font-weight: 700;
|
||||
text-align: right;
|
||||
}
|
||||
.tang-pass-reg .pass-text-input-verifyCode {
|
||||
width: 156px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span, .tang-pass-reg .pass-form-item-verifyCodeSend span {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-clearbtn-verifyCode {
|
||||
left: 228px;
|
||||
}
|
||||
.tang-pass-reg .pass-clearbtn {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background: url(../../images/reg_icons.png) -32px -24px no-repeat;
|
||||
top: 12px;
|
||||
left: 398px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tang-pass-reg input.pass-button-verifyCodeSend {
|
||||
border-radius: 0;
|
||||
border: 1px solid #ddd;
|
||||
height: 40px;
|
||||
background: #f7f7f7;
|
||||
color: #666;
|
||||
font-weight: 400;
|
||||
width: 160px;
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.tang-pass-reg .pass-button {
|
||||
display: block;
|
||||
height: 50px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background-image: none;
|
||||
border-radius: 3px;
|
||||
border: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
-webkit-transition: .3s;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span.pass-item-error, .tang-pass-reg .pass-form-item-verifyCodeSend span.pass-item-error {
|
||||
display: none;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span, .tang-pass-reg .pass-form-item-verifyCodeSend span {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-verifyCode span, .tang-pass-reg .pass-form-item-verifyCodeSend span {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip-verifyCodeSend {
|
||||
padding-top: 2px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tip {
|
||||
width: 270px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-isAgree {
|
||||
margin-left: 75px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-isAgree .pass-checkbox-isAgree {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-isAgree label {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.tang-pass-reg a {
|
||||
text-decoration: none;
|
||||
color: #1b66c7;
|
||||
}
|
||||
.tang-pass-reg a {
|
||||
text-decoration: none;
|
||||
color: #1b66c7;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item-submit {
|
||||
position: relative;
|
||||
left: 75px;
|
||||
}
|
||||
.tang-pass-reg .pass-form-item {
|
||||
position: relative;
|
||||
clear: both;
|
||||
margin-bottom: 20px;
|
||||
zoom: 1;
|
||||
}
|
||||
.tang-pass-reg a {
|
||||
text-decoration: none;
|
||||
color: #1b66c7;
|
||||
}
|
||||
.mod-reg .tang-pass-reg .pass-button-submit {
|
||||
background-color: #3f89ec;
|
||||
}
|
||||
.tang-pass-reg .pass-button-submit {
|
||||
float: left;
|
||||
width: 350px;
|
||||
}
|
||||
.tang-pass-reg .pass-button {
|
||||
display: block;
|
||||
height: 50px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background-image: none;
|
||||
border-radius: 3px;
|
||||
border: 0;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
transition: .3s;
|
||||
-moz-transition: .3s;
|
||||
-o-transition: .3s;
|
||||
-webkit-transition: .3s;
|
||||
}
|
||||
#foot {
|
||||
text-align: center;
|
||||
color: #7a77c8;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
#foot {
|
||||
margin-top: 80px;
|
||||
}
|
||||
#head, #content, #foot {
|
||||
width: 980px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.reg-sms {
|
||||
width: 258px;
|
||||
border: 1px solid #d1eeff;
|
||||
background-color: #f5fbff;
|
||||
margin-top: 40px;
|
||||
}
|
||||
.reg-sms {
|
||||
float: right;
|
||||
}
|
||||
.mod-reg .login-link, .mod-regnotify .login-link {
|
||||
position: absolute;
|
||||
top: -70px;
|
||||
right: 0;
|
||||
color: #666;
|
||||
}
|
||||
.mod-reg .login-link span, .mod-regnotify .login-link span {
|
||||
float: left;
|
||||
display: block;
|
||||
margin-right: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.mod-reg .login-link, .mod-regnotify .login-link {
|
||||
position: absolute;
|
||||
top: -70px;
|
||||
right: 0;
|
||||
color: #666;
|
||||
}
|
||||
.mod-reg .login-btn, .mod-regnotify .login-btn {
|
||||
font-weight: 700;
|
||||
color: #666;
|
||||
height: 32px;
|
||||
width: 64px;
|
||||
border: 0;
|
||||
background: url(../../images/reg_icons.png) no-repeat 0 -48px;
|
||||
}
|
||||
.tang-pass-reg .pass-item-tiptext-userName {
|
||||
padding-top: 6px;
|
||||
}
|
||||
.mod-reg .tang-pass-reg .pass-text-input-error {
|
||||
border-color: #fc4343;
|
||||
}
|
||||
.mod-reg .tang-pass-reg .pass-text-input-focus {
|
||||
border-color: #488ee7
|
||||
}
|
||||
.tang-pass-reg input.pass-text-input-disabled {
|
||||
background: #f6f6f6;
|
||||
border-color: #ebebeb;
|
||||
color: #c5c5c5
|
||||
}
|
||||
.tang-pass-reg span.pass-item-error-isAgree {
|
||||
top: 0;
|
||||
float: none;
|
||||
}
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: '\20';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
}
|
After Width: | Height: | Size: 369 B |
After Width: | Height: | Size: 468 B |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 236 B |
After Width: | Height: | Size: 300 B |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 112 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 353 B |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.6 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 541 B |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 1.3 KiB |